[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ninsert_final_newline = true\nindent_style = space\nindent_size = 4\ntrim_trailing_whitespace = true\n\n[*.md]\ntrim_trailing_whitespace = false\n\n[*.yml]\nindent_style = space\nindent_size = 2\n"
  },
  {
    "path": ".gitattributes",
    "content": "/.editorconfig           export-ignore\n/.gitattributes          export-ignore\n/.github                 export-ignore\n/.gitignore              export-ignore\n/.multi-tester.yml       export-ignore\n/.php-cs-fixer.dist.php  export-ignore\n/.styleci.yml            export-ignore\n/.travis.yml             export-ignore\n/build.php               export-ignore\n/contributing.md         export-ignore\n/codecov.yml             export-ignore\n/phpdoc.php              export-ignore\n/phpmd.xml               export-ignore\n/phpstan.neon            export-ignore\n/phpunit.xml.dist        export-ignore\n/psalm.xml               export-ignore\n/sponsors.php            export-ignore\n/tests                   export-ignore\n\n* text=auto eol=lf\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "github: kylekatarnls\nopen_collective: Carbon\ntidelift: packagist/nesbot/carbon\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: bug\nassignees: kylekatarnls\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nA stand-alone chunk of code (with no dependences to other packages, user-land function nor variables with unknow values), for example:\n```php\necho Carbon::parse('2018-06-01')->subDay()->month;\n```\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Actual behavior**\nShow the value(s) you get. If you get an error or exception, provide the whole stack trace of it.\n\n**Versions**\n - PHP: [e.g. 8.4.11] (use `echo phpversion();` to get it)\n - Carbon: [e.g. 3.10.2] (run `composer show nesbot/carbon` to find it)\n\n**Additional context**\nAdd any other context about the problem here. If some default timezone or other php.ini settings are in use for instance.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "<!--\n    🛑 Important notice to read.\n\n    Before anything else, please search in previous issues (both open and close):\n    https://github.com/briannesbitt/Carbon/issues?q=is%3Aissue\n    https://github.com/CarbonPHP/carbon/issues?q=is%3Aissue\n\n    ⚠️ Please don't create an issue about a problem already discussed or addressed.\n\n    ⚠️ Please check if the documentation (https://carbonphp.github.io/carbon/) answer\n    your question or talk about the behavior you're about to describe.\n\n    Note that Carbon extends the PHP DateTime class\n    (https://www.php.net/manual/en/class.datetime.php) be sure you report\n    a Carbon-specific problem, if the same happens using DateTime,\n    refer to https://github.com/php/php-src\n\n    ⚠️ Don't remove this template.\n    This issue template applies to all\n      - bug reports,\n      - feature proposals,\n      - and documentation requests\n\n    Having all those information will allow us to know exactly\n    what you expect and answer you faster and precisely (answer\n    that matches your Carbon version, PHP version and usage).\n    \n    Note: Comments between <!- - and - -> won't appear in the final\n    issue (See [Preview] tab).\n-->\nHello,\n\nI encountered an issue with the following code:\n<!--\n    ⚠️ Your code below (not the code from inside Carbon library)\n    Be sure it's dependency-free and enough to reproduce the issue\n    when we run it on:\n    https://play.phpsandbox.io/embed/nesbot/carbon\n-->\n```php\necho Carbon::parse('2018-06-01')->subDay()->month;\n```\n\nCarbon version: **PUT HERE YOUR CARBON VERSION (exact version, not the range)**\n<!--\n    ⚠️ Run the command `composer show nesbot/carbon` to get \"versions\"\n-->\n\nPHP version: **PUT HERE YOUR PHP VERSION**\n\n<!--\n    Use `echo phpversion();`\n    to get PHP version.\n\n    Some issues can depends on your context, settings,\n    macros, timezone, language. So to be sure the code\n    you give is enough to reproduce your bug, try it\n    first in:\n    https://play.phpsandbox.io/embed/nesbot/carbon?input=%3C%3Fphp%0A%0Aecho%20Carbon%3A%3Aparse('2018-06-01')-%3EsubDay()-%3Emonth%3B\n\n    You can use the [Options] button to change the version\n    then when you get the bug with this editor, you can use\n    the [Export] button, copy the link of the opened tab,\n    then paste it in the issue. Then we can immediately get\n    your issue.\n-->\n\n\nI expected to get:\n\n```\n6\n```\n<!--\n    Always give your expectations. Each use has their owns.\n    You may want daylight saving time to be taken into account,\n    someone else want it to be ignored. You may want timezone\n    to be used in comparisons, someone else may not, etc.\n-->\n\nBut I actually get:\n\n```\n5\n```\n<!--\n    If you did not succeed to get the same result in\n    https://play.phpsandbox.io/embed/nesbot/carbon?input=%3C%3Fphp%0A%0Aecho%20Carbon%3A%3Aparse('2018-06-01')%3B then precise the\n    result you get.\n-->\n\nThanks!\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: composer\n    directory: /\n    schedule:\n      interval: weekly\n\n  - package-ecosystem: github-actions\n    directory: /\n    schedule:\n      interval: weekly\n"
  },
  {
    "path": ".github/workflows/deploy-documentation.yml",
    "content": "name: Deploy Documentation\n\non:\n  schedule:\n    - cron: '0 0 * * *'\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: pages\n  cancel-in-progress: false\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v6\n        with:\n          ref: gh-pages\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: 8.4\n          extensions: json\n          tools: composer:v2\n          coverage: none\n\n      - name: Install dependencies\n        run: composer update --prefer-dist --no-interaction --no-suggest\n\n      - name: Run PHP generators\n        run: composer run build\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n\n      - name: Setup Node\n        uses: actions/setup-node@v6\n        with:\n          node-version: 24\n          cache: pnpm\n\n      - name: Setup Pages\n        uses: actions/configure-pages@v5\n\n      - name: Install dependencies\n        run: pnpm install\n\n      - name: Build with VitePress\n        run: pnpm docs:build\n        env:\n          REPOSITORY: ${{ github.repository }}\n\n      - name: Upload artifact\n        uses: actions/upload-pages-artifact@v4\n        with:\n          path: docs/.vitepress/dist\n\n  deploy:\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    needs: build\n    runs-on: ubuntu-latest\n    name: Deploy\n    steps:\n      - name: Deploy to GitHub Pages\n        id: deployment\n        uses: actions/deploy-pages@v4\n"
  },
  {
    "path": ".github/workflows/documentation.yml",
    "content": "name: Documentation\n\non:\n  schedule:\n    - cron: '0 0 15 * *'\n    - cron: '0 0 2 * *'\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\njobs:\n  sponsors:\n    name: Update documentation\n\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n        with:\n          ref: gh-pages\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: 8.4\n          tools: composer:v2\n\n      - name: Get composer cache directory\n        id: composer-cache\n        shell: bash\n        run: echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT\n\n      - name: Cache composer dependencies\n        uses: actions/cache@v5\n        with:\n          path: ${{ steps.composer-cache.outputs.dir }}\n          key: \"documentation-${{ hashFiles('**/composer.json') }}\"\n          restore-keys: \"documentation-${{ hashFiles('**/composer.json') }}\"\n\n      - name: Install dependencies\n        uses: nick-fields/retry@v3\n        if: steps.composer-cache.outputs.cache-hit != 'true'\n        with:\n          timeout_minutes: 10\n          max_attempts: 3\n          command: composer update --prefer-dist --no-progress --prefer-stable\n\n      - name: Update documentation\n        run: composer build\n\n      - name: Create Pull Request\n        if: github.repository_owner == 'briannesbitt'\n        uses: peter-evans/create-pull-request@v8\n        with:\n          branch: job/update-documentation\n          commit-message: Update documentation\n          title: Update documentation\n          body: Monthly automated documentation update\n          assignees: kylekatarnls\n          reviewers: kylekatarnls\n          add-paths: :!history.json\n"
  },
  {
    "path": ".github/workflows/laravel.yml",
    "content": "name: Laravel\n\non: [ pull_request, push ]\n\njobs:\n  ubuntu:\n    runs-on: ubuntu-latest\n\n    services:\n      memcached:\n        image: memcached:1.6-alpine\n        ports:\n          - 11211:11211\n      mysql:\n        image: mysql:5.7\n        env:\n          MYSQL_ALLOW_EMPTY_PASSWORD: yes\n          MYSQL_DATABASE: forge\n        ports:\n          - 33306:3306\n        options: --health-cmd=\"mysqladmin ping\" --health-interval=10s --health-timeout=5s --health-retries=3\n      redis:\n        image: redis:7.0\n        ports:\n          - 6379:6379\n        options: --entrypoint redis-server\n      dynamodb:\n        image: amazon/dynamodb-local:2.0.0\n        ports:\n          - 8888:8000\n\n    strategy:\n      fail-fast: false\n      matrix:\n        php: [8.3, 8.5]\n        reference: [12.x]\n\n    name: ${{ matrix.reference }} - PHP ${{ matrix.php }}\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: ${{ matrix.php }}\n          extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, redis, igbinary, msgpack, memcached, gmp, :php-psr\n          ini-values: error_reporting=E_ALL\n          tools: composer:v2\n          coverage: none\n        env:\n          REDIS_CONFIGURE_OPTS: --enable-redis --enable-redis-igbinary --enable-redis-msgpack --enable-redis-lzf --with-liblzf --enable-redis-zstd --with-libzstd --enable-redis-lz4 --with-liblz4\n          REDIS_LIBS: liblz4-dev, liblzf-dev, libzstd-dev\n\n      - name: Install locales\n        run: |\n          sudo apt-get update || apt --fix-broken install || echo 'Apt failure ignored'\n          sudo apt-get install tzdata locales -y && sudo locale-gen fr_FR.UTF-8 sr_ME.UTF-8 ar_AE.UTF-8 zh_TW.UTF-8 zh_CN.UTF-8 yo_NG.UTF-8 en_US.UTF-8 || echo 'Apt failure ignored'\n\n      - name: Get composer cache directory\n        id: composer-cache-ubuntu\n        run: echo \"dir=$(composer config cache-files-dir)\" > $GITHUB_OUTPUT\n\n      - name: Cache composer dependencies\n        uses: actions/cache@v5\n        with:\n          path: ${{ steps.composer-cache-ubuntu.outputs.dir }}\n          key: \"l${{ matrix.reference }}-php-${{ matrix.php }}-ubuntu-${{ hashFiles('**/composer.json') }}\"\n          restore-keys: \"l${{ matrix.reference }}-php-${{ matrix.php }}-ubuntu-${{ hashFiles('**/composer.json') }}\"\n\n      - name: Install dependencies\n        uses: nick-fields/retry@v3\n        if: steps.composer-cache.outputs.cache-hit != 'true'\n        with:\n          timeout_minutes: 10\n          max_attempts: 3\n          command: |\n            composer remove --no-update phpmd/phpmd friendsofphp/php-cs-fixer --no-interaction --dev;\n            composer update --prefer-dist --no-progress --prefer-stable;\n\n      - name: Execute tests\n        run: vendor/bin/multi-tester tests/Laravel/laravel.${{ matrix.reference }}.multi-tester.yml\n        env:\n          DB_PORT: ${{ job.services.mysql.ports[3306] }}\n          DB_USERNAME: root\n          DYNAMODB_CACHE_TABLE: laravel_dynamodb_test\n          DYNAMODB_ENDPOINT: \"http://localhost:8888\"\n          AWS_ACCESS_KEY_ID: randomKey\n          AWS_SECRET_ACCESS_KEY: randomSecret\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/phpcs.yml",
    "content": "name: PHP-CS-Fixer\n\non: [ pull_request, push ]\n\njobs:\n  lint:\n    name: PHP-CS-Fixer\n\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n\n      - name: Ignore comments in switch\n        run: php tests/remove-comments-in-switch.php\n\n      - name: Check for code style violation with PHP-CS-Fixer\n        uses: docker://oskarstark/php-cs-fixer-ga\n        with:\n          args: --diff --dry-run\n"
  },
  {
    "path": ".github/workflows/phpmd.yml",
    "content": "name: PHPMD\n\non: [ pull_request, push ]\n\njobs:\n  ubuntu:\n    name: PHPMD\n\n    runs-on: ubuntu-latest\n\n    strategy:\n      fail-fast: false\n      matrix:\n        include:\n          - php: 8.3\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: ${{ matrix.php }}\n          extensions: json, msgpack\n          tools: composer:v2\n          coverage: none\n\n      - name: Install dependencies\n        uses: nick-fields/retry@v3\n        with:\n          timeout_minutes: 10\n          max_attempts: 3\n          command:  |\n            composer remove --no-update phpstan/extension-installer phpstan/phpstan ondrejmirtes/better-reflection friendsofphp/php-cs-fixer kylekatarnls/multi-tester --no-interaction --dev;\n            composer update --prefer-dist --no-progress --prefer-${{ matrix.setup || 'stable' }};\n\n      - name: Check source code\n        run: composer phpmd\n\n      - name: Check tests code\n        run: composer phpmd-test\n"
  },
  {
    "path": ".github/workflows/phpstan.yml",
    "content": "name: PHPStan\n\non: [ pull_request, push ]\n\njobs:\n  ubuntu:\n    name: PHPStan\n\n    runs-on: ubuntu-latest\n\n    strategy:\n      fail-fast: false\n      matrix:\n        include:\n          - php: 8.3\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: ${{ matrix.php }}\n          extensions: json, msgpack\n          tools: composer:v2\n          coverage: none\n\n      - name: Get composer cache directory\n        id: composer-cache\n        shell: bash\n        run: echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT\n\n      - name: Cache composer dependencies\n        uses: actions/cache@v5\n        with:\n          path: ${{ steps.composer-cache.outputs.dir }}\n          key: \"phpstan-${{ matrix.php }}-${{ matrix.setup }}-${{ matrix.os }}-${{ matrix.phpunit }}-${{ hashFiles('**/composer.json') }}\"\n          restore-keys: \"phpstan-${{ matrix.php }}-${{ matrix.setup }}-${{ matrix.os }}-${{ matrix.phpunit }}-${{ hashFiles('**/composer.json') }}\"\n\n      - name: Install dependencies\n        uses: nick-fields/retry@v3\n        with:\n          timeout_minutes: 10\n          max_attempts: 3\n          command:  |\n            composer remove --no-update phpmd/phpmd friendsofphp/php-cs-fixer kylekatarnls/multi-tester --no-interaction --dev;\n            composer require --no-update doctrine/orm symfony/config --no-interaction;\n            composer update --prefer-dist --no-progress --prefer-${{ matrix.setup || 'stable' }};\n\n      - name: Run phpstan\n        run: composer phpstan\n"
  },
  {
    "path": ".github/workflows/sponsors.yml",
    "content": "name: Sponsors\n\non:\n  schedule:\n    - cron: '0 0 15 * *'\n    - cron: '0 0 2 * *'\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\njobs:\n  sponsors:\n    name: Update readme\n\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n        with:\n          ref: master\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: 8.4\n          tools: composer:v2\n\n      - name: Get composer cache directory\n        id: composer-cache\n        shell: bash\n        run: echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT\n\n      - name: Cache composer dependencies\n        uses: actions/cache@v5\n        with:\n          path: ${{ steps.composer-cache.outputs.dir }}\n          key: \"sponsors-${{ hashFiles('**/composer.json') }}\"\n          restore-keys: \"sponsors-${{ hashFiles('**/composer.json') }}\"\n\n      - name: Install dependencies\n        uses: nick-fields/retry@v3\n        if: steps.composer-cache.outputs.cache-hit != 'true'\n        with:\n          timeout_minutes: 10\n          max_attempts: 3\n          command: composer update --prefer-dist --no-progress --prefer-stable\n\n      - name: Update sponsors on readme.md\n        run: composer sponsors\n\n      - name: Create Pull Request\n        if: github.repository_owner == 'briannesbitt'\n        uses: peter-evans/create-pull-request@v8\n        with:\n          branch: job/update-sponsors\n          commit-message: Update sponsors\n          title: Update sponsors\n          body: Monthly automated sponsors update\n          assignees: kylekatarnls\n          reviewers: kylekatarnls\n          add-paths: |\n            readme.md\n"
  },
  {
    "path": ".github/workflows/tests.yml",
    "content": "name: Tests\n\non: [ pull_request, push ]\n\njobs:\n  tests:\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ubuntu]\n        php: [8.1, 8.2, 8.3, 8.4, 8.5]\n        setup: [lowest, stable]\n        include:\n          - php: 8.1\n            os: windows\n            setup: lowest\n\n          - php: 8.1\n            os: windows\n            setup: stable\n\n          - php: 8.5\n            os: windows\n            setup: stable\n\n          - php: 8.1\n            os: ubuntu\n            setup: stable\n            classmap-authoritative: true\n\n          - php: 8.3\n            os: ubuntu\n            setup: stable\n            phpunit: 11\n            coverage: true\n\n          - php: 8.4\n            os: ubuntu\n            setup: stable\n            phpunit: 11\n\n          - php: 8.4\n            os: ubuntu\n            setup: stable\n            phpunit: 12\n\n    name: ${{ matrix.phpunit && format('PHPUnit {0} - ', matrix.phpunit) || '' }}${{ matrix.classmap-authoritative && 'classmap-authoritative - ' || '' }}${{ matrix.coverage && 'Coverage - ' || '' }}PHP ${{ matrix.php }} - ${{ matrix.setup || 'stable' }} - ${{ matrix.os }}\n\n    runs-on: ${{ matrix.os }}-latest\n\n    steps:\n      - name: Checkout the code\n        uses: actions/checkout@v6\n\n      - name: Setup PHP\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: ${{ matrix.php }}\n          extensions: json, msgpack\n          ini-values: error_reporting=${{ (matrix.setup != 'lowest') && '32767' || '8191' }}\n          tools: composer:v2\n          coverage: ${{ matrix.coverage && 'pcov' || 'none' }}\n\n      - name: Install locales\n        if: matrix.os == 'ubuntu'\n        run: |\n          sudo apt-get update || apt --fix-broken install || echo 'Apt failure ignored'\n          sudo apt-get install tzdata locales -y && sudo locale-gen fr_FR.UTF-8 sr_ME.UTF-8 ar_AE.UTF-8 zh_TW.UTF-8 zh_CN.UTF-8 yo_NG.UTF-8 en_US.UTF-8 || echo 'Apt failure ignored'\n\n      - name: Get composer cache directory\n        id: composer-cache\n        shell: bash\n        run: echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT\n\n      - name: Cache composer dependencies\n        uses: actions/cache@v5\n        with:\n          path: ${{ steps.composer-cache.outputs.dir }}\n          key: \"php-${{ matrix.php }}-${{ matrix.setup }}-${{ matrix.os }}-${{ matrix.phpunit }}-${{ hashFiles('**/composer.json') }}\"\n          restore-keys: \"php-${{ matrix.php }}-${{ matrix.setup }}-${{ matrix.os }}-${{ matrix.phpunit }}-${{ hashFiles('**/composer.json') }}\"\n\n      - name: Select PHPUnit version\n        if: matrix.phpunit\n        shell: bash\n        run: composer require --no-update --no-interaction --dev \"phpunit/phpunit:^${{ matrix.phpunit }}\"\n\n      - name: Remove conflicting optional dependencies\n        if: matrix.phpunit >= 11\n        run: composer remove --no-update --no-interaction --dev ondrejmirtes/better-reflection\n\n      - name: Downgrade nikic/php-parser\n        if: matrix.phpunit < 11 && matrix.php < 8.5\n        shell: bash\n        run: composer require --no-update --no-interaction --dev \"nikic/php-parser:^4\"\n\n      - name: Updgrade symfony/translation\n        if: matrix.php >= 8.4\n        shell: bash\n        run: composer require --no-update --no-interaction \"symfony/translation:^5.4.35||^6.3.12||^7.0.3||^8.0.0\" \"symfony/contracts:^2.5.3||>=3.4.2\" \"sebastian/exporter:>5.1.2\"\n        # https://github.com/symfony/symfony/commit/f4118e110a46de3ffb799e7d79bf15128d1646ea\n\n      - name: Install dependencies\n        uses: nick-fields/retry@v3\n        if: steps.composer-cache.outputs.cache-hit != 'true'\n        with:\n          timeout_minutes: 10\n          max_attempts: 3\n          command: |\n            composer remove --no-update --no-interaction --dev phpmd/phpmd friendsofphp/php-cs-fixer kylekatarnls/multi-tester;\n            composer update --prefer-dist --no-progress --prefer-${{ matrix.setup || 'stable' }} ${{ matrix.classmap-authoritative && '--classmap-authoritative' || '' }}${{ matrix.php >= 8.2 && ' --ignore-platform-reqs' || '' }};\n\n      - name: Run test suite\n        if: matrix.coverage != true\n        run: php -d memory_limit=-1 -d zend.enable_gc=0 -d error_reporting=-1 vendor/phpunit/phpunit/phpunit --exclude-testsuite=localization --default-time-limit=${{ matrix.php >= 8.2 && '2' || '4' }} ${{ matrix.os == 'ubuntu' && '--enforce-time-limit' || '' }} --display-incomplete --display-skipped --display-deprecations --display-errors --display-notices --display-warnings\n        env:\n          PHP_VERSION: ${{ matrix.php }}\n\n      - name: Run test suite with coverage\n        if: matrix.coverage\n        run: php -d memory_limit=-1 -d zend.enable_gc=0 -d error_reporting=-1 vendor/phpunit/phpunit/phpunit --default-time-limit=3 ${{ matrix.os == 'ubuntu' && '--enforce-time-limit' || '' }} --coverage-clover=clover.xml --coverage-text\n        env:\n          PHP_VERSION: ${{ matrix.php }}\n\n      - name: Code Climate Test Reporter\n        uses: qltysh/qlty-action/coverage@v2\n        if: matrix.coverage\n        with:\n          token: ${{ secrets.QLTY_COVERAGE_TOKEN }}\n          files: clover.xml\n\n      - name: Coverage\n        if: matrix.coverage\n        uses: codecov/codecov-action@v5\n        with:\n          token: ${{ secrets.CODECOV_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".idea\n.vscode\n*.iml\n.php-cs-fixer.php\n.php-cs-fixer.cache\nvendor\ncomposer.phar\ncomposer.lock\ncoverage.xml\ncoverage\nphpunit.xml\nCarbon-*.zip\n*.phpunit.result.cache\n/nbproject/\n*.cache\n"
  },
  {
    "path": ".php-cs-fixer.dist.php",
    "content": "<?php\n\nuse PhpCsFixer\\Config;\nuse PhpCsFixer\\Finder;\n\n$header = <<<'EOF'\nThis file is part of the Carbon package.\n\n(c) Brian Nesbitt <brian@nesbot.com>\n\nFor the full copyright and license information, please view the LICENSE\nfile that was distributed with this source code.\nEOF;\n\n$rules = [\n    '@PSR2' => true,\n    '@PSR12' => true,\n    '@PHP71Migration' => true,\n    'array_syntax' => [\n        'syntax' => 'short',\n    ],\n    'blank_line_after_namespace' => true,\n    'blank_line_before_statement' => true,\n    'cast_spaces' => true,\n    'class_definition' => false,\n    'concat_space' => [\n        'spacing' => 'none',\n    ],\n    'ereg_to_preg' => true,\n    'general_phpdoc_tag_rename' => true,\n    'header_comment' => [\n        'comment_type' => 'PHPDoc',\n        'header' => $header,\n        'location' => 'after_declare_strict',\n        'separate' => 'both',\n    ],\n    'is_null' => true,\n    'line_ending' => true,\n    'modernize_types_casting' => true,\n    'native_function_invocation' => [\n        'include' => ['@compiler_optimized', 'app'],\n    ],\n    'no_blank_lines_after_phpdoc' => true,\n    'no_empty_phpdoc' => true,\n    'no_extra_blank_lines' => true,\n    'no_short_bool_cast' => true,\n    'no_unneeded_control_parentheses' => true,\n    'no_unused_imports' => true,\n    'no_whitespace_in_blank_line' => true,\n    'ordered_imports' => true,\n    'php_unit_method_casing' => [\n        'case' => 'camel_case',\n    ],\n    'php_unit_test_annotation' => [\n        'style' => 'prefix',\n    ],\n    'php_unit_test_case_static_method_calls' => [\n        'call_type' => 'this',\n    ],\n    'phpdoc_align' => [\n        'align' => 'vertical',\n        'tags' => [\n            'param',\n            'return',\n            'throws',\n            'type',\n            'var',\n        ],\n    ],\n    'phpdoc_indent' => true,\n    'phpdoc_inline_tag_normalizer' => true,\n    'phpdoc_no_access' => true,\n    'phpdoc_no_package' => true,\n    'phpdoc_order' => true,\n    'phpdoc_scalar' => true,\n    'phpdoc_separation' => true,\n    'phpdoc_tag_type' => [\n        'tags' => [\n            'inheritdoc' => 'inline',\n        ],\n    ],\n    'phpdoc_to_comment' => true,\n    'phpdoc_trim' => true,\n    'phpdoc_types' => true,\n    'phpdoc_var_without_name' => true,\n    'self_accessor' => true,\n    'single_quote' => true,\n    'space_after_semicolon' => true,\n    'standardize_not_equals' => true,\n    'ternary_operator_spaces' => true,\n    'trailing_comma_in_multiline' => true,\n    'trim_array_spaces' => true,\n    'unary_operator_spaces' => true,\n    'yoda_style' => [\n        'always_move_variable' => false,\n        'equal' => false,\n        'identical' => false,\n        'less_and_greater' => false,\n    ],\n];\n\nreturn (new Config())->setRules($rules)\n    ->setFinder(\n        Finder::create()\n            ->in(__DIR__)\n            ->notPath([\n                'src/Carbon/Doctrine/DateTimeImmutableType.php',\n                'src/Carbon/Doctrine/DateTimeType.php',\n            ]),\n    )\n    ->setUsingCache(true)\n    ->setRiskyAllowed(true);\n"
  },
  {
    "path": ".phpstorm.meta.php",
    "content": "<?php\nnamespace PHPSTORM_META {\n    registerArgumentsSet(\"date_units\", \"millenania\", \"millennium\", \"century\", \"centuries\", \"decade\", \"decades\", \"year\", \"years\", \"y\", \"yr\", \"yrs\", \"quarter\", \"quarters\", \"month\", \"months\", \"mo\", \"mos\", \"week\", \"weeks\", \"w\", \"day\", \"days\", \"d\", \"hour\", \"hours\", \"h\", \"minute\", \"minutes\", \"m\", \"second\", \"seconds\", \"s\", \"millisecond\", \"milliseconds\", \"milli\", \"ms\", \"microsecond\", \"microseconds\", \"micro\", \"µs\");\n    expectedArguments(\\Carbon\\Traits\\Units::add(), 0, argumentsSet(\"date_units\"));\n    expectedArguments(\\Carbon\\Traits\\Units::add(), 1, argumentsSet(\"date_units\"));\n    expectedArguments(\\Carbon\\CarbonInterface::add(), 0, argumentsSet(\"date_units\"));\n    expectedArguments(\\Carbon\\CarbonInterface::add(), 1, argumentsSet(\"date_units\"));\n\n    expectedArguments(\\Carbon\\CarbonInterface::getTimeFormatByPrecision(), 0, \"minute\", \"second\", \"m\", \"millisecond\", \"µ\", \"microsecond\", \"minutes\", \"seconds\", \"ms\", \"milliseconds\", \"µs\", \"microseconds\");\n}\n"
  },
  {
    "path": ".styleci.yml",
    "content": "preset: psr2\n\n# Disabled, moved in .github/workflows/phpcs.yml\nfinder:\n  exclude:\n    - \"src\"\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright (C) Brian Nesbitt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "bin/carbon",
    "content": "#!/usr/bin/env php\n<?php\n\nuse Carbon\\Cli\\Invoker;\n\n$dir = __DIR__.'/..';\n\nif (!file_exists($dir.'/autoload.php')) {\n    $dir = __DIR__.'/../vendor';\n}\n\nif (!file_exists($dir.'/autoload.php')) {\n    $dir = __DIR__.'/../../..';\n}\n\nif (!file_exists($dir.'/autoload.php')) {\n    echo 'Autoload not found.';\n    exit(1);\n}\n\nrequire $dir.'/autoload.php';\n\nexit((new Invoker())(...$argv) ? 0 : 1);\n"
  },
  {
    "path": "bin/carbon.bat",
    "content": "@ECHO OFF\nsetlocal DISABLEDELAYEDEXPANSION\nSET BIN_TARGET=%~dp0/carbon\nphp \"%BIN_TARGET%\" %*\n"
  },
  {
    "path": "build.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nchdir(__DIR__);\n$currentBranch = 'master';\nif (preg_match('/On branch ([^\\n]+)\\n/', shell_exec('git status'), $match)) {\n    $currentBranch = $match[1];\n}\nshell_exec('git fetch --all --tags --prune');\n$remotes = explode(\"\\n\", trim(shell_exec('git remote')));\n$tagsCommand = \\count($remotes)\n    ? 'git ls-remote --tags '.(\\in_array('upstream', $remotes, true) ? 'upstream' : (\\in_array('origin', $remotes, true) ? 'origin' : $remotes[0]))\n    : 'git tag';\n$tags = array_map(function ($ref) {\n    $ref = explode('refs/tags/', $ref);\n\n    return $ref[1] ?? $ref[0];\n}, array_filter(explode(\"\\n\", trim(shell_exec($tagsCommand))), function ($ref) {\n    return substr($ref, -3) !== '^{}';\n}));\nusort($tags, 'version_compare');\n\n$tag = isset($argv[1]) && !\\in_array($argv[1], ['last', 'latest']) ? $argv[1] : end($tags);\n\nif (strtolower($tag) !== 'all') {\n    if (!\\in_array($tag, $tags, true)) {\n        echo \"Tag must be one of remote tags available:\\n\";\n        foreach ($tags as $_tag) {\n            echo \"  - $_tag\\n\";\n        }\n        echo \"\\\"$tag\\\" does not match.\\n\";\n\n        exit(1);\n    }\n\n    $tags = [$tag];\n}\n\nfunction getPhpLevel($tag)\n{\n    if (version_compare($tag, '2.0.0-dev', '<')) {\n        return '5.3.9';\n    }\n\n    if (version_compare($tag, '3.0.0-dev', '<')) {\n        return '7.1.8';\n    }\n\n    return '8.1.0';\n}\n\nforeach ($tags as $tag) {\n    $archive = \"Carbon-$tag.zip\";\n    if (isset($argv[2]) && $argv[2] === 'missing' && file_exists($archive)) {\n        continue;\n    }\n\n    $branch = \"build-$tag\";\n    shell_exec('git stash');\n    shell_exec(\"git branch -d $branch\");\n    shell_exec(\"git checkout tags/$tag -b $branch\");\n    $phpVersion = getPhpLevel($tag);\n    shell_exec(\"composer config platform.php $phpVersion\");\n    shell_exec('composer remove friendsofphp/php-cs-fixer --dev');\n    shell_exec('composer remove kylekatarnls/multi-tester --dev');\n    shell_exec('composer remove phpmd/phpmd --dev');\n    shell_exec('composer remove phpstan/phpstan --dev');\n    shell_exec('composer remove phpunit/phpunit --dev');\n    shell_exec('composer remove squizlabs/php_codesniffer --dev');\n    shell_exec('composer update --no-interaction --no-dev --optimize-autoloader');\n    $zip = new ZipArchive();\n\n    $zip->open($archive, ZipArchive::CREATE | ZipArchive::OVERWRITE);\n\n    foreach (['src', 'vendor', 'Carbon', 'lazy'] as $directory) {\n        if (is_dir($directory)) {\n            $directory = realpath($directory);\n            $base = \\dirname($directory);\n\n            $files = new RecursiveIteratorIterator(\n                new RecursiveDirectoryIterator($directory),\n                RecursiveIteratorIterator::LEAVES_ONLY,\n            );\n\n            foreach ($files as $name => $file) {\n                if (!$file->isDir()) {\n                    $filePath = $file->getRealPath();\n\n                    $zip->addFile($filePath, substr($filePath, \\strlen($base) + 1));\n                }\n            }\n        }\n    }\n\n    $autoload = 'autoload.php';\n    file_put_contents($autoload, \"<?php\\n\\n/**\\n * @version $tag\\n */\\n\\nrequire __DIR__.'/vendor/autoload.php';\\n\");\n    $zip->addFile($autoload, $autoload);\n    $zip->close();\n    unlink($autoload);\n\n    shell_exec('git checkout .');\n    shell_exec(\"git checkout $currentBranch\");\n    shell_exec(\"git branch -d $branch\");\n    shell_exec('git stash pop');\n    shell_exec('composer config platform.php 8.1.0');\n    shell_exec('composer update --no-interaction');\n}\n\nexit(0);\n"
  },
  {
    "path": "codecov.yml",
    "content": "comment: false\n"
  },
  {
    "path": "composer.json",
    "content": "{\n    \"name\": \"nesbot/carbon\",\n    \"description\": \"An API extension for DateTime that supports 281 different languages.\",\n    \"license\": \"MIT\",\n    \"type\": \"library\",\n    \"keywords\": [\n        \"date\",\n        \"time\",\n        \"DateTime\"\n    ],\n    \"authors\": [\n        {\n            \"name\": \"Brian Nesbitt\",\n            \"email\": \"brian@nesbot.com\",\n            \"homepage\": \"https://markido.com\"\n        },\n        {\n            \"name\": \"kylekatarnls\",\n            \"homepage\": \"https://github.com/kylekatarnls\"\n        }\n    ],\n    \"homepage\": \"https://carbonphp.github.io/carbon/\",\n    \"support\": {\n        \"issues\": \"https://github.com/CarbonPHP/carbon/issues\",\n        \"source\": \"https://github.com/CarbonPHP/carbon\",\n        \"docs\": \"https://carbonphp.github.io/carbon/guide/getting-started/introduction.html\"\n    },\n    \"funding\": [\n        {\n            \"url\": \"https://github.com/sponsors/kylekatarnls\",\n            \"type\": \"github\"\n        },\n        {\n            \"url\": \"https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme\",\n            \"type\": \"tidelift\"\n        },\n        {\n            \"url\": \"https://opencollective.com/Carbon#sponsor\",\n            \"type\": \"opencollective\"\n        }\n    ],\n    \"require\": {\n        \"php\": \"^8.1\",\n        \"ext-json\": \"*\",\n        \"carbonphp/carbon-doctrine-types\": \"<100.0\",\n        \"psr/clock\": \"^1.0\",\n        \"symfony/clock\": \"^6.3.12 || ^7.0 || ^8.0\",\n        \"symfony/polyfill-mbstring\": \"^1.0\",\n        \"symfony/translation\": \"^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0\"\n    },\n    \"require-dev\": {\n        \"doctrine/dbal\": \"^3.6.3 || ^4.0\",\n        \"doctrine/orm\": \"^2.15.2 || ^3.0\",\n        \"friendsofphp/php-cs-fixer\": \"^v3.87.1\",\n        \"kylekatarnls/multi-tester\": \"^2.5.3\",\n        \"phpmd/phpmd\": \"^2.15.0\",\n        \"phpstan/extension-installer\": \"^1.4.3\",\n        \"phpstan/phpstan\": \"^2.1.22\",\n        \"phpunit/phpunit\": \"^10.5.53\",\n        \"squizlabs/php_codesniffer\": \"^3.13.4 || ^4.0.0\"\n    },\n    \"provide\": {\n        \"psr/clock-implementation\": \"1.0\"\n    },\n    \"minimum-stability\": \"dev\",\n    \"prefer-stable\": true,\n    \"autoload\": {\n        \"psr-4\": {\n            \"Carbon\\\\\": \"src/Carbon/\"\n        }\n    },\n    \"autoload-dev\": {\n        \"psr-4\": {\n            \"Tests\\\\\": \"tests/\"\n        },\n        \"files\": [\n            \"tests/Laravel/ServiceProvider.php\"\n        ]\n    },\n    \"bin\": [\n        \"bin/carbon\"\n    ],\n    \"config\": {\n        \"allow-plugins\": {\n            \"phpstan/extension-installer\": true,\n            \"composer/package-versions-deprecated\": true\n        },\n        \"process-timeout\": 0,\n        \"sort-packages\": true\n    },\n    \"extra\": {\n        \"branch-alias\": {\n            \"dev-master\": \"3.x-dev\",\n            \"dev-2.x\": \"2.x-dev\"\n        },\n        \"laravel\": {\n            \"providers\": [\n                \"Carbon\\\\Laravel\\\\ServiceProvider\"\n            ]\n        },\n        \"phpstan\": {\n            \"includes\": [\n                \"extension.neon\"\n            ]\n        }\n    },\n    \"scripts\": {\n        \"phpcs\": \"php-cs-fixer fix -v --diff --dry-run\",\n        \"phpdoc\": \"php phpdoc.php\",\n        \"phpmd\": \"phpmd src text /phpmd.xml\",\n        \"phpmd-test\": \"phpmd tests text /tests/phpmd-test.xml\",\n        \"phpstan\": \"phpstan analyse --configuration phpstan.neon\",\n        \"phpunit\": \"phpunit --verbose\",\n        \"style-check\": [\n            \"@phpcs\",\n            \"@phpstan\",\n            \"@phpmd\"\n        ],\n        \"test\": [\n            \"@phpunit\",\n            \"@style-check\"\n        ],\n        \"sponsors\": \"php sponsors.php\"\n    }\n}\n"
  },
  {
    "path": "contributing.md",
    "content": "# Contributing to Carbon\n\n## Issue Contributions\n\nPlease report any security issue using [Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\nPlease don't disclose security bugs publicly until they have been handled by us.\n\nFor any other bug or issue, please click this link and follow the template:\n[Create new issue](https://github.com/CarbonPHP/carbon/issues/new)\n\nYou may think this template does not apply to your case but please think again. A long description will never be as\nclear as a code chunk with the output you expect from it (for either bug report or new features).\n\n## Code Contributions\n\n### Where to begin\n\nWe use the label **good first issue** to tag issues that could be a good fit for new contributors, see if there are such issues now following this link:\n\nhttps://github.com/CarbonPHP/carbon/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22\n\nElse, check the roadmap to see what we plan to do in next releases:\n\nhttps://github.com/briannesbitt/Carbon/issues/1681\n\n### Develop locally, then submit changes\n\nFork the [GitHub project](https://github.com/CarbonPHP/carbon) and download it locally:\n\n```shell\ngit clone https://github.com/<username>/carbon.git\ncd Carbon\ngit remote add upstream https://github.com/CarbonPHP/carbon.git\n```\nReplace `<username>` with your GitHub username.\n\nThen, you can work on the master or create a specific branch for your development:\n\n```shell\ngit checkout -b my-feature-branch -t origin/master\n```\n\nYou can now edit the \"Carbon\" directory contents.\n\nBefore committing, please set your name and your e-mail (use the same e-mail address as in your GitHub account):\n\n```shell\ngit config --global user.name \"Your Name\"\ngit config --global user.email \"your.email.address@example.com\"\n```\n\nThe ```--global``` argument will apply this setting for all your git repositories, remove it to set only your Carbon\nfork with those settings.\n\nNow you can commit your modifications as you usually do with git:\n\n```shell\ngit add --all\ngit commit -m \"The commit message log\"\n```\n\nIf your patch fixes an open issue, please insert ```#``` immediately followed by the issue number:\n\n```shell\ngit commit -m \"#21 Fix this or that\"\n```\n\nUse git rebase (not git merge) to sync your work from time to time:\n\n```shell\ngit fetch origin\ngit rebase origin/master\n```\n\nPlease add some tests for bug fixes and features (so it will ensure next developments will not break your code),\nthen check all is right with phpunit:\n\nInstall PHP if you haven't yet, then install composer:\nhttps://getcomposer.org/download/\n\nUpdate dependencies:\n```\n./composer.phar update\n```\n\nOr if you installed composer globally:\n```\ncomposer update\n```\n\nThen call phpunit:\n```\n./vendor/bin/phpunit\n```\n\nMake sure all tests succeed before submitting your pull-request, else we will not be able to merge it.\n\nPush your work on your remote GitHub fork with:\n```\ngit push origin my-feature-branch\n```\n\nGo to https://github.com/yourusername/Carbon and select your feature branch. Click the 'Pull Request' button and fill\nout the form.\n\nWe will review it within a few days. And we thank you in advance for your help.\n\n## Versioning\n\n### Note about Semantic Versioning and breaking changes\n\nAs a developer, you must understand every change is a breaking change. What is a bug for someone\nis expected in someone else's workflow. The consequence of a change strongly depends on the usage.\n[Semantic Versioning](https://semver.org/) relies to public API. In PHP, the public API of a class is its public\nmethods. However, if you extend a class, you can access protected methods, then if you use reflexion, you can\naccess private methods. So anything can become a public API if you force it to be. That doesn't mean we should handle\nany possible usage, else we would have to publish a major release for each change and it would no longer make sense.\n\nSo before any complain about a breaking change, be warned, we do not guarantee a strict Semantic Versioning as you\nmay expect, we're following a pragmatic interpretation of Semantic Versioning that allows the software to evolve in a\nreliable way with reasonable maintenance effort.\n\nConcretely, we consider a change as breaking if it makes fail one of our unit test. We will do our best to avoid\nincompatibilities with libraries that extends Carbon classes (such as Laravel that is continuously tested thanks to\nTravis CI, [see the compatibility matrix](https://github.com/kylekatarnls/carbon-laravel/tree/master#carbon-1-dev-version-1next)).\n\nIf you're the owner of a library that strongly depends on Carbon, we recommend you to run unit tests daily requiring\n`\"nesbot/carbon\": \"dev-master\"` (for `^2`) or `\"nesbot/carbon\": \"dev-version-1.next\"` (for `^1`), this way you can\ndetect incompatibilities earlier and report it to us before we tag a release. We'll pay attention and try to fix it to\nmake update to next minor releases as soft as possible.\n\nWe reserve the right to publish emergency patches within 24 hours after a release if a tag that does not respect\nthis pattern would have been released despite our vigilance. In this very rare and particular case, we would mark the\ntag as broken on GitHub and backward compatibility would be based on previous stable tag.\n\nLast, you must understand that Carbon extends PHP natives classes, that means Carbon can be impacted by any change\nthat occurs in the date/time API of PHP. We watch new PHP versions and handle those changes as quickly as possible\nwhen detected, but as PHP does not follow the semantic versioning pattern, it basically means any releases (including\npatches) can have unexpected consequences on Carbon methods results.\n\n### Long term support\n\nTo benefit the better support, require Carbon using major version range (`^1` or `^2`). By requiring `1.26.*`,\n`~1.26.0` or limited range such as `>=1.20 <1.33`, you fall to low priority support (only security and critical issues\nwill be fixed), our prior support goes to next minor releases of each major version. It applies to bug fixes and\nlow-cost features. Other new features will only be added in the last stable release. At the opposite, we recommend you\nto restrain to a major number, as there is no compatibility guarantee from a major version to the next. It means\nrequiring `>=2`, as it allows any newer version, will probably leads to errors on releasing our next major version.\n\nOpen milestones can be patched if a minor bug is detected while if you're on a closed milestone, we'll more likely\nask you to update first to an open one. See currently open milestones: \n\nhttps://github.com/CarbonPHP/carbon/milestones\n"
  },
  {
    "path": "extension.neon",
    "content": "services:\n    -\n        class: Carbon\\PHPStan\\MacroExtension\n        tags:\n            - phpstan.broker.methodsClassReflectionExtension\n"
  },
  {
    "path": "lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\MessageFormatter;\n\nuse Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface;\n\nif (!class_exists(LazyMessageFormatter::class, false)) {\n    abstract class LazyMessageFormatter implements MessageFormatterInterface\n    {\n        public function format(string $message, string $locale, array $parameters = []): string\n        {\n            return $this->formatter->format(\n                $message,\n                $this->transformLocale($locale),\n                $parameters\n            );\n        }\n    }\n}\n"
  },
  {
    "path": "lazy/Carbon/MessageFormatter/MessageFormatterMapperWeakType.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\MessageFormatter;\n\nuse Symfony\\Component\\Translation\\Formatter\\ChoiceMessageFormatterInterface;\nuse Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface;\n\nif (!class_exists(LazyMessageFormatter::class, false)) {\n    abstract class LazyMessageFormatter implements MessageFormatterInterface, ChoiceMessageFormatterInterface\n    {\n        abstract protected function transformLocale(?string $locale): ?string;\n\n        public function format($message, $locale, array $parameters = [])\n        {\n            return $this->formatter->format(\n                $message,\n                $this->transformLocale($locale),\n                $parameters\n            );\n        }\n\n        public function choiceFormat($message, $number, $locale, array $parameters = [])\n        {\n            return $this->formatter->choiceFormat($message, $number, $locale, $parameters);\n        }\n    }\n}\n"
  },
  {
    "path": "lazy/Carbon/ProtectedDatePeriod.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse DatePeriod;\n\nif (!class_exists(DatePeriodBase::class, false)) {\n    class DatePeriodBase extends DatePeriod\n    {\n        /**\n         * Period start in PHP < 8.2.\n         *\n         * @var CarbonInterface\n         *\n         * @deprecated PHP 8.2 this property is no longer in sync with the actual period start.\n         */\n        protected $start;\n\n        /**\n         * Period end in PHP < 8.2.\n         *\n         * @var CarbonInterface|null\n         *\n         * @deprecated PHP 8.2 this property is no longer in sync with the actual period end.\n         */\n        protected $end;\n\n        /**\n         * Period current iterated date in PHP < 8.2.\n         *\n         * @var CarbonInterface|null\n         *\n         * @deprecated PHP 8.2 this property is no longer in sync with the actual period current iterated date.\n         */\n        protected $current;\n\n        /**\n         * Period interval in PHP < 8.2.\n         *\n         * @var CarbonInterval|null\n         *\n         * @deprecated PHP 8.2 this property is no longer in sync with the actual period interval.\n         */\n        protected $interval;\n\n        /**\n         * Period recurrences in PHP < 8.2.\n         *\n         * @var int|float|null\n         *\n         * @deprecated PHP 8.2 this property is no longer in sync with the actual period recurrences.\n         */\n        protected $recurrences;\n\n        /**\n         * Period start included option in PHP < 8.2.\n         *\n         * @var bool\n         *\n         * @deprecated PHP 8.2 this property is no longer in sync with the actual period start included option.\n         */\n        protected $include_start_date;\n    }\n}\n"
  },
  {
    "path": "lazy/Carbon/TranslatorStrongType.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Symfony\\Component\\Translation\\MessageCatalogueInterface;\n\nif (!class_exists(LazyTranslator::class, false)) {\n    class LazyTranslator extends AbstractTranslator implements TranslatorStrongTypeInterface\n    {\n        public function trans(?string $id, array $parameters = [], ?string $domain = null, ?string $locale = null): string\n        {\n            return $this->translate($id, $parameters, $domain, $locale);\n        }\n\n        public function getFromCatalogue(MessageCatalogueInterface $catalogue, string $id, string $domain = 'messages')\n        {\n            $messages = $this->getPrivateProperty($catalogue, 'messages');\n\n            if (isset($messages[$domain.MessageCatalogueInterface::INTL_DOMAIN_SUFFIX][$id])) {\n                return $messages[$domain.MessageCatalogueInterface::INTL_DOMAIN_SUFFIX][$id];\n            }\n\n            if (isset($messages[$domain][$id])) {\n                return $messages[$domain][$id];\n            }\n\n            $fallbackCatalogue = $this->getPrivateProperty($catalogue, 'fallbackCatalogue');\n\n            if ($fallbackCatalogue !== null) {\n                return $this->getFromCatalogue($fallbackCatalogue, $id, $domain);\n            }\n\n            return $id;\n        }\n\n        private function getPrivateProperty($instance, string $field)\n        {\n            return (function (string $field) {\n                return $this->$field;\n            })->call($instance, $field);\n        }\n    }\n}\n"
  },
  {
    "path": "lazy/Carbon/TranslatorWeakType.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nif (!class_exists(LazyTranslator::class, false)) {\n    class LazyTranslator extends AbstractTranslator\n    {\n        /**\n         * Returns the translation.\n         *\n         * @param string|null $id\n         * @param array       $parameters\n         * @param string|null $domain\n         * @param string|null $locale\n         *\n         * @return string\n         */\n        public function trans($id, array $parameters = [], $domain = null, $locale = null)\n        {\n            return $this->translate($id, $parameters, $domain, $locale);\n        }\n    }\n}\n"
  },
  {
    "path": "lazy/Carbon/UnprotectedDatePeriod.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse DatePeriod;\n\nif (!class_exists(DatePeriodBase::class, false)) {\n    class DatePeriodBase extends DatePeriod\n    {\n    }\n}\n"
  },
  {
    "path": "phpdoc.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\Factory;\nuse Carbon\\FactoryImmutable;\n\n$tags = [\n    'property',\n    'property-read',\n    'property-write',\n    PHP_EOL,\n    'mode',\n    ['call', 'is'],\n    ['call', 'isDayOfWeek'],\n    ['call', 'isSameUnit'],\n    ['call', 'setUnit'],\n    ['call', 'addUnit'],\n    ['call', 'addUTCUnit'],\n    ['call', 'roundUnit'],\n    ['call', 'diffForHumans'],\n];\n$nativeMethods = [\n    'getOffset' => 'int',\n    'getTimestamp' => 'int',\n];\n$noInterface = [\n    'setMicrosecond',\n];\n$modes = [];\n$autoDocLines = [];\n$carbon = __DIR__.'/src/Carbon/Carbon.php';\n$immutable = __DIR__.'/src/Carbon/CarbonImmutable.php';\n$interface = __DIR__.'/src/Carbon/CarbonInterface.php';\n$phpLevel = 7.1;\nfile_put_contents($interface, preg_replace('/(\\/\\/ <methods[\\s\\S]*>)([\\s\\S]+)(<\\/methods>)/mU', \"$1\\n\\n    // $3\", file_get_contents($interface), 1));\nrequire_once __DIR__.'/vendor/autoload.php';\n$trait = __DIR__.'/src/Carbon/Traits/Date.php';\n$code = '';\n$overrideTyping = [\n    $carbon => [\n        // 'createFromImmutable' => ['static Carbon', 'DateTimeImmutable $dateTime', 'Create a new Carbon object from an immutable date.'],\n        // 'createFromFormat' => ['static static', 'string $format, string $time, DateTimeZone|string|false|null $timezone = null', 'Parse a string into a new Carbon object according to the specified format.'],\n        // '__set_state' => ['static static', 'array $array', 'https://php.net/manual/en/datetime.set-state.php'],\n    ],\n    $immutable => [\n        // 'createFromMutable' => ['static CarbonImmutable', 'DateTime $dateTime', 'Create a new CarbonImmutable object from an immutable date.'],\n        // 'createFromFormat' => ['static static', 'string $format, string $time, DateTimeZone|string|false|null $timezone = null', 'Parse a string into a new CarbonImmutable object according to the specified format.'],\n        // '__set_state' => ['static static', 'array $array', 'https://php.net/manual/en/datetime.set-state.php'],\n    ],\n];\n\nforeach (glob(__DIR__.'/src/Carbon/Traits/*.php') as $file) {\n    $code .= file_get_contents($file);\n}\n\nfunction unitName($unit)\n{\n    return match ($unit) {\n        'milli' => 'millisecond',\n        'micro' => 'microsecond',\n        default => $unit,\n    };\n}\n\nfunction pluralize($word)\n{\n    if (preg_match('/(millenni)um$/i', $word)) {\n        return preg_replace('/(millenni)um$/i', '$1a', $word);\n    }\n\n    return preg_replace('/(centur)y$/i', '$1ie', $word).'s';\n}\n\nfunction dumpValue($value)\n{\n    if ($value === null) {\n        return 'null';\n    }\n\n    if ($value === CarbonInterface::TRANSLATE_ALL) {\n        return 'CarbonInterface::TRANSLATE_ALL';\n    }\n\n    $value = preg_replace('/^array\\s*\\(\\s*\\)$/', '[]', var_export($value, true));\n    $value = preg_replace('/^array\\s*\\(([\\s\\S]+)\\)$/', '[$1]', $value);\n\n    return $value;\n}\n\nfunction cleanClassName($name)\n{\n    if ($name === 'CarbonInterval') {\n        throw new \\Exception('stop');\n    }\n\n    if (preg_match('/^[A-Z]/', $name)) {\n        $name = \"\\\\$name\";\n    }\n\n    if ($name === '\\\\Symfony\\\\Contracts\\\\Translation\\\\TranslatorInterface') {\n        return 'TranslatorInterface';\n    }\n\n    return preg_replace('/^\\\\\\\\(Date(?:Time(?:Immutable|Interface|Zone)?|Interval)|[a-z]*Exception|Closure)$/i', '$1', preg_replace('/^\\\\\\\\Carbon\\\\\\\\/', '', $name));\n}\n\nfunction dumpType(ReflectionType $type, bool $deep = true, bool $allowsNull = false): string\n{\n    if ($type instanceof ReflectionUnionType) {\n        return ($deep ? '(' : '').implode('|', array_map(\n            dumpType(...),\n            $type->getTypes(),\n        )).($deep ? ')' : '');\n    }\n\n    if ($type instanceof ReflectionIntersectionType) {\n        return ($deep ? '(' : '').implode('&', array_map(\n            dumpType(...),\n            $type->getTypes(),\n        )).($deep ? ')' : '');\n    }\n\n    $name = cleanClassName($type instanceof ReflectionNamedType ? $type->getName() : (string) $type);\n    $nullable = $allowsNull && $name !== 'mixed';\n\n    return (!$deep && $nullable ? '?' : '').\n        $name.\n        ($deep && $nullable ? '|null' : '');\n}\n\nfunction dumpParameter(string $method, ReflectionParameter $parameter): string\n{\n    global $defaultValues;\n\n    $name = $parameter->getName();\n    $output = '$'.$name;\n\n    if ($parameter->isVariadic()) {\n        $output = \"...$output\";\n    }\n\n    if ($parameter->hasType()) {\n        $output = dumpType($parameter->getType(), false, $parameter->allowsNull()).\" $output\";\n    }\n\n    if (isset($defaultValues[$method])) {\n        if (isset($defaultValues[$method][$name])) {\n            $output .= ' = '.dumpValue($defaultValues[$method][$name]);\n        }\n\n        return $output;\n    }\n\n    if ($parameter->isDefaultValueAvailable()) {\n        $output .= ' = '.dumpValue($parameter->getDefaultValue());\n    }\n\n    return $output;\n}\n\n$deprecated = [];\n\nforeach ($tags as $tag) {\n    if (\\is_array($tag)) {\n        [$tag, $pattern] = $tag;\n    }\n\n    $pattern ??= '\\S+';\n\n    if ($tag === PHP_EOL) {\n        $autoDocLines[] = '';\n\n        continue;\n    }\n\n    $unitOfUnit = [];\n    preg_match_all('/\\/\\/ @'.$tag.'\\s+(?<type>'.$pattern.')(?:\\s+\\$(?<name>\\S+)(?:[^\\S\\n](?<description>.*))?\\n|(?:[^\\S\\n](?<description2>.*))?\\n(?<comments>(?:[ \\t]+\\/\\/[^\\n]*\\n)*)[^\\']*\\'(?<name2>[^\\']+)\\')/', $code, $oneLine, PREG_SET_ORDER);\n    preg_match_all('/\\/\\* *@'.$tag.'\\s+(?<type>'.$pattern.') *\\*\\/[^\\']*\\'(?<name2>[^\\']+)\\'/', $code, $multiLine, PREG_SET_ORDER);\n\n    foreach ([...$oneLine, ...$multiLine] as $match) {\n        $vars = (object) $match;\n        $deprecation = null;\n\n        if (isset($vars->comments) && preg_match(\n            '`^[ \\t]+(//|/*|#)[ \\t]*@deprecated(?:\\s(?<deprecation>[\\s\\S]*))?$`',\n            $vars->comments,\n            $comments\n        )) {\n            ['deprecation' => $deprecation] = $comments;\n            $deprecation = preg_replace('/^\\s*(\\/\\/|#|\\*) {0,3}/m', '', trim($deprecation));\n\n            if (preg_match('/^(?:[a-z]+:[^\\n]+\\n)+$/', \"$deprecation\\n\")) {\n                $data = [];\n\n                foreach (explode(\"\\n\", $deprecation) as $line) {\n                    [$name, $value] = array_map('trim', explode(':', $line, 2));\n\n                    $data[$name] = $value;\n                }\n\n                $deprecation = $data;\n            } else {\n                $deprecation = ['reason' => $deprecation];\n            }\n        }\n\n        $vars->name = ($vars->name ?? null) ?: ($vars->name2 ?? '');\n        $vars->description = ($vars->description ?? null) ?: ($vars->description2 ?? '');\n\n        if ($tag === 'mode') {\n            $modes[$vars->type] ??= [];\n            $modes[$vars->type][] = $vars->name;\n\n            continue;\n        }\n\n        if ($tag === 'call') {\n            switch ($vars->type) {\n                case 'diffForHumans':\n                    foreach ($modes[$vars->type] as $mode) {\n                        $autoDocLines[] = [\n                            '@method',\n                            'string',\n                            \"$mode{$vars->name}DiffForHumans(DateTimeInterface \\$other = null, int \\$parts = 1)\",\n                            \"Get the difference ($mode format, '{$vars->name}' mode) in a human readable format in the current locale. (\\$other and \\$parts parameters can be swapped.)\",\n                        ];\n                    }\n\n                    break;\n\n                case 'isDayOfWeek':\n                    $autoDocLines[] = [\n                        '@method',\n                        'bool',\n                        'is'.ucFirst($vars->name).'()',\n                        'Checks if the instance day is '.unitName(strtolower($vars->name)).'.',\n                    ];\n\n                    break;\n\n                case 'is':\n                    $autoDocLines[] = [\n                        '@method',\n                        'bool',\n                        'is'.ucFirst($vars->name).'()',\n                        $vars->description,\n                    ];\n\n                    break;\n\n                case 'isSameUnit':\n                    $unit = $vars->name;\n                    $unitName = unitName($unit);\n                    $method = 'isSame'.ucFirst($unit);\n\n                    if (!method_exists(Carbon::class, $method)) {\n                        $autoDocLines[] = [\n                            '@method',\n                            'bool',\n                            $method.'(DateTimeInterface|string $date)',\n                            \"Checks if the given date is in the same $unitName as the instance. If null passed, compare to now (with the same timezone).\",\n                        ];\n                    }\n\n                    $autoDocLines[] = [\n                        '@method',\n                        'bool',\n                        'isCurrent'.ucFirst($unit).'()',\n                        \"Checks if the instance is in the same $unitName as the current moment.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'bool',\n                        'isNext'.ucFirst($unit).'()',\n                        \"Checks if the instance is in the same $unitName as the current moment next $unitName.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'bool',\n                        'isLast'.ucFirst($unit).'()',\n                        \"Checks if the instance is in the same $unitName as the current moment last $unitName.\",\n                    ];\n\n                    break;\n\n                case 'setUnit':\n                    $unit = $vars->name;\n                    $unitName = unitName($unit);\n                    $plUnit = pluralize($unit);\n                    $enums = $unitName === 'month' ? 'Month|' : '';\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        \"$plUnit({$enums}int \\$value)\",\n                        \"Set current instance $unitName to the given value.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        \"$unit({$enums}int \\$value)\",\n                        \"Set current instance $unitName to the given value.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'set'.ucfirst($plUnit).\"({$enums}int \\$value)\",\n                        \"Set current instance $unitName to the given value.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'set'.ucfirst($unit).\"({$enums}int \\$value)\",\n                        \"Set current instance $unitName to the given value.\",\n                    ];\n\n                    break;\n\n                case 'addUnit':\n                    $unit = $vars->name;\n                    $unitName = unitName($unit);\n                    $plUnit = pluralize($unit);\n                    $plUnitName = pluralize($unitName);\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'add'.ucFirst($plUnit).'(int|float $value = 1)',\n                        \"Add $plUnitName (the \\$value count passed in) to the instance (using date interval).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'add'.ucFirst($unit).'()',\n                        \"Add one $unitName to the instance (using date interval).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'sub'.ucFirst($plUnit).'(int|float $value = 1)',\n                        \"Sub $plUnitName (the \\$value count passed in) to the instance (using date interval).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'sub'.ucFirst($unit).'()',\n                        \"Sub one $unitName to the instance (using date interval).\",\n                    ];\n\n                    if (\\in_array($unit, [\n                        'month',\n                        'quarter',\n                        'year',\n                        'decade',\n                        'century',\n                        'millennium',\n                    ])) {\n                        $autoDocLines[] = [\n                            '@method',\n                            'self',\n                            'add'.ucFirst($plUnit).'WithOverflow(int|float $value = 1)',\n                            \"Add $plUnitName (the \\$value count passed in) to the instance (using date interval) with overflow explicitly allowed.\",\n                        ];\n                        $autoDocLines[] = [\n                            '@method',\n                            'self',\n                            'add'.ucFirst($unit).'WithOverflow()',\n                            \"Add one $unitName to the instance (using date interval) with overflow explicitly allowed.\",\n                        ];\n                        $autoDocLines[] = [\n                            '@method',\n                            'self',\n                            'sub'.ucFirst($plUnit).'WithOverflow(int|float $value = 1)',\n                            \"Sub $plUnitName (the \\$value count passed in) to the instance (using date interval) with overflow explicitly allowed.\",\n                        ];\n                        $autoDocLines[] = [\n                            '@method',\n                            'self',\n                            'sub'.ucFirst($unit).'WithOverflow()',\n                            \"Sub one $unitName to the instance (using date interval) with overflow explicitly allowed.\",\n                        ];\n\n                        foreach (['WithoutOverflow', 'WithNoOverflow', 'NoOverflow'] as $alias) {\n                            $autoDocLines[] = [\n                                '@method',\n                                'self',\n                                'add'.ucFirst($plUnit).\"$alias(int|float \\$value = 1)\",\n                                \"Add $plUnitName (the \\$value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\",\n                            ];\n                            $autoDocLines[] = [\n                                '@method',\n                                'self',\n                                'add'.ucFirst($unit).\"$alias()\",\n                                \"Add one $unitName to the instance (using date interval) with overflow explicitly forbidden.\",\n                            ];\n                            $autoDocLines[] = [\n                                '@method',\n                                'self',\n                                'sub'.ucFirst($plUnit).\"$alias(int|float \\$value = 1)\",\n                                \"Sub $plUnitName (the \\$value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\",\n                            ];\n                            $autoDocLines[] = [\n                                '@method',\n                                'self',\n                                'sub'.ucFirst($unit).\"$alias()\",\n                                \"Sub one $unitName to the instance (using date interval) with overflow explicitly forbidden.\",\n                            ];\n                        }\n\n                        break;\n                    }\n\n                    break;\n\n                case 'addUTCUnit':\n                    $unit = $vars->name;\n                    $unitName = unitName($unit);\n                    $plUnit = pluralize($unit);\n                    $plUnitName = pluralize($unitName);\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'addUTC'.ucFirst($plUnit).'(int|float $value = 1)',\n                        \"Add $plUnitName (the \\$value count passed in) to the instance (using timestamp).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'addUTC'.ucFirst($unit).'()',\n                        \"Add one $unitName to the instance (using timestamp).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'subUTC'.ucFirst($plUnit).'(int|float $value = 1)',\n                        \"Sub $plUnitName (the \\$value count passed in) to the instance (using timestamp).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'subUTC'.ucFirst($unit).'()',\n                        \"Sub one $unitName to the instance (using timestamp).\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'CarbonPeriod',\n                        $plUnit.'Until($endDate = null, int|float $factor = 1)',\n                        \"Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each $unitName or every X $plUnitName if a factor is given.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'float',\n                        'diffInUTC'.ucFirst($plUnit).'(DateTimeInterface|string|null $date, bool $absolute = false)',\n                        \"Convert current and given date in UTC timezone and return a floating number of $plUnitName.\",\n                    ];\n\n                    break;\n\n                case 'roundUnit':\n                    $unit = $vars->name;\n                    $unitName = unitName($unit);\n                    $plUnit = pluralize($unit);\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'round'.ucFirst($unit).'(float $precision = 1, string $function = \"round\")',\n                        \"Round the current instance $unitName with given precision using the given function.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'round'.ucFirst($plUnit).'(float $precision = 1, string $function = \"round\")',\n                        \"Round the current instance $unitName with given precision using the given function.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'floor'.ucFirst($unit).'(float $precision = 1)',\n                        \"Truncate the current instance $unitName with given precision.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'floor'.ucFirst($plUnit).'(float $precision = 1)',\n                        \"Truncate the current instance $unitName with given precision.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'ceil'.ucFirst($unit).'(float $precision = 1)',\n                        \"Ceil the current instance $unitName with given precision.\",\n                    ];\n                    $autoDocLines[] = [\n                        '@method',\n                        'self',\n                        'ceil'.ucFirst($plUnit).'(float $precision = 1)',\n                        \"Ceil the current instance $unitName with given precision.\",\n                    ];\n\n                    break;\n            }\n\n            continue;\n        }\n\n        $description = trim($vars->description);\n        $variable = $vars->name;\n\n        if (str_starts_with($description, '$')) {\n            [$variable, $description] = explode(' ', $description, 2);\n            $variable = ltrim($variable, '$');\n            $description = ltrim($description);\n        }\n\n        if ($deprecation !== null) {\n            $deprecated[$tag] = $deprecated[$tag] ?? [];\n            $deprecated[$tag][] = [\n                'deprecation' => $deprecation,\n                'type' => $vars->type,\n                'variable' => $variable,\n                'description' => $description ?: '',\n            ];\n\n            continue;\n        }\n\n        if (\n            \\in_array($tag, ['property', 'property-read'], true) &&\n            preg_match('/^[a-z]{2,}(?<operator>In|Of)[A-Z][a-z]+$/', $vars->name, $match)\n        ) {\n            $unitOfUnit[$vars->name] = [\n                '@'.($match['operator'] === 'Of' ? 'property' : 'property-read'),\n                $vars->type,\n                '$'.$variable,\n                $description ?: '',\n            ];\n\n            continue;\n        }\n\n        $autoDocLines[] = [\n            '@'.$tag,\n            $vars->type,\n            '$'.$variable,\n            $description ?: '',\n        ];\n    }\n\n    if ($tag === 'property') {\n        $units = ['microseconds', 'milliseconds', 'seconds', 'minutes', 'hours', 'days', 'weeks', 'months', 'quarters', 'years', 'decades', 'centuries', 'millennia'];\n\n        foreach ($units as $small) {\n            array_shift($units);\n\n            foreach ($units as $big) {\n                $singularSmall = Carbon::singularUnit($small);\n                $singularBig = Carbon::singularUnit($big);\n                $name = $singularSmall.'Of'.ucfirst($singularBig);\n                $unitOfUnit[$name] ??= [\n                    '@property',\n                    'int',\n                    '$'.$name,\n                    'The value of the '.$singularSmall.' starting from the beginning of the current '.$singularBig,\n                ];\n            }\n        }\n\n        ksort($unitOfUnit);\n\n        array_push($autoDocLines, ...array_values($unitOfUnit));\n    }\n\n    if ($tag === 'property-read') {\n        $units = ['microseconds', 'milliseconds', 'seconds', 'minutes', 'hours', 'days', 'weeks', 'months', 'quarters', 'years', 'decades', 'centuries', 'millennia'];\n\n        foreach ($units as $small) {\n            array_shift($units);\n\n            foreach ($units as $big) {\n                $singularSmall = Carbon::singularUnit($small);\n                $singularBig = Carbon::singularUnit($big);\n                $name = $small.'In'.ucfirst($singularBig);\n                $unitOfUnit[$name] ??= [\n                    '@property-read',\n                    'int',\n                    '$'.$name,\n                    'The number of '.$small.' contained in the current '.$singularBig,\n                ];\n            }\n        }\n\n        ksort($unitOfUnit);\n\n        array_push($autoDocLines, ...array_values($unitOfUnit));\n    }\n}\n\n$units = ['microseconds', 'milliseconds', 'seconds', 'minutes', 'hours', 'days', 'weeks', 'months', 'quarters', 'years', 'decades', 'centuries', 'millennia'];\n$unitOfUnit = [\n    'dayOfYear' => false,\n    'weeksInYear' => false,\n];\n\nforeach ($units as $small) {\n    array_shift($units);\n\n    foreach ($units as $big) {\n        $singularSmall = Carbon::singularUnit($small);\n        $singularBig = Carbon::singularUnit($big);\n        $name = $singularSmall.'Of'.ucfirst($singularBig);\n        $unitOfUnit[$name] ??= [\n            '@method',\n            'int|static',\n            $name.'(?int $'.$singularSmall.' = null)',\n            'Return the value of the '.$singularSmall.' starting from the beginning of the current '.$singularBig.' when called with no parameters, change the current '.$singularSmall.' when called with an integer value',\n        ];\n        $name = $small.'In'.ucfirst($singularBig);\n        $unitOfUnit[$name] ??= [\n            '@method',\n            'int',\n            $name.'()',\n            'Return the number of '.$small.' contained in the current '.$singularBig,\n        ];\n    }\n}\n\nksort($unitOfUnit);\n\narray_push($autoDocLines, ...array_values(array_filter($unitOfUnit)));\n\n$propertyTemplate = '\n    /**\n     * %description%\n     *\n     * @var %type%\n     *\n     * @deprecated %line1%\n     *             %line2%\n     */\n    public $%variable%;\n';\n\n$lineGlue = preg_replace('/^[\\s\\S]*%line1%([\\s\\S]*)%line2%[\\s\\S]*$/', '$1', $propertyTemplate);\n$propertyTemplate = preg_replace('/(%line1%[\\s\\S]*%line2%)/', '%deprecation%', $propertyTemplate);\n\nfunction compileDoc($autoDocLines, $file)\n{\n    global $noInterface;\n\n    $class = 'CarbonInterface';\n\n    if (preg_match('`[\\\\\\\\/](Carbon\\w*)\\.php$`', $file, $match)) {\n        $class = $match[1];\n    }\n\n    $autoDoc = '';\n    $columnsMaxLengths = [];\n\n    foreach ($autoDocLines as &$editableLine) {\n        if (\\is_array($editableLine)) {\n            [$method] = explode('(', $editableLine[2] ?? '');\n\n            if (\\in_array($method, $noInterface)) {\n                continue;\n            }\n\n            if (($editableLine[1] ?? '') === 'self') {\n                $editableLine[1] = $class === 'Carbon' ? '$this' : $class;\n            }\n\n            foreach ($editableLine as $column => $text) {\n                $length = \\strlen($text);\n                $max = $columnsMaxLengths[$column] ?? 0;\n\n                if ($length > $max) {\n                    $columnsMaxLengths[$column] = $length;\n                }\n            }\n        }\n    }\n\n    foreach ($autoDocLines as $line) {\n        $autoDoc .= \"\\n *\";\n        if (\\is_string($line)) {\n            if (!empty($line)) {\n                $autoDoc .= \" $line\";\n            }\n\n            continue;\n        }\n\n        $computedLine = ' ';\n        foreach ($line as $column => $text) {\n            $computedLine .= str_pad($text, $columnsMaxLengths[$column] + 1, ' ', STR_PAD_RIGHT);\n        }\n\n        $autoDoc .= rtrim($computedLine);\n    }\n\n    return $autoDoc;\n}\n\n$files = new stdClass();\n\nforeach ([$trait, $carbon, $immutable, $interface] as $file) {\n    $content = file_get_contents($file);\n    $files->$file = preg_replace_callback('/(<autodoc[\\s\\S]*>)([\\s\\S]+)(<\\/autodoc>)/mU', function ($matches) use ($file, $autoDocLines, $overrideTyping) {\n        foreach (($overrideTyping[$file] ?? []) as $method => $line) {\n            $line[1] = $method.'('.$line[1].')';\n            array_unshift($line, '@method');\n            $autoDocLines[] = $line;\n        }\n\n        $autoDoc = compileDoc($autoDocLines, $file);\n\n        return $matches[1].\"\\n *$autoDoc\\n *\\n * \".$matches[3];\n    }, $content, 1);\n}\n\n$staticMethods = [];\n$staticImmutableMethods = [];\n$methods = '';\n$carbonMethods = get_class_methods(Carbon::class);\nsort($carbonMethods);\n\nfunction getMethodReturnType(ReflectionMethod $method): string\n{\n    $type = $method->getReturnType();\n    $type = $type ? dumpType($type, false, $type->allowsNull()) : null;\n\n    return $type ? ': '.$type : '';\n}\n\nforeach ($carbonMethods as $method) {\n    if (!method_exists(CarbonImmutable::class, $method) ||\n        method_exists(DateTimeInterface::class, $method) ||\n        \\in_array($method, ['diff', 'createFromInterface'], true)\n    ) {\n        continue;\n    }\n\n    $function = new ReflectionMethod(Carbon::class, $method);\n    $static = $function->isStatic() ? ' static' : '';\n    $parameters = implode(', ', array_map(function (ReflectionParameter $parameter) use ($method) {\n        return dumpParameter($method, $parameter);\n    }, $function->getParameters()));\n    $methodDocBlock = $function->getDocComment() ?: '';\n\n    if (!str_starts_with($method, '__') && $function->isStatic()) {\n        $doc = preg_replace('/^\\/\\*+\\n([\\s\\S]+)\\s*\\*\\//', '$1', $methodDocBlock);\n        $doc = preg_replace('/^\\s*\\*\\s?/m', '', $doc);\n        $doc = explode(\"\\n@\", $doc, 2);\n        $doc = preg_split('/(\\r\\n|\\r|\\n)/', trim($doc[0]));\n        $returnType = $function->getReturnType();\n\n        if ($returnType instanceof ReflectionType) {\n            $returnType = dumpType($returnType, false, $returnType->allowsNull());\n        }\n\n        if (!$returnType && preg_match('/\\*\\s*@returns?\\s+(\\S+)/', $methodDocBlock, $match)) {\n            $returnType = $match[1];\n        }\n\n        $returnType = str_replace('static|CarbonInterface', 'static', $returnType ?: 'static');\n        if (!method_exists(Factory::class, $method)) {\n            $staticMethods[] = [\n                '@method',\n                str_replace(['self', 'static'], 'Carbon', $returnType),\n                \"$method($parameters)\",\n                $doc[0],\n            ];\n\n            for ($i = 1; $i < \\count($doc); $i++) {\n                $staticMethods[] = ['', '', '', $doc[$i]];\n            }\n        }\n\n        if (!method_exists(FactoryImmutable::class, $method)) {\n            $staticImmutableMethods[] = [\n                '@method',\n                str_replace(['self', 'static'], 'CarbonImmutable', $returnType),\n                \"$method($parameters)\",\n                $doc[0],\n            ];\n\n            for ($i = 1; $i < \\count($doc); $i++) {\n                $staticImmutableMethods[] = ['', '', '', $doc[$i]];\n            }\n        }\n    }\n\n    $return = getMethodReturnType($function);\n\n    if (!empty($methodDocBlock)) {\n        $methodDocBlock = \"\\n    $methodDocBlock\";\n    } elseif (isset($nativeMethods[$method])) {\n        $link = strtolower($method);\n        $methodDocBlock = \"\\n    /**\\n\".\n            \"     * Calls DateTime::$method if mutable or DateTimeImmutable::$method else.\\n\".\n            \"     *\\n\".\n            \"     * @see https://php.net/manual/en/datetime.$link.php\\n\".\n            '     */';\n    }\n\n    if (str_contains($return, 'self') && $phpLevel < 7.4) {\n        $return = '';\n    }\n\n    if ($method === '__toString' && $phpLevel < 8) {\n        $return = '';\n    }\n\n    if (method_exists($function, 'getAttributes') && ($attributes = $function->getAttributes())) {\n        foreach ($attributes as $attribute) {\n            $methodDocBlock .= \"\\n    #[\".$attribute->getName().']';\n        }\n    }\n\n    if (!\\in_array($method, $noInterface)) {\n        $methods .= \"\\n$methodDocBlock\\n    public$static function $method($parameters)$return;\";\n    }\n}\n\n$files->$interface = strtr(preg_replace_callback(\n    '/(\\/\\/ <methods[\\s\\S]*>)([\\s\\S]+)(<\\/methods>)/mU',\n    static fn ($matches) => \"{$matches[1]}$methods\\n\\n    // {$matches[3]}\",\n    $files->$interface,\n    1,\n), [\n    '|CarbonInterface' => '|self',\n    'CarbonInterface::TRANSLATE_ALL' => 'self::TRANSLATE_ALL',\n]);\n\n$factories = [\n    __DIR__.'/src/Carbon/Factory.php' => $staticMethods,\n    __DIR__.'/src/Carbon/FactoryImmutable.php' => $staticImmutableMethods,\n];\n\nforeach ($factories as $file => $methods) {\n    $autoDoc = compileDoc($methods, $file);\n    $content = file_get_contents($file);\n    $files->$file = preg_replace_callback(\n        '/(<autodoc[\\s\\S]*>)([\\s\\S]+)(<\\/autodoc>)/mU',\n        static fn ($matches) => \"{$matches[1]}\\n *$autoDoc\\n *\\n * {$matches[3]}\",\n        $content,\n        1,\n    );\n}\n\nforeach ($files as $file => $contents) {\n    file_put_contents($file, $contents);\n}\n"
  },
  {
    "path": "phpmd.xml",
    "content": "<?xml version=\"1.0\"?>\n<ruleset\n    name=\"Mess detection rules for Carbon\"\n    xmlns=\"http://pmd.sf.net/ruleset/1.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://pmd.sf.net/ruleset/1.0.0\n             http://pmd.sf.net/ruleset_xml_schema.xsd\"\n    xsi:noNamespaceSchemaLocation=\"http://pmd.sf.net/ruleset_xml_schema.xsd\"\n>\n    <description>\n        Mess detection rules for Carbon\n    </description>\n    <rule ref=\"rulesets/codesize.xml\">\n        <exclude name=\"CyclomaticComplexity\" />\n        <exclude name=\"NPathComplexity\" />\n        <exclude name=\"ExcessiveMethodLength\" />\n        <exclude name=\"ExcessiveClassLength\" />\n        <exclude name=\"ExcessivePublicCount\" />\n        <exclude name=\"TooManyMethods\" />\n        <exclude name=\"TooManyPublicMethods\" />\n        <exclude name=\"ExcessiveClassComplexity\" />\n    </rule>\n    <rule ref=\"rulesets/cleancode.xml\">\n        <exclude name=\"BooleanArgumentFlag\" />\n        <exclude name=\"StaticAccess\" />\n        <exclude name=\"IfStatementAssignment\" />\n        <exclude name=\"UndefinedVariable\" />\n        <exclude name=\"ErrorControlOperator\" />\n    </rule>\n    <rule ref=\"rulesets/controversial.xml\" />\n    <rule ref=\"rulesets/design.xml\">\n        <exclude name=\"EvalExpression\" />\n        <exclude name=\"CouplingBetweenObjects\" />\n        <exclude name=\"CountInLoopExpression\" />\n        <exclude name=\"DevelopmentCodeFragment\" />\n    </rule>\n    <rule ref=\"rulesets/design.xml/DevelopmentCodeFragment\">\n        <properties>\n            <property name=\"ignore-namespaces\" value=\"true\" />\n        </properties>\n    </rule>\n    <rule ref=\"rulesets/naming.xml\">\n        <exclude name=\"ShortVariable\" />\n        <exclude name=\"LongVariable\" />\n        <exclude name=\"ShortMethodName\" />\n    </rule>\n    <rule ref=\"rulesets/naming.xml/ShortVariable\">\n        <properties>\n            <property name=\"exceptions\" value=\"ci,id,to,tz\" />\n        </properties>\n    </rule>\n    <rule ref=\"rulesets/naming.xml/LongVariable\">\n        <properties>\n            <property name=\"subtract-suffixes\" value=\"Enabled,Function,Factory,Timezone,FloorEnd,DiffOptions,FromTestNow\" />\n        </properties>\n    </rule>\n    <rule ref=\"rulesets/naming.xml/ShortMethodName\">\n        <properties>\n            <property name=\"exceptions\" value=\"eq,gt,is,lt,ne,to,tz\" />\n        </properties>\n    </rule>\n    <rule ref=\"rulesets/unusedcode.xml\" />\n</ruleset>\n"
  },
  {
    "path": "phpstan.neon",
    "content": "parameters:\n    scanFiles:\n        - lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php\n        - lazy/Carbon/TranslatorStrongType.php\n        - lazy/Carbon/UnprotectedDatePeriod.php\n        - tests/Fixtures/DateMalformedIntervalStringException.php\n        - tests/Fixtures/DateMalformedStringException.php\n        - vendor/autoload.php\n    level: 3\n    paths:\n        - src\n        - tests\n    parallel:\n        processTimeout: 300.0\n    ignoreErrors:\n        - identifier: varTag.nativeType\n        - identifier: return.type\n          paths:\n              - tests/Carbon/TestingAidsTest.php\n        - '#^Call to static method get\\(\\) on an unknown class Symfony\\\\Component\\\\Translation\\\\PluralizationRules\\.$#'\n        - '#^Call to an undefined static method#'\n        - '#^Call to an undefined method Carbon\\\\Carbon(Immutable)?::floatDiffIn([A-Za-z]+)\\(\\)\\.$#'\n        - '#^Call to an undefined method Carbon\\\\Carbon(Immutable)?::(diffInBusinessDays|diffInReal([A-Za-z]+))\\(\\)\\.$#'\n        - '#^Call to an undefined method Carbon\\\\Carbon(Immutable)?::(add|sub)Real([A-Za-z]+)\\(\\)\\.$#'\n        - '#^Unsafe usage of new static\\(\\)\\.$#'\n        - '#^Method Carbon\\\\Carbon(Interface|Immutable)?::(add|sub)[A-Z][A-Za-z]+\\(\\) invoked with 1 parameter, 0 required\\.$#'\n        - '#^Call to an undefined method Carbon\\\\Carbon(Interface|Immutable)?::(super|noThis|toAppTz|copyWithAppTz)\\(\\)\\.$#'\n        - '#^Call to an undefined method Carbon\\\\CarbonInterval::(multiply|andAgain|copyAndAgain)\\(\\)\\.$#'\n        - '#^Call to an undefined method Carbon\\\\CarbonPeriod::(oneMoreDay|copyOneMoreDay|endNextDay)\\(\\)\\.$#'\n        - '#should return (\\S*)(static|\\$this)\\(Carbon\\\\Carbon\\)(\\|null)? but returns Carbon\\\\Carbon(Interface)?(\\|null)?\\.$#'\n        - '#should return (\\S*)(static|\\$this)\\(Carbon\\\\CarbonImmutable\\)(\\|null)? but returns Carbon\\\\Carbon(Immutable|Interface)(\\|null)?\\.$#'\n        - '#should return (\\S*)\\$this\\(Carbon\\\\CarbonInterval\\)(\\|null)? but returns static\\(Carbon\\\\CarbonInterval\\)(\\|null)?\\.$#'\n        - '#should return (\\S*)static\\(Carbon\\\\CarbonInterval\\)(\\|null)? but returns Carbon\\\\CarbonInterval(\\|null)?\\.$#'\n        - '#^Call to an undefined method DateInterval::(spec|optimize)\\(\\)\\.$#'\n        - '#^Property Carbon\\\\Carbon::\\$timezone \\(Carbon\\\\CarbonTimeZone\\) does not accept string\\.$#'\n        -\n            message: '#^Variable \\$this in isset\\(\\) always exists and is not nullable\\.$#'\n            paths:\n                - src/Carbon/Traits/Mixin.php\n        -\n            message: '#^Call to an undefined method Carbon\\\\Carbon::[a-zA-Z]+Of[a-zA-Z]+\\(\\)\\.$#'\n            paths:\n                - tests/Carbon/SettersTest.php\n        -\n            message: \"#^Property Carbon\\\\\\\\Carbon\\\\:\\\\:\\\\$month \\\\(int\\\\) does not accept Carbon\\\\\\\\Month\\\\:\\\\:February\\\\.$#\"\n            paths:\n                - tests/Carbon/SettersTest.php\n        -\n            message: '#^Access to an undefined property Carbon\\\\CarbonImmutable::\\$[a-zA-Z]+\\.$#'\n            paths:\n                - tests/CarbonImmutable/GettersTest.php\n        -\n            message: '#^Call to an undefined method Carbon\\\\CarbonImmutable::[a-zA-Z]+Of[a-zA-Z]+\\(\\)\\.$#'\n            paths:\n                - tests/CarbonImmutable/GettersTest.php\n        -\n            message: '#^Access to an undefined property Carbon\\\\CarbonInterval::\\$tz_?[Nn]ame\\.$#'\n            paths:\n                - tests/CarbonInterval/GettersTest.php\n                - tests/CarbonInterval/SettersTest.php\n        -\n            message: '#^Access to an undefined property Carbon\\\\CarbonPeriod::\\$(include)?(Start|End)Date\\.$#'\n            paths:\n                - tests/CarbonPeriod/GettersTest.php\n        -\n            message: '#^Access to protected property Carbon\\\\CarbonPeriod::\\$endDate\\.$#'\n            paths:\n                - tests/CarbonPeriod/GettersTest.php\n        -\n            message: '#^Cannot access property \\$locale on Carbon\\\\CarbonPeriod\\|string\\.$#'\n            paths:\n                - tests/CarbonPeriod/GettersTest.php\n        -\n            message: '#^Access to protected property Carbon\\\\CarbonPeriod::\\$startDate\\.$#'\n            paths:\n                - tests/CarbonPeriod/GettersTest.php\n        -\n            message: '#^Access to an undefined property Carbon\\\\CarbonPeriod::\\$locale\\.$#'\n            paths:\n                - tests/CarbonPeriod/GettersTest.php\n        -\n            message: '#^Parameter \\$foo of anonymous function has invalid type Tests\\\\Factory\\\\FooBar\\.#'\n            paths:\n                - tests/Factory/CallbackTest.php\n        -\n            message: '#^Call to an undefined method SubCarbon(Immutable)?::diffInDecades\\(\\)\\.#'\n            paths:\n                - tests/Carbon/MacroTest.php\n                - tests/CarbonImmutable/MacroTest.php\n        -\n            message: '#^Call to an undefined method Doctrine\\\\DBAL\\\\Types\\\\Type::requiresSQLCommentHint\\(\\)\\.#'\n            paths:\n                - tests/Doctrine/CarbonTypesTest.php\n        -\n            message: '#^Instantiated class Doctrine\\\\DBAL\\\\Platforms\\\\MySQL57Platform not found\\.#'\n            paths:\n                - tests/Doctrine/CarbonTypesTest.php\n        -\n            message: '#^Call to an undefined method Symfony\\\\Contracts\\\\Translation\\\\TranslatorInterface::getMessages\\(\\)\\.#'\n            paths:\n                - tests/CarbonInterval/ConstructTest.php\n        -\n            message: '#^Access to protected property Carbon\\\\CarbonPeriod::\\$dateInterval\\.#'\n            paths:\n                - tests/CarbonPeriod/CreateTest.php\n    excludePaths:\n        - '*/src/Carbon/CarbonPeriod.php'\n        - '*/src/Carbon/Laravel/ServiceProvider.php'\n        - '*/src/Carbon/TranslatorWeakType.php'\n        - '*/src/Carbon/PHPStan/*'\n        - '*/tests/Carbon/Fixtures/DumpCarbon.php'\n        - '*/tests/Carbon/LocalizationTest.php'\n        - '*/tests/Carbon/SerializationTest.php'\n        - '*/tests/Carbon/LastErrorTest.php'\n        - '*/tests/CarbonImmutable/LocalizationTest.php'\n        - '*/tests/CarbonImmutable/SetStateTest.php'\n        - '*/tests/CarbonImmutable/SerializationTest.php'\n        - '*/tests/CarbonImmutable/LastErrorTest.php'\n        - '*/tests/Laravel/*.php'\n        - '*/tests/Cli/*.php'\n        - '*/tests/Carbon/Fixtures/NoLocaleTranslator.php'\n        - '*/tests/CarbonPeriod/Fixtures/filters.php'\n        - '*/tests/Fixtures/dynamicInterval.php'\n        - '*/tests/PHPStan/*.php'\n        - '*/tests/PHPUnit/AssertObjectHasPropertyPolyfillTrait.php'\n"
  },
  {
    "path": "phpunit.xml.dist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<phpunit\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:noNamespaceSchemaLocation=\"https://schema.phpunit.de/10.5/phpunit.xsd\"\n  bootstrap=\"tests/bootstrap.php\"\n  colors=\"true\"\n  cacheDirectory=\".phpunit.cache\"\n>\n  <coverage/>\n  <testsuites>\n    <testsuite name=\"carbon\">\n      <directory>tests/Carbon</directory>\n      <directory>tests/CommonTraits</directory>\n    </testsuite>\n    <testsuite name=\"immutable\">\n      <directory>tests/CarbonImmutable</directory>\n    </testsuite>\n    <testsuite name=\"interval\">\n      <directory>tests/CarbonInterval</directory>\n    </testsuite>\n    <testsuite name=\"period\">\n      <directory>tests/CarbonPeriod</directory>\n    </testsuite>\n    <testsuite name=\"period-immutable\">\n      <directory>tests/CarbonPeriodImmutable</directory>\n    </testsuite>\n    <testsuite name=\"timezone\">\n      <directory>tests/CarbonTimeZone</directory>\n    </testsuite>\n    <testsuite name=\"localization\">\n      <directory>tests/Localization</directory>\n    </testsuite>\n    <testsuite name=\"laravel\">\n      <directory>tests/Laravel</directory>\n    </testsuite>\n    <testsuite name=\"doctrine\">\n      <directory>tests/Doctrine</directory>\n    </testsuite>\n    <testsuite name=\"factory\">\n      <directory>tests/Factory</directory>\n    </testsuite>\n    <testsuite name=\"language\">\n      <directory>tests/Language</directory>\n    </testsuite>\n    <testsuite name=\"jenssegers\">\n      <directory>tests/Jenssegers</directory>\n    </testsuite>\n    <testsuite name=\"cli\">\n      <directory>tests/Cli</directory>\n    </testsuite>\n    <testsuite name=\"phpstan\">\n      <directory>tests/PHPStan</directory>\n    </testsuite>\n    <testsuite name=\"unit\">\n      <directory>tests/Unit</directory>\n    </testsuite>\n  </testsuites>\n  <php>\n    <ini name=\"max_execution_time\" value=\"900\" />\n  </php>\n  <source>\n    <include>\n      <directory suffix=\".php\">src/Carbon</directory>\n    </include>\n    <exclude>\n      <file>src/Carbon/PHPStan/Macro.php</file>\n      <file>src/Carbon/Translator.php</file>\n      <file>src/Carbon/TranslatorStrongType.php</file>\n      <file>src/Carbon/TranslatorWeakType.php</file>\n    </exclude>\n  </source>\n</phpunit>\n"
  },
  {
    "path": "psalm.xml",
    "content": "<?xml version=\"1.0\"?>\n<psalm\n    errorLevel=\"5\"\n    resolveFromConfigFile=\"true\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xmlns=\"https://getpsalm.org/schema/config\"\n    xsi:schemaLocation=\"https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd\"\n    findUnusedBaselineEntry=\"true\"\n    findUnusedCode=\"true\"\n>\n    <projectFiles>\n        <directory name=\"src\" />\n        <file name=\"lazy/Carbon/UnprotectedDatePeriod.php\" />\n        <file name=\"lazy/Carbon/TranslatorStrongType.php\" />\n        <file name=\"lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php\" />\n        <ignoreFiles>\n            <directory name=\"vendor\" />\n        </ignoreFiles>\n    </projectFiles>\n</psalm>\n"
  },
  {
    "path": "readme.md",
    "content": "# Carbon\n\n[![Latest Stable Version](https://img.shields.io/packagist/v/nesbot/carbon.svg?style=flat-square)](https://packagist.org/packages/nesbot/carbon)\n[![Total Downloads](https://img.shields.io/packagist/dt/nesbot/carbon.svg?style=flat-square)](https://packagist.org/packages/nesbot/carbon)\n[![GitHub Actions](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2FCarbonPHP%2Fcarbon%2Fbadge&style=flat-square&label=Build&logo=none)](https://github.com/CarbonPHP/carbon/actions)\n[![codecov.io](https://img.shields.io/codecov/c/github/CarbonPHP/carbon.svg?style=flat-square)](https://codecov.io/github/CarbonPHP/carbon/actions?branch=master)\n\nAn international PHP extension for DateTime. [Documentation](https://carbonphp.github.io/carbon/)\n\n> [!NOTE]  \n> We're migrating the repository from [briannesbitt/Carbon](https://github.com/briannesbitt/Carbon) to [CarbonPHP/carbon](https://github.com/CarbonPHP/carbon),\n> which means if you're looking specific issues/pull-requests, you may have to search both. No other impact as code on both will be kept up to date. \n\n```php\n<?php\n\nuse Carbon\\Carbon;\n\nprintf(\"Right now is %s\", Carbon::now()->toDateTimeString());\nprintf(\"Right now in Vancouver is %s\", Carbon::now('America/Vancouver'));  //implicit __toString()\n$tomorrow = Carbon::now()->addDay();\n$lastWeek = Carbon::now()->subWeek();\n\n$officialDate = Carbon::now()->toRfc2822String();\n\n$howOldAmI = Carbon::createFromDate(1975, 5, 21)->age;\n\n$noonTodayLondonTime = Carbon::createFromTime(12, 0, 0, 'Europe/London');\n\n$internetWillBlowUpOn = Carbon::create(2038, 01, 19, 3, 14, 7, 'GMT');\n\n// Don't really want this to happen so mock now\nCarbon::setTestNow(Carbon::createFromDate(2000, 1, 1));\n\n// comparisons are always done in UTC\nif (Carbon::now()->gte($internetWillBlowUpOn)) {\n    die();\n}\n\n// Phew! Return to normal behaviour\nCarbon::setTestNow();\n\nif (Carbon::now()->isWeekend()) {\n    echo 'Party!';\n}\n// Over 200 languages (and over 500 regional variants) supported:\necho Carbon::now()->subMinutes(2)->diffForHumans(); // '2 minutes ago'\necho Carbon::now()->subMinutes(2)->locale('zh_CN')->diffForHumans(); // '2分钟前'\necho Carbon::parse('2019-07-23 14:51')->isoFormat('LLLL'); // 'Tuesday, July 23, 2019 2:51 PM'\necho Carbon::parse('2019-07-23 14:51')->locale('fr_FR')->isoFormat('LLLL'); // 'mardi 23 juillet 2019 14:51'\n\n// ... but also does 'from now', 'after' and 'before'\n// rolling up to seconds, minutes, hours, days, months, years\n\n$daysSinceEpoch = Carbon::createFromTimestamp(0)->diffInDays(); // something such as:\n                                                                // 19817.6771\n$daysUntilInternetBlowUp = $internetWillBlowUpOn->diffInDays(); // Negative value since it's in the future:\n                                                                // -5037.4560\n\n// Without parameter, difference is calculated from now, but doing $a->diff($b)\n// it will count time from $a to $b.\nCarbon::createFromTimestamp(0)->diffInDays($internetWillBlowUpOn); // 24855.1348\n```\n\n## Installation\n\n### With Composer\n\n```\n$ composer require nesbot/carbon\n```\n\n```json\n{\n    \"require\": {\n        \"nesbot/carbon\": \"^3\"\n    }\n}\n```\n\n```php\n<?php\nrequire 'vendor/autoload.php';\n\nuse Carbon\\Carbon;\n\nprintf(\"Now: %s\", Carbon::now());\n```\n\n### Without Composer\n\nWhy are you not using [composer](https://getcomposer.org/)? Download the Carbon [latest release](https://github.com/CarbonPHP/carbon/releases) and put the contents of the ZIP archive into a directory in your project. Then require the file `autoload.php` to get all classes and dependencies loaded on need.\n\n```php\n<?php\nrequire 'path-to-Carbon-directory/autoload.php';\n\nuse Carbon\\Carbon;\n\nprintf(\"Now: %s\", Carbon::now());\n```\n\n## Documentation\n\n[https://carbonphp.github.io/carbon/](https://carbonphp.github.io/carbon/)\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n\n## Credits\n\n### Contributors\n\nThis project exists thanks to all the people who contribute. \n\n<a href=\"https://github.com/CarbonPHP/carbon/graphs/contributors\" target=\"_blank\"><img src=\"https://opencollective.com/Carbon/contributors.svg?width=890&button=false\" /></a>\n\n### Translators\n\n[Thanks to people helping us to translate Carbon in so many languages](https://carbonphp.github.io/carbon/develop/translations/translators.html)\n\n### Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website.\n\n<!-- <open-collective-sponsors> -->\n<a title=\"Нова українська букмекерська контора\" href=\"https://betking.com.ua/sports-book/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Ставки на спорт\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/c56d2fe2-f9fb-4d63-947c-77575f4b15c6/stavki.jpg\" width=\"96\" height=\"96\"></a>\n<a title=\"Онлайн казино 777 Україна\" href=\"https://777.ua/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Онлайн казино 777\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/7e572d50-1ce8-4d69-ae12-86cc80371373/ok-ua-777.png\" width=\"96\" height=\"96\"></a>\n<a title=\"Non GamStop Bookies UK\" href=\"https://netto.co.uk/betting-sites-not-on-gamstop/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Non GamStop Bookies UK\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/51bfaa05-02b3-4cd9-b1a4-9d0d8f34cbae/%D0%97%D0%BD%D1%96%D0%BC%D0%BE%D0%BA%20%D0%B5%D0%BA%D1%80%D0%B0%D0%BD%D0%B0%202025-07-04%20%D0%BE%2015.21.16%20(1)%20(1)%20(1).jpg\" width=\"126\" height=\"96\"></a>\n<a title=\"Best non Gamstop sites in the UK\" href=\"https://www.pieria.co.uk/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Best non Gamstop sites in the UK\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/34e340b8-e1de-4932-8a76-1b3ce2ec7ee8/logo_white%20bg%20(8).png\" width=\"96\" height=\"96\"></a>\n<a title=\"Trusted last mile route planning and route optimization\" href=\"https://route4me.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Route4Me Route Planner\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/237386c3-48a2-47c6-97ac-5f888cdb4cda/Route4MeIconLogo.png\" width=\"96\" height=\"96\"></a>\n<a title=\"Bei Releaf erhalten Sie schnell und diskret Ihr Cannabis Rezept online. Unsere Ärzte prüfen Ihre Angaben und stellen bei Eignung das Rezept aus. Anschließend können Sie legal und sicher medizinisches Cannabis über unsere Partnerapotheken kaufen.\" href=\"https://releaf.com/de?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Releaf – Medizinischer Cannabis Shop\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/b686d646-5029-4b4c-8cab-9645ab2679de/9da596d1-f48a-41ec-947d-a64dd8e7529c.png\" width=\"96\" height=\"96\"></a>\n<a title=\"Buitenlandse Online Casino\" href=\"https://nl.trustpilot.com/review/buitenlandsecasino.vip?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Buitenlandse Online Casino\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/9465308a-8e44-4606-af5d-5a81a3c6567b/ChatGPT%20Image%20Nov%2015%2C%202025%2C%2002_53_25%20PM.png\" width=\"96\" height=\"96\"></a>\n<a title=\"Online Casino Zonder Registratie\" href=\"https://nl.trustpilot.com/review/zonderregistratiecasinos.com?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Online Casino Zonder Registratie\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/cf382ddc-627b-4bd9-8870-43ee28d2a628/casino-zonder-registratie.png\" width=\"127.5\" height=\"96\"></a>\n<a title=\"Mi misión es la educación y transparencia en el mundo de los casinos online\" href=\"https://www.educatransparencia.cl/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Transparencia en Casinos Online\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/c034fdcb-1d17-4c83-8105-f3cfa4f874d6/educalogocito.png\" width=\"192\" height=\"96\"></a>\n<a title=\"Wildflower\" href=\"https://www.trustpilot.com/review/wildflower.uno?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Wildflower\" src=\"https://images.opencollective.com/wildflower_cases/avatar/256.png\" width=\"96\" height=\"96\"></a>\n<a title=\"gaia-wines.gr\" href=\"https://www.gaia-wines.gr/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"gaia-wines.gr\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/a9b971ee-db5f-4400-8c4b-76cf9bc35015/IMAGE%202024-06-14%2013%3A54%3A14.jpg\" width=\"96\" height=\"96\"></a>\n<a title=\"#1 Guide To Online Gambling In Canada\" href=\"https://casinohex.org/canada/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"CasinoHex Canada\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/79fdbcc0-a997-11eb-abbc-25e48b63c6dc.jpg\" width=\"127.5\" height=\"96\"></a>\n<a title=\"We specialize in the online gambling industry, helping players access reliable and verified information about the best online casinos and pokies in Australia. Our team tests casinos and games, collects user reviews from Trustpilot, and organizes them in o\" href=\"https://au.trustpilot.com/review/bestpayidpokies.net?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"PayID Pokies\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/985a0ae7-54c3-4680-8816-bc8d656f7562/payidpokies.png\" width=\"64\" height=\"64\"></a>\n<a title=\"iDealeCasinos\" href=\"https://idealecasinos.nl/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"iDealeCasinos\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/907841d3-435e-44b4-9684-c33fd8635ece/ideale-casinos-square-white-logo-300.png\" width=\"64\" height=\"64\"></a>\n<a title=\"TopRating.casino ➢ Гід по онлайн-казино в Україні\" href=\"https://toprating.casino/ua/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Top Rating casino\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/fec14fc4-85b1-4fdc-971e-e8aabfc60926/toprating%20logo.jpg\" width=\"64\" height=\"64\"></a>\n<a title=\"Porównanie kasyn online w Polsce. Darmowe automaty online.\" href=\"https://onlinekasyno-polis.pl/\" target=\"_blank\"><img alt=\"Online Kasyno Polis\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/12fe53d4-b2e4-4601-b9ea-7b652c414a38/274px%20274px-2.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Find the best Interac online casinos in Canada with secure payments, exclusive bonuses, and fast withdrawals.\" href=\"https://interac-casino.com/en-ca/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Interac-casino.com - Canada\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/865d9613-74db-45b6-9f33-3ba992682259/2025-09-10%2019.33.08.jpg\" width=\"64\" height=\"64\"></a><details><summary>See more</summary>\n<a title=\"OnlineCasinosSpelen\" href=\"https://onlinecasinosspelen.com?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"OnlineCasinosSpelen\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/47e87426-6a55-4f69-9fb5-4e5032dc35a8/5d10dd22-320e-47d4-84e6-d144874f1f5f.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Betwinner is an online bookmaker offering sports betting, casino games, and more.\" href=\"https://guidebook.betwinner.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Guidebook.BetWinner\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/82cab29a-7002-4924-83bf-2eecb03d07c4/0x0.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Discover the Top 10 Online Casino Australia sites for fast payouts, big bonuses, and top real money pokies\" href=\"https://au.trustpilot.com/review/top-10-online-casino-australia.com?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Top 10 Casino Australia\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/cd3f2230-ca38-41e1-9f31-f3069b910be3/top-10-online-casino-aus.jpg\" width=\"64\" height=\"64\"></a>\n<a title=\"We test dozens of casinos every month and select the coolest ones for Australian players.\" href=\"https://au.trustpilot.com/review/payid-casino.net?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"PayID Pokies Sites\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/ecd8a5f4-fd86-4903-a512-cbfaff35e7ef/payidpokiessites.png\" width=\"69\" height=\"64\"></a>\n<a title=\"We collect all reviews about the best online pokies.\" href=\"https://au.trustpilot.com/review/aussiepokies.net?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Best Online Pokies in Australia\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/44d84116-8762-4167-9433-a9e5da542e29/pokies.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Plinko Game\" href=\"https://www.trustpilot.com/review/plinkoplay.top?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Plinko Game\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/5e953df9-1876-45b6-9ffc-f2009804935b/plinkoo.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Онлайн казино casino.ua\" href=\"https://casino.ua/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Онлайн казино casino.ua\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/32790ee6-245b-45bd-acf7-7a661fe2cf9f/logo.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Real Money Pokies\" href=\"https://onlinecasinoskiwi.co.nz/real-money-pokies/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Real Money Pokies\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/d0f7382e-32ea-4425-a8c4-3019f9ed501c/NZ_logo%20(6)%20(2).jpg\" width=\"64\" height=\"64\"></a>\n<a title=\"Uudet Nettikasinot\" href=\"https://fi.parhaatuudetkasinot.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"parhaatuudetkasinot.com\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/09e109d6-8ad2-4ade-ab24-4427028c8e38/260bfa9d-6a5c-494d-9ec0-a624327429ae.png\" width=\"64\" height=\"64\"></a>\n<a title=\"New Casino Bonuses\" href=\"https://newcasinobonuses.gb.net/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"New Casino Bonuses\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/38e356d8-3597-406a-a263-1c348723aa17/new_casino_bonuses_logo.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Best online sports betting and casino company.\" href=\"https://global.fun88.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Fun88\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/1688ebca-4984-4b9b-a24d-8fdd1233892f/fun88-logo.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Top 50 Online Casinos UK\" href=\"https://eastvillafc.co.uk?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"East Villa FC\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/2560f1b5-20d6-4cf4-83cd-2457bf111fc3/trophy-fav-blue.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Instant withdrawal casino\" href=\"https://au.trustpilot.com/review/quickcashoutcasinos.com?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Instant withdrawal casino\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/e4be26b6-a57a-4758-ad56-bd31c759465e/quickcashoutcasinos2.png\" width=\"75\" height=\"64\"></a>\n<a title=\"Best online sports betting company in Thailand.\" href=\"https://www.fun88thh.com/th/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Fun88 Thailand\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/bbf7174c-fc01-4ce6-86b5-f621e350969d/fun88-logo.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Best online sports betting company in Vietnam.\" href=\"https://vi.fun88.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Fun88 Vietnam\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/ed704e1d-3894-48bb-83e3-6094b2c68a5c/fun88-logo.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Casino ohne oasis\" href=\"https://de.trustpilot.com/review/onlinecasinoohneoasis.me?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Casino ohne oasis\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/f59e1e3a-6378-4aa7-91f5-6934a58bc21d/oasis.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Najlepsi Bukmacherzy\" href=\"https://najlepsibukmacherzy.pl/ranking-legalnych-bukmacherow/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Najlepsi Bukmacherzy\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/81588eb0-608a-11eb-ad1c-b119533ac7bb.png\" width=\"64\" height=\"64\"></a>\n<a title=\"Offshore bookmakers review site.\" href=\"https://www.sportsbookreviewsonline.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Sportsbook Reviews Online\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/6d499f24-d669-4fc6-bb5f-b87184aa7963/sportsbookreviewsonline_com.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Ставки на спорт Favbet\" href=\"https://www.favbet.ua/uk/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Ставки на спорт Favbet\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/d86d313e-7b17-42fa-8b76-3f17fbf681a2/favbet-logo.jpg\" width=\"42\" height=\"42\"></a>\n<a title=\"Get professional support for Carbon\" href=\"https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&amp;utm_medium=referral&amp;utm_campaign=docs\" target=\"_blank\"><img alt=\"Tidelift\" src=\"https://carbonphp.github.io/carbon/sponsors/tidelift-brand.png\" width=\"84\" height=\"42\"></a>\n<a title=\"Casino-portugal.pt\" href=\"https://casino-portugal.pt/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Casino-portugal.pt\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/870b4bd0-b6aa-4129-9827-e8ac02cfde56/167bdc1d-0a19-414d-a288-cfc3278b388f.png\" width=\"42\" height=\"42\"></a>\n<a title=\"https://play-fortune.pl/kasyno/z-minimalnym-depozytem/\" href=\"https://play-fortune.pl/kasyno/z-minimalnym-depozytem/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"https://play-fortune.pl/kasyno/z-minimalnym-depozytem/\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/cbeea308-5148-4f6c-ac6e-dbfa029aadd1/PL.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Playfortune.net.br\" href=\"https://playfortune.net.br/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Playfortune.net.br\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/bf7ba31d-648c-470f-bf7e-2293c5ca0509/62a0353e-3858-41f1-bbb3-597449949e66.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Best Casinos not on Gamstop in the UK 2025\" href=\"https://www.vso.org.uk/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"best non Gamstop casinos\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/3f48874e-f2f6-4062-a2a2-1500677ee3d9/125%D1%85125%20(1).jpg\" width=\"42\" height=\"42\"></a>\n<a title=\"Znajdź najlepsze zakłady bukmacherskie w Polsce w 2023 roku. Probukmacher.pl to Twoje kompendium wiedzy na temat bukmacherów!\" href=\"https://www.probukmacher.pl?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Probukmacher\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/caf50271-4560-4ffe-a434-ea15239168db/Screenshot_1.png\" width=\"58\" height=\"42\"></a>\n<a title=\"BetPokies NZ features top fast payout casinos where winnings are processed within hours. The speed depends on the casino and payment method, with the platform highlighting the best options for smooth, reliable play.\" href=\"https://betpokies.co.nz/casinos/fast-payout?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Fastest Payout Online Casino\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/37cba042-a941-4bfd-87c4-b4f4c1a98641/7912b3ee-3c62-4ebd-b435-6a9a88b2228b.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Онлайн казино та БК (ставки на спорт) в Україні\" href=\"https://betking.com.ua/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"betking онлайн казино\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/08587758-582c-4136-aba5-2519230960d3/betking.jpg\" width=\"42\" height=\"42\"></a>\n<a title=\"inkedin\" href=\"https://inkedin.com?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"inkedin\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/6cb31863-b725-49c5-820c-2c2be7d54adf/cc930e12-04de-4574-9cca-171e07d277c3.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Best-betting.net is an Indian website where you can always find interesting, useful, and up-to-date information about cricket and other sports. Additionally, on our portal, you can explore predictions and betting opportunities for the most exciting sports\" href=\"https://best-betting.net/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Best Betting\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/4b437e94-747c-4cf5-be67-d11bf8472d76/bestbetting-logo-cover.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Best PayID Pokies in Australia\" href=\"https://ausgambler.net/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"AusGambler\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/b120ff74-a4cc-4e25-a96f-2b040d60de14/payidgambler.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Актуальний та повносправний рейтинг онлайн казино України, ґрунтований на відгуках реальних гравців.\" href=\"https://uk.onlinecasino.in.ua/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Онлайн казино України\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/c0b4b090-eef8-11ec-9cb7-0527a205b226.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Post-production resource scheduling app\" href=\"https://freispace.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"freispace\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/7d553b00-78ff-4442-91dd-33c220e82ac4/freispace-icon-inverted.png\" width=\"42\" height=\"42\"></a>\n<a title=\"bestecasinozondercruks\" href=\"https://nl.trustpilot.com/review/bestecasinozondercruks.online?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"bestecasinozondercruks\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/4948eca9-abd5-49ea-bb70-1ea6053f8663/ChatGPT%20Image%20Dec%2027%2C%202025%2C%2010_22_47%20PM-min.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Slots City® ➢ Лучшее лицензионно казино онлайн и оффлайн на гривны в Украине. 【 Более1500 игровых автоматов и слотов】✅ Официально и Безопасно\" href=\"https://slotscity.ua/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Slots City\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/d7e298c0-7abe-11ed-8553-230872f5e54d.png\" width=\"59\" height=\"42\"></a>\n<a title=\"Run Weekly\" href=\"https://www.runweekly.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Run Weekly\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/4d7e1fad-f160-4b64-ab41-d493023f9369/2de8e56c-e9fa-497c-8882-3736ec946664.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Are you looking for the latest online casino sites to play in the UK? How about ones that actually deliver on their promises? Every year new online casinos pops up, but are they worth your time? Check out https://helpdirect.org.uk\" href=\"https://helpdirect.org.uk/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"New Casino Sites UK (2025) Help Direct\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/d5e8c98f-7df3-40e8-bfe1-3c1583222eab/help-direct-logo-white-trans.png\" width=\"42\" height=\"42\"></a>\n<a title=\"UnAIMyText\" href=\"https://unaimytext.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"UnAIMyText\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/fa5b36d5-69e6-44a4-bbdf-b5d264399365/icon_resized.png\" width=\"42\" height=\"42\"></a>\n<a title=\"Online Casino utan Svensk licens\" href=\"https://se.trustpilot.com/review/casino-utan-svensk-licens-se.se?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"Online Casino utan Svensk licens\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/64a7a6b0-e843-4cc2-a04e-0e829ccade58/logose.png\" width=\"42\" height=\"42\"></a>\n<a title=\"TopKasynoOnline PL\" href=\"https://pl.topkasynoonline.com/?utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon\" target=\"_blank\"><img alt=\"TopKasynoOnline PL\" src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/6cdee969-d731-44d6-b8ff-fc4f6d4dab9c/TKOlogo.png\" width=\"42\" height=\"42\"></a>\n<a title=\"ssddanbrown\" href=\"https://github.com/ssddanbrown\" target=\"_blank\"><img alt=\"ssddanbrown\" src=\"https://avatars.githubusercontent.com/u/8343178?s=128&v=4\" width=\"42\" height=\"42\"></a></details><!-- </open-collective-sponsors> -->\n\n[[See all](https://carbonphp.github.io/carbon/#sponsors)]\n\n[[Become a sponsor via OpenCollective*](https://opencollective.com/Carbon#sponsor)]\n\n[[Become a sponsor via GitHub*](https://github.com/sponsors/kylekatarnls)]\n\n<small>* This is a donation. No goods or services are expected in return. Any requests for refunds for those purposes will be rejected.</small>\n\n### Backers\n\nThank you to all our backers! 🙏\n\n<a href=\"https://opencollective.com/Carbon#backers\" target=\"_blank\"><img src=\"https://opencollective.com/Carbon/backers.svg?width=890&version=2023-06-08-07-12\"></a>\n\n[[Become a backer](https://opencollective.com/Carbon#backer)]\n\n## Carbon for enterprise\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of ``Carbon`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)\n"
  },
  {
    "path": "sponsors.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonImmutable;\n\nrequire_once __DIR__.'/vendor/autoload.php';\n\nfunction getMaxHistoryMonthsByAmount($amount): int\n{\n    if ($amount >= 50) {\n        return 6;\n    }\n\n    if ($amount >= 20) {\n        return 4;\n    }\n\n    return 2;\n}\n\nfunction getHtmlAttribute($rawValue): string\n{\n    return str_replace(\n        ['​', \"\\r\"],\n        '',\n        trim(htmlspecialchars((string) $rawValue), \"  \\n\\r\\t\\v\\0\"),\n    );\n}\n\nfunction getOpenCollectiveSponsors(): string\n{\n    $customSponsorOverride = [\n        // For consistency and equity among sponsors, as of now, we kindly ask our sponsors\n        // to provide an image having a width/height ratio between 1/1 and 2/1.\n        // By default, we'll show the member picture from OpenCollective, and will resize it if bigger\n        662698 => [\n            // alt attribute\n            'name' => 'Non Gamstop Casinos',\n            // title attribute\n            'description' => 'Casinos not on Gamstop',\n            // src attribute\n            'image' => 'https://lgcnews.com/wp-content/uploads/2018/01/LGC-logo-v8-temp.png',\n            // href attribute\n            'website' => 'https://lgcnews.com/',\n        ],\n        663069 => [\n            // alt attribute\n            'name' => 'Ставки на спорт Favbet',\n            // href attribute\n            'website' => 'https://www.favbet.ua/uk/',\n        ],\n        676798 => [\n            // alt attribute\n            'name' => 'Top Casinos Canada',\n            // title attribute\n            'description' => 'Top Casinos Canada',\n            // src attribute\n            'image' => 'https://topcasino.net/img/topcasino-logo-cover.png',\n            // href attribute\n            'website' => 'https://topcasino.net/',\n        ],\n    ];\n\n    $members = json_decode(file_get_contents('https://opencollective.com/carbon/members/all.json'), true);\n\n    foreach ($members as &$member) {\n        $member = array_merge($member, $customSponsorOverride[$member['MemberId']] ?? []);\n    }\n\n    // Adding sponsors paying via other payment methods\n    $members[] = [\n        'MemberId' => 1,\n        'createdAt' => '2019-01-01 02:00',\n        'type' => 'ORGANIZATION',\n        'role' => 'BACKER',\n        'tier' => 'backer+',\n        'isActive' => true,\n        'totalAmountDonated' => 1000,\n        'currency' => 'USD',\n        'lastTransactionAt' => CarbonImmutable::now()->format('Y-m-d').' 02:00',\n        'lastTransactionAmount' => 25,\n        'profile' => 'https://tidelift.com/',\n        'name' => 'Tidelift',\n        'description' => 'Get professional support for Carbon',\n        'image' => 'https://carbonphp.github.io/carbon/sponsors/tidelift-brand.png',\n        'website' => 'https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=docs',\n    ];\n    $members[] = [\n        'MemberId' => 2,\n        'createdAt' => '2024-11-14 02:00',\n        'type' => 'ORGANIZATION',\n        'role' => 'BACKER',\n        'tier' => 'backer+ yearly',\n        'isActive' => true,\n        'totalAmountDonated' => 170,\n        'currency' => 'USD',\n        'lastTransactionAt' => '2024-11-14 02:00',\n        'lastTransactionAmount' => 170,\n        'profile' => 'https://www.slotozilla.com/nz/free-spins',\n        'name' => 'Slotozilla',\n        'description' => 'Slotozilla website',\n        'image' => 'https://carbonphp.github.io/carbon/sponsors/slotozilla.png',\n        'website' => 'https://www.slotozilla.com/nz/free-spins',\n    ];\n\n    $list = array_filter($members, static fn (array $member): bool => $member['totalAmountDonated'] > 3 && $member['role'] !== 'HOST' && (\n        $member['totalAmountDonated'] > 100 ||\n        $member['lastTransactionAt'] > CarbonImmutable::now()\n            ->subMonthsNoOverflow(getMaxHistoryMonthsByAmount($member['lastTransactionAmount']))\n            ->format('Y-m-d h:i') ||\n        $member['isActive'] && $member['lastTransactionAmount'] >= 30\n    ));\n\n    $list = array_map(static function (array $member): array {\n        $createdAt = CarbonImmutable::parse($member['createdAt']);\n        $lastTransactionAt = CarbonImmutable::parse($member['lastTransactionAt']);\n\n        if ($createdAt->format('d H:i:s.u') > $lastTransactionAt->format('d H:i:s.u')) {\n            $createdAt = $createdAt\n                ->setDay($lastTransactionAt->day)\n                ->modify($lastTransactionAt->format('H:i:s.u'));\n        }\n\n        $isYearly = str_contains(strtolower($member['tier'] ?? ''), 'yearly');\n        $monthlyContribution = (float) (\n            ($isYearly && $lastTransactionAt > CarbonImmutable::parse('-1 year'))\n                ? ($member['lastTransactionAmount'] / 11.2) // 11.2 instead of 12 to include the discount for yearly subscription\n                : ($member['totalAmountDonated'] / ceil($createdAt->floatDiffInMonths()))\n        );\n\n        if (!$isYearly) {\n            if (\n                $lastTransactionAt->isAfter('last month') &&\n                $member['lastTransactionAmount'] > $monthlyContribution\n            ) {\n                $monthlyContribution = (float) $member['lastTransactionAmount'];\n            }\n\n            if ($lastTransactionAt->isBefore('-75 days')) {\n                $days = min(120, $lastTransactionAt->diffInDays('now') - 70);\n                $monthlyContribution *= 1 - $days / 240;\n            }\n        }\n\n        $yearlyContribution = (float) (\n            $isYearly\n                ? (12 * $monthlyContribution)\n                : ($member['totalAmountDonated'] / max(1, $createdAt->floatDiffInYears()))\n        );\n        $status = null;\n        $rank = 0;\n\n        if ($monthlyContribution > 50 || $yearlyContribution > 900) {\n            $status = 'sponsor';\n            $rank = 5;\n        } elseif ($monthlyContribution > 29 || $yearlyContribution > 700) {\n            $status = 'sponsor';\n            $rank = 4;\n        } elseif ($monthlyContribution > 14.5 || $yearlyContribution > 500) {\n            $status = 'backerPlus';\n            $rank = 3;\n        } elseif ($monthlyContribution > 4.5 || $yearlyContribution > 80) {\n            $status = 'backer';\n            $rank = 2;\n        } elseif ($member['totalAmountDonated'] > 0) {\n            $status = 'helper';\n            $rank = 1;\n        }\n\n        return array_merge($member, [\n            'star' => ($monthlyContribution > 98 || $yearlyContribution > 800),\n            'status' => $status,\n            'rank' => $rank,\n            'monthlyContribution' => $monthlyContribution,\n            'yearlyContribution' => $yearlyContribution,\n        ]);\n    }, $list);\n\n    usort($list, static function (array $a, array $b): int {\n        return ($b['star'] <=> $a['star'])\n            ?: ($b['rank'] <=> $a['rank'])\n            ?: ($b['monthlyContribution'] <=> $a['monthlyContribution'])\n            ?: ($b['totalAmountDonated'] <=> $a['totalAmountDonated']);\n    });\n\n    $membersByUrl = [];\n    $output = '';\n    $extra = '';\n\n    foreach ($list as $member) {\n        $url = $member['website'] ?? $member['profile'];\n\n        if (isset($membersByUrl[$url]) || !\\in_array($member['status'], ['sponsor', 'backerPlus'], true)) {\n            continue;\n        }\n\n        $membersByUrl[$url] = $member;\n        $href = htmlspecialchars($url);\n        $src = $customSponsorImages[$member['MemberId'] ?? ''] ?? $member['image'] ?? (strtr($member['profile'], ['https://opencollective.com/' => 'https://images.opencollective.com/']).'/avatar/256.png');\n        [$x, $y] = @getimagesize($src) ?: [0, 0];\n        $validImage = ($x && $y);\n        $src = $validImage ? htmlspecialchars($src) : 'https://opencollective.com/static/images/default-guest-logo.svg';\n        $height = match ($member['status']) {\n            'sponsor' => 64,\n            'backerPlus' => 42,\n            'backer' => 32,\n            default => 24,\n        };\n        $rel = match ($member['status']) {\n            'sponsor', 'backerPlus' => '',\n            default => ' rel=\"sponsored\"',\n        };\n\n        $width = min($height * 2, $validImage ? round($x * $height / $y) : $height);\n\n        if (!str_contains($href, 'utm_source') && !preg_match('/^https?:\\/\\/(?:www\\.)?(?:onlinekasyno-polis\\.pl|zonaminecraft\\.net|slotozilla\\.com)(\\/.*)?/', $href)) {\n            $href .= (!str_contains($href, '?') ? '?' : '&amp;').'utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon';\n        }\n\n        $title = getHtmlAttribute(($member['description'] ?? null) ?: $member['name']);\n        $alt = getHtmlAttribute($member['name']);\n\n        if ($member['star']) {\n            $width *= 1.5;\n            $height *= 1.5;\n        }\n\n        $link = \"\\n\".'<a title=\"'.$title.'\" href=\"'.$href.'\" target=\"_blank\"'.$rel.'>'.\n            '<img alt=\"'.$alt.'\" src=\"'.$src.'\" width=\"'.$width.'\" height=\"'.$height.'\">'.\n            '</a>';\n\n        if ($member['rank'] >= 5) {\n            $output .= $link;\n\n            continue;\n        }\n\n        $extra .= $link;\n    }\n\n    $github = [\n        8343178 => 'ssddanbrown',\n    ];\n\n    foreach ($github as $avatar => $user) {\n        $extra .= \"\\n\".'<a title=\"'.$user.'\" href=\"https://github.com/'.$user.'\" target=\"_blank\">'.\n            '<img alt=\"'.$user.'\" src=\"https://avatars.githubusercontent.com/u/'.$avatar.'?s=128&v=4\" width=\"42\" height=\"42\">'.\n            '</a>';\n    }\n\n    return $output.'<details><summary>See more</summary>'.$extra.'</details>';\n}\n\nfile_put_contents('readme.md', preg_replace_callback(\n    '/(<!-- <open-collective-sponsors> -->)[\\s\\S]+(<!-- <\\/open-collective-sponsors> -->)/',\n    static function (array $match): string {\n        return $match[1].getOpenCollectiveSponsors().$match[2];\n    },\n    file_get_contents('readme.md'),\n));\n"
  },
  {
    "path": "src/Carbon/AbstractTranslator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\MessageFormatter\\MessageFormatterMapper;\nuse Closure;\nuse ReflectionException;\nuse ReflectionFunction;\nuse ReflectionProperty;\nuse Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface;\nuse Symfony\\Component\\Translation\\Loader\\ArrayLoader;\nuse Symfony\\Component\\Translation\\Translator as SymfonyTranslator;\nuse Throwable;\n\nabstract class AbstractTranslator extends SymfonyTranslator\n{\n    public const REGION_CODE_LENGTH = 2;\n\n    /**\n     * Translator singletons for each language.\n     *\n     * @var array\n     */\n    protected static array $singletons = [];\n\n    /**\n     * List of custom localized messages.\n     *\n     * @var array\n     */\n    protected array $messages = [];\n\n    /**\n     * List of custom directories that contain translation files.\n     *\n     * @var string[]\n     */\n    protected array $directories = [];\n\n    /**\n     * Set to true while constructing.\n     */\n    protected bool $initializing = false;\n\n    /**\n     * List of locales aliases.\n     *\n     * @var array<string, string>\n     */\n    protected array $aliases = [\n        'me' => 'sr_Latn_ME',\n        'scr' => 'sh',\n    ];\n\n    /**\n     * Return a singleton instance of Translator.\n     *\n     * @param string|null $locale optional initial locale (\"en\" - english by default)\n     *\n     * @return static\n     */\n    public static function get(?string $locale = null): static\n    {\n        $locale = $locale ?: 'en';\n        $key = static::class === Translator::class ? $locale : static::class.'|'.$locale;\n        $count = \\count(static::$singletons);\n\n        // Remember only the last 10 translators created\n        if ($count > 10) {\n            foreach (\\array_slice(array_keys(static::$singletons), 0, $count - 10) as $index) {\n                unset(static::$singletons[$index]);\n            }\n        }\n\n        static::$singletons[$key] ??= new static($locale);\n\n        return static::$singletons[$key];\n    }\n\n    public function __construct($locale, ?MessageFormatterInterface $formatter = null, $cacheDir = null, $debug = false)\n    {\n        $this->initialize($locale, $formatter, $cacheDir, $debug);\n    }\n\n    /**\n     * Returns the list of directories translation files are searched in.\n     */\n    public function getDirectories(): array\n    {\n        return $this->directories;\n    }\n\n    /**\n     * Set list of directories translation files are searched in.\n     *\n     * @param array $directories new directories list\n     *\n     * @return $this\n     */\n    public function setDirectories(array $directories): static\n    {\n        $this->directories = $directories;\n\n        return $this;\n    }\n\n    /**\n     * Add a directory to the list translation files are searched in.\n     *\n     * @param string $directory new directory\n     *\n     * @return $this\n     */\n    public function addDirectory(string $directory): static\n    {\n        $this->directories[] = $directory;\n\n        return $this;\n    }\n\n    /**\n     * Remove a directory from the list translation files are searched in.\n     *\n     * @param string $directory directory path\n     *\n     * @return $this\n     */\n    public function removeDirectory(string $directory): static\n    {\n        $search = rtrim(strtr($directory, '\\\\', '/'), '/');\n\n        return $this->setDirectories(array_filter(\n            $this->getDirectories(),\n            static fn ($item) => rtrim(strtr($item, '\\\\', '/'), '/') !== $search,\n        ));\n    }\n\n    /**\n     * Reset messages of a locale (all locale if no locale passed).\n     * Remove custom messages and reload initial messages from matching\n     * file in Lang directory.\n     */\n    public function resetMessages(?string $locale = null): bool\n    {\n        if ($locale === null) {\n            $this->messages = [];\n            $this->catalogues = [];\n            $this->modifyResources(static function (array $resources): array {\n                foreach ($resources as &$list) {\n                    array_splice($list, 1);\n                }\n\n                return $resources;\n            });\n\n            return true;\n        }\n\n        $this->assertValidLocale($locale);\n\n        foreach ($this->getDirectories() as $directory) {\n            $file = \\sprintf('%s/%s.php', rtrim($directory, '\\\\/'), $locale);\n            $data = @include $file;\n\n            if ($data !== false) {\n                $this->messages[$locale] = $data;\n                unset($this->catalogues[$locale]);\n                $this->modifyResources(static function (array $resources) use ($locale): array {\n                    unset($resources[$locale]);\n\n                    return $resources;\n                });\n                $this->addResource('array', $this->messages[$locale], $locale);\n\n                return true;\n            }\n        }\n\n        return false;\n    }\n\n    /**\n     * Returns the list of files matching a given locale prefix (or all if empty).\n     *\n     * @param string $prefix prefix required to filter result\n     *\n     * @return array\n     */\n    public function getLocalesFiles(string $prefix = ''): array\n    {\n        $files = [];\n\n        foreach ($this->getDirectories() as $directory) {\n            foreach (self::getPhpFilesInDirectory(rtrim($directory, '\\\\/'), $prefix) as $file) {\n                $files[] = $file;\n            }\n        }\n\n        return array_unique($files);\n    }\n\n    /**\n     * Returns the list of internally available locales and already loaded custom locales.\n     * (It will ignore custom translator dynamic loading.)\n     *\n     * @param string $prefix prefix required to filter result\n     *\n     * @return array\n     */\n    public function getAvailableLocales(string $prefix = ''): array\n    {\n        return array_unique(array_merge(\n            array_map(\n                static fn (string $file) => substr($file, strrpos($file, '/') + 1, -4),\n                $this->getLocalesFiles($prefix),\n            ),\n            array_keys($this->messages),\n        ));\n    }\n\n    protected function translate(?string $id, array $parameters = [], ?string $domain = null, ?string $locale = null): string\n    {\n        $domain ??= 'messages';\n        $catalogue = $this->getCatalogue($locale);\n        $format = $this instanceof TranslatorStrongTypeInterface\n            ? $this->getFromCatalogue($catalogue, (string) $id, $domain)\n            : $this->getCatalogue($locale)->get((string) $id, $domain); // @codeCoverageIgnore\n\n        if ($format instanceof Closure) {\n            // @codeCoverageIgnoreStart\n            try {\n                $count = (new ReflectionFunction($format))->getNumberOfRequiredParameters();\n            } catch (ReflectionException) {\n                $count = 0;\n            }\n            // @codeCoverageIgnoreEnd\n\n            return $format(\n                ...array_values($parameters),\n                ...array_fill(0, max(0, $count - \\count($parameters)), null)\n            );\n        }\n\n        return parent::trans($id, $parameters, $domain, $locale);\n    }\n\n    /**\n     * Init messages language from matching file in Lang directory.\n     *\n     * @param string $locale\n     *\n     * @return bool\n     */\n    protected function loadMessagesFromFile(string $locale): bool\n    {\n        return isset($this->messages[$locale]) || $this->resetMessages($locale);\n    }\n\n    /**\n     * Set messages of a locale and take file first if present.\n     *\n     * @param string $locale\n     * @param array  $messages\n     *\n     * @return $this\n     */\n    public function setMessages(string $locale, array $messages): static\n    {\n        $this->loadMessagesFromFile($locale);\n        $this->addResource('array', $messages, $locale);\n        $this->messages[$locale] = array_merge(\n            $this->messages[$locale] ?? [],\n            $messages\n        );\n\n        return $this;\n    }\n\n    /**\n     * Set messages of the current locale and take file first if present.\n     *\n     * @param array $messages\n     *\n     * @return $this\n     */\n    public function setTranslations(array $messages): static\n    {\n        return $this->setMessages($this->getLocale(), $messages);\n    }\n\n    /**\n     * Get messages of a locale, if none given, return all the\n     * languages.\n     */\n    public function getMessages(?string $locale = null): array\n    {\n        return $locale === null ? $this->messages : $this->messages[$locale];\n    }\n\n    /**\n     * Set the current translator locale and indicate if the source locale file exists\n     *\n     * @param string $locale locale ex. en\n     */\n    public function setLocale($locale): void\n    {\n        $locale = preg_replace_callback('/[-_]([a-z]{2,}|\\d{2,})/', function ($matches) {\n            // _2-letters or YUE is a region, _3+-letters is a variant\n            $upper = strtoupper($matches[1]);\n\n            if ($upper === 'YUE' || $upper === 'ISO' || \\strlen($upper) <= static::REGION_CODE_LENGTH) {\n                return \"_$upper\";\n            }\n\n            return '_'.ucfirst($matches[1]);\n        }, strtolower($locale));\n\n        $previousLocale = $this->getLocale();\n\n        if ($previousLocale === $locale && isset($this->messages[$locale])) {\n            return;\n        }\n\n        unset(static::$singletons[$previousLocale]);\n\n        if ($locale === 'auto') {\n            $completeLocale = setlocale(LC_TIME, '0');\n            $locale = preg_replace('/^([^_.-]+).*$/', '$1', $completeLocale);\n            $locales = $this->getAvailableLocales($locale);\n\n            $completeLocaleChunks = preg_split('/[_.-]+/', $completeLocale);\n\n            $getScore = static fn ($language) => self::compareChunkLists(\n                $completeLocaleChunks,\n                preg_split('/[_.-]+/', $language),\n            );\n\n            usort($locales, static fn ($first, $second) => $getScore($second) <=> $getScore($first));\n\n            $locale = $locales[0] ?? 'en';\n        }\n\n        if (isset($this->aliases[$locale])) {\n            $locale = $this->aliases[$locale];\n        }\n\n        // If the language is not provided by a Carbon file\n        // and the tag contains a region (ex: en_CA), then\n        // first load the macro (ex: en) to have a fallback\n        if (\n            str_contains($locale, '_')\n            && !\\in_array($locale, self::getInternallySupportedLocales(), true)\n            && $this->loadMessagesFromFile($macroLocale = preg_replace('/^([^_]+).*$/', '$1', $locale))\n        ) {\n            parent::setLocale($macroLocale);\n        }\n\n        if (!$this->loadMessagesFromFile($locale) && !$this->initializing) {\n            return;\n        }\n\n        parent::setLocale($locale);\n    }\n\n    /**\n     * Show locale on var_dump().\n     *\n     * @return array\n     */\n    public function __debugInfo()\n    {\n        return [\n            'locale' => $this->getLocale(),\n        ];\n    }\n\n    public function __serialize(): array\n    {\n        return [\n            'locale' => $this->getLocale(),\n        ];\n    }\n\n    public function __unserialize(array $data): void\n    {\n        $this->initialize($data['locale'] ?? 'en');\n    }\n\n    private function initialize($locale, ?MessageFormatterInterface $formatter = null, $cacheDir = null, $debug = false): void\n    {\n        parent::setLocale($locale);\n        $this->initializing = true;\n        $this->directories = [self::getDefaultLangDirectory()];\n        $this->addLoader('array', new ArrayLoader());\n        parent::__construct($locale, new MessageFormatterMapper($formatter), $cacheDir, $debug);\n        $this->initializing = false;\n    }\n\n    private static function compareChunkLists($referenceChunks, $chunks)\n    {\n        $score = 0;\n\n        foreach ($referenceChunks as $index => $chunk) {\n            if (!isset($chunks[$index])) {\n                $score++;\n\n                continue;\n            }\n\n            if (strtolower($chunks[$index]) === strtolower($chunk)) {\n                $score += 10;\n            }\n        }\n\n        return $score;\n    }\n\n    /** @codeCoverageIgnore */\n    private function modifyResources(callable $callback): void\n    {\n        try {\n            $resourcesProperty = new ReflectionProperty(SymfonyTranslator::class, 'resources');\n            $resources = $resourcesProperty->getValue($this);\n            $resourcesProperty->setValue($this, $callback($resources));\n        } catch (Throwable) {\n            // Clear resources if available, if not, then nothing to clean\n        }\n    }\n\n    private static function getPhpFilesInDirectory(string $directory, string $prefix): array\n    {\n        if ($directory !== self::getDefaultLangDirectory()) {\n            return glob(\"$directory/$prefix*.php\") ?: [];\n        }\n\n        // If it's the internal Carbon directory we use a static list\n        // which is faster than scanning the folder with glob()\n        $locales = self::getInternallySupportedLocales();\n\n        if ($prefix !== '') {\n            $locales = array_values(array_filter(\n                self::getInternallySupportedLocales(),\n                static fn (string $locale) => str_starts_with($locale, $prefix),\n            ));\n        }\n\n        return array_map(\n            static fn (string $locale) => \"$directory/$locale.php\",\n            $locales,\n        );\n    }\n\n    private static function getDefaultLangDirectory(): string\n    {\n        return __DIR__.'/Lang';\n    }\n\n    /** @return list<string> */\n    private static function getInternallySupportedLocales(): array\n    {\n        return [\n            'aa',\n            'aa_DJ',\n            'aa_ER',\n            'aa_ER@saaho',\n            'aa_ET',\n            'af',\n            'af_NA',\n            'af_ZA',\n            'agq',\n            'agr',\n            'agr_PE',\n            'ak',\n            'ak_GH',\n            'am',\n            'am_ET',\n            'an',\n            'an_ES',\n            'anp',\n            'anp_IN',\n            'ar',\n            'ar_AE',\n            'ar_BH',\n            'ar_DJ',\n            'ar_DZ',\n            'ar_EG',\n            'ar_EH',\n            'ar_ER',\n            'ar_IL',\n            'ar_IN',\n            'ar_IQ',\n            'ar_JO',\n            'ar_KM',\n            'ar_KW',\n            'ar_LB',\n            'ar_LY',\n            'ar_MA',\n            'ar_MR',\n            'ar_OM',\n            'ar_PS',\n            'ar_QA',\n            'ar_SA',\n            'ar_SD',\n            'ar_SO',\n            'ar_SS',\n            'ar_SY',\n            'ar_Shakl',\n            'ar_TD',\n            'ar_TN',\n            'ar_YE',\n            'as',\n            'as_IN',\n            'asa',\n            'ast',\n            'ast_ES',\n            'ayc',\n            'ayc_PE',\n            'az',\n            'az_AZ',\n            'az_Arab',\n            'az_Cyrl',\n            'az_IR',\n            'az_Latn',\n            'bas',\n            'be',\n            'be_BY',\n            'be_BY@latin',\n            'bem',\n            'bem_ZM',\n            'ber',\n            'ber_DZ',\n            'ber_MA',\n            'bez',\n            'bg',\n            'bg_BG',\n            'bhb',\n            'bhb_IN',\n            'bho',\n            'bho_IN',\n            'bi',\n            'bi_VU',\n            'bm',\n            'bn',\n            'bn_BD',\n            'bn_IN',\n            'bo',\n            'bo_CN',\n            'bo_IN',\n            'br',\n            'br_FR',\n            'brx',\n            'brx_IN',\n            'bs',\n            'bs_BA',\n            'bs_Cyrl',\n            'bs_Latn',\n            'byn',\n            'byn_ER',\n            'ca',\n            'ca_AD',\n            'ca_ES',\n            'ca_ES_Valencia',\n            'ca_FR',\n            'ca_IT',\n            'ccp',\n            'ccp_IN',\n            'ce',\n            'ce_RU',\n            'cgg',\n            'chr',\n            'chr_US',\n            'ckb',\n            'cmn',\n            'cmn_TW',\n            'crh',\n            'crh_UA',\n            'cs',\n            'cs_CZ',\n            'csb',\n            'csb_PL',\n            'cu',\n            'cv',\n            'cv_RU',\n            'cy',\n            'cy_GB',\n            'da',\n            'da_DK',\n            'da_GL',\n            'dav',\n            'de',\n            'de_AT',\n            'de_BE',\n            'de_CH',\n            'de_DE',\n            'de_IT',\n            'de_LI',\n            'de_LU',\n            'dje',\n            'doi',\n            'doi_IN',\n            'dsb',\n            'dsb_DE',\n            'dua',\n            'dv',\n            'dv_MV',\n            'dyo',\n            'dz',\n            'dz_BT',\n            'ebu',\n            'ee',\n            'ee_TG',\n            'el',\n            'el_CY',\n            'el_GR',\n            'en',\n            'en_001',\n            'en_150',\n            'en_AG',\n            'en_AI',\n            'en_AS',\n            'en_AT',\n            'en_AU',\n            'en_BB',\n            'en_BE',\n            'en_BI',\n            'en_BM',\n            'en_BS',\n            'en_BW',\n            'en_BZ',\n            'en_CA',\n            'en_CC',\n            'en_CH',\n            'en_CK',\n            'en_CM',\n            'en_CX',\n            'en_CY',\n            'en_DE',\n            'en_DG',\n            'en_DK',\n            'en_DM',\n            'en_ER',\n            'en_FI',\n            'en_FJ',\n            'en_FK',\n            'en_FM',\n            'en_GB',\n            'en_GD',\n            'en_GG',\n            'en_GH',\n            'en_GI',\n            'en_GM',\n            'en_GU',\n            'en_GY',\n            'en_HK',\n            'en_IE',\n            'en_IL',\n            'en_IM',\n            'en_IN',\n            'en_IO',\n            'en_ISO',\n            'en_JE',\n            'en_JM',\n            'en_KE',\n            'en_KI',\n            'en_KN',\n            'en_KY',\n            'en_LC',\n            'en_LR',\n            'en_LS',\n            'en_MG',\n            'en_MH',\n            'en_MO',\n            'en_MP',\n            'en_MS',\n            'en_MT',\n            'en_MU',\n            'en_MW',\n            'en_MY',\n            'en_NA',\n            'en_NF',\n            'en_NG',\n            'en_NL',\n            'en_NR',\n            'en_NU',\n            'en_NZ',\n            'en_PG',\n            'en_PH',\n            'en_PK',\n            'en_PN',\n            'en_PR',\n            'en_PW',\n            'en_RW',\n            'en_SB',\n            'en_SC',\n            'en_SD',\n            'en_SE',\n            'en_SG',\n            'en_SH',\n            'en_SI',\n            'en_SL',\n            'en_SS',\n            'en_SX',\n            'en_SZ',\n            'en_TC',\n            'en_TK',\n            'en_TO',\n            'en_TT',\n            'en_TV',\n            'en_TZ',\n            'en_UG',\n            'en_UM',\n            'en_US',\n            'en_US_Posix',\n            'en_VC',\n            'en_VG',\n            'en_VI',\n            'en_VU',\n            'en_WS',\n            'en_ZA',\n            'en_ZM',\n            'en_ZW',\n            'eo',\n            'es',\n            'es_419',\n            'es_AR',\n            'es_BO',\n            'es_BR',\n            'es_BZ',\n            'es_CL',\n            'es_CO',\n            'es_CR',\n            'es_CU',\n            'es_DO',\n            'es_EA',\n            'es_EC',\n            'es_ES',\n            'es_GQ',\n            'es_GT',\n            'es_HN',\n            'es_IC',\n            'es_MX',\n            'es_NI',\n            'es_PA',\n            'es_PE',\n            'es_PH',\n            'es_PR',\n            'es_PY',\n            'es_SV',\n            'es_US',\n            'es_UY',\n            'es_VE',\n            'et',\n            'et_EE',\n            'eu',\n            'eu_ES',\n            'ewo',\n            'fa',\n            'fa_AF',\n            'fa_IR',\n            'ff',\n            'ff_CM',\n            'ff_GN',\n            'ff_MR',\n            'ff_SN',\n            'fi',\n            'fi_FI',\n            'fil',\n            'fil_PH',\n            'fo',\n            'fo_DK',\n            'fo_FO',\n            'fr',\n            'fr_BE',\n            'fr_BF',\n            'fr_BI',\n            'fr_BJ',\n            'fr_BL',\n            'fr_CA',\n            'fr_CD',\n            'fr_CF',\n            'fr_CG',\n            'fr_CH',\n            'fr_CI',\n            'fr_CM',\n            'fr_DJ',\n            'fr_DZ',\n            'fr_FR',\n            'fr_GA',\n            'fr_GF',\n            'fr_GN',\n            'fr_GP',\n            'fr_GQ',\n            'fr_HT',\n            'fr_KM',\n            'fr_LU',\n            'fr_MA',\n            'fr_MC',\n            'fr_MF',\n            'fr_MG',\n            'fr_ML',\n            'fr_MQ',\n            'fr_MR',\n            'fr_MU',\n            'fr_NC',\n            'fr_NE',\n            'fr_PF',\n            'fr_PM',\n            'fr_RE',\n            'fr_RW',\n            'fr_SC',\n            'fr_SN',\n            'fr_SY',\n            'fr_TD',\n            'fr_TG',\n            'fr_TN',\n            'fr_VU',\n            'fr_WF',\n            'fr_YT',\n            'fur',\n            'fur_IT',\n            'fy',\n            'fy_DE',\n            'fy_NL',\n            'ga',\n            'ga_IE',\n            'gd',\n            'gd_GB',\n            'gez',\n            'gez_ER',\n            'gez_ET',\n            'gl',\n            'gl_ES',\n            'gom',\n            'gom_Latn',\n            'gsw',\n            'gsw_CH',\n            'gsw_FR',\n            'gsw_LI',\n            'gu',\n            'gu_IN',\n            'guz',\n            'gv',\n            'gv_GB',\n            'ha',\n            'ha_GH',\n            'ha_NE',\n            'ha_NG',\n            'hak',\n            'hak_TW',\n            'haw',\n            'he',\n            'he_IL',\n            'hi',\n            'hi_IN',\n            'hif',\n            'hif_FJ',\n            'hne',\n            'hne_IN',\n            'hr',\n            'hr_BA',\n            'hr_HR',\n            'hsb',\n            'hsb_DE',\n            'ht',\n            'ht_HT',\n            'hu',\n            'hu_HU',\n            'hy',\n            'hy_AM',\n            'i18n',\n            'ia',\n            'ia_FR',\n            'id',\n            'id_ID',\n            'ig',\n            'ig_NG',\n            'ii',\n            'ik',\n            'ik_CA',\n            'in',\n            'is',\n            'is_IS',\n            'it',\n            'it_CH',\n            'it_IT',\n            'it_SM',\n            'it_VA',\n            'iu',\n            'iu_CA',\n            'iw',\n            'ja',\n            'ja_JP',\n            'jgo',\n            'jmc',\n            'jv',\n            'ka',\n            'ka_GE',\n            'kab',\n            'kab_DZ',\n            'kam',\n            'kde',\n            'kea',\n            'khq',\n            'ki',\n            'kk',\n            'kk_KZ',\n            'kkj',\n            'kl',\n            'kl_GL',\n            'kln',\n            'km',\n            'km_KH',\n            'kn',\n            'kn_IN',\n            'ko',\n            'ko_KP',\n            'ko_KR',\n            'kok',\n            'kok_IN',\n            'ks',\n            'ks_IN',\n            'ks_IN@devanagari',\n            'ksb',\n            'ksf',\n            'ksh',\n            'ku',\n            'ku_TR',\n            'kw',\n            'kw_GB',\n            'ky',\n            'ky_KG',\n            'lag',\n            'lb',\n            'lb_LU',\n            'lg',\n            'lg_UG',\n            'li',\n            'li_NL',\n            'lij',\n            'lij_IT',\n            'lkt',\n            'ln',\n            'ln_AO',\n            'ln_CD',\n            'ln_CF',\n            'ln_CG',\n            'lo',\n            'lo_LA',\n            'lrc',\n            'lrc_IQ',\n            'lt',\n            'lt_LT',\n            'lu',\n            'luo',\n            'luy',\n            'lv',\n            'lv_LV',\n            'lzh',\n            'lzh_TW',\n            'mag',\n            'mag_IN',\n            'mai',\n            'mai_IN',\n            'mas',\n            'mas_TZ',\n            'mer',\n            'mfe',\n            'mfe_MU',\n            'mg',\n            'mg_MG',\n            'mgh',\n            'mgo',\n            'mhr',\n            'mhr_RU',\n            'mi',\n            'mi_NZ',\n            'miq',\n            'miq_NI',\n            'mjw',\n            'mjw_IN',\n            'mk',\n            'mk_MK',\n            'ml',\n            'ml_IN',\n            'mn',\n            'mn_MN',\n            'mni',\n            'mni_IN',\n            'mo',\n            'mr',\n            'mr_IN',\n            'ms',\n            'ms_BN',\n            'ms_MY',\n            'ms_SG',\n            'mt',\n            'mt_MT',\n            'mua',\n            'my',\n            'my_MM',\n            'mzn',\n            'nan',\n            'nan_TW',\n            'nan_TW@latin',\n            'naq',\n            'nb',\n            'nb_NO',\n            'nb_SJ',\n            'nd',\n            'nds',\n            'nds_DE',\n            'nds_NL',\n            'ne',\n            'ne_IN',\n            'ne_NP',\n            'nhn',\n            'nhn_MX',\n            'niu',\n            'niu_NU',\n            'nl',\n            'nl_AW',\n            'nl_BE',\n            'nl_BQ',\n            'nl_CW',\n            'nl_NL',\n            'nl_SR',\n            'nl_SX',\n            'nmg',\n            'nn',\n            'nn_NO',\n            'nnh',\n            'no',\n            'nr',\n            'nr_ZA',\n            'nso',\n            'nso_ZA',\n            'nus',\n            'nyn',\n            'oc',\n            'oc_FR',\n            'om',\n            'om_ET',\n            'om_KE',\n            'or',\n            'or_IN',\n            'os',\n            'os_RU',\n            'pa',\n            'pa_Arab',\n            'pa_Guru',\n            'pa_IN',\n            'pa_PK',\n            'pap',\n            'pap_AW',\n            'pap_CW',\n            'pl',\n            'pl_PL',\n            'prg',\n            'ps',\n            'ps_AF',\n            'pt',\n            'pt_AO',\n            'pt_BR',\n            'pt_CH',\n            'pt_CV',\n            'pt_GQ',\n            'pt_GW',\n            'pt_LU',\n            'pt_MO',\n            'pt_MZ',\n            'pt_PT',\n            'pt_ST',\n            'pt_TL',\n            'qu',\n            'qu_BO',\n            'qu_EC',\n            'quz',\n            'quz_PE',\n            'raj',\n            'raj_IN',\n            'rm',\n            'rn',\n            'ro',\n            'ro_MD',\n            'ro_RO',\n            'rof',\n            'ru',\n            'ru_BY',\n            'ru_KG',\n            'ru_KZ',\n            'ru_MD',\n            'ru_RU',\n            'ru_UA',\n            'rw',\n            'rw_RW',\n            'rwk',\n            'sa',\n            'sa_IN',\n            'sah',\n            'sah_RU',\n            'saq',\n            'sat',\n            'sat_IN',\n            'sbp',\n            'sc',\n            'sc_IT',\n            'sd',\n            'sd_IN',\n            'sd_IN@devanagari',\n            'se',\n            'se_FI',\n            'se_NO',\n            'se_SE',\n            'seh',\n            'ses',\n            'sg',\n            'sgs',\n            'sgs_LT',\n            'sh',\n            'shi',\n            'shi_Latn',\n            'shi_Tfng',\n            'shn',\n            'shn_MM',\n            'shs',\n            'shs_CA',\n            'si',\n            'si_LK',\n            'sid',\n            'sid_ET',\n            'sk',\n            'sk_SK',\n            'sl',\n            'sl_SI',\n            'sm',\n            'sm_WS',\n            'smn',\n            'sn',\n            'so',\n            'so_DJ',\n            'so_ET',\n            'so_KE',\n            'so_SO',\n            'sq',\n            'sq_AL',\n            'sq_MK',\n            'sq_XK',\n            'sr',\n            'sr_Cyrl',\n            'sr_Cyrl_BA',\n            'sr_Cyrl_ME',\n            'sr_Cyrl_XK',\n            'sr_Latn',\n            'sr_Latn_BA',\n            'sr_Latn_ME',\n            'sr_Latn_XK',\n            'sr_ME',\n            'sr_RS',\n            'sr_RS@latin',\n            'ss',\n            'ss_ZA',\n            'st',\n            'st_ZA',\n            'sv',\n            'sv_AX',\n            'sv_FI',\n            'sv_SE',\n            'sw',\n            'sw_CD',\n            'sw_KE',\n            'sw_TZ',\n            'sw_UG',\n            'szl',\n            'szl_PL',\n            'ta',\n            'ta_IN',\n            'ta_LK',\n            'ta_MY',\n            'ta_SG',\n            'tcy',\n            'tcy_IN',\n            'te',\n            'te_IN',\n            'teo',\n            'teo_KE',\n            'tet',\n            'tg',\n            'tg_TJ',\n            'th',\n            'th_TH',\n            'the',\n            'the_NP',\n            'ti',\n            'ti_ER',\n            'ti_ET',\n            'tig',\n            'tig_ER',\n            'tk',\n            'tk_TM',\n            'tl',\n            'tl_PH',\n            'tlh',\n            'tn',\n            'tn_ZA',\n            'to',\n            'to_TO',\n            'tpi',\n            'tpi_PG',\n            'tr',\n            'tr_CY',\n            'tr_TR',\n            'ts',\n            'ts_ZA',\n            'tt',\n            'tt_RU',\n            'tt_RU@iqtelif',\n            'twq',\n            'tzl',\n            'tzm',\n            'tzm_Latn',\n            'ug',\n            'ug_CN',\n            'uk',\n            'uk_UA',\n            'unm',\n            'unm_US',\n            'ur',\n            'ur_IN',\n            'ur_PK',\n            'uz',\n            'uz_Arab',\n            'uz_Cyrl',\n            'uz_Latn',\n            'uz_UZ',\n            'uz_UZ@cyrillic',\n            'vai',\n            'vai_Latn',\n            'vai_Vaii',\n            've',\n            've_ZA',\n            'vi',\n            'vi_VN',\n            'vo',\n            'vun',\n            'wa',\n            'wa_BE',\n            'wae',\n            'wae_CH',\n            'wal',\n            'wal_ET',\n            'wo',\n            'wo_SN',\n            'xh',\n            'xh_ZA',\n            'xog',\n            'yav',\n            'yi',\n            'yi_US',\n            'yo',\n            'yo_BJ',\n            'yo_NG',\n            'yue',\n            'yue_HK',\n            'yue_Hans',\n            'yue_Hant',\n            'yuw',\n            'yuw_PG',\n            'zgh',\n            'zh',\n            'zh_CN',\n            'zh_HK',\n            'zh_Hans',\n            'zh_Hans_HK',\n            'zh_Hans_MO',\n            'zh_Hans_SG',\n            'zh_Hant',\n            'zh_Hant_HK',\n            'zh_Hant_MO',\n            'zh_Hant_TW',\n            'zh_MO',\n            'zh_SG',\n            'zh_TW',\n            'zh_YUE',\n            'zu',\n            'zu_ZA',\n        ];\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Callback.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Closure;\nuse DateInterval;\nuse DatePeriod;\nuse DateTime;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse ReflectionFunction;\nuse ReflectionNamedType;\nuse ReflectionType;\n\nfinal class Callback\n{\n    private ?ReflectionFunction $function;\n\n    private function __construct(private readonly Closure $closure)\n    {\n    }\n\n    public static function fromClosure(Closure $closure): self\n    {\n        return new self($closure);\n    }\n\n    public static function parameter(mixed $closure, mixed $value, string|int $index = 0): mixed\n    {\n        if ($closure instanceof Closure) {\n            return self::fromClosure($closure)->prepareParameter($value, $index);\n        }\n\n        return $value;\n    }\n\n    public function getReflectionFunction(): ReflectionFunction\n    {\n        return $this->function ??= new ReflectionFunction($this->closure);\n    }\n\n    public function prepareParameter(mixed $value, string|int $index = 0): mixed\n    {\n        $type = $this->getParameterType($index);\n\n        if (!($type instanceof ReflectionNamedType)) {\n            return $value;\n        }\n\n        $name = $type->getName();\n\n        if ($name === CarbonInterface::class) {\n            $name = $value instanceof DateTime ? Carbon::class : CarbonImmutable::class;\n        }\n\n        if (!class_exists($name) || is_a($value, $name)) {\n            return $value;\n        }\n\n        $class = $this->getPromotedClass($value);\n\n        if ($class && is_a($name, $class, true)) {\n            return $name::instance($value);\n        }\n\n        return $value;\n    }\n\n    public function call(mixed ...$arguments): mixed\n    {\n        foreach ($arguments as $index => &$value) {\n            if ($this->getPromotedClass($value)) {\n                $value = $this->prepareParameter($value, $index);\n            }\n        }\n\n        return ($this->closure)(...$arguments);\n    }\n\n    private function getParameterType(string|int $index): ?ReflectionType\n    {\n        $parameters = $this->getReflectionFunction()->getParameters();\n\n        if (\\is_int($index)) {\n            return ($parameters[$index] ?? null)?->getType();\n        }\n\n        foreach ($parameters as $parameter) {\n            if ($parameter->getName() === $index) {\n                return $parameter->getType();\n            }\n        }\n\n        return null;\n    }\n\n    /** @return class-string|null */\n    private function getPromotedClass(mixed $value): ?string\n    {\n        if ($value instanceof DateTimeInterface) {\n            return CarbonInterface::class;\n        }\n\n        if ($value instanceof DateInterval) {\n            return CarbonInterval::class;\n        }\n\n        if ($value instanceof DatePeriod) {\n            return CarbonPeriod::class;\n        }\n\n        if ($value instanceof DateTimeZone) {\n            return CarbonTimeZone::class;\n        }\n\n        return null;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Carbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Traits\\Date;\nuse DateTime;\nuse DateTimeInterface;\n\n/**\n * A simple API extension for DateTime.\n *\n * <autodoc generated by `composer phpdoc`>\n *\n * @property      string           $localeDayOfWeek                                                                   the day of week in current locale\n * @property      string           $shortLocaleDayOfWeek                                                              the abbreviated day of week in current locale\n * @property      string           $localeMonth                                                                       the month in current locale\n * @property      string           $shortLocaleMonth                                                                  the abbreviated month in current locale\n * @property      int              $year\n * @property      int              $yearIso\n * @property      int              $month\n * @property      int              $day\n * @property      int              $hour\n * @property      int              $minute\n * @property      int              $second\n * @property      int              $micro\n * @property      int              $microsecond\n * @property      int              $dayOfWeekIso                                                                      1 (for Monday) through 7 (for Sunday)\n * @property      int|float|string $timestamp                                                                         seconds since the Unix Epoch\n * @property      string           $englishDayOfWeek                                                                  the day of week in English\n * @property      string           $shortEnglishDayOfWeek                                                             the abbreviated day of week in English\n * @property      string           $englishMonth                                                                      the month in English\n * @property      string           $shortEnglishMonth                                                                 the abbreviated month in English\n * @property      int              $milliseconds\n * @property      int              $millisecond\n * @property      int              $milli\n * @property      int              $week                                                                              1 through 53\n * @property      int              $isoWeek                                                                           1 through 53\n * @property      int              $weekYear                                                                          year according to week format\n * @property      int              $isoWeekYear                                                                       year according to ISO week format\n * @property      int              $age                                                                               does a diffInYears() with default parameters\n * @property      int              $offset                                                                            the timezone offset in seconds from UTC\n * @property      int              $offsetMinutes                                                                     the timezone offset in minutes from UTC\n * @property      int              $offsetHours                                                                       the timezone offset in hours from UTC\n * @property      CarbonTimeZone   $timezone                                                                          the current timezone\n * @property      CarbonTimeZone   $tz                                                                                alias of $timezone\n * @property      int              $centuryOfMillennium                                                               The value of the century starting from the beginning of the current millennium\n * @property      int              $dayOfCentury                                                                      The value of the day starting from the beginning of the current century\n * @property      int              $dayOfDecade                                                                       The value of the day starting from the beginning of the current decade\n * @property      int              $dayOfMillennium                                                                   The value of the day starting from the beginning of the current millennium\n * @property      int              $dayOfMonth                                                                        The value of the day starting from the beginning of the current month\n * @property      int              $dayOfQuarter                                                                      The value of the day starting from the beginning of the current quarter\n * @property      int              $dayOfWeek                                                                         0 (for Sunday) through 6 (for Saturday)\n * @property      int              $dayOfYear                                                                         1 through 366\n * @property      int              $decadeOfCentury                                                                   The value of the decade starting from the beginning of the current century\n * @property      int              $decadeOfMillennium                                                                The value of the decade starting from the beginning of the current millennium\n * @property      int              $hourOfCentury                                                                     The value of the hour starting from the beginning of the current century\n * @property      int              $hourOfDay                                                                         The value of the hour starting from the beginning of the current day\n * @property      int              $hourOfDecade                                                                      The value of the hour starting from the beginning of the current decade\n * @property      int              $hourOfMillennium                                                                  The value of the hour starting from the beginning of the current millennium\n * @property      int              $hourOfMonth                                                                       The value of the hour starting from the beginning of the current month\n * @property      int              $hourOfQuarter                                                                     The value of the hour starting from the beginning of the current quarter\n * @property      int              $hourOfWeek                                                                        The value of the hour starting from the beginning of the current week\n * @property      int              $hourOfYear                                                                        The value of the hour starting from the beginning of the current year\n * @property      int              $microsecondOfCentury                                                              The value of the microsecond starting from the beginning of the current century\n * @property      int              $microsecondOfDay                                                                  The value of the microsecond starting from the beginning of the current day\n * @property      int              $microsecondOfDecade                                                               The value of the microsecond starting from the beginning of the current decade\n * @property      int              $microsecondOfHour                                                                 The value of the microsecond starting from the beginning of the current hour\n * @property      int              $microsecondOfMillennium                                                           The value of the microsecond starting from the beginning of the current millennium\n * @property      int              $microsecondOfMillisecond                                                          The value of the microsecond starting from the beginning of the current millisecond\n * @property      int              $microsecondOfMinute                                                               The value of the microsecond starting from the beginning of the current minute\n * @property      int              $microsecondOfMonth                                                                The value of the microsecond starting from the beginning of the current month\n * @property      int              $microsecondOfQuarter                                                              The value of the microsecond starting from the beginning of the current quarter\n * @property      int              $microsecondOfSecond                                                               The value of the microsecond starting from the beginning of the current second\n * @property      int              $microsecondOfWeek                                                                 The value of the microsecond starting from the beginning of the current week\n * @property      int              $microsecondOfYear                                                                 The value of the microsecond starting from the beginning of the current year\n * @property      int              $millisecondOfCentury                                                              The value of the millisecond starting from the beginning of the current century\n * @property      int              $millisecondOfDay                                                                  The value of the millisecond starting from the beginning of the current day\n * @property      int              $millisecondOfDecade                                                               The value of the millisecond starting from the beginning of the current decade\n * @property      int              $millisecondOfHour                                                                 The value of the millisecond starting from the beginning of the current hour\n * @property      int              $millisecondOfMillennium                                                           The value of the millisecond starting from the beginning of the current millennium\n * @property      int              $millisecondOfMinute                                                               The value of the millisecond starting from the beginning of the current minute\n * @property      int              $millisecondOfMonth                                                                The value of the millisecond starting from the beginning of the current month\n * @property      int              $millisecondOfQuarter                                                              The value of the millisecond starting from the beginning of the current quarter\n * @property      int              $millisecondOfSecond                                                               The value of the millisecond starting from the beginning of the current second\n * @property      int              $millisecondOfWeek                                                                 The value of the millisecond starting from the beginning of the current week\n * @property      int              $millisecondOfYear                                                                 The value of the millisecond starting from the beginning of the current year\n * @property      int              $minuteOfCentury                                                                   The value of the minute starting from the beginning of the current century\n * @property      int              $minuteOfDay                                                                       The value of the minute starting from the beginning of the current day\n * @property      int              $minuteOfDecade                                                                    The value of the minute starting from the beginning of the current decade\n * @property      int              $minuteOfHour                                                                      The value of the minute starting from the beginning of the current hour\n * @property      int              $minuteOfMillennium                                                                The value of the minute starting from the beginning of the current millennium\n * @property      int              $minuteOfMonth                                                                     The value of the minute starting from the beginning of the current month\n * @property      int              $minuteOfQuarter                                                                   The value of the minute starting from the beginning of the current quarter\n * @property      int              $minuteOfWeek                                                                      The value of the minute starting from the beginning of the current week\n * @property      int              $minuteOfYear                                                                      The value of the minute starting from the beginning of the current year\n * @property      int              $monthOfCentury                                                                    The value of the month starting from the beginning of the current century\n * @property      int              $monthOfDecade                                                                     The value of the month starting from the beginning of the current decade\n * @property      int              $monthOfMillennium                                                                 The value of the month starting from the beginning of the current millennium\n * @property      int              $monthOfQuarter                                                                    The value of the month starting from the beginning of the current quarter\n * @property      int              $monthOfYear                                                                       The value of the month starting from the beginning of the current year\n * @property      int              $quarterOfCentury                                                                  The value of the quarter starting from the beginning of the current century\n * @property      int              $quarterOfDecade                                                                   The value of the quarter starting from the beginning of the current decade\n * @property      int              $quarterOfMillennium                                                               The value of the quarter starting from the beginning of the current millennium\n * @property      int              $quarterOfYear                                                                     The value of the quarter starting from the beginning of the current year\n * @property      int              $secondOfCentury                                                                   The value of the second starting from the beginning of the current century\n * @property      int              $secondOfDay                                                                       The value of the second starting from the beginning of the current day\n * @property      int              $secondOfDecade                                                                    The value of the second starting from the beginning of the current decade\n * @property      int              $secondOfHour                                                                      The value of the second starting from the beginning of the current hour\n * @property      int              $secondOfMillennium                                                                The value of the second starting from the beginning of the current millennium\n * @property      int              $secondOfMinute                                                                    The value of the second starting from the beginning of the current minute\n * @property      int              $secondOfMonth                                                                     The value of the second starting from the beginning of the current month\n * @property      int              $secondOfQuarter                                                                   The value of the second starting from the beginning of the current quarter\n * @property      int              $secondOfWeek                                                                      The value of the second starting from the beginning of the current week\n * @property      int              $secondOfYear                                                                      The value of the second starting from the beginning of the current year\n * @property      int              $weekOfCentury                                                                     The value of the week starting from the beginning of the current century\n * @property      int              $weekOfDecade                                                                      The value of the week starting from the beginning of the current decade\n * @property      int              $weekOfMillennium                                                                  The value of the week starting from the beginning of the current millennium\n * @property      int              $weekOfMonth                                                                       1 through 5\n * @property      int              $weekOfQuarter                                                                     The value of the week starting from the beginning of the current quarter\n * @property      int              $weekOfYear                                                                        ISO-8601 week number of year, weeks starting on Monday\n * @property      int              $yearOfCentury                                                                     The value of the year starting from the beginning of the current century\n * @property      int              $yearOfDecade                                                                      The value of the year starting from the beginning of the current decade\n * @property      int              $yearOfMillennium                                                                  The value of the year starting from the beginning of the current millennium\n * @property-read string           $latinMeridiem                                                                     \"am\"/\"pm\" (Ante meridiem or Post meridiem latin lowercase mark)\n * @property-read string           $latinUpperMeridiem                                                                \"AM\"/\"PM\" (Ante meridiem or Post meridiem latin uppercase mark)\n * @property-read string           $timezoneAbbreviatedName                                                           the current timezone abbreviated name\n * @property-read string           $tzAbbrName                                                                        alias of $timezoneAbbreviatedName\n * @property-read string           $dayName                                                                           long name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortDayName                                                                      short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $minDayName                                                                        very short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $monthName                                                                         long name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortMonthName                                                                    short name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $meridiem                                                                          lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read string           $upperMeridiem                                                                     uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read int              $noZeroHour                                                                        current hour from 1 to 24\n * @property-read int              $isoWeeksInYear                                                                    51 through 53\n * @property-read int              $weekNumberInMonth                                                                 1 through 5\n * @property-read int              $firstWeekDay                                                                      0 through 6\n * @property-read int              $lastWeekDay                                                                       0 through 6\n * @property-read int              $quarter                                                                           the quarter of this instance, 1 - 4\n * @property-read int              $decade                                                                            the decade of this instance\n * @property-read int              $century                                                                           the century of this instance\n * @property-read int              $millennium                                                                        the millennium of this instance\n * @property-read bool             $dst                                                                               daylight savings time indicator, true if DST, false otherwise\n * @property-read bool             $local                                                                             checks if the timezone is local, true if local, false otherwise\n * @property-read bool             $utc                                                                               checks if the timezone is UTC, true if UTC, false otherwise\n * @property-read string           $timezoneName                                                                      the current timezone name\n * @property-read string           $tzName                                                                            alias of $timezoneName\n * @property-read string           $locale                                                                            locale of the current instance\n * @property-read int              $centuriesInMillennium                                                             The number of centuries contained in the current millennium\n * @property-read int              $daysInCentury                                                                     The number of days contained in the current century\n * @property-read int              $daysInDecade                                                                      The number of days contained in the current decade\n * @property-read int              $daysInMillennium                                                                  The number of days contained in the current millennium\n * @property-read int              $daysInMonth                                                                       number of days in the given month\n * @property-read int              $daysInQuarter                                                                     The number of days contained in the current quarter\n * @property-read int              $daysInWeek                                                                        The number of days contained in the current week\n * @property-read int              $daysInYear                                                                        365 or 366\n * @property-read int              $decadesInCentury                                                                  The number of decades contained in the current century\n * @property-read int              $decadesInMillennium                                                               The number of decades contained in the current millennium\n * @property-read int              $hoursInCentury                                                                    The number of hours contained in the current century\n * @property-read int              $hoursInDay                                                                        The number of hours contained in the current day\n * @property-read int              $hoursInDecade                                                                     The number of hours contained in the current decade\n * @property-read int              $hoursInMillennium                                                                 The number of hours contained in the current millennium\n * @property-read int              $hoursInMonth                                                                      The number of hours contained in the current month\n * @property-read int              $hoursInQuarter                                                                    The number of hours contained in the current quarter\n * @property-read int              $hoursInWeek                                                                       The number of hours contained in the current week\n * @property-read int              $hoursInYear                                                                       The number of hours contained in the current year\n * @property-read int              $microsecondsInCentury                                                             The number of microseconds contained in the current century\n * @property-read int              $microsecondsInDay                                                                 The number of microseconds contained in the current day\n * @property-read int              $microsecondsInDecade                                                              The number of microseconds contained in the current decade\n * @property-read int              $microsecondsInHour                                                                The number of microseconds contained in the current hour\n * @property-read int              $microsecondsInMillennium                                                          The number of microseconds contained in the current millennium\n * @property-read int              $microsecondsInMillisecond                                                         The number of microseconds contained in the current millisecond\n * @property-read int              $microsecondsInMinute                                                              The number of microseconds contained in the current minute\n * @property-read int              $microsecondsInMonth                                                               The number of microseconds contained in the current month\n * @property-read int              $microsecondsInQuarter                                                             The number of microseconds contained in the current quarter\n * @property-read int              $microsecondsInSecond                                                              The number of microseconds contained in the current second\n * @property-read int              $microsecondsInWeek                                                                The number of microseconds contained in the current week\n * @property-read int              $microsecondsInYear                                                                The number of microseconds contained in the current year\n * @property-read int              $millisecondsInCentury                                                             The number of milliseconds contained in the current century\n * @property-read int              $millisecondsInDay                                                                 The number of milliseconds contained in the current day\n * @property-read int              $millisecondsInDecade                                                              The number of milliseconds contained in the current decade\n * @property-read int              $millisecondsInHour                                                                The number of milliseconds contained in the current hour\n * @property-read int              $millisecondsInMillennium                                                          The number of milliseconds contained in the current millennium\n * @property-read int              $millisecondsInMinute                                                              The number of milliseconds contained in the current minute\n * @property-read int              $millisecondsInMonth                                                               The number of milliseconds contained in the current month\n * @property-read int              $millisecondsInQuarter                                                             The number of milliseconds contained in the current quarter\n * @property-read int              $millisecondsInSecond                                                              The number of milliseconds contained in the current second\n * @property-read int              $millisecondsInWeek                                                                The number of milliseconds contained in the current week\n * @property-read int              $millisecondsInYear                                                                The number of milliseconds contained in the current year\n * @property-read int              $minutesInCentury                                                                  The number of minutes contained in the current century\n * @property-read int              $minutesInDay                                                                      The number of minutes contained in the current day\n * @property-read int              $minutesInDecade                                                                   The number of minutes contained in the current decade\n * @property-read int              $minutesInHour                                                                     The number of minutes contained in the current hour\n * @property-read int              $minutesInMillennium                                                               The number of minutes contained in the current millennium\n * @property-read int              $minutesInMonth                                                                    The number of minutes contained in the current month\n * @property-read int              $minutesInQuarter                                                                  The number of minutes contained in the current quarter\n * @property-read int              $minutesInWeek                                                                     The number of minutes contained in the current week\n * @property-read int              $minutesInYear                                                                     The number of minutes contained in the current year\n * @property-read int              $monthsInCentury                                                                   The number of months contained in the current century\n * @property-read int              $monthsInDecade                                                                    The number of months contained in the current decade\n * @property-read int              $monthsInMillennium                                                                The number of months contained in the current millennium\n * @property-read int              $monthsInQuarter                                                                   The number of months contained in the current quarter\n * @property-read int              $monthsInYear                                                                      The number of months contained in the current year\n * @property-read int              $quartersInCentury                                                                 The number of quarters contained in the current century\n * @property-read int              $quartersInDecade                                                                  The number of quarters contained in the current decade\n * @property-read int              $quartersInMillennium                                                              The number of quarters contained in the current millennium\n * @property-read int              $quartersInYear                                                                    The number of quarters contained in the current year\n * @property-read int              $secondsInCentury                                                                  The number of seconds contained in the current century\n * @property-read int              $secondsInDay                                                                      The number of seconds contained in the current day\n * @property-read int              $secondsInDecade                                                                   The number of seconds contained in the current decade\n * @property-read int              $secondsInHour                                                                     The number of seconds contained in the current hour\n * @property-read int              $secondsInMillennium                                                               The number of seconds contained in the current millennium\n * @property-read int              $secondsInMinute                                                                   The number of seconds contained in the current minute\n * @property-read int              $secondsInMonth                                                                    The number of seconds contained in the current month\n * @property-read int              $secondsInQuarter                                                                  The number of seconds contained in the current quarter\n * @property-read int              $secondsInWeek                                                                     The number of seconds contained in the current week\n * @property-read int              $secondsInYear                                                                     The number of seconds contained in the current year\n * @property-read int              $weeksInCentury                                                                    The number of weeks contained in the current century\n * @property-read int              $weeksInDecade                                                                     The number of weeks contained in the current decade\n * @property-read int              $weeksInMillennium                                                                 The number of weeks contained in the current millennium\n * @property-read int              $weeksInMonth                                                                      The number of weeks contained in the current month\n * @property-read int              $weeksInQuarter                                                                    The number of weeks contained in the current quarter\n * @property-read int              $weeksInYear                                                                       51 through 53\n * @property-read int              $yearsInCentury                                                                    The number of years contained in the current century\n * @property-read int              $yearsInDecade                                                                     The number of years contained in the current decade\n * @property-read int              $yearsInMillennium                                                                 The number of years contained in the current millennium\n *\n * @method        bool             isUtc()                                                                            Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.)\n * @method        bool             isLocal()                                                                          Check if the current instance has non-UTC timezone.\n * @method        bool             isValid()                                                                          Check if the current instance is a valid date.\n * @method        bool             isDST()                                                                            Check if the current instance is in a daylight saving time.\n * @method        bool             isSunday()                                                                         Checks if the instance day is sunday.\n * @method        bool             isMonday()                                                                         Checks if the instance day is monday.\n * @method        bool             isTuesday()                                                                        Checks if the instance day is tuesday.\n * @method        bool             isWednesday()                                                                      Checks if the instance day is wednesday.\n * @method        bool             isThursday()                                                                       Checks if the instance day is thursday.\n * @method        bool             isFriday()                                                                         Checks if the instance day is friday.\n * @method        bool             isSaturday()                                                                       Checks if the instance day is saturday.\n * @method        bool             isSameYear(DateTimeInterface|string $date)                                         Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentYear()                                                                    Checks if the instance is in the same year as the current moment.\n * @method        bool             isNextYear()                                                                       Checks if the instance is in the same year as the current moment next year.\n * @method        bool             isLastYear()                                                                       Checks if the instance is in the same year as the current moment last year.\n * @method        bool             isCurrentMonth()                                                                   Checks if the instance is in the same month as the current moment.\n * @method        bool             isNextMonth()                                                                      Checks if the instance is in the same month as the current moment next month.\n * @method        bool             isLastMonth()                                                                      Checks if the instance is in the same month as the current moment last month.\n * @method        bool             isSameWeek(DateTimeInterface|string $date)                                         Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentWeek()                                                                    Checks if the instance is in the same week as the current moment.\n * @method        bool             isNextWeek()                                                                       Checks if the instance is in the same week as the current moment next week.\n * @method        bool             isLastWeek()                                                                       Checks if the instance is in the same week as the current moment last week.\n * @method        bool             isSameDay(DateTimeInterface|string $date)                                          Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDay()                                                                     Checks if the instance is in the same day as the current moment.\n * @method        bool             isNextDay()                                                                        Checks if the instance is in the same day as the current moment next day.\n * @method        bool             isLastDay()                                                                        Checks if the instance is in the same day as the current moment last day.\n * @method        bool             isSameHour(DateTimeInterface|string $date)                                         Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentHour()                                                                    Checks if the instance is in the same hour as the current moment.\n * @method        bool             isNextHour()                                                                       Checks if the instance is in the same hour as the current moment next hour.\n * @method        bool             isLastHour()                                                                       Checks if the instance is in the same hour as the current moment last hour.\n * @method        bool             isSameMinute(DateTimeInterface|string $date)                                       Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMinute()                                                                  Checks if the instance is in the same minute as the current moment.\n * @method        bool             isNextMinute()                                                                     Checks if the instance is in the same minute as the current moment next minute.\n * @method        bool             isLastMinute()                                                                     Checks if the instance is in the same minute as the current moment last minute.\n * @method        bool             isSameSecond(DateTimeInterface|string $date)                                       Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentSecond()                                                                  Checks if the instance is in the same second as the current moment.\n * @method        bool             isNextSecond()                                                                     Checks if the instance is in the same second as the current moment next second.\n * @method        bool             isLastSecond()                                                                     Checks if the instance is in the same second as the current moment last second.\n * @method        bool             isSameMilli(DateTimeInterface|string $date)                                        Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMilli()                                                                   Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMilli()                                                                      Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMilli()                                                                      Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMillisecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillisecond()                                                             Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMicro(DateTimeInterface|string $date)                                        Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicro()                                                                   Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicro()                                                                      Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicro()                                                                      Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameMicrosecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicrosecond()                                                             Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameDecade(DateTimeInterface|string $date)                                       Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDecade()                                                                  Checks if the instance is in the same decade as the current moment.\n * @method        bool             isNextDecade()                                                                     Checks if the instance is in the same decade as the current moment next decade.\n * @method        bool             isLastDecade()                                                                     Checks if the instance is in the same decade as the current moment last decade.\n * @method        bool             isSameCentury(DateTimeInterface|string $date)                                      Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentCentury()                                                                 Checks if the instance is in the same century as the current moment.\n * @method        bool             isNextCentury()                                                                    Checks if the instance is in the same century as the current moment next century.\n * @method        bool             isLastCentury()                                                                    Checks if the instance is in the same century as the current moment last century.\n * @method        bool             isSameMillennium(DateTimeInterface|string $date)                                   Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillennium()                                                              Checks if the instance is in the same millennium as the current moment.\n * @method        bool             isNextMillennium()                                                                 Checks if the instance is in the same millennium as the current moment next millennium.\n * @method        bool             isLastMillennium()                                                                 Checks if the instance is in the same millennium as the current moment last millennium.\n * @method        bool             isCurrentQuarter()                                                                 Checks if the instance is in the same quarter as the current moment.\n * @method        bool             isNextQuarter()                                                                    Checks if the instance is in the same quarter as the current moment next quarter.\n * @method        bool             isLastQuarter()                                                                    Checks if the instance is in the same quarter as the current moment last quarter.\n * @method        $this            years(int $value)                                                                  Set current instance year to the given value.\n * @method        $this            year(int $value)                                                                   Set current instance year to the given value.\n * @method        $this            setYears(int $value)                                                               Set current instance year to the given value.\n * @method        $this            setYear(int $value)                                                                Set current instance year to the given value.\n * @method        $this            months(Month|int $value)                                                           Set current instance month to the given value.\n * @method        $this            month(Month|int $value)                                                            Set current instance month to the given value.\n * @method        $this            setMonths(Month|int $value)                                                        Set current instance month to the given value.\n * @method        $this            setMonth(Month|int $value)                                                         Set current instance month to the given value.\n * @method        $this            days(int $value)                                                                   Set current instance day to the given value.\n * @method        $this            day(int $value)                                                                    Set current instance day to the given value.\n * @method        $this            setDays(int $value)                                                                Set current instance day to the given value.\n * @method        $this            setDay(int $value)                                                                 Set current instance day to the given value.\n * @method        $this            hours(int $value)                                                                  Set current instance hour to the given value.\n * @method        $this            hour(int $value)                                                                   Set current instance hour to the given value.\n * @method        $this            setHours(int $value)                                                               Set current instance hour to the given value.\n * @method        $this            setHour(int $value)                                                                Set current instance hour to the given value.\n * @method        $this            minutes(int $value)                                                                Set current instance minute to the given value.\n * @method        $this            minute(int $value)                                                                 Set current instance minute to the given value.\n * @method        $this            setMinutes(int $value)                                                             Set current instance minute to the given value.\n * @method        $this            setMinute(int $value)                                                              Set current instance minute to the given value.\n * @method        $this            seconds(int $value)                                                                Set current instance second to the given value.\n * @method        $this            second(int $value)                                                                 Set current instance second to the given value.\n * @method        $this            setSeconds(int $value)                                                             Set current instance second to the given value.\n * @method        $this            setSecond(int $value)                                                              Set current instance second to the given value.\n * @method        $this            millis(int $value)                                                                 Set current instance millisecond to the given value.\n * @method        $this            milli(int $value)                                                                  Set current instance millisecond to the given value.\n * @method        $this            setMillis(int $value)                                                              Set current instance millisecond to the given value.\n * @method        $this            setMilli(int $value)                                                               Set current instance millisecond to the given value.\n * @method        $this            milliseconds(int $value)                                                           Set current instance millisecond to the given value.\n * @method        $this            millisecond(int $value)                                                            Set current instance millisecond to the given value.\n * @method        $this            setMilliseconds(int $value)                                                        Set current instance millisecond to the given value.\n * @method        $this            setMillisecond(int $value)                                                         Set current instance millisecond to the given value.\n * @method        $this            micros(int $value)                                                                 Set current instance microsecond to the given value.\n * @method        $this            micro(int $value)                                                                  Set current instance microsecond to the given value.\n * @method        $this            setMicros(int $value)                                                              Set current instance microsecond to the given value.\n * @method        $this            setMicro(int $value)                                                               Set current instance microsecond to the given value.\n * @method        $this            microseconds(int $value)                                                           Set current instance microsecond to the given value.\n * @method        $this            microsecond(int $value)                                                            Set current instance microsecond to the given value.\n * @method        $this            setMicroseconds(int $value)                                                        Set current instance microsecond to the given value.\n * @method        self             setMicrosecond(int $value)                                                         Set current instance microsecond to the given value.\n * @method        $this            addYears(int|float $value = 1)                                                     Add years (the $value count passed in) to the instance (using date interval).\n * @method        $this            addYear()                                                                          Add one year to the instance (using date interval).\n * @method        $this            subYears(int|float $value = 1)                                                     Sub years (the $value count passed in) to the instance (using date interval).\n * @method        $this            subYear()                                                                          Sub one year to the instance (using date interval).\n * @method        $this            addYearsWithOverflow(int|float $value = 1)                                         Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addYearWithOverflow()                                                              Add one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subYearsWithOverflow(int|float $value = 1)                                         Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subYearWithOverflow()                                                              Sub one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addYearsWithoutOverflow(int|float $value = 1)                                      Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addYearWithoutOverflow()                                                           Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subYearsWithoutOverflow(int|float $value = 1)                                      Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subYearWithoutOverflow()                                                           Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addYearsWithNoOverflow(int|float $value = 1)                                       Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addYearWithNoOverflow()                                                            Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subYearsWithNoOverflow(int|float $value = 1)                                       Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subYearWithNoOverflow()                                                            Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addYearsNoOverflow(int|float $value = 1)                                           Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addYearNoOverflow()                                                                Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subYearsNoOverflow(int|float $value = 1)                                           Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subYearNoOverflow()                                                                Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMonths(int|float $value = 1)                                                    Add months (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMonth()                                                                         Add one month to the instance (using date interval).\n * @method        $this            subMonths(int|float $value = 1)                                                    Sub months (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMonth()                                                                         Sub one month to the instance (using date interval).\n * @method        $this            addMonthsWithOverflow(int|float $value = 1)                                        Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addMonthWithOverflow()                                                             Add one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subMonthsWithOverflow(int|float $value = 1)                                        Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subMonthWithOverflow()                                                             Sub one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addMonthsWithoutOverflow(int|float $value = 1)                                     Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMonthWithoutOverflow()                                                          Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMonthsWithoutOverflow(int|float $value = 1)                                     Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMonthWithoutOverflow()                                                          Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMonthsWithNoOverflow(int|float $value = 1)                                      Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMonthWithNoOverflow()                                                           Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMonthsWithNoOverflow(int|float $value = 1)                                      Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMonthWithNoOverflow()                                                           Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMonthsNoOverflow(int|float $value = 1)                                          Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMonthNoOverflow()                                                               Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMonthsNoOverflow(int|float $value = 1)                                          Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMonthNoOverflow()                                                               Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDays(int|float $value = 1)                                                      Add days (the $value count passed in) to the instance (using date interval).\n * @method        $this            addDay()                                                                           Add one day to the instance (using date interval).\n * @method        $this            subDays(int|float $value = 1)                                                      Sub days (the $value count passed in) to the instance (using date interval).\n * @method        $this            subDay()                                                                           Sub one day to the instance (using date interval).\n * @method        $this            addHours(int|float $value = 1)                                                     Add hours (the $value count passed in) to the instance (using date interval).\n * @method        $this            addHour()                                                                          Add one hour to the instance (using date interval).\n * @method        $this            subHours(int|float $value = 1)                                                     Sub hours (the $value count passed in) to the instance (using date interval).\n * @method        $this            subHour()                                                                          Sub one hour to the instance (using date interval).\n * @method        $this            addMinutes(int|float $value = 1)                                                   Add minutes (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMinute()                                                                        Add one minute to the instance (using date interval).\n * @method        $this            subMinutes(int|float $value = 1)                                                   Sub minutes (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMinute()                                                                        Sub one minute to the instance (using date interval).\n * @method        $this            addSeconds(int|float $value = 1)                                                   Add seconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            addSecond()                                                                        Add one second to the instance (using date interval).\n * @method        $this            subSeconds(int|float $value = 1)                                                   Sub seconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            subSecond()                                                                        Sub one second to the instance (using date interval).\n * @method        $this            addMillis(int|float $value = 1)                                                    Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMilli()                                                                         Add one millisecond to the instance (using date interval).\n * @method        $this            subMillis(int|float $value = 1)                                                    Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMilli()                                                                         Sub one millisecond to the instance (using date interval).\n * @method        $this            addMilliseconds(int|float $value = 1)                                              Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMillisecond()                                                                   Add one millisecond to the instance (using date interval).\n * @method        $this            subMilliseconds(int|float $value = 1)                                              Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMillisecond()                                                                   Sub one millisecond to the instance (using date interval).\n * @method        $this            addMicros(int|float $value = 1)                                                    Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMicro()                                                                         Add one microsecond to the instance (using date interval).\n * @method        $this            subMicros(int|float $value = 1)                                                    Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMicro()                                                                         Sub one microsecond to the instance (using date interval).\n * @method        $this            addMicroseconds(int|float $value = 1)                                              Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMicrosecond()                                                                   Add one microsecond to the instance (using date interval).\n * @method        $this            subMicroseconds(int|float $value = 1)                                              Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMicrosecond()                                                                   Sub one microsecond to the instance (using date interval).\n * @method        $this            addMillennia(int|float $value = 1)                                                 Add millennia (the $value count passed in) to the instance (using date interval).\n * @method        $this            addMillennium()                                                                    Add one millennium to the instance (using date interval).\n * @method        $this            subMillennia(int|float $value = 1)                                                 Sub millennia (the $value count passed in) to the instance (using date interval).\n * @method        $this            subMillennium()                                                                    Sub one millennium to the instance (using date interval).\n * @method        $this            addMillenniaWithOverflow(int|float $value = 1)                                     Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addMillenniumWithOverflow()                                                        Add one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subMillenniaWithOverflow(int|float $value = 1)                                     Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subMillenniumWithOverflow()                                                        Sub one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addMillenniaWithoutOverflow(int|float $value = 1)                                  Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMillenniumWithoutOverflow()                                                     Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMillenniaWithoutOverflow(int|float $value = 1)                                  Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMillenniumWithoutOverflow()                                                     Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMillenniaWithNoOverflow(int|float $value = 1)                                   Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMillenniumWithNoOverflow()                                                      Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMillenniaWithNoOverflow(int|float $value = 1)                                   Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMillenniumWithNoOverflow()                                                      Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMillenniaNoOverflow(int|float $value = 1)                                       Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addMillenniumNoOverflow()                                                          Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMillenniaNoOverflow(int|float $value = 1)                                       Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subMillenniumNoOverflow()                                                          Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addCenturies(int|float $value = 1)                                                 Add centuries (the $value count passed in) to the instance (using date interval).\n * @method        $this            addCentury()                                                                       Add one century to the instance (using date interval).\n * @method        $this            subCenturies(int|float $value = 1)                                                 Sub centuries (the $value count passed in) to the instance (using date interval).\n * @method        $this            subCentury()                                                                       Sub one century to the instance (using date interval).\n * @method        $this            addCenturiesWithOverflow(int|float $value = 1)                                     Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addCenturyWithOverflow()                                                           Add one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subCenturiesWithOverflow(int|float $value = 1)                                     Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subCenturyWithOverflow()                                                           Sub one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addCenturiesWithoutOverflow(int|float $value = 1)                                  Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addCenturyWithoutOverflow()                                                        Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subCenturiesWithoutOverflow(int|float $value = 1)                                  Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subCenturyWithoutOverflow()                                                        Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addCenturiesWithNoOverflow(int|float $value = 1)                                   Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addCenturyWithNoOverflow()                                                         Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subCenturiesWithNoOverflow(int|float $value = 1)                                   Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subCenturyWithNoOverflow()                                                         Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addCenturiesNoOverflow(int|float $value = 1)                                       Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addCenturyNoOverflow()                                                             Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subCenturiesNoOverflow(int|float $value = 1)                                       Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subCenturyNoOverflow()                                                             Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDecades(int|float $value = 1)                                                   Add decades (the $value count passed in) to the instance (using date interval).\n * @method        $this            addDecade()                                                                        Add one decade to the instance (using date interval).\n * @method        $this            subDecades(int|float $value = 1)                                                   Sub decades (the $value count passed in) to the instance (using date interval).\n * @method        $this            subDecade()                                                                        Sub one decade to the instance (using date interval).\n * @method        $this            addDecadesWithOverflow(int|float $value = 1)                                       Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addDecadeWithOverflow()                                                            Add one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subDecadesWithOverflow(int|float $value = 1)                                       Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subDecadeWithOverflow()                                                            Sub one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addDecadesWithoutOverflow(int|float $value = 1)                                    Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDecadeWithoutOverflow()                                                         Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subDecadesWithoutOverflow(int|float $value = 1)                                    Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subDecadeWithoutOverflow()                                                         Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDecadesWithNoOverflow(int|float $value = 1)                                     Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDecadeWithNoOverflow()                                                          Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subDecadesWithNoOverflow(int|float $value = 1)                                     Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subDecadeWithNoOverflow()                                                          Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDecadesNoOverflow(int|float $value = 1)                                         Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addDecadeNoOverflow()                                                              Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subDecadesNoOverflow(int|float $value = 1)                                         Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subDecadeNoOverflow()                                                              Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addQuarters(int|float $value = 1)                                                  Add quarters (the $value count passed in) to the instance (using date interval).\n * @method        $this            addQuarter()                                                                       Add one quarter to the instance (using date interval).\n * @method        $this            subQuarters(int|float $value = 1)                                                  Sub quarters (the $value count passed in) to the instance (using date interval).\n * @method        $this            subQuarter()                                                                       Sub one quarter to the instance (using date interval).\n * @method        $this            addQuartersWithOverflow(int|float $value = 1)                                      Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addQuarterWithOverflow()                                                           Add one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subQuartersWithOverflow(int|float $value = 1)                                      Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            subQuarterWithOverflow()                                                           Sub one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        $this            addQuartersWithoutOverflow(int|float $value = 1)                                   Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addQuarterWithoutOverflow()                                                        Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subQuartersWithoutOverflow(int|float $value = 1)                                   Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subQuarterWithoutOverflow()                                                        Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addQuartersWithNoOverflow(int|float $value = 1)                                    Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addQuarterWithNoOverflow()                                                         Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subQuartersWithNoOverflow(int|float $value = 1)                                    Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subQuarterWithNoOverflow()                                                         Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addQuartersNoOverflow(int|float $value = 1)                                        Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addQuarterNoOverflow()                                                             Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subQuartersNoOverflow(int|float $value = 1)                                        Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            subQuarterNoOverflow()                                                             Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        $this            addWeeks(int|float $value = 1)                                                     Add weeks (the $value count passed in) to the instance (using date interval).\n * @method        $this            addWeek()                                                                          Add one week to the instance (using date interval).\n * @method        $this            subWeeks(int|float $value = 1)                                                     Sub weeks (the $value count passed in) to the instance (using date interval).\n * @method        $this            subWeek()                                                                          Sub one week to the instance (using date interval).\n * @method        $this            addWeekdays(int|float $value = 1)                                                  Add weekdays (the $value count passed in) to the instance (using date interval).\n * @method        $this            addWeekday()                                                                       Add one weekday to the instance (using date interval).\n * @method        $this            subWeekdays(int|float $value = 1)                                                  Sub weekdays (the $value count passed in) to the instance (using date interval).\n * @method        $this            subWeekday()                                                                       Sub one weekday to the instance (using date interval).\n * @method        $this            addUTCMicros(int|float $value = 1)                                                 Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMicro()                                                                      Add one microsecond to the instance (using timestamp).\n * @method        $this            subUTCMicros(int|float $value = 1)                                                 Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMicro()                                                                      Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicros(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        $this            addUTCMicroseconds(int|float $value = 1)                                           Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMicrosecond()                                                                Add one microsecond to the instance (using timestamp).\n * @method        $this            subUTCMicroseconds(int|float $value = 1)                                           Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMicrosecond()                                                                Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicroseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        $this            addUTCMillis(int|float $value = 1)                                                 Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMilli()                                                                      Add one millisecond to the instance (using timestamp).\n * @method        $this            subUTCMillis(int|float $value = 1)                                                 Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMilli()                                                                      Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMillis(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        $this            addUTCMilliseconds(int|float $value = 1)                                           Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMillisecond()                                                                Add one millisecond to the instance (using timestamp).\n * @method        $this            subUTCMilliseconds(int|float $value = 1)                                           Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMillisecond()                                                                Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMilliseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        $this            addUTCSeconds(int|float $value = 1)                                                Add seconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCSecond()                                                                     Add one second to the instance (using timestamp).\n * @method        $this            subUTCSeconds(int|float $value = 1)                                                Sub seconds (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCSecond()                                                                     Sub one second to the instance (using timestamp).\n * @method        CarbonPeriod     secondsUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given.\n * @method        float            diffInUTCSeconds(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of seconds.\n * @method        $this            addUTCMinutes(int|float $value = 1)                                                Add minutes (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMinute()                                                                     Add one minute to the instance (using timestamp).\n * @method        $this            subUTCMinutes(int|float $value = 1)                                                Sub minutes (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMinute()                                                                     Sub one minute to the instance (using timestamp).\n * @method        CarbonPeriod     minutesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given.\n * @method        float            diffInUTCMinutes(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of minutes.\n * @method        $this            addUTCHours(int|float $value = 1)                                                  Add hours (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCHour()                                                                       Add one hour to the instance (using timestamp).\n * @method        $this            subUTCHours(int|float $value = 1)                                                  Sub hours (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCHour()                                                                       Sub one hour to the instance (using timestamp).\n * @method        CarbonPeriod     hoursUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given.\n * @method        float            diffInUTCHours(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of hours.\n * @method        $this            addUTCDays(int|float $value = 1)                                                   Add days (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCDay()                                                                        Add one day to the instance (using timestamp).\n * @method        $this            subUTCDays(int|float $value = 1)                                                   Sub days (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCDay()                                                                        Sub one day to the instance (using timestamp).\n * @method        CarbonPeriod     daysUntil($endDate = null, int|float $factor = 1)                                  Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given.\n * @method        float            diffInUTCDays(DateTimeInterface|string|null $date, bool $absolute = false)         Convert current and given date in UTC timezone and return a floating number of days.\n * @method        $this            addUTCWeeks(int|float $value = 1)                                                  Add weeks (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCWeek()                                                                       Add one week to the instance (using timestamp).\n * @method        $this            subUTCWeeks(int|float $value = 1)                                                  Sub weeks (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCWeek()                                                                       Sub one week to the instance (using timestamp).\n * @method        CarbonPeriod     weeksUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given.\n * @method        float            diffInUTCWeeks(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of weeks.\n * @method        $this            addUTCMonths(int|float $value = 1)                                                 Add months (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMonth()                                                                      Add one month to the instance (using timestamp).\n * @method        $this            subUTCMonths(int|float $value = 1)                                                 Sub months (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMonth()                                                                      Sub one month to the instance (using timestamp).\n * @method        CarbonPeriod     monthsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given.\n * @method        float            diffInUTCMonths(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of months.\n * @method        $this            addUTCQuarters(int|float $value = 1)                                               Add quarters (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCQuarter()                                                                    Add one quarter to the instance (using timestamp).\n * @method        $this            subUTCQuarters(int|float $value = 1)                                               Sub quarters (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCQuarter()                                                                    Sub one quarter to the instance (using timestamp).\n * @method        CarbonPeriod     quartersUntil($endDate = null, int|float $factor = 1)                              Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given.\n * @method        float            diffInUTCQuarters(DateTimeInterface|string|null $date, bool $absolute = false)     Convert current and given date in UTC timezone and return a floating number of quarters.\n * @method        $this            addUTCYears(int|float $value = 1)                                                  Add years (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCYear()                                                                       Add one year to the instance (using timestamp).\n * @method        $this            subUTCYears(int|float $value = 1)                                                  Sub years (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCYear()                                                                       Sub one year to the instance (using timestamp).\n * @method        CarbonPeriod     yearsUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given.\n * @method        float            diffInUTCYears(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of years.\n * @method        $this            addUTCDecades(int|float $value = 1)                                                Add decades (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCDecade()                                                                     Add one decade to the instance (using timestamp).\n * @method        $this            subUTCDecades(int|float $value = 1)                                                Sub decades (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCDecade()                                                                     Sub one decade to the instance (using timestamp).\n * @method        CarbonPeriod     decadesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given.\n * @method        float            diffInUTCDecades(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of decades.\n * @method        $this            addUTCCenturies(int|float $value = 1)                                              Add centuries (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCCentury()                                                                    Add one century to the instance (using timestamp).\n * @method        $this            subUTCCenturies(int|float $value = 1)                                              Sub centuries (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCCentury()                                                                    Sub one century to the instance (using timestamp).\n * @method        CarbonPeriod     centuriesUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given.\n * @method        float            diffInUTCCenturies(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of centuries.\n * @method        $this            addUTCMillennia(int|float $value = 1)                                              Add millennia (the $value count passed in) to the instance (using timestamp).\n * @method        $this            addUTCMillennium()                                                                 Add one millennium to the instance (using timestamp).\n * @method        $this            subUTCMillennia(int|float $value = 1)                                              Sub millennia (the $value count passed in) to the instance (using timestamp).\n * @method        $this            subUTCMillennium()                                                                 Sub one millennium to the instance (using timestamp).\n * @method        CarbonPeriod     millenniaUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given.\n * @method        float            diffInUTCMillennia(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of millennia.\n * @method        $this            roundYear(float $precision = 1, string $function = \"round\")                        Round the current instance year with given precision using the given function.\n * @method        $this            roundYears(float $precision = 1, string $function = \"round\")                       Round the current instance year with given precision using the given function.\n * @method        $this            floorYear(float $precision = 1)                                                    Truncate the current instance year with given precision.\n * @method        $this            floorYears(float $precision = 1)                                                   Truncate the current instance year with given precision.\n * @method        $this            ceilYear(float $precision = 1)                                                     Ceil the current instance year with given precision.\n * @method        $this            ceilYears(float $precision = 1)                                                    Ceil the current instance year with given precision.\n * @method        $this            roundMonth(float $precision = 1, string $function = \"round\")                       Round the current instance month with given precision using the given function.\n * @method        $this            roundMonths(float $precision = 1, string $function = \"round\")                      Round the current instance month with given precision using the given function.\n * @method        $this            floorMonth(float $precision = 1)                                                   Truncate the current instance month with given precision.\n * @method        $this            floorMonths(float $precision = 1)                                                  Truncate the current instance month with given precision.\n * @method        $this            ceilMonth(float $precision = 1)                                                    Ceil the current instance month with given precision.\n * @method        $this            ceilMonths(float $precision = 1)                                                   Ceil the current instance month with given precision.\n * @method        $this            roundDay(float $precision = 1, string $function = \"round\")                         Round the current instance day with given precision using the given function.\n * @method        $this            roundDays(float $precision = 1, string $function = \"round\")                        Round the current instance day with given precision using the given function.\n * @method        $this            floorDay(float $precision = 1)                                                     Truncate the current instance day with given precision.\n * @method        $this            floorDays(float $precision = 1)                                                    Truncate the current instance day with given precision.\n * @method        $this            ceilDay(float $precision = 1)                                                      Ceil the current instance day with given precision.\n * @method        $this            ceilDays(float $precision = 1)                                                     Ceil the current instance day with given precision.\n * @method        $this            roundHour(float $precision = 1, string $function = \"round\")                        Round the current instance hour with given precision using the given function.\n * @method        $this            roundHours(float $precision = 1, string $function = \"round\")                       Round the current instance hour with given precision using the given function.\n * @method        $this            floorHour(float $precision = 1)                                                    Truncate the current instance hour with given precision.\n * @method        $this            floorHours(float $precision = 1)                                                   Truncate the current instance hour with given precision.\n * @method        $this            ceilHour(float $precision = 1)                                                     Ceil the current instance hour with given precision.\n * @method        $this            ceilHours(float $precision = 1)                                                    Ceil the current instance hour with given precision.\n * @method        $this            roundMinute(float $precision = 1, string $function = \"round\")                      Round the current instance minute with given precision using the given function.\n * @method        $this            roundMinutes(float $precision = 1, string $function = \"round\")                     Round the current instance minute with given precision using the given function.\n * @method        $this            floorMinute(float $precision = 1)                                                  Truncate the current instance minute with given precision.\n * @method        $this            floorMinutes(float $precision = 1)                                                 Truncate the current instance minute with given precision.\n * @method        $this            ceilMinute(float $precision = 1)                                                   Ceil the current instance minute with given precision.\n * @method        $this            ceilMinutes(float $precision = 1)                                                  Ceil the current instance minute with given precision.\n * @method        $this            roundSecond(float $precision = 1, string $function = \"round\")                      Round the current instance second with given precision using the given function.\n * @method        $this            roundSeconds(float $precision = 1, string $function = \"round\")                     Round the current instance second with given precision using the given function.\n * @method        $this            floorSecond(float $precision = 1)                                                  Truncate the current instance second with given precision.\n * @method        $this            floorSeconds(float $precision = 1)                                                 Truncate the current instance second with given precision.\n * @method        $this            ceilSecond(float $precision = 1)                                                   Ceil the current instance second with given precision.\n * @method        $this            ceilSeconds(float $precision = 1)                                                  Ceil the current instance second with given precision.\n * @method        $this            roundMillennium(float $precision = 1, string $function = \"round\")                  Round the current instance millennium with given precision using the given function.\n * @method        $this            roundMillennia(float $precision = 1, string $function = \"round\")                   Round the current instance millennium with given precision using the given function.\n * @method        $this            floorMillennium(float $precision = 1)                                              Truncate the current instance millennium with given precision.\n * @method        $this            floorMillennia(float $precision = 1)                                               Truncate the current instance millennium with given precision.\n * @method        $this            ceilMillennium(float $precision = 1)                                               Ceil the current instance millennium with given precision.\n * @method        $this            ceilMillennia(float $precision = 1)                                                Ceil the current instance millennium with given precision.\n * @method        $this            roundCentury(float $precision = 1, string $function = \"round\")                     Round the current instance century with given precision using the given function.\n * @method        $this            roundCenturies(float $precision = 1, string $function = \"round\")                   Round the current instance century with given precision using the given function.\n * @method        $this            floorCentury(float $precision = 1)                                                 Truncate the current instance century with given precision.\n * @method        $this            floorCenturies(float $precision = 1)                                               Truncate the current instance century with given precision.\n * @method        $this            ceilCentury(float $precision = 1)                                                  Ceil the current instance century with given precision.\n * @method        $this            ceilCenturies(float $precision = 1)                                                Ceil the current instance century with given precision.\n * @method        $this            roundDecade(float $precision = 1, string $function = \"round\")                      Round the current instance decade with given precision using the given function.\n * @method        $this            roundDecades(float $precision = 1, string $function = \"round\")                     Round the current instance decade with given precision using the given function.\n * @method        $this            floorDecade(float $precision = 1)                                                  Truncate the current instance decade with given precision.\n * @method        $this            floorDecades(float $precision = 1)                                                 Truncate the current instance decade with given precision.\n * @method        $this            ceilDecade(float $precision = 1)                                                   Ceil the current instance decade with given precision.\n * @method        $this            ceilDecades(float $precision = 1)                                                  Ceil the current instance decade with given precision.\n * @method        $this            roundQuarter(float $precision = 1, string $function = \"round\")                     Round the current instance quarter with given precision using the given function.\n * @method        $this            roundQuarters(float $precision = 1, string $function = \"round\")                    Round the current instance quarter with given precision using the given function.\n * @method        $this            floorQuarter(float $precision = 1)                                                 Truncate the current instance quarter with given precision.\n * @method        $this            floorQuarters(float $precision = 1)                                                Truncate the current instance quarter with given precision.\n * @method        $this            ceilQuarter(float $precision = 1)                                                  Ceil the current instance quarter with given precision.\n * @method        $this            ceilQuarters(float $precision = 1)                                                 Ceil the current instance quarter with given precision.\n * @method        $this            roundMillisecond(float $precision = 1, string $function = \"round\")                 Round the current instance millisecond with given precision using the given function.\n * @method        $this            roundMilliseconds(float $precision = 1, string $function = \"round\")                Round the current instance millisecond with given precision using the given function.\n * @method        $this            floorMillisecond(float $precision = 1)                                             Truncate the current instance millisecond with given precision.\n * @method        $this            floorMilliseconds(float $precision = 1)                                            Truncate the current instance millisecond with given precision.\n * @method        $this            ceilMillisecond(float $precision = 1)                                              Ceil the current instance millisecond with given precision.\n * @method        $this            ceilMilliseconds(float $precision = 1)                                             Ceil the current instance millisecond with given precision.\n * @method        $this            roundMicrosecond(float $precision = 1, string $function = \"round\")                 Round the current instance microsecond with given precision using the given function.\n * @method        $this            roundMicroseconds(float $precision = 1, string $function = \"round\")                Round the current instance microsecond with given precision using the given function.\n * @method        $this            floorMicrosecond(float $precision = 1)                                             Truncate the current instance microsecond with given precision.\n * @method        $this            floorMicroseconds(float $precision = 1)                                            Truncate the current instance microsecond with given precision.\n * @method        $this            ceilMicrosecond(float $precision = 1)                                              Ceil the current instance microsecond with given precision.\n * @method        $this            ceilMicroseconds(float $precision = 1)                                             Ceil the current instance microsecond with given precision.\n * @method        string           shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)   Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)    Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1)  Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        int              centuriesInMillennium()                                                            Return the number of centuries contained in the current millennium\n * @method        int|static       centuryOfMillennium(?int $century = null)                                          Return the value of the century starting from the beginning of the current millennium when called with no parameters, change the current century when called with an integer value\n * @method        int|static       dayOfCentury(?int $day = null)                                                     Return the value of the day starting from the beginning of the current century when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfDecade(?int $day = null)                                                      Return the value of the day starting from the beginning of the current decade when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMillennium(?int $day = null)                                                  Return the value of the day starting from the beginning of the current millennium when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMonth(?int $day = null)                                                       Return the value of the day starting from the beginning of the current month when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfQuarter(?int $day = null)                                                     Return the value of the day starting from the beginning of the current quarter when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfWeek(?int $day = null)                                                        Return the value of the day starting from the beginning of the current week when called with no parameters, change the current day when called with an integer value\n * @method        int              daysInCentury()                                                                    Return the number of days contained in the current century\n * @method        int              daysInDecade()                                                                     Return the number of days contained in the current decade\n * @method        int              daysInMillennium()                                                                 Return the number of days contained in the current millennium\n * @method        int              daysInMonth()                                                                      Return the number of days contained in the current month\n * @method        int              daysInQuarter()                                                                    Return the number of days contained in the current quarter\n * @method        int              daysInWeek()                                                                       Return the number of days contained in the current week\n * @method        int              daysInYear()                                                                       Return the number of days contained in the current year\n * @method        int|static       decadeOfCentury(?int $decade = null)                                               Return the value of the decade starting from the beginning of the current century when called with no parameters, change the current decade when called with an integer value\n * @method        int|static       decadeOfMillennium(?int $decade = null)                                            Return the value of the decade starting from the beginning of the current millennium when called with no parameters, change the current decade when called with an integer value\n * @method        int              decadesInCentury()                                                                 Return the number of decades contained in the current century\n * @method        int              decadesInMillennium()                                                              Return the number of decades contained in the current millennium\n * @method        int|static       hourOfCentury(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current century when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDay(?int $hour = null)                                                       Return the value of the hour starting from the beginning of the current day when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDecade(?int $hour = null)                                                    Return the value of the hour starting from the beginning of the current decade when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMillennium(?int $hour = null)                                                Return the value of the hour starting from the beginning of the current millennium when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMonth(?int $hour = null)                                                     Return the value of the hour starting from the beginning of the current month when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfQuarter(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current quarter when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfWeek(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current week when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfYear(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current year when called with no parameters, change the current hour when called with an integer value\n * @method        int              hoursInCentury()                                                                   Return the number of hours contained in the current century\n * @method        int              hoursInDay()                                                                       Return the number of hours contained in the current day\n * @method        int              hoursInDecade()                                                                    Return the number of hours contained in the current decade\n * @method        int              hoursInMillennium()                                                                Return the number of hours contained in the current millennium\n * @method        int              hoursInMonth()                                                                     Return the number of hours contained in the current month\n * @method        int              hoursInQuarter()                                                                   Return the number of hours contained in the current quarter\n * @method        int              hoursInWeek()                                                                      Return the number of hours contained in the current week\n * @method        int              hoursInYear()                                                                      Return the number of hours contained in the current year\n * @method        int|static       microsecondOfCentury(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current century when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDay(?int $microsecond = null)                                         Return the value of the microsecond starting from the beginning of the current day when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDecade(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current decade when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfHour(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current hour when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillennium(?int $microsecond = null)                                  Return the value of the microsecond starting from the beginning of the current millennium when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillisecond(?int $microsecond = null)                                 Return the value of the microsecond starting from the beginning of the current millisecond when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMinute(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current minute when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMonth(?int $microsecond = null)                                       Return the value of the microsecond starting from the beginning of the current month when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfQuarter(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current quarter when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfSecond(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current second when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfWeek(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current week when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfYear(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current year when called with no parameters, change the current microsecond when called with an integer value\n * @method        int              microsecondsInCentury()                                                            Return the number of microseconds contained in the current century\n * @method        int              microsecondsInDay()                                                                Return the number of microseconds contained in the current day\n * @method        int              microsecondsInDecade()                                                             Return the number of microseconds contained in the current decade\n * @method        int              microsecondsInHour()                                                               Return the number of microseconds contained in the current hour\n * @method        int              microsecondsInMillennium()                                                         Return the number of microseconds contained in the current millennium\n * @method        int              microsecondsInMillisecond()                                                        Return the number of microseconds contained in the current millisecond\n * @method        int              microsecondsInMinute()                                                             Return the number of microseconds contained in the current minute\n * @method        int              microsecondsInMonth()                                                              Return the number of microseconds contained in the current month\n * @method        int              microsecondsInQuarter()                                                            Return the number of microseconds contained in the current quarter\n * @method        int              microsecondsInSecond()                                                             Return the number of microseconds contained in the current second\n * @method        int              microsecondsInWeek()                                                               Return the number of microseconds contained in the current week\n * @method        int              microsecondsInYear()                                                               Return the number of microseconds contained in the current year\n * @method        int|static       millisecondOfCentury(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current century when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDay(?int $millisecond = null)                                         Return the value of the millisecond starting from the beginning of the current day when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDecade(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current decade when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfHour(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current hour when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMillennium(?int $millisecond = null)                                  Return the value of the millisecond starting from the beginning of the current millennium when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMinute(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current minute when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMonth(?int $millisecond = null)                                       Return the value of the millisecond starting from the beginning of the current month when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfQuarter(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current quarter when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfSecond(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current second when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfWeek(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current week when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfYear(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current year when called with no parameters, change the current millisecond when called with an integer value\n * @method        int              millisecondsInCentury()                                                            Return the number of milliseconds contained in the current century\n * @method        int              millisecondsInDay()                                                                Return the number of milliseconds contained in the current day\n * @method        int              millisecondsInDecade()                                                             Return the number of milliseconds contained in the current decade\n * @method        int              millisecondsInHour()                                                               Return the number of milliseconds contained in the current hour\n * @method        int              millisecondsInMillennium()                                                         Return the number of milliseconds contained in the current millennium\n * @method        int              millisecondsInMinute()                                                             Return the number of milliseconds contained in the current minute\n * @method        int              millisecondsInMonth()                                                              Return the number of milliseconds contained in the current month\n * @method        int              millisecondsInQuarter()                                                            Return the number of milliseconds contained in the current quarter\n * @method        int              millisecondsInSecond()                                                             Return the number of milliseconds contained in the current second\n * @method        int              millisecondsInWeek()                                                               Return the number of milliseconds contained in the current week\n * @method        int              millisecondsInYear()                                                               Return the number of milliseconds contained in the current year\n * @method        int|static       minuteOfCentury(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current century when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDay(?int $minute = null)                                                   Return the value of the minute starting from the beginning of the current day when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDecade(?int $minute = null)                                                Return the value of the minute starting from the beginning of the current decade when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfHour(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current hour when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMillennium(?int $minute = null)                                            Return the value of the minute starting from the beginning of the current millennium when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMonth(?int $minute = null)                                                 Return the value of the minute starting from the beginning of the current month when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfQuarter(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current quarter when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfWeek(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current week when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfYear(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current year when called with no parameters, change the current minute when called with an integer value\n * @method        int              minutesInCentury()                                                                 Return the number of minutes contained in the current century\n * @method        int              minutesInDay()                                                                     Return the number of minutes contained in the current day\n * @method        int              minutesInDecade()                                                                  Return the number of minutes contained in the current decade\n * @method        int              minutesInHour()                                                                    Return the number of minutes contained in the current hour\n * @method        int              minutesInMillennium()                                                              Return the number of minutes contained in the current millennium\n * @method        int              minutesInMonth()                                                                   Return the number of minutes contained in the current month\n * @method        int              minutesInQuarter()                                                                 Return the number of minutes contained in the current quarter\n * @method        int              minutesInWeek()                                                                    Return the number of minutes contained in the current week\n * @method        int              minutesInYear()                                                                    Return the number of minutes contained in the current year\n * @method        int|static       monthOfCentury(?int $month = null)                                                 Return the value of the month starting from the beginning of the current century when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfDecade(?int $month = null)                                                  Return the value of the month starting from the beginning of the current decade when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfMillennium(?int $month = null)                                              Return the value of the month starting from the beginning of the current millennium when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfQuarter(?int $month = null)                                                 Return the value of the month starting from the beginning of the current quarter when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfYear(?int $month = null)                                                    Return the value of the month starting from the beginning of the current year when called with no parameters, change the current month when called with an integer value\n * @method        int              monthsInCentury()                                                                  Return the number of months contained in the current century\n * @method        int              monthsInDecade()                                                                   Return the number of months contained in the current decade\n * @method        int              monthsInMillennium()                                                               Return the number of months contained in the current millennium\n * @method        int              monthsInQuarter()                                                                  Return the number of months contained in the current quarter\n * @method        int              monthsInYear()                                                                     Return the number of months contained in the current year\n * @method        int|static       quarterOfCentury(?int $quarter = null)                                             Return the value of the quarter starting from the beginning of the current century when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfDecade(?int $quarter = null)                                              Return the value of the quarter starting from the beginning of the current decade when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfMillennium(?int $quarter = null)                                          Return the value of the quarter starting from the beginning of the current millennium when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfYear(?int $quarter = null)                                                Return the value of the quarter starting from the beginning of the current year when called with no parameters, change the current quarter when called with an integer value\n * @method        int              quartersInCentury()                                                                Return the number of quarters contained in the current century\n * @method        int              quartersInDecade()                                                                 Return the number of quarters contained in the current decade\n * @method        int              quartersInMillennium()                                                             Return the number of quarters contained in the current millennium\n * @method        int              quartersInYear()                                                                   Return the number of quarters contained in the current year\n * @method        int|static       secondOfCentury(?int $second = null)                                               Return the value of the second starting from the beginning of the current century when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDay(?int $second = null)                                                   Return the value of the second starting from the beginning of the current day when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDecade(?int $second = null)                                                Return the value of the second starting from the beginning of the current decade when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfHour(?int $second = null)                                                  Return the value of the second starting from the beginning of the current hour when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMillennium(?int $second = null)                                            Return the value of the second starting from the beginning of the current millennium when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMinute(?int $second = null)                                                Return the value of the second starting from the beginning of the current minute when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMonth(?int $second = null)                                                 Return the value of the second starting from the beginning of the current month when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfQuarter(?int $second = null)                                               Return the value of the second starting from the beginning of the current quarter when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfWeek(?int $second = null)                                                  Return the value of the second starting from the beginning of the current week when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfYear(?int $second = null)                                                  Return the value of the second starting from the beginning of the current year when called with no parameters, change the current second when called with an integer value\n * @method        int              secondsInCentury()                                                                 Return the number of seconds contained in the current century\n * @method        int              secondsInDay()                                                                     Return the number of seconds contained in the current day\n * @method        int              secondsInDecade()                                                                  Return the number of seconds contained in the current decade\n * @method        int              secondsInHour()                                                                    Return the number of seconds contained in the current hour\n * @method        int              secondsInMillennium()                                                              Return the number of seconds contained in the current millennium\n * @method        int              secondsInMinute()                                                                  Return the number of seconds contained in the current minute\n * @method        int              secondsInMonth()                                                                   Return the number of seconds contained in the current month\n * @method        int              secondsInQuarter()                                                                 Return the number of seconds contained in the current quarter\n * @method        int              secondsInWeek()                                                                    Return the number of seconds contained in the current week\n * @method        int              secondsInYear()                                                                    Return the number of seconds contained in the current year\n * @method        int|static       weekOfCentury(?int $week = null)                                                   Return the value of the week starting from the beginning of the current century when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfDecade(?int $week = null)                                                    Return the value of the week starting from the beginning of the current decade when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMillennium(?int $week = null)                                                Return the value of the week starting from the beginning of the current millennium when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMonth(?int $week = null)                                                     Return the value of the week starting from the beginning of the current month when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfQuarter(?int $week = null)                                                   Return the value of the week starting from the beginning of the current quarter when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfYear(?int $week = null)                                                      Return the value of the week starting from the beginning of the current year when called with no parameters, change the current week when called with an integer value\n * @method        int              weeksInCentury()                                                                   Return the number of weeks contained in the current century\n * @method        int              weeksInDecade()                                                                    Return the number of weeks contained in the current decade\n * @method        int              weeksInMillennium()                                                                Return the number of weeks contained in the current millennium\n * @method        int              weeksInMonth()                                                                     Return the number of weeks contained in the current month\n * @method        int              weeksInQuarter()                                                                   Return the number of weeks contained in the current quarter\n * @method        int|static       yearOfCentury(?int $year = null)                                                   Return the value of the year starting from the beginning of the current century when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfDecade(?int $year = null)                                                    Return the value of the year starting from the beginning of the current decade when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfMillennium(?int $year = null)                                                Return the value of the year starting from the beginning of the current millennium when called with no parameters, change the current year when called with an integer value\n * @method        int              yearsInCentury()                                                                   Return the number of years contained in the current century\n * @method        int              yearsInDecade()                                                                    Return the number of years contained in the current decade\n * @method        int              yearsInMillennium()                                                                Return the number of years contained in the current millennium\n *\n * </autodoc>\n */\nclass Carbon extends DateTime implements CarbonInterface\n{\n    use Date;\n\n    /**\n     * Returns true if the current class/instance is mutable.\n     */\n    public static function isMutable(): bool\n    {\n        return true;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/CarbonConverterInterface.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse DateTimeInterface;\n\ninterface CarbonConverterInterface\n{\n    public function convertDate(DateTimeInterface $dateTime, bool $negated = false): CarbonInterface;\n}\n"
  },
  {
    "path": "src/Carbon/CarbonImmutable.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Traits\\Date;\nuse DateTimeImmutable;\nuse DateTimeInterface;\n\n/**\n * A simple API extension for DateTimeImmutable.\n *\n * <autodoc generated by `composer phpdoc`>\n *\n * @property      string           $localeDayOfWeek                                                                   the day of week in current locale\n * @property      string           $shortLocaleDayOfWeek                                                              the abbreviated day of week in current locale\n * @property      string           $localeMonth                                                                       the month in current locale\n * @property      string           $shortLocaleMonth                                                                  the abbreviated month in current locale\n * @property      int              $year\n * @property      int              $yearIso\n * @property      int              $month\n * @property      int              $day\n * @property      int              $hour\n * @property      int              $minute\n * @property      int              $second\n * @property      int              $micro\n * @property      int              $microsecond\n * @property      int              $dayOfWeekIso                                                                      1 (for Monday) through 7 (for Sunday)\n * @property      int|float|string $timestamp                                                                         seconds since the Unix Epoch\n * @property      string           $englishDayOfWeek                                                                  the day of week in English\n * @property      string           $shortEnglishDayOfWeek                                                             the abbreviated day of week in English\n * @property      string           $englishMonth                                                                      the month in English\n * @property      string           $shortEnglishMonth                                                                 the abbreviated month in English\n * @property      int              $milliseconds\n * @property      int              $millisecond\n * @property      int              $milli\n * @property      int              $week                                                                              1 through 53\n * @property      int              $isoWeek                                                                           1 through 53\n * @property      int              $weekYear                                                                          year according to week format\n * @property      int              $isoWeekYear                                                                       year according to ISO week format\n * @property      int              $age                                                                               does a diffInYears() with default parameters\n * @property      int              $offset                                                                            the timezone offset in seconds from UTC\n * @property      int              $offsetMinutes                                                                     the timezone offset in minutes from UTC\n * @property      int              $offsetHours                                                                       the timezone offset in hours from UTC\n * @property      CarbonTimeZone   $timezone                                                                          the current timezone\n * @property      CarbonTimeZone   $tz                                                                                alias of $timezone\n * @property      int              $centuryOfMillennium                                                               The value of the century starting from the beginning of the current millennium\n * @property      int              $dayOfCentury                                                                      The value of the day starting from the beginning of the current century\n * @property      int              $dayOfDecade                                                                       The value of the day starting from the beginning of the current decade\n * @property      int              $dayOfMillennium                                                                   The value of the day starting from the beginning of the current millennium\n * @property      int              $dayOfMonth                                                                        The value of the day starting from the beginning of the current month\n * @property      int              $dayOfQuarter                                                                      The value of the day starting from the beginning of the current quarter\n * @property      int              $dayOfWeek                                                                         0 (for Sunday) through 6 (for Saturday)\n * @property      int              $dayOfYear                                                                         1 through 366\n * @property      int              $decadeOfCentury                                                                   The value of the decade starting from the beginning of the current century\n * @property      int              $decadeOfMillennium                                                                The value of the decade starting from the beginning of the current millennium\n * @property      int              $hourOfCentury                                                                     The value of the hour starting from the beginning of the current century\n * @property      int              $hourOfDay                                                                         The value of the hour starting from the beginning of the current day\n * @property      int              $hourOfDecade                                                                      The value of the hour starting from the beginning of the current decade\n * @property      int              $hourOfMillennium                                                                  The value of the hour starting from the beginning of the current millennium\n * @property      int              $hourOfMonth                                                                       The value of the hour starting from the beginning of the current month\n * @property      int              $hourOfQuarter                                                                     The value of the hour starting from the beginning of the current quarter\n * @property      int              $hourOfWeek                                                                        The value of the hour starting from the beginning of the current week\n * @property      int              $hourOfYear                                                                        The value of the hour starting from the beginning of the current year\n * @property      int              $microsecondOfCentury                                                              The value of the microsecond starting from the beginning of the current century\n * @property      int              $microsecondOfDay                                                                  The value of the microsecond starting from the beginning of the current day\n * @property      int              $microsecondOfDecade                                                               The value of the microsecond starting from the beginning of the current decade\n * @property      int              $microsecondOfHour                                                                 The value of the microsecond starting from the beginning of the current hour\n * @property      int              $microsecondOfMillennium                                                           The value of the microsecond starting from the beginning of the current millennium\n * @property      int              $microsecondOfMillisecond                                                          The value of the microsecond starting from the beginning of the current millisecond\n * @property      int              $microsecondOfMinute                                                               The value of the microsecond starting from the beginning of the current minute\n * @property      int              $microsecondOfMonth                                                                The value of the microsecond starting from the beginning of the current month\n * @property      int              $microsecondOfQuarter                                                              The value of the microsecond starting from the beginning of the current quarter\n * @property      int              $microsecondOfSecond                                                               The value of the microsecond starting from the beginning of the current second\n * @property      int              $microsecondOfWeek                                                                 The value of the microsecond starting from the beginning of the current week\n * @property      int              $microsecondOfYear                                                                 The value of the microsecond starting from the beginning of the current year\n * @property      int              $millisecondOfCentury                                                              The value of the millisecond starting from the beginning of the current century\n * @property      int              $millisecondOfDay                                                                  The value of the millisecond starting from the beginning of the current day\n * @property      int              $millisecondOfDecade                                                               The value of the millisecond starting from the beginning of the current decade\n * @property      int              $millisecondOfHour                                                                 The value of the millisecond starting from the beginning of the current hour\n * @property      int              $millisecondOfMillennium                                                           The value of the millisecond starting from the beginning of the current millennium\n * @property      int              $millisecondOfMinute                                                               The value of the millisecond starting from the beginning of the current minute\n * @property      int              $millisecondOfMonth                                                                The value of the millisecond starting from the beginning of the current month\n * @property      int              $millisecondOfQuarter                                                              The value of the millisecond starting from the beginning of the current quarter\n * @property      int              $millisecondOfSecond                                                               The value of the millisecond starting from the beginning of the current second\n * @property      int              $millisecondOfWeek                                                                 The value of the millisecond starting from the beginning of the current week\n * @property      int              $millisecondOfYear                                                                 The value of the millisecond starting from the beginning of the current year\n * @property      int              $minuteOfCentury                                                                   The value of the minute starting from the beginning of the current century\n * @property      int              $minuteOfDay                                                                       The value of the minute starting from the beginning of the current day\n * @property      int              $minuteOfDecade                                                                    The value of the minute starting from the beginning of the current decade\n * @property      int              $minuteOfHour                                                                      The value of the minute starting from the beginning of the current hour\n * @property      int              $minuteOfMillennium                                                                The value of the minute starting from the beginning of the current millennium\n * @property      int              $minuteOfMonth                                                                     The value of the minute starting from the beginning of the current month\n * @property      int              $minuteOfQuarter                                                                   The value of the minute starting from the beginning of the current quarter\n * @property      int              $minuteOfWeek                                                                      The value of the minute starting from the beginning of the current week\n * @property      int              $minuteOfYear                                                                      The value of the minute starting from the beginning of the current year\n * @property      int              $monthOfCentury                                                                    The value of the month starting from the beginning of the current century\n * @property      int              $monthOfDecade                                                                     The value of the month starting from the beginning of the current decade\n * @property      int              $monthOfMillennium                                                                 The value of the month starting from the beginning of the current millennium\n * @property      int              $monthOfQuarter                                                                    The value of the month starting from the beginning of the current quarter\n * @property      int              $monthOfYear                                                                       The value of the month starting from the beginning of the current year\n * @property      int              $quarterOfCentury                                                                  The value of the quarter starting from the beginning of the current century\n * @property      int              $quarterOfDecade                                                                   The value of the quarter starting from the beginning of the current decade\n * @property      int              $quarterOfMillennium                                                               The value of the quarter starting from the beginning of the current millennium\n * @property      int              $quarterOfYear                                                                     The value of the quarter starting from the beginning of the current year\n * @property      int              $secondOfCentury                                                                   The value of the second starting from the beginning of the current century\n * @property      int              $secondOfDay                                                                       The value of the second starting from the beginning of the current day\n * @property      int              $secondOfDecade                                                                    The value of the second starting from the beginning of the current decade\n * @property      int              $secondOfHour                                                                      The value of the second starting from the beginning of the current hour\n * @property      int              $secondOfMillennium                                                                The value of the second starting from the beginning of the current millennium\n * @property      int              $secondOfMinute                                                                    The value of the second starting from the beginning of the current minute\n * @property      int              $secondOfMonth                                                                     The value of the second starting from the beginning of the current month\n * @property      int              $secondOfQuarter                                                                   The value of the second starting from the beginning of the current quarter\n * @property      int              $secondOfWeek                                                                      The value of the second starting from the beginning of the current week\n * @property      int              $secondOfYear                                                                      The value of the second starting from the beginning of the current year\n * @property      int              $weekOfCentury                                                                     The value of the week starting from the beginning of the current century\n * @property      int              $weekOfDecade                                                                      The value of the week starting from the beginning of the current decade\n * @property      int              $weekOfMillennium                                                                  The value of the week starting from the beginning of the current millennium\n * @property      int              $weekOfMonth                                                                       1 through 5\n * @property      int              $weekOfQuarter                                                                     The value of the week starting from the beginning of the current quarter\n * @property      int              $weekOfYear                                                                        ISO-8601 week number of year, weeks starting on Monday\n * @property      int              $yearOfCentury                                                                     The value of the year starting from the beginning of the current century\n * @property      int              $yearOfDecade                                                                      The value of the year starting from the beginning of the current decade\n * @property      int              $yearOfMillennium                                                                  The value of the year starting from the beginning of the current millennium\n * @property-read string           $latinMeridiem                                                                     \"am\"/\"pm\" (Ante meridiem or Post meridiem latin lowercase mark)\n * @property-read string           $latinUpperMeridiem                                                                \"AM\"/\"PM\" (Ante meridiem or Post meridiem latin uppercase mark)\n * @property-read string           $timezoneAbbreviatedName                                                           the current timezone abbreviated name\n * @property-read string           $tzAbbrName                                                                        alias of $timezoneAbbreviatedName\n * @property-read string           $dayName                                                                           long name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortDayName                                                                      short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $minDayName                                                                        very short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $monthName                                                                         long name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortMonthName                                                                    short name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $meridiem                                                                          lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read string           $upperMeridiem                                                                     uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read int              $noZeroHour                                                                        current hour from 1 to 24\n * @property-read int              $isoWeeksInYear                                                                    51 through 53\n * @property-read int              $weekNumberInMonth                                                                 1 through 5\n * @property-read int              $firstWeekDay                                                                      0 through 6\n * @property-read int              $lastWeekDay                                                                       0 through 6\n * @property-read int              $quarter                                                                           the quarter of this instance, 1 - 4\n * @property-read int              $decade                                                                            the decade of this instance\n * @property-read int              $century                                                                           the century of this instance\n * @property-read int              $millennium                                                                        the millennium of this instance\n * @property-read bool             $dst                                                                               daylight savings time indicator, true if DST, false otherwise\n * @property-read bool             $local                                                                             checks if the timezone is local, true if local, false otherwise\n * @property-read bool             $utc                                                                               checks if the timezone is UTC, true if UTC, false otherwise\n * @property-read string           $timezoneName                                                                      the current timezone name\n * @property-read string           $tzName                                                                            alias of $timezoneName\n * @property-read string           $locale                                                                            locale of the current instance\n * @property-read int              $centuriesInMillennium                                                             The number of centuries contained in the current millennium\n * @property-read int              $daysInCentury                                                                     The number of days contained in the current century\n * @property-read int              $daysInDecade                                                                      The number of days contained in the current decade\n * @property-read int              $daysInMillennium                                                                  The number of days contained in the current millennium\n * @property-read int              $daysInMonth                                                                       number of days in the given month\n * @property-read int              $daysInQuarter                                                                     The number of days contained in the current quarter\n * @property-read int              $daysInWeek                                                                        The number of days contained in the current week\n * @property-read int              $daysInYear                                                                        365 or 366\n * @property-read int              $decadesInCentury                                                                  The number of decades contained in the current century\n * @property-read int              $decadesInMillennium                                                               The number of decades contained in the current millennium\n * @property-read int              $hoursInCentury                                                                    The number of hours contained in the current century\n * @property-read int              $hoursInDay                                                                        The number of hours contained in the current day\n * @property-read int              $hoursInDecade                                                                     The number of hours contained in the current decade\n * @property-read int              $hoursInMillennium                                                                 The number of hours contained in the current millennium\n * @property-read int              $hoursInMonth                                                                      The number of hours contained in the current month\n * @property-read int              $hoursInQuarter                                                                    The number of hours contained in the current quarter\n * @property-read int              $hoursInWeek                                                                       The number of hours contained in the current week\n * @property-read int              $hoursInYear                                                                       The number of hours contained in the current year\n * @property-read int              $microsecondsInCentury                                                             The number of microseconds contained in the current century\n * @property-read int              $microsecondsInDay                                                                 The number of microseconds contained in the current day\n * @property-read int              $microsecondsInDecade                                                              The number of microseconds contained in the current decade\n * @property-read int              $microsecondsInHour                                                                The number of microseconds contained in the current hour\n * @property-read int              $microsecondsInMillennium                                                          The number of microseconds contained in the current millennium\n * @property-read int              $microsecondsInMillisecond                                                         The number of microseconds contained in the current millisecond\n * @property-read int              $microsecondsInMinute                                                              The number of microseconds contained in the current minute\n * @property-read int              $microsecondsInMonth                                                               The number of microseconds contained in the current month\n * @property-read int              $microsecondsInQuarter                                                             The number of microseconds contained in the current quarter\n * @property-read int              $microsecondsInSecond                                                              The number of microseconds contained in the current second\n * @property-read int              $microsecondsInWeek                                                                The number of microseconds contained in the current week\n * @property-read int              $microsecondsInYear                                                                The number of microseconds contained in the current year\n * @property-read int              $millisecondsInCentury                                                             The number of milliseconds contained in the current century\n * @property-read int              $millisecondsInDay                                                                 The number of milliseconds contained in the current day\n * @property-read int              $millisecondsInDecade                                                              The number of milliseconds contained in the current decade\n * @property-read int              $millisecondsInHour                                                                The number of milliseconds contained in the current hour\n * @property-read int              $millisecondsInMillennium                                                          The number of milliseconds contained in the current millennium\n * @property-read int              $millisecondsInMinute                                                              The number of milliseconds contained in the current minute\n * @property-read int              $millisecondsInMonth                                                               The number of milliseconds contained in the current month\n * @property-read int              $millisecondsInQuarter                                                             The number of milliseconds contained in the current quarter\n * @property-read int              $millisecondsInSecond                                                              The number of milliseconds contained in the current second\n * @property-read int              $millisecondsInWeek                                                                The number of milliseconds contained in the current week\n * @property-read int              $millisecondsInYear                                                                The number of milliseconds contained in the current year\n * @property-read int              $minutesInCentury                                                                  The number of minutes contained in the current century\n * @property-read int              $minutesInDay                                                                      The number of minutes contained in the current day\n * @property-read int              $minutesInDecade                                                                   The number of minutes contained in the current decade\n * @property-read int              $minutesInHour                                                                     The number of minutes contained in the current hour\n * @property-read int              $minutesInMillennium                                                               The number of minutes contained in the current millennium\n * @property-read int              $minutesInMonth                                                                    The number of minutes contained in the current month\n * @property-read int              $minutesInQuarter                                                                  The number of minutes contained in the current quarter\n * @property-read int              $minutesInWeek                                                                     The number of minutes contained in the current week\n * @property-read int              $minutesInYear                                                                     The number of minutes contained in the current year\n * @property-read int              $monthsInCentury                                                                   The number of months contained in the current century\n * @property-read int              $monthsInDecade                                                                    The number of months contained in the current decade\n * @property-read int              $monthsInMillennium                                                                The number of months contained in the current millennium\n * @property-read int              $monthsInQuarter                                                                   The number of months contained in the current quarter\n * @property-read int              $monthsInYear                                                                      The number of months contained in the current year\n * @property-read int              $quartersInCentury                                                                 The number of quarters contained in the current century\n * @property-read int              $quartersInDecade                                                                  The number of quarters contained in the current decade\n * @property-read int              $quartersInMillennium                                                              The number of quarters contained in the current millennium\n * @property-read int              $quartersInYear                                                                    The number of quarters contained in the current year\n * @property-read int              $secondsInCentury                                                                  The number of seconds contained in the current century\n * @property-read int              $secondsInDay                                                                      The number of seconds contained in the current day\n * @property-read int              $secondsInDecade                                                                   The number of seconds contained in the current decade\n * @property-read int              $secondsInHour                                                                     The number of seconds contained in the current hour\n * @property-read int              $secondsInMillennium                                                               The number of seconds contained in the current millennium\n * @property-read int              $secondsInMinute                                                                   The number of seconds contained in the current minute\n * @property-read int              $secondsInMonth                                                                    The number of seconds contained in the current month\n * @property-read int              $secondsInQuarter                                                                  The number of seconds contained in the current quarter\n * @property-read int              $secondsInWeek                                                                     The number of seconds contained in the current week\n * @property-read int              $secondsInYear                                                                     The number of seconds contained in the current year\n * @property-read int              $weeksInCentury                                                                    The number of weeks contained in the current century\n * @property-read int              $weeksInDecade                                                                     The number of weeks contained in the current decade\n * @property-read int              $weeksInMillennium                                                                 The number of weeks contained in the current millennium\n * @property-read int              $weeksInMonth                                                                      The number of weeks contained in the current month\n * @property-read int              $weeksInQuarter                                                                    The number of weeks contained in the current quarter\n * @property-read int              $weeksInYear                                                                       51 through 53\n * @property-read int              $yearsInCentury                                                                    The number of years contained in the current century\n * @property-read int              $yearsInDecade                                                                     The number of years contained in the current decade\n * @property-read int              $yearsInMillennium                                                                 The number of years contained in the current millennium\n *\n * @method        bool             isUtc()                                                                            Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.)\n * @method        bool             isLocal()                                                                          Check if the current instance has non-UTC timezone.\n * @method        bool             isValid()                                                                          Check if the current instance is a valid date.\n * @method        bool             isDST()                                                                            Check if the current instance is in a daylight saving time.\n * @method        bool             isSunday()                                                                         Checks if the instance day is sunday.\n * @method        bool             isMonday()                                                                         Checks if the instance day is monday.\n * @method        bool             isTuesday()                                                                        Checks if the instance day is tuesday.\n * @method        bool             isWednesday()                                                                      Checks if the instance day is wednesday.\n * @method        bool             isThursday()                                                                       Checks if the instance day is thursday.\n * @method        bool             isFriday()                                                                         Checks if the instance day is friday.\n * @method        bool             isSaturday()                                                                       Checks if the instance day is saturday.\n * @method        bool             isSameYear(DateTimeInterface|string $date)                                         Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentYear()                                                                    Checks if the instance is in the same year as the current moment.\n * @method        bool             isNextYear()                                                                       Checks if the instance is in the same year as the current moment next year.\n * @method        bool             isLastYear()                                                                       Checks if the instance is in the same year as the current moment last year.\n * @method        bool             isCurrentMonth()                                                                   Checks if the instance is in the same month as the current moment.\n * @method        bool             isNextMonth()                                                                      Checks if the instance is in the same month as the current moment next month.\n * @method        bool             isLastMonth()                                                                      Checks if the instance is in the same month as the current moment last month.\n * @method        bool             isSameWeek(DateTimeInterface|string $date)                                         Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentWeek()                                                                    Checks if the instance is in the same week as the current moment.\n * @method        bool             isNextWeek()                                                                       Checks if the instance is in the same week as the current moment next week.\n * @method        bool             isLastWeek()                                                                       Checks if the instance is in the same week as the current moment last week.\n * @method        bool             isSameDay(DateTimeInterface|string $date)                                          Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDay()                                                                     Checks if the instance is in the same day as the current moment.\n * @method        bool             isNextDay()                                                                        Checks if the instance is in the same day as the current moment next day.\n * @method        bool             isLastDay()                                                                        Checks if the instance is in the same day as the current moment last day.\n * @method        bool             isSameHour(DateTimeInterface|string $date)                                         Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentHour()                                                                    Checks if the instance is in the same hour as the current moment.\n * @method        bool             isNextHour()                                                                       Checks if the instance is in the same hour as the current moment next hour.\n * @method        bool             isLastHour()                                                                       Checks if the instance is in the same hour as the current moment last hour.\n * @method        bool             isSameMinute(DateTimeInterface|string $date)                                       Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMinute()                                                                  Checks if the instance is in the same minute as the current moment.\n * @method        bool             isNextMinute()                                                                     Checks if the instance is in the same minute as the current moment next minute.\n * @method        bool             isLastMinute()                                                                     Checks if the instance is in the same minute as the current moment last minute.\n * @method        bool             isSameSecond(DateTimeInterface|string $date)                                       Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentSecond()                                                                  Checks if the instance is in the same second as the current moment.\n * @method        bool             isNextSecond()                                                                     Checks if the instance is in the same second as the current moment next second.\n * @method        bool             isLastSecond()                                                                     Checks if the instance is in the same second as the current moment last second.\n * @method        bool             isSameMilli(DateTimeInterface|string $date)                                        Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMilli()                                                                   Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMilli()                                                                      Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMilli()                                                                      Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMillisecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillisecond()                                                             Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMicro(DateTimeInterface|string $date)                                        Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicro()                                                                   Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicro()                                                                      Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicro()                                                                      Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameMicrosecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicrosecond()                                                             Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameDecade(DateTimeInterface|string $date)                                       Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDecade()                                                                  Checks if the instance is in the same decade as the current moment.\n * @method        bool             isNextDecade()                                                                     Checks if the instance is in the same decade as the current moment next decade.\n * @method        bool             isLastDecade()                                                                     Checks if the instance is in the same decade as the current moment last decade.\n * @method        bool             isSameCentury(DateTimeInterface|string $date)                                      Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentCentury()                                                                 Checks if the instance is in the same century as the current moment.\n * @method        bool             isNextCentury()                                                                    Checks if the instance is in the same century as the current moment next century.\n * @method        bool             isLastCentury()                                                                    Checks if the instance is in the same century as the current moment last century.\n * @method        bool             isSameMillennium(DateTimeInterface|string $date)                                   Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillennium()                                                              Checks if the instance is in the same millennium as the current moment.\n * @method        bool             isNextMillennium()                                                                 Checks if the instance is in the same millennium as the current moment next millennium.\n * @method        bool             isLastMillennium()                                                                 Checks if the instance is in the same millennium as the current moment last millennium.\n * @method        bool             isCurrentQuarter()                                                                 Checks if the instance is in the same quarter as the current moment.\n * @method        bool             isNextQuarter()                                                                    Checks if the instance is in the same quarter as the current moment next quarter.\n * @method        bool             isLastQuarter()                                                                    Checks if the instance is in the same quarter as the current moment last quarter.\n * @method        CarbonImmutable  years(int $value)                                                                  Set current instance year to the given value.\n * @method        CarbonImmutable  year(int $value)                                                                   Set current instance year to the given value.\n * @method        CarbonImmutable  setYears(int $value)                                                               Set current instance year to the given value.\n * @method        CarbonImmutable  setYear(int $value)                                                                Set current instance year to the given value.\n * @method        CarbonImmutable  months(Month|int $value)                                                           Set current instance month to the given value.\n * @method        CarbonImmutable  month(Month|int $value)                                                            Set current instance month to the given value.\n * @method        CarbonImmutable  setMonths(Month|int $value)                                                        Set current instance month to the given value.\n * @method        CarbonImmutable  setMonth(Month|int $value)                                                         Set current instance month to the given value.\n * @method        CarbonImmutable  days(int $value)                                                                   Set current instance day to the given value.\n * @method        CarbonImmutable  day(int $value)                                                                    Set current instance day to the given value.\n * @method        CarbonImmutable  setDays(int $value)                                                                Set current instance day to the given value.\n * @method        CarbonImmutable  setDay(int $value)                                                                 Set current instance day to the given value.\n * @method        CarbonImmutable  hours(int $value)                                                                  Set current instance hour to the given value.\n * @method        CarbonImmutable  hour(int $value)                                                                   Set current instance hour to the given value.\n * @method        CarbonImmutable  setHours(int $value)                                                               Set current instance hour to the given value.\n * @method        CarbonImmutable  setHour(int $value)                                                                Set current instance hour to the given value.\n * @method        CarbonImmutable  minutes(int $value)                                                                Set current instance minute to the given value.\n * @method        CarbonImmutable  minute(int $value)                                                                 Set current instance minute to the given value.\n * @method        CarbonImmutable  setMinutes(int $value)                                                             Set current instance minute to the given value.\n * @method        CarbonImmutable  setMinute(int $value)                                                              Set current instance minute to the given value.\n * @method        CarbonImmutable  seconds(int $value)                                                                Set current instance second to the given value.\n * @method        CarbonImmutable  second(int $value)                                                                 Set current instance second to the given value.\n * @method        CarbonImmutable  setSeconds(int $value)                                                             Set current instance second to the given value.\n * @method        CarbonImmutable  setSecond(int $value)                                                              Set current instance second to the given value.\n * @method        CarbonImmutable  millis(int $value)                                                                 Set current instance millisecond to the given value.\n * @method        CarbonImmutable  milli(int $value)                                                                  Set current instance millisecond to the given value.\n * @method        CarbonImmutable  setMillis(int $value)                                                              Set current instance millisecond to the given value.\n * @method        CarbonImmutable  setMilli(int $value)                                                               Set current instance millisecond to the given value.\n * @method        CarbonImmutable  milliseconds(int $value)                                                           Set current instance millisecond to the given value.\n * @method        CarbonImmutable  millisecond(int $value)                                                            Set current instance millisecond to the given value.\n * @method        CarbonImmutable  setMilliseconds(int $value)                                                        Set current instance millisecond to the given value.\n * @method        CarbonImmutable  setMillisecond(int $value)                                                         Set current instance millisecond to the given value.\n * @method        CarbonImmutable  micros(int $value)                                                                 Set current instance microsecond to the given value.\n * @method        CarbonImmutable  micro(int $value)                                                                  Set current instance microsecond to the given value.\n * @method        CarbonImmutable  setMicros(int $value)                                                              Set current instance microsecond to the given value.\n * @method        CarbonImmutable  setMicro(int $value)                                                               Set current instance microsecond to the given value.\n * @method        CarbonImmutable  microseconds(int $value)                                                           Set current instance microsecond to the given value.\n * @method        CarbonImmutable  microsecond(int $value)                                                            Set current instance microsecond to the given value.\n * @method        CarbonImmutable  setMicroseconds(int $value)                                                        Set current instance microsecond to the given value.\n * @method        self             setMicrosecond(int $value)                                                         Set current instance microsecond to the given value.\n * @method        CarbonImmutable  addYears(int|float $value = 1)                                                     Add years (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addYear()                                                                          Add one year to the instance (using date interval).\n * @method        CarbonImmutable  subYears(int|float $value = 1)                                                     Sub years (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subYear()                                                                          Sub one year to the instance (using date interval).\n * @method        CarbonImmutable  addYearsWithOverflow(int|float $value = 1)                                         Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addYearWithOverflow()                                                              Add one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subYearsWithOverflow(int|float $value = 1)                                         Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subYearWithOverflow()                                                              Sub one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addYearsWithoutOverflow(int|float $value = 1)                                      Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addYearWithoutOverflow()                                                           Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subYearsWithoutOverflow(int|float $value = 1)                                      Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subYearWithoutOverflow()                                                           Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addYearsWithNoOverflow(int|float $value = 1)                                       Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addYearWithNoOverflow()                                                            Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subYearsWithNoOverflow(int|float $value = 1)                                       Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subYearWithNoOverflow()                                                            Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addYearsNoOverflow(int|float $value = 1)                                           Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addYearNoOverflow()                                                                Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subYearsNoOverflow(int|float $value = 1)                                           Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subYearNoOverflow()                                                                Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMonths(int|float $value = 1)                                                    Add months (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMonth()                                                                         Add one month to the instance (using date interval).\n * @method        CarbonImmutable  subMonths(int|float $value = 1)                                                    Sub months (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMonth()                                                                         Sub one month to the instance (using date interval).\n * @method        CarbonImmutable  addMonthsWithOverflow(int|float $value = 1)                                        Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addMonthWithOverflow()                                                             Add one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subMonthsWithOverflow(int|float $value = 1)                                        Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subMonthWithOverflow()                                                             Sub one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addMonthsWithoutOverflow(int|float $value = 1)                                     Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMonthWithoutOverflow()                                                          Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMonthsWithoutOverflow(int|float $value = 1)                                     Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMonthWithoutOverflow()                                                          Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMonthsWithNoOverflow(int|float $value = 1)                                      Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMonthWithNoOverflow()                                                           Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMonthsWithNoOverflow(int|float $value = 1)                                      Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMonthWithNoOverflow()                                                           Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMonthsNoOverflow(int|float $value = 1)                                          Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMonthNoOverflow()                                                               Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMonthsNoOverflow(int|float $value = 1)                                          Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMonthNoOverflow()                                                               Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDays(int|float $value = 1)                                                      Add days (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addDay()                                                                           Add one day to the instance (using date interval).\n * @method        CarbonImmutable  subDays(int|float $value = 1)                                                      Sub days (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subDay()                                                                           Sub one day to the instance (using date interval).\n * @method        CarbonImmutable  addHours(int|float $value = 1)                                                     Add hours (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addHour()                                                                          Add one hour to the instance (using date interval).\n * @method        CarbonImmutable  subHours(int|float $value = 1)                                                     Sub hours (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subHour()                                                                          Sub one hour to the instance (using date interval).\n * @method        CarbonImmutable  addMinutes(int|float $value = 1)                                                   Add minutes (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMinute()                                                                        Add one minute to the instance (using date interval).\n * @method        CarbonImmutable  subMinutes(int|float $value = 1)                                                   Sub minutes (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMinute()                                                                        Sub one minute to the instance (using date interval).\n * @method        CarbonImmutable  addSeconds(int|float $value = 1)                                                   Add seconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addSecond()                                                                        Add one second to the instance (using date interval).\n * @method        CarbonImmutable  subSeconds(int|float $value = 1)                                                   Sub seconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subSecond()                                                                        Sub one second to the instance (using date interval).\n * @method        CarbonImmutable  addMillis(int|float $value = 1)                                                    Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMilli()                                                                         Add one millisecond to the instance (using date interval).\n * @method        CarbonImmutable  subMillis(int|float $value = 1)                                                    Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMilli()                                                                         Sub one millisecond to the instance (using date interval).\n * @method        CarbonImmutable  addMilliseconds(int|float $value = 1)                                              Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMillisecond()                                                                   Add one millisecond to the instance (using date interval).\n * @method        CarbonImmutable  subMilliseconds(int|float $value = 1)                                              Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMillisecond()                                                                   Sub one millisecond to the instance (using date interval).\n * @method        CarbonImmutable  addMicros(int|float $value = 1)                                                    Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMicro()                                                                         Add one microsecond to the instance (using date interval).\n * @method        CarbonImmutable  subMicros(int|float $value = 1)                                                    Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMicro()                                                                         Sub one microsecond to the instance (using date interval).\n * @method        CarbonImmutable  addMicroseconds(int|float $value = 1)                                              Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMicrosecond()                                                                   Add one microsecond to the instance (using date interval).\n * @method        CarbonImmutable  subMicroseconds(int|float $value = 1)                                              Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMicrosecond()                                                                   Sub one microsecond to the instance (using date interval).\n * @method        CarbonImmutable  addMillennia(int|float $value = 1)                                                 Add millennia (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addMillennium()                                                                    Add one millennium to the instance (using date interval).\n * @method        CarbonImmutable  subMillennia(int|float $value = 1)                                                 Sub millennia (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subMillennium()                                                                    Sub one millennium to the instance (using date interval).\n * @method        CarbonImmutable  addMillenniaWithOverflow(int|float $value = 1)                                     Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addMillenniumWithOverflow()                                                        Add one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subMillenniaWithOverflow(int|float $value = 1)                                     Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subMillenniumWithOverflow()                                                        Sub one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addMillenniaWithoutOverflow(int|float $value = 1)                                  Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMillenniumWithoutOverflow()                                                     Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMillenniaWithoutOverflow(int|float $value = 1)                                  Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMillenniumWithoutOverflow()                                                     Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMillenniaWithNoOverflow(int|float $value = 1)                                   Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMillenniumWithNoOverflow()                                                      Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMillenniaWithNoOverflow(int|float $value = 1)                                   Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMillenniumWithNoOverflow()                                                      Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMillenniaNoOverflow(int|float $value = 1)                                       Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addMillenniumNoOverflow()                                                          Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMillenniaNoOverflow(int|float $value = 1)                                       Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subMillenniumNoOverflow()                                                          Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addCenturies(int|float $value = 1)                                                 Add centuries (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addCentury()                                                                       Add one century to the instance (using date interval).\n * @method        CarbonImmutable  subCenturies(int|float $value = 1)                                                 Sub centuries (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subCentury()                                                                       Sub one century to the instance (using date interval).\n * @method        CarbonImmutable  addCenturiesWithOverflow(int|float $value = 1)                                     Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addCenturyWithOverflow()                                                           Add one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subCenturiesWithOverflow(int|float $value = 1)                                     Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subCenturyWithOverflow()                                                           Sub one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addCenturiesWithoutOverflow(int|float $value = 1)                                  Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addCenturyWithoutOverflow()                                                        Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subCenturiesWithoutOverflow(int|float $value = 1)                                  Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subCenturyWithoutOverflow()                                                        Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addCenturiesWithNoOverflow(int|float $value = 1)                                   Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addCenturyWithNoOverflow()                                                         Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subCenturiesWithNoOverflow(int|float $value = 1)                                   Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subCenturyWithNoOverflow()                                                         Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addCenturiesNoOverflow(int|float $value = 1)                                       Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addCenturyNoOverflow()                                                             Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subCenturiesNoOverflow(int|float $value = 1)                                       Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subCenturyNoOverflow()                                                             Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDecades(int|float $value = 1)                                                   Add decades (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addDecade()                                                                        Add one decade to the instance (using date interval).\n * @method        CarbonImmutable  subDecades(int|float $value = 1)                                                   Sub decades (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subDecade()                                                                        Sub one decade to the instance (using date interval).\n * @method        CarbonImmutable  addDecadesWithOverflow(int|float $value = 1)                                       Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addDecadeWithOverflow()                                                            Add one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subDecadesWithOverflow(int|float $value = 1)                                       Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subDecadeWithOverflow()                                                            Sub one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addDecadesWithoutOverflow(int|float $value = 1)                                    Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDecadeWithoutOverflow()                                                         Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subDecadesWithoutOverflow(int|float $value = 1)                                    Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subDecadeWithoutOverflow()                                                         Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDecadesWithNoOverflow(int|float $value = 1)                                     Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDecadeWithNoOverflow()                                                          Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subDecadesWithNoOverflow(int|float $value = 1)                                     Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subDecadeWithNoOverflow()                                                          Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDecadesNoOverflow(int|float $value = 1)                                         Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addDecadeNoOverflow()                                                              Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subDecadesNoOverflow(int|float $value = 1)                                         Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subDecadeNoOverflow()                                                              Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addQuarters(int|float $value = 1)                                                  Add quarters (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addQuarter()                                                                       Add one quarter to the instance (using date interval).\n * @method        CarbonImmutable  subQuarters(int|float $value = 1)                                                  Sub quarters (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subQuarter()                                                                       Sub one quarter to the instance (using date interval).\n * @method        CarbonImmutable  addQuartersWithOverflow(int|float $value = 1)                                      Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addQuarterWithOverflow()                                                           Add one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subQuartersWithOverflow(int|float $value = 1)                                      Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  subQuarterWithOverflow()                                                           Sub one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonImmutable  addQuartersWithoutOverflow(int|float $value = 1)                                   Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addQuarterWithoutOverflow()                                                        Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subQuartersWithoutOverflow(int|float $value = 1)                                   Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subQuarterWithoutOverflow()                                                        Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addQuartersWithNoOverflow(int|float $value = 1)                                    Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addQuarterWithNoOverflow()                                                         Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subQuartersWithNoOverflow(int|float $value = 1)                                    Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subQuarterWithNoOverflow()                                                         Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addQuartersNoOverflow(int|float $value = 1)                                        Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addQuarterNoOverflow()                                                             Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subQuartersNoOverflow(int|float $value = 1)                                        Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  subQuarterNoOverflow()                                                             Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonImmutable  addWeeks(int|float $value = 1)                                                     Add weeks (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addWeek()                                                                          Add one week to the instance (using date interval).\n * @method        CarbonImmutable  subWeeks(int|float $value = 1)                                                     Sub weeks (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subWeek()                                                                          Sub one week to the instance (using date interval).\n * @method        CarbonImmutable  addWeekdays(int|float $value = 1)                                                  Add weekdays (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  addWeekday()                                                                       Add one weekday to the instance (using date interval).\n * @method        CarbonImmutable  subWeekdays(int|float $value = 1)                                                  Sub weekdays (the $value count passed in) to the instance (using date interval).\n * @method        CarbonImmutable  subWeekday()                                                                       Sub one weekday to the instance (using date interval).\n * @method        CarbonImmutable  addUTCMicros(int|float $value = 1)                                                 Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMicro()                                                                      Add one microsecond to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMicros(int|float $value = 1)                                                 Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMicro()                                                                      Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicros(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        CarbonImmutable  addUTCMicroseconds(int|float $value = 1)                                           Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMicrosecond()                                                                Add one microsecond to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMicroseconds(int|float $value = 1)                                           Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMicrosecond()                                                                Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicroseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        CarbonImmutable  addUTCMillis(int|float $value = 1)                                                 Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMilli()                                                                      Add one millisecond to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMillis(int|float $value = 1)                                                 Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMilli()                                                                      Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMillis(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        CarbonImmutable  addUTCMilliseconds(int|float $value = 1)                                           Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMillisecond()                                                                Add one millisecond to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMilliseconds(int|float $value = 1)                                           Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMillisecond()                                                                Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMilliseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        CarbonImmutable  addUTCSeconds(int|float $value = 1)                                                Add seconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCSecond()                                                                     Add one second to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCSeconds(int|float $value = 1)                                                Sub seconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCSecond()                                                                     Sub one second to the instance (using timestamp).\n * @method        CarbonPeriod     secondsUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given.\n * @method        float            diffInUTCSeconds(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of seconds.\n * @method        CarbonImmutable  addUTCMinutes(int|float $value = 1)                                                Add minutes (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMinute()                                                                     Add one minute to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMinutes(int|float $value = 1)                                                Sub minutes (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMinute()                                                                     Sub one minute to the instance (using timestamp).\n * @method        CarbonPeriod     minutesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given.\n * @method        float            diffInUTCMinutes(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of minutes.\n * @method        CarbonImmutable  addUTCHours(int|float $value = 1)                                                  Add hours (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCHour()                                                                       Add one hour to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCHours(int|float $value = 1)                                                  Sub hours (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCHour()                                                                       Sub one hour to the instance (using timestamp).\n * @method        CarbonPeriod     hoursUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given.\n * @method        float            diffInUTCHours(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of hours.\n * @method        CarbonImmutable  addUTCDays(int|float $value = 1)                                                   Add days (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCDay()                                                                        Add one day to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCDays(int|float $value = 1)                                                   Sub days (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCDay()                                                                        Sub one day to the instance (using timestamp).\n * @method        CarbonPeriod     daysUntil($endDate = null, int|float $factor = 1)                                  Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given.\n * @method        float            diffInUTCDays(DateTimeInterface|string|null $date, bool $absolute = false)         Convert current and given date in UTC timezone and return a floating number of days.\n * @method        CarbonImmutable  addUTCWeeks(int|float $value = 1)                                                  Add weeks (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCWeek()                                                                       Add one week to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCWeeks(int|float $value = 1)                                                  Sub weeks (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCWeek()                                                                       Sub one week to the instance (using timestamp).\n * @method        CarbonPeriod     weeksUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given.\n * @method        float            diffInUTCWeeks(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of weeks.\n * @method        CarbonImmutable  addUTCMonths(int|float $value = 1)                                                 Add months (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMonth()                                                                      Add one month to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMonths(int|float $value = 1)                                                 Sub months (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMonth()                                                                      Sub one month to the instance (using timestamp).\n * @method        CarbonPeriod     monthsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given.\n * @method        float            diffInUTCMonths(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of months.\n * @method        CarbonImmutable  addUTCQuarters(int|float $value = 1)                                               Add quarters (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCQuarter()                                                                    Add one quarter to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCQuarters(int|float $value = 1)                                               Sub quarters (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCQuarter()                                                                    Sub one quarter to the instance (using timestamp).\n * @method        CarbonPeriod     quartersUntil($endDate = null, int|float $factor = 1)                              Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given.\n * @method        float            diffInUTCQuarters(DateTimeInterface|string|null $date, bool $absolute = false)     Convert current and given date in UTC timezone and return a floating number of quarters.\n * @method        CarbonImmutable  addUTCYears(int|float $value = 1)                                                  Add years (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCYear()                                                                       Add one year to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCYears(int|float $value = 1)                                                  Sub years (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCYear()                                                                       Sub one year to the instance (using timestamp).\n * @method        CarbonPeriod     yearsUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given.\n * @method        float            diffInUTCYears(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of years.\n * @method        CarbonImmutable  addUTCDecades(int|float $value = 1)                                                Add decades (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCDecade()                                                                     Add one decade to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCDecades(int|float $value = 1)                                                Sub decades (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCDecade()                                                                     Sub one decade to the instance (using timestamp).\n * @method        CarbonPeriod     decadesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given.\n * @method        float            diffInUTCDecades(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of decades.\n * @method        CarbonImmutable  addUTCCenturies(int|float $value = 1)                                              Add centuries (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCCentury()                                                                    Add one century to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCCenturies(int|float $value = 1)                                              Sub centuries (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCCentury()                                                                    Sub one century to the instance (using timestamp).\n * @method        CarbonPeriod     centuriesUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given.\n * @method        float            diffInUTCCenturies(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of centuries.\n * @method        CarbonImmutable  addUTCMillennia(int|float $value = 1)                                              Add millennia (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  addUTCMillennium()                                                                 Add one millennium to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMillennia(int|float $value = 1)                                              Sub millennia (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonImmutable  subUTCMillennium()                                                                 Sub one millennium to the instance (using timestamp).\n * @method        CarbonPeriod     millenniaUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given.\n * @method        float            diffInUTCMillennia(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of millennia.\n * @method        CarbonImmutable  roundYear(float $precision = 1, string $function = \"round\")                        Round the current instance year with given precision using the given function.\n * @method        CarbonImmutable  roundYears(float $precision = 1, string $function = \"round\")                       Round the current instance year with given precision using the given function.\n * @method        CarbonImmutable  floorYear(float $precision = 1)                                                    Truncate the current instance year with given precision.\n * @method        CarbonImmutable  floorYears(float $precision = 1)                                                   Truncate the current instance year with given precision.\n * @method        CarbonImmutable  ceilYear(float $precision = 1)                                                     Ceil the current instance year with given precision.\n * @method        CarbonImmutable  ceilYears(float $precision = 1)                                                    Ceil the current instance year with given precision.\n * @method        CarbonImmutable  roundMonth(float $precision = 1, string $function = \"round\")                       Round the current instance month with given precision using the given function.\n * @method        CarbonImmutable  roundMonths(float $precision = 1, string $function = \"round\")                      Round the current instance month with given precision using the given function.\n * @method        CarbonImmutable  floorMonth(float $precision = 1)                                                   Truncate the current instance month with given precision.\n * @method        CarbonImmutable  floorMonths(float $precision = 1)                                                  Truncate the current instance month with given precision.\n * @method        CarbonImmutable  ceilMonth(float $precision = 1)                                                    Ceil the current instance month with given precision.\n * @method        CarbonImmutable  ceilMonths(float $precision = 1)                                                   Ceil the current instance month with given precision.\n * @method        CarbonImmutable  roundDay(float $precision = 1, string $function = \"round\")                         Round the current instance day with given precision using the given function.\n * @method        CarbonImmutable  roundDays(float $precision = 1, string $function = \"round\")                        Round the current instance day with given precision using the given function.\n * @method        CarbonImmutable  floorDay(float $precision = 1)                                                     Truncate the current instance day with given precision.\n * @method        CarbonImmutable  floorDays(float $precision = 1)                                                    Truncate the current instance day with given precision.\n * @method        CarbonImmutable  ceilDay(float $precision = 1)                                                      Ceil the current instance day with given precision.\n * @method        CarbonImmutable  ceilDays(float $precision = 1)                                                     Ceil the current instance day with given precision.\n * @method        CarbonImmutable  roundHour(float $precision = 1, string $function = \"round\")                        Round the current instance hour with given precision using the given function.\n * @method        CarbonImmutable  roundHours(float $precision = 1, string $function = \"round\")                       Round the current instance hour with given precision using the given function.\n * @method        CarbonImmutable  floorHour(float $precision = 1)                                                    Truncate the current instance hour with given precision.\n * @method        CarbonImmutable  floorHours(float $precision = 1)                                                   Truncate the current instance hour with given precision.\n * @method        CarbonImmutable  ceilHour(float $precision = 1)                                                     Ceil the current instance hour with given precision.\n * @method        CarbonImmutable  ceilHours(float $precision = 1)                                                    Ceil the current instance hour with given precision.\n * @method        CarbonImmutable  roundMinute(float $precision = 1, string $function = \"round\")                      Round the current instance minute with given precision using the given function.\n * @method        CarbonImmutable  roundMinutes(float $precision = 1, string $function = \"round\")                     Round the current instance minute with given precision using the given function.\n * @method        CarbonImmutable  floorMinute(float $precision = 1)                                                  Truncate the current instance minute with given precision.\n * @method        CarbonImmutable  floorMinutes(float $precision = 1)                                                 Truncate the current instance minute with given precision.\n * @method        CarbonImmutable  ceilMinute(float $precision = 1)                                                   Ceil the current instance minute with given precision.\n * @method        CarbonImmutable  ceilMinutes(float $precision = 1)                                                  Ceil the current instance minute with given precision.\n * @method        CarbonImmutable  roundSecond(float $precision = 1, string $function = \"round\")                      Round the current instance second with given precision using the given function.\n * @method        CarbonImmutable  roundSeconds(float $precision = 1, string $function = \"round\")                     Round the current instance second with given precision using the given function.\n * @method        CarbonImmutable  floorSecond(float $precision = 1)                                                  Truncate the current instance second with given precision.\n * @method        CarbonImmutable  floorSeconds(float $precision = 1)                                                 Truncate the current instance second with given precision.\n * @method        CarbonImmutable  ceilSecond(float $precision = 1)                                                   Ceil the current instance second with given precision.\n * @method        CarbonImmutable  ceilSeconds(float $precision = 1)                                                  Ceil the current instance second with given precision.\n * @method        CarbonImmutable  roundMillennium(float $precision = 1, string $function = \"round\")                  Round the current instance millennium with given precision using the given function.\n * @method        CarbonImmutable  roundMillennia(float $precision = 1, string $function = \"round\")                   Round the current instance millennium with given precision using the given function.\n * @method        CarbonImmutable  floorMillennium(float $precision = 1)                                              Truncate the current instance millennium with given precision.\n * @method        CarbonImmutable  floorMillennia(float $precision = 1)                                               Truncate the current instance millennium with given precision.\n * @method        CarbonImmutable  ceilMillennium(float $precision = 1)                                               Ceil the current instance millennium with given precision.\n * @method        CarbonImmutable  ceilMillennia(float $precision = 1)                                                Ceil the current instance millennium with given precision.\n * @method        CarbonImmutable  roundCentury(float $precision = 1, string $function = \"round\")                     Round the current instance century with given precision using the given function.\n * @method        CarbonImmutable  roundCenturies(float $precision = 1, string $function = \"round\")                   Round the current instance century with given precision using the given function.\n * @method        CarbonImmutable  floorCentury(float $precision = 1)                                                 Truncate the current instance century with given precision.\n * @method        CarbonImmutable  floorCenturies(float $precision = 1)                                               Truncate the current instance century with given precision.\n * @method        CarbonImmutable  ceilCentury(float $precision = 1)                                                  Ceil the current instance century with given precision.\n * @method        CarbonImmutable  ceilCenturies(float $precision = 1)                                                Ceil the current instance century with given precision.\n * @method        CarbonImmutable  roundDecade(float $precision = 1, string $function = \"round\")                      Round the current instance decade with given precision using the given function.\n * @method        CarbonImmutable  roundDecades(float $precision = 1, string $function = \"round\")                     Round the current instance decade with given precision using the given function.\n * @method        CarbonImmutable  floorDecade(float $precision = 1)                                                  Truncate the current instance decade with given precision.\n * @method        CarbonImmutable  floorDecades(float $precision = 1)                                                 Truncate the current instance decade with given precision.\n * @method        CarbonImmutable  ceilDecade(float $precision = 1)                                                   Ceil the current instance decade with given precision.\n * @method        CarbonImmutable  ceilDecades(float $precision = 1)                                                  Ceil the current instance decade with given precision.\n * @method        CarbonImmutable  roundQuarter(float $precision = 1, string $function = \"round\")                     Round the current instance quarter with given precision using the given function.\n * @method        CarbonImmutable  roundQuarters(float $precision = 1, string $function = \"round\")                    Round the current instance quarter with given precision using the given function.\n * @method        CarbonImmutable  floorQuarter(float $precision = 1)                                                 Truncate the current instance quarter with given precision.\n * @method        CarbonImmutable  floorQuarters(float $precision = 1)                                                Truncate the current instance quarter with given precision.\n * @method        CarbonImmutable  ceilQuarter(float $precision = 1)                                                  Ceil the current instance quarter with given precision.\n * @method        CarbonImmutable  ceilQuarters(float $precision = 1)                                                 Ceil the current instance quarter with given precision.\n * @method        CarbonImmutable  roundMillisecond(float $precision = 1, string $function = \"round\")                 Round the current instance millisecond with given precision using the given function.\n * @method        CarbonImmutable  roundMilliseconds(float $precision = 1, string $function = \"round\")                Round the current instance millisecond with given precision using the given function.\n * @method        CarbonImmutable  floorMillisecond(float $precision = 1)                                             Truncate the current instance millisecond with given precision.\n * @method        CarbonImmutable  floorMilliseconds(float $precision = 1)                                            Truncate the current instance millisecond with given precision.\n * @method        CarbonImmutable  ceilMillisecond(float $precision = 1)                                              Ceil the current instance millisecond with given precision.\n * @method        CarbonImmutable  ceilMilliseconds(float $precision = 1)                                             Ceil the current instance millisecond with given precision.\n * @method        CarbonImmutable  roundMicrosecond(float $precision = 1, string $function = \"round\")                 Round the current instance microsecond with given precision using the given function.\n * @method        CarbonImmutable  roundMicroseconds(float $precision = 1, string $function = \"round\")                Round the current instance microsecond with given precision using the given function.\n * @method        CarbonImmutable  floorMicrosecond(float $precision = 1)                                             Truncate the current instance microsecond with given precision.\n * @method        CarbonImmutable  floorMicroseconds(float $precision = 1)                                            Truncate the current instance microsecond with given precision.\n * @method        CarbonImmutable  ceilMicrosecond(float $precision = 1)                                              Ceil the current instance microsecond with given precision.\n * @method        CarbonImmutable  ceilMicroseconds(float $precision = 1)                                             Ceil the current instance microsecond with given precision.\n * @method        string           shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)   Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)    Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1)  Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        int              centuriesInMillennium()                                                            Return the number of centuries contained in the current millennium\n * @method        int|static       centuryOfMillennium(?int $century = null)                                          Return the value of the century starting from the beginning of the current millennium when called with no parameters, change the current century when called with an integer value\n * @method        int|static       dayOfCentury(?int $day = null)                                                     Return the value of the day starting from the beginning of the current century when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfDecade(?int $day = null)                                                      Return the value of the day starting from the beginning of the current decade when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMillennium(?int $day = null)                                                  Return the value of the day starting from the beginning of the current millennium when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMonth(?int $day = null)                                                       Return the value of the day starting from the beginning of the current month when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfQuarter(?int $day = null)                                                     Return the value of the day starting from the beginning of the current quarter when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfWeek(?int $day = null)                                                        Return the value of the day starting from the beginning of the current week when called with no parameters, change the current day when called with an integer value\n * @method        int              daysInCentury()                                                                    Return the number of days contained in the current century\n * @method        int              daysInDecade()                                                                     Return the number of days contained in the current decade\n * @method        int              daysInMillennium()                                                                 Return the number of days contained in the current millennium\n * @method        int              daysInMonth()                                                                      Return the number of days contained in the current month\n * @method        int              daysInQuarter()                                                                    Return the number of days contained in the current quarter\n * @method        int              daysInWeek()                                                                       Return the number of days contained in the current week\n * @method        int              daysInYear()                                                                       Return the number of days contained in the current year\n * @method        int|static       decadeOfCentury(?int $decade = null)                                               Return the value of the decade starting from the beginning of the current century when called with no parameters, change the current decade when called with an integer value\n * @method        int|static       decadeOfMillennium(?int $decade = null)                                            Return the value of the decade starting from the beginning of the current millennium when called with no parameters, change the current decade when called with an integer value\n * @method        int              decadesInCentury()                                                                 Return the number of decades contained in the current century\n * @method        int              decadesInMillennium()                                                              Return the number of decades contained in the current millennium\n * @method        int|static       hourOfCentury(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current century when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDay(?int $hour = null)                                                       Return the value of the hour starting from the beginning of the current day when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDecade(?int $hour = null)                                                    Return the value of the hour starting from the beginning of the current decade when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMillennium(?int $hour = null)                                                Return the value of the hour starting from the beginning of the current millennium when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMonth(?int $hour = null)                                                     Return the value of the hour starting from the beginning of the current month when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfQuarter(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current quarter when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfWeek(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current week when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfYear(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current year when called with no parameters, change the current hour when called with an integer value\n * @method        int              hoursInCentury()                                                                   Return the number of hours contained in the current century\n * @method        int              hoursInDay()                                                                       Return the number of hours contained in the current day\n * @method        int              hoursInDecade()                                                                    Return the number of hours contained in the current decade\n * @method        int              hoursInMillennium()                                                                Return the number of hours contained in the current millennium\n * @method        int              hoursInMonth()                                                                     Return the number of hours contained in the current month\n * @method        int              hoursInQuarter()                                                                   Return the number of hours contained in the current quarter\n * @method        int              hoursInWeek()                                                                      Return the number of hours contained in the current week\n * @method        int              hoursInYear()                                                                      Return the number of hours contained in the current year\n * @method        int|static       microsecondOfCentury(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current century when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDay(?int $microsecond = null)                                         Return the value of the microsecond starting from the beginning of the current day when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDecade(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current decade when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfHour(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current hour when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillennium(?int $microsecond = null)                                  Return the value of the microsecond starting from the beginning of the current millennium when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillisecond(?int $microsecond = null)                                 Return the value of the microsecond starting from the beginning of the current millisecond when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMinute(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current minute when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMonth(?int $microsecond = null)                                       Return the value of the microsecond starting from the beginning of the current month when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfQuarter(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current quarter when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfSecond(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current second when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfWeek(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current week when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfYear(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current year when called with no parameters, change the current microsecond when called with an integer value\n * @method        int              microsecondsInCentury()                                                            Return the number of microseconds contained in the current century\n * @method        int              microsecondsInDay()                                                                Return the number of microseconds contained in the current day\n * @method        int              microsecondsInDecade()                                                             Return the number of microseconds contained in the current decade\n * @method        int              microsecondsInHour()                                                               Return the number of microseconds contained in the current hour\n * @method        int              microsecondsInMillennium()                                                         Return the number of microseconds contained in the current millennium\n * @method        int              microsecondsInMillisecond()                                                        Return the number of microseconds contained in the current millisecond\n * @method        int              microsecondsInMinute()                                                             Return the number of microseconds contained in the current minute\n * @method        int              microsecondsInMonth()                                                              Return the number of microseconds contained in the current month\n * @method        int              microsecondsInQuarter()                                                            Return the number of microseconds contained in the current quarter\n * @method        int              microsecondsInSecond()                                                             Return the number of microseconds contained in the current second\n * @method        int              microsecondsInWeek()                                                               Return the number of microseconds contained in the current week\n * @method        int              microsecondsInYear()                                                               Return the number of microseconds contained in the current year\n * @method        int|static       millisecondOfCentury(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current century when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDay(?int $millisecond = null)                                         Return the value of the millisecond starting from the beginning of the current day when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDecade(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current decade when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfHour(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current hour when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMillennium(?int $millisecond = null)                                  Return the value of the millisecond starting from the beginning of the current millennium when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMinute(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current minute when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMonth(?int $millisecond = null)                                       Return the value of the millisecond starting from the beginning of the current month when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfQuarter(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current quarter when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfSecond(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current second when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfWeek(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current week when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfYear(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current year when called with no parameters, change the current millisecond when called with an integer value\n * @method        int              millisecondsInCentury()                                                            Return the number of milliseconds contained in the current century\n * @method        int              millisecondsInDay()                                                                Return the number of milliseconds contained in the current day\n * @method        int              millisecondsInDecade()                                                             Return the number of milliseconds contained in the current decade\n * @method        int              millisecondsInHour()                                                               Return the number of milliseconds contained in the current hour\n * @method        int              millisecondsInMillennium()                                                         Return the number of milliseconds contained in the current millennium\n * @method        int              millisecondsInMinute()                                                             Return the number of milliseconds contained in the current minute\n * @method        int              millisecondsInMonth()                                                              Return the number of milliseconds contained in the current month\n * @method        int              millisecondsInQuarter()                                                            Return the number of milliseconds contained in the current quarter\n * @method        int              millisecondsInSecond()                                                             Return the number of milliseconds contained in the current second\n * @method        int              millisecondsInWeek()                                                               Return the number of milliseconds contained in the current week\n * @method        int              millisecondsInYear()                                                               Return the number of milliseconds contained in the current year\n * @method        int|static       minuteOfCentury(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current century when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDay(?int $minute = null)                                                   Return the value of the minute starting from the beginning of the current day when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDecade(?int $minute = null)                                                Return the value of the minute starting from the beginning of the current decade when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfHour(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current hour when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMillennium(?int $minute = null)                                            Return the value of the minute starting from the beginning of the current millennium when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMonth(?int $minute = null)                                                 Return the value of the minute starting from the beginning of the current month when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfQuarter(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current quarter when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfWeek(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current week when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfYear(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current year when called with no parameters, change the current minute when called with an integer value\n * @method        int              minutesInCentury()                                                                 Return the number of minutes contained in the current century\n * @method        int              minutesInDay()                                                                     Return the number of minutes contained in the current day\n * @method        int              minutesInDecade()                                                                  Return the number of minutes contained in the current decade\n * @method        int              minutesInHour()                                                                    Return the number of minutes contained in the current hour\n * @method        int              minutesInMillennium()                                                              Return the number of minutes contained in the current millennium\n * @method        int              minutesInMonth()                                                                   Return the number of minutes contained in the current month\n * @method        int              minutesInQuarter()                                                                 Return the number of minutes contained in the current quarter\n * @method        int              minutesInWeek()                                                                    Return the number of minutes contained in the current week\n * @method        int              minutesInYear()                                                                    Return the number of minutes contained in the current year\n * @method        int|static       monthOfCentury(?int $month = null)                                                 Return the value of the month starting from the beginning of the current century when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfDecade(?int $month = null)                                                  Return the value of the month starting from the beginning of the current decade when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfMillennium(?int $month = null)                                              Return the value of the month starting from the beginning of the current millennium when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfQuarter(?int $month = null)                                                 Return the value of the month starting from the beginning of the current quarter when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfYear(?int $month = null)                                                    Return the value of the month starting from the beginning of the current year when called with no parameters, change the current month when called with an integer value\n * @method        int              monthsInCentury()                                                                  Return the number of months contained in the current century\n * @method        int              monthsInDecade()                                                                   Return the number of months contained in the current decade\n * @method        int              monthsInMillennium()                                                               Return the number of months contained in the current millennium\n * @method        int              monthsInQuarter()                                                                  Return the number of months contained in the current quarter\n * @method        int              monthsInYear()                                                                     Return the number of months contained in the current year\n * @method        int|static       quarterOfCentury(?int $quarter = null)                                             Return the value of the quarter starting from the beginning of the current century when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfDecade(?int $quarter = null)                                              Return the value of the quarter starting from the beginning of the current decade when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfMillennium(?int $quarter = null)                                          Return the value of the quarter starting from the beginning of the current millennium when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfYear(?int $quarter = null)                                                Return the value of the quarter starting from the beginning of the current year when called with no parameters, change the current quarter when called with an integer value\n * @method        int              quartersInCentury()                                                                Return the number of quarters contained in the current century\n * @method        int              quartersInDecade()                                                                 Return the number of quarters contained in the current decade\n * @method        int              quartersInMillennium()                                                             Return the number of quarters contained in the current millennium\n * @method        int              quartersInYear()                                                                   Return the number of quarters contained in the current year\n * @method        int|static       secondOfCentury(?int $second = null)                                               Return the value of the second starting from the beginning of the current century when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDay(?int $second = null)                                                   Return the value of the second starting from the beginning of the current day when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDecade(?int $second = null)                                                Return the value of the second starting from the beginning of the current decade when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfHour(?int $second = null)                                                  Return the value of the second starting from the beginning of the current hour when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMillennium(?int $second = null)                                            Return the value of the second starting from the beginning of the current millennium when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMinute(?int $second = null)                                                Return the value of the second starting from the beginning of the current minute when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMonth(?int $second = null)                                                 Return the value of the second starting from the beginning of the current month when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfQuarter(?int $second = null)                                               Return the value of the second starting from the beginning of the current quarter when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfWeek(?int $second = null)                                                  Return the value of the second starting from the beginning of the current week when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfYear(?int $second = null)                                                  Return the value of the second starting from the beginning of the current year when called with no parameters, change the current second when called with an integer value\n * @method        int              secondsInCentury()                                                                 Return the number of seconds contained in the current century\n * @method        int              secondsInDay()                                                                     Return the number of seconds contained in the current day\n * @method        int              secondsInDecade()                                                                  Return the number of seconds contained in the current decade\n * @method        int              secondsInHour()                                                                    Return the number of seconds contained in the current hour\n * @method        int              secondsInMillennium()                                                              Return the number of seconds contained in the current millennium\n * @method        int              secondsInMinute()                                                                  Return the number of seconds contained in the current minute\n * @method        int              secondsInMonth()                                                                   Return the number of seconds contained in the current month\n * @method        int              secondsInQuarter()                                                                 Return the number of seconds contained in the current quarter\n * @method        int              secondsInWeek()                                                                    Return the number of seconds contained in the current week\n * @method        int              secondsInYear()                                                                    Return the number of seconds contained in the current year\n * @method        int|static       weekOfCentury(?int $week = null)                                                   Return the value of the week starting from the beginning of the current century when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfDecade(?int $week = null)                                                    Return the value of the week starting from the beginning of the current decade when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMillennium(?int $week = null)                                                Return the value of the week starting from the beginning of the current millennium when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMonth(?int $week = null)                                                     Return the value of the week starting from the beginning of the current month when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfQuarter(?int $week = null)                                                   Return the value of the week starting from the beginning of the current quarter when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfYear(?int $week = null)                                                      Return the value of the week starting from the beginning of the current year when called with no parameters, change the current week when called with an integer value\n * @method        int              weeksInCentury()                                                                   Return the number of weeks contained in the current century\n * @method        int              weeksInDecade()                                                                    Return the number of weeks contained in the current decade\n * @method        int              weeksInMillennium()                                                                Return the number of weeks contained in the current millennium\n * @method        int              weeksInMonth()                                                                     Return the number of weeks contained in the current month\n * @method        int              weeksInQuarter()                                                                   Return the number of weeks contained in the current quarter\n * @method        int|static       yearOfCentury(?int $year = null)                                                   Return the value of the year starting from the beginning of the current century when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfDecade(?int $year = null)                                                    Return the value of the year starting from the beginning of the current decade when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfMillennium(?int $year = null)                                                Return the value of the year starting from the beginning of the current millennium when called with no parameters, change the current year when called with an integer value\n * @method        int              yearsInCentury()                                                                   Return the number of years contained in the current century\n * @method        int              yearsInDecade()                                                                    Return the number of years contained in the current decade\n * @method        int              yearsInMillennium()                                                                Return the number of years contained in the current millennium\n *\n * </autodoc>\n */\nclass CarbonImmutable extends DateTimeImmutable implements CarbonInterface\n{\n    use Date {\n        __clone as dateTraitClone;\n    }\n\n    public function __clone(): void\n    {\n        $this->dateTraitClone();\n        $this->endOfTime = false;\n        $this->startOfTime = false;\n    }\n\n    /**\n     * Create a very old date representing start of time.\n     *\n     * @return static\n     */\n    public static function startOfTime(): static\n    {\n        $date = static::parse('0001-01-01')->years(self::getStartOfTimeYear());\n        $date->startOfTime = true;\n\n        return $date;\n    }\n\n    /**\n     * Create a very far date representing end of time.\n     *\n     * @return static\n     */\n    public static function endOfTime(): static\n    {\n        $date = static::parse('9999-12-31 23:59:59.999999')->years(self::getEndOfTimeYear());\n        $date->endOfTime = true;\n\n        return $date;\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    private static function getEndOfTimeYear(): int\n    {\n        return 1118290769066902787; // PHP_INT_MAX no longer work since PHP 8.1\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    private static function getStartOfTimeYear(): int\n    {\n        return -1118290769066898816; // PHP_INT_MIN no longer work since PHP 8.1\n    }\n}\n"
  },
  {
    "path": "src/Carbon/CarbonInterface.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse BadMethodCallException;\nuse Carbon\\Constants\\DiffOptions;\nuse Carbon\\Constants\\Format;\nuse Carbon\\Constants\\TranslationOptions;\nuse Carbon\\Constants\\UnitValue;\nuse Carbon\\Exceptions\\BadComparisonUnitException;\nuse Carbon\\Exceptions\\ImmutableException;\nuse Carbon\\Exceptions\\InvalidDateException;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\UnknownGetterException;\nuse Carbon\\Exceptions\\UnknownMethodException;\nuse Carbon\\Exceptions\\UnknownSetterException;\nuse Closure;\nuse DateInterval;\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse JsonSerializable;\nuse ReflectionException;\nuse ReturnTypeWillChange;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\nuse Throwable;\n\n/**\n * Common interface for Carbon and CarbonImmutable.\n *\n * <autodoc generated by `composer phpdoc`>\n *\n * @property      string           $localeDayOfWeek                                                                   the day of week in current locale\n * @property      string           $shortLocaleDayOfWeek                                                              the abbreviated day of week in current locale\n * @property      string           $localeMonth                                                                       the month in current locale\n * @property      string           $shortLocaleMonth                                                                  the abbreviated month in current locale\n * @property      int              $year\n * @property      int              $yearIso\n * @property      int              $month\n * @property      int              $day\n * @property      int              $hour\n * @property      int              $minute\n * @property      int              $second\n * @property      int              $micro\n * @property      int              $microsecond\n * @property      int              $dayOfWeekIso                                                                      1 (for Monday) through 7 (for Sunday)\n * @property      int|float|string $timestamp                                                                         seconds since the Unix Epoch\n * @property      string           $englishDayOfWeek                                                                  the day of week in English\n * @property      string           $shortEnglishDayOfWeek                                                             the abbreviated day of week in English\n * @property      string           $englishMonth                                                                      the month in English\n * @property      string           $shortEnglishMonth                                                                 the abbreviated month in English\n * @property      int              $milliseconds\n * @property      int              $millisecond\n * @property      int              $milli\n * @property      int              $week                                                                              1 through 53\n * @property      int              $isoWeek                                                                           1 through 53\n * @property      int              $weekYear                                                                          year according to week format\n * @property      int              $isoWeekYear                                                                       year according to ISO week format\n * @property      int              $age                                                                               does a diffInYears() with default parameters\n * @property      int              $offset                                                                            the timezone offset in seconds from UTC\n * @property      int              $offsetMinutes                                                                     the timezone offset in minutes from UTC\n * @property      int              $offsetHours                                                                       the timezone offset in hours from UTC\n * @property      CarbonTimeZone   $timezone                                                                          the current timezone\n * @property      CarbonTimeZone   $tz                                                                                alias of $timezone\n * @property      int              $centuryOfMillennium                                                               The value of the century starting from the beginning of the current millennium\n * @property      int              $dayOfCentury                                                                      The value of the day starting from the beginning of the current century\n * @property      int              $dayOfDecade                                                                       The value of the day starting from the beginning of the current decade\n * @property      int              $dayOfMillennium                                                                   The value of the day starting from the beginning of the current millennium\n * @property      int              $dayOfMonth                                                                        The value of the day starting from the beginning of the current month\n * @property      int              $dayOfQuarter                                                                      The value of the day starting from the beginning of the current quarter\n * @property      int              $dayOfWeek                                                                         0 (for Sunday) through 6 (for Saturday)\n * @property      int              $dayOfYear                                                                         1 through 366\n * @property      int              $decadeOfCentury                                                                   The value of the decade starting from the beginning of the current century\n * @property      int              $decadeOfMillennium                                                                The value of the decade starting from the beginning of the current millennium\n * @property      int              $hourOfCentury                                                                     The value of the hour starting from the beginning of the current century\n * @property      int              $hourOfDay                                                                         The value of the hour starting from the beginning of the current day\n * @property      int              $hourOfDecade                                                                      The value of the hour starting from the beginning of the current decade\n * @property      int              $hourOfMillennium                                                                  The value of the hour starting from the beginning of the current millennium\n * @property      int              $hourOfMonth                                                                       The value of the hour starting from the beginning of the current month\n * @property      int              $hourOfQuarter                                                                     The value of the hour starting from the beginning of the current quarter\n * @property      int              $hourOfWeek                                                                        The value of the hour starting from the beginning of the current week\n * @property      int              $hourOfYear                                                                        The value of the hour starting from the beginning of the current year\n * @property      int              $microsecondOfCentury                                                              The value of the microsecond starting from the beginning of the current century\n * @property      int              $microsecondOfDay                                                                  The value of the microsecond starting from the beginning of the current day\n * @property      int              $microsecondOfDecade                                                               The value of the microsecond starting from the beginning of the current decade\n * @property      int              $microsecondOfHour                                                                 The value of the microsecond starting from the beginning of the current hour\n * @property      int              $microsecondOfMillennium                                                           The value of the microsecond starting from the beginning of the current millennium\n * @property      int              $microsecondOfMillisecond                                                          The value of the microsecond starting from the beginning of the current millisecond\n * @property      int              $microsecondOfMinute                                                               The value of the microsecond starting from the beginning of the current minute\n * @property      int              $microsecondOfMonth                                                                The value of the microsecond starting from the beginning of the current month\n * @property      int              $microsecondOfQuarter                                                              The value of the microsecond starting from the beginning of the current quarter\n * @property      int              $microsecondOfSecond                                                               The value of the microsecond starting from the beginning of the current second\n * @property      int              $microsecondOfWeek                                                                 The value of the microsecond starting from the beginning of the current week\n * @property      int              $microsecondOfYear                                                                 The value of the microsecond starting from the beginning of the current year\n * @property      int              $millisecondOfCentury                                                              The value of the millisecond starting from the beginning of the current century\n * @property      int              $millisecondOfDay                                                                  The value of the millisecond starting from the beginning of the current day\n * @property      int              $millisecondOfDecade                                                               The value of the millisecond starting from the beginning of the current decade\n * @property      int              $millisecondOfHour                                                                 The value of the millisecond starting from the beginning of the current hour\n * @property      int              $millisecondOfMillennium                                                           The value of the millisecond starting from the beginning of the current millennium\n * @property      int              $millisecondOfMinute                                                               The value of the millisecond starting from the beginning of the current minute\n * @property      int              $millisecondOfMonth                                                                The value of the millisecond starting from the beginning of the current month\n * @property      int              $millisecondOfQuarter                                                              The value of the millisecond starting from the beginning of the current quarter\n * @property      int              $millisecondOfSecond                                                               The value of the millisecond starting from the beginning of the current second\n * @property      int              $millisecondOfWeek                                                                 The value of the millisecond starting from the beginning of the current week\n * @property      int              $millisecondOfYear                                                                 The value of the millisecond starting from the beginning of the current year\n * @property      int              $minuteOfCentury                                                                   The value of the minute starting from the beginning of the current century\n * @property      int              $minuteOfDay                                                                       The value of the minute starting from the beginning of the current day\n * @property      int              $minuteOfDecade                                                                    The value of the minute starting from the beginning of the current decade\n * @property      int              $minuteOfHour                                                                      The value of the minute starting from the beginning of the current hour\n * @property      int              $minuteOfMillennium                                                                The value of the minute starting from the beginning of the current millennium\n * @property      int              $minuteOfMonth                                                                     The value of the minute starting from the beginning of the current month\n * @property      int              $minuteOfQuarter                                                                   The value of the minute starting from the beginning of the current quarter\n * @property      int              $minuteOfWeek                                                                      The value of the minute starting from the beginning of the current week\n * @property      int              $minuteOfYear                                                                      The value of the minute starting from the beginning of the current year\n * @property      int              $monthOfCentury                                                                    The value of the month starting from the beginning of the current century\n * @property      int              $monthOfDecade                                                                     The value of the month starting from the beginning of the current decade\n * @property      int              $monthOfMillennium                                                                 The value of the month starting from the beginning of the current millennium\n * @property      int              $monthOfQuarter                                                                    The value of the month starting from the beginning of the current quarter\n * @property      int              $monthOfYear                                                                       The value of the month starting from the beginning of the current year\n * @property      int              $quarterOfCentury                                                                  The value of the quarter starting from the beginning of the current century\n * @property      int              $quarterOfDecade                                                                   The value of the quarter starting from the beginning of the current decade\n * @property      int              $quarterOfMillennium                                                               The value of the quarter starting from the beginning of the current millennium\n * @property      int              $quarterOfYear                                                                     The value of the quarter starting from the beginning of the current year\n * @property      int              $secondOfCentury                                                                   The value of the second starting from the beginning of the current century\n * @property      int              $secondOfDay                                                                       The value of the second starting from the beginning of the current day\n * @property      int              $secondOfDecade                                                                    The value of the second starting from the beginning of the current decade\n * @property      int              $secondOfHour                                                                      The value of the second starting from the beginning of the current hour\n * @property      int              $secondOfMillennium                                                                The value of the second starting from the beginning of the current millennium\n * @property      int              $secondOfMinute                                                                    The value of the second starting from the beginning of the current minute\n * @property      int              $secondOfMonth                                                                     The value of the second starting from the beginning of the current month\n * @property      int              $secondOfQuarter                                                                   The value of the second starting from the beginning of the current quarter\n * @property      int              $secondOfWeek                                                                      The value of the second starting from the beginning of the current week\n * @property      int              $secondOfYear                                                                      The value of the second starting from the beginning of the current year\n * @property      int              $weekOfCentury                                                                     The value of the week starting from the beginning of the current century\n * @property      int              $weekOfDecade                                                                      The value of the week starting from the beginning of the current decade\n * @property      int              $weekOfMillennium                                                                  The value of the week starting from the beginning of the current millennium\n * @property      int              $weekOfMonth                                                                       1 through 5\n * @property      int              $weekOfQuarter                                                                     The value of the week starting from the beginning of the current quarter\n * @property      int              $weekOfYear                                                                        ISO-8601 week number of year, weeks starting on Monday\n * @property      int              $yearOfCentury                                                                     The value of the year starting from the beginning of the current century\n * @property      int              $yearOfDecade                                                                      The value of the year starting from the beginning of the current decade\n * @property      int              $yearOfMillennium                                                                  The value of the year starting from the beginning of the current millennium\n * @property-read string           $latinMeridiem                                                                     \"am\"/\"pm\" (Ante meridiem or Post meridiem latin lowercase mark)\n * @property-read string           $latinUpperMeridiem                                                                \"AM\"/\"PM\" (Ante meridiem or Post meridiem latin uppercase mark)\n * @property-read string           $timezoneAbbreviatedName                                                           the current timezone abbreviated name\n * @property-read string           $tzAbbrName                                                                        alias of $timezoneAbbreviatedName\n * @property-read string           $dayName                                                                           long name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortDayName                                                                      short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $minDayName                                                                        very short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $monthName                                                                         long name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortMonthName                                                                    short name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $meridiem                                                                          lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read string           $upperMeridiem                                                                     uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read int              $noZeroHour                                                                        current hour from 1 to 24\n * @property-read int              $isoWeeksInYear                                                                    51 through 53\n * @property-read int              $weekNumberInMonth                                                                 1 through 5\n * @property-read int              $firstWeekDay                                                                      0 through 6\n * @property-read int              $lastWeekDay                                                                       0 through 6\n * @property-read int              $quarter                                                                           the quarter of this instance, 1 - 4\n * @property-read int              $decade                                                                            the decade of this instance\n * @property-read int              $century                                                                           the century of this instance\n * @property-read int              $millennium                                                                        the millennium of this instance\n * @property-read bool             $dst                                                                               daylight savings time indicator, true if DST, false otherwise\n * @property-read bool             $local                                                                             checks if the timezone is local, true if local, false otherwise\n * @property-read bool             $utc                                                                               checks if the timezone is UTC, true if UTC, false otherwise\n * @property-read string           $timezoneName                                                                      the current timezone name\n * @property-read string           $tzName                                                                            alias of $timezoneName\n * @property-read string           $locale                                                                            locale of the current instance\n * @property-read int              $centuriesInMillennium                                                             The number of centuries contained in the current millennium\n * @property-read int              $daysInCentury                                                                     The number of days contained in the current century\n * @property-read int              $daysInDecade                                                                      The number of days contained in the current decade\n * @property-read int              $daysInMillennium                                                                  The number of days contained in the current millennium\n * @property-read int              $daysInMonth                                                                       number of days in the given month\n * @property-read int              $daysInQuarter                                                                     The number of days contained in the current quarter\n * @property-read int              $daysInWeek                                                                        The number of days contained in the current week\n * @property-read int              $daysInYear                                                                        365 or 366\n * @property-read int              $decadesInCentury                                                                  The number of decades contained in the current century\n * @property-read int              $decadesInMillennium                                                               The number of decades contained in the current millennium\n * @property-read int              $hoursInCentury                                                                    The number of hours contained in the current century\n * @property-read int              $hoursInDay                                                                        The number of hours contained in the current day\n * @property-read int              $hoursInDecade                                                                     The number of hours contained in the current decade\n * @property-read int              $hoursInMillennium                                                                 The number of hours contained in the current millennium\n * @property-read int              $hoursInMonth                                                                      The number of hours contained in the current month\n * @property-read int              $hoursInQuarter                                                                    The number of hours contained in the current quarter\n * @property-read int              $hoursInWeek                                                                       The number of hours contained in the current week\n * @property-read int              $hoursInYear                                                                       The number of hours contained in the current year\n * @property-read int              $microsecondsInCentury                                                             The number of microseconds contained in the current century\n * @property-read int              $microsecondsInDay                                                                 The number of microseconds contained in the current day\n * @property-read int              $microsecondsInDecade                                                              The number of microseconds contained in the current decade\n * @property-read int              $microsecondsInHour                                                                The number of microseconds contained in the current hour\n * @property-read int              $microsecondsInMillennium                                                          The number of microseconds contained in the current millennium\n * @property-read int              $microsecondsInMillisecond                                                         The number of microseconds contained in the current millisecond\n * @property-read int              $microsecondsInMinute                                                              The number of microseconds contained in the current minute\n * @property-read int              $microsecondsInMonth                                                               The number of microseconds contained in the current month\n * @property-read int              $microsecondsInQuarter                                                             The number of microseconds contained in the current quarter\n * @property-read int              $microsecondsInSecond                                                              The number of microseconds contained in the current second\n * @property-read int              $microsecondsInWeek                                                                The number of microseconds contained in the current week\n * @property-read int              $microsecondsInYear                                                                The number of microseconds contained in the current year\n * @property-read int              $millisecondsInCentury                                                             The number of milliseconds contained in the current century\n * @property-read int              $millisecondsInDay                                                                 The number of milliseconds contained in the current day\n * @property-read int              $millisecondsInDecade                                                              The number of milliseconds contained in the current decade\n * @property-read int              $millisecondsInHour                                                                The number of milliseconds contained in the current hour\n * @property-read int              $millisecondsInMillennium                                                          The number of milliseconds contained in the current millennium\n * @property-read int              $millisecondsInMinute                                                              The number of milliseconds contained in the current minute\n * @property-read int              $millisecondsInMonth                                                               The number of milliseconds contained in the current month\n * @property-read int              $millisecondsInQuarter                                                             The number of milliseconds contained in the current quarter\n * @property-read int              $millisecondsInSecond                                                              The number of milliseconds contained in the current second\n * @property-read int              $millisecondsInWeek                                                                The number of milliseconds contained in the current week\n * @property-read int              $millisecondsInYear                                                                The number of milliseconds contained in the current year\n * @property-read int              $minutesInCentury                                                                  The number of minutes contained in the current century\n * @property-read int              $minutesInDay                                                                      The number of minutes contained in the current day\n * @property-read int              $minutesInDecade                                                                   The number of minutes contained in the current decade\n * @property-read int              $minutesInHour                                                                     The number of minutes contained in the current hour\n * @property-read int              $minutesInMillennium                                                               The number of minutes contained in the current millennium\n * @property-read int              $minutesInMonth                                                                    The number of minutes contained in the current month\n * @property-read int              $minutesInQuarter                                                                  The number of minutes contained in the current quarter\n * @property-read int              $minutesInWeek                                                                     The number of minutes contained in the current week\n * @property-read int              $minutesInYear                                                                     The number of minutes contained in the current year\n * @property-read int              $monthsInCentury                                                                   The number of months contained in the current century\n * @property-read int              $monthsInDecade                                                                    The number of months contained in the current decade\n * @property-read int              $monthsInMillennium                                                                The number of months contained in the current millennium\n * @property-read int              $monthsInQuarter                                                                   The number of months contained in the current quarter\n * @property-read int              $monthsInYear                                                                      The number of months contained in the current year\n * @property-read int              $quartersInCentury                                                                 The number of quarters contained in the current century\n * @property-read int              $quartersInDecade                                                                  The number of quarters contained in the current decade\n * @property-read int              $quartersInMillennium                                                              The number of quarters contained in the current millennium\n * @property-read int              $quartersInYear                                                                    The number of quarters contained in the current year\n * @property-read int              $secondsInCentury                                                                  The number of seconds contained in the current century\n * @property-read int              $secondsInDay                                                                      The number of seconds contained in the current day\n * @property-read int              $secondsInDecade                                                                   The number of seconds contained in the current decade\n * @property-read int              $secondsInHour                                                                     The number of seconds contained in the current hour\n * @property-read int              $secondsInMillennium                                                               The number of seconds contained in the current millennium\n * @property-read int              $secondsInMinute                                                                   The number of seconds contained in the current minute\n * @property-read int              $secondsInMonth                                                                    The number of seconds contained in the current month\n * @property-read int              $secondsInQuarter                                                                  The number of seconds contained in the current quarter\n * @property-read int              $secondsInWeek                                                                     The number of seconds contained in the current week\n * @property-read int              $secondsInYear                                                                     The number of seconds contained in the current year\n * @property-read int              $weeksInCentury                                                                    The number of weeks contained in the current century\n * @property-read int              $weeksInDecade                                                                     The number of weeks contained in the current decade\n * @property-read int              $weeksInMillennium                                                                 The number of weeks contained in the current millennium\n * @property-read int              $weeksInMonth                                                                      The number of weeks contained in the current month\n * @property-read int              $weeksInQuarter                                                                    The number of weeks contained in the current quarter\n * @property-read int              $weeksInYear                                                                       51 through 53\n * @property-read int              $yearsInCentury                                                                    The number of years contained in the current century\n * @property-read int              $yearsInDecade                                                                     The number of years contained in the current decade\n * @property-read int              $yearsInMillennium                                                                 The number of years contained in the current millennium\n *\n * @method        bool             isUtc()                                                                            Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.)\n * @method        bool             isLocal()                                                                          Check if the current instance has non-UTC timezone.\n * @method        bool             isValid()                                                                          Check if the current instance is a valid date.\n * @method        bool             isDST()                                                                            Check if the current instance is in a daylight saving time.\n * @method        bool             isSunday()                                                                         Checks if the instance day is sunday.\n * @method        bool             isMonday()                                                                         Checks if the instance day is monday.\n * @method        bool             isTuesday()                                                                        Checks if the instance day is tuesday.\n * @method        bool             isWednesday()                                                                      Checks if the instance day is wednesday.\n * @method        bool             isThursday()                                                                       Checks if the instance day is thursday.\n * @method        bool             isFriday()                                                                         Checks if the instance day is friday.\n * @method        bool             isSaturday()                                                                       Checks if the instance day is saturday.\n * @method        bool             isSameYear(DateTimeInterface|string $date)                                         Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentYear()                                                                    Checks if the instance is in the same year as the current moment.\n * @method        bool             isNextYear()                                                                       Checks if the instance is in the same year as the current moment next year.\n * @method        bool             isLastYear()                                                                       Checks if the instance is in the same year as the current moment last year.\n * @method        bool             isCurrentMonth()                                                                   Checks if the instance is in the same month as the current moment.\n * @method        bool             isNextMonth()                                                                      Checks if the instance is in the same month as the current moment next month.\n * @method        bool             isLastMonth()                                                                      Checks if the instance is in the same month as the current moment last month.\n * @method        bool             isSameWeek(DateTimeInterface|string $date)                                         Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentWeek()                                                                    Checks if the instance is in the same week as the current moment.\n * @method        bool             isNextWeek()                                                                       Checks if the instance is in the same week as the current moment next week.\n * @method        bool             isLastWeek()                                                                       Checks if the instance is in the same week as the current moment last week.\n * @method        bool             isSameDay(DateTimeInterface|string $date)                                          Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDay()                                                                     Checks if the instance is in the same day as the current moment.\n * @method        bool             isNextDay()                                                                        Checks if the instance is in the same day as the current moment next day.\n * @method        bool             isLastDay()                                                                        Checks if the instance is in the same day as the current moment last day.\n * @method        bool             isSameHour(DateTimeInterface|string $date)                                         Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentHour()                                                                    Checks if the instance is in the same hour as the current moment.\n * @method        bool             isNextHour()                                                                       Checks if the instance is in the same hour as the current moment next hour.\n * @method        bool             isLastHour()                                                                       Checks if the instance is in the same hour as the current moment last hour.\n * @method        bool             isSameMinute(DateTimeInterface|string $date)                                       Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMinute()                                                                  Checks if the instance is in the same minute as the current moment.\n * @method        bool             isNextMinute()                                                                     Checks if the instance is in the same minute as the current moment next minute.\n * @method        bool             isLastMinute()                                                                     Checks if the instance is in the same minute as the current moment last minute.\n * @method        bool             isSameSecond(DateTimeInterface|string $date)                                       Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentSecond()                                                                  Checks if the instance is in the same second as the current moment.\n * @method        bool             isNextSecond()                                                                     Checks if the instance is in the same second as the current moment next second.\n * @method        bool             isLastSecond()                                                                     Checks if the instance is in the same second as the current moment last second.\n * @method        bool             isSameMilli(DateTimeInterface|string $date)                                        Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMilli()                                                                   Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMilli()                                                                      Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMilli()                                                                      Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMillisecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillisecond()                                                             Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMicro(DateTimeInterface|string $date)                                        Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicro()                                                                   Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicro()                                                                      Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicro()                                                                      Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameMicrosecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicrosecond()                                                             Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameDecade(DateTimeInterface|string $date)                                       Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDecade()                                                                  Checks if the instance is in the same decade as the current moment.\n * @method        bool             isNextDecade()                                                                     Checks if the instance is in the same decade as the current moment next decade.\n * @method        bool             isLastDecade()                                                                     Checks if the instance is in the same decade as the current moment last decade.\n * @method        bool             isSameCentury(DateTimeInterface|string $date)                                      Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentCentury()                                                                 Checks if the instance is in the same century as the current moment.\n * @method        bool             isNextCentury()                                                                    Checks if the instance is in the same century as the current moment next century.\n * @method        bool             isLastCentury()                                                                    Checks if the instance is in the same century as the current moment last century.\n * @method        bool             isSameMillennium(DateTimeInterface|string $date)                                   Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillennium()                                                              Checks if the instance is in the same millennium as the current moment.\n * @method        bool             isNextMillennium()                                                                 Checks if the instance is in the same millennium as the current moment next millennium.\n * @method        bool             isLastMillennium()                                                                 Checks if the instance is in the same millennium as the current moment last millennium.\n * @method        bool             isCurrentQuarter()                                                                 Checks if the instance is in the same quarter as the current moment.\n * @method        bool             isNextQuarter()                                                                    Checks if the instance is in the same quarter as the current moment next quarter.\n * @method        bool             isLastQuarter()                                                                    Checks if the instance is in the same quarter as the current moment last quarter.\n * @method        CarbonInterface  years(int $value)                                                                  Set current instance year to the given value.\n * @method        CarbonInterface  year(int $value)                                                                   Set current instance year to the given value.\n * @method        CarbonInterface  setYears(int $value)                                                               Set current instance year to the given value.\n * @method        CarbonInterface  setYear(int $value)                                                                Set current instance year to the given value.\n * @method        CarbonInterface  months(Month|int $value)                                                           Set current instance month to the given value.\n * @method        CarbonInterface  month(Month|int $value)                                                            Set current instance month to the given value.\n * @method        CarbonInterface  setMonths(Month|int $value)                                                        Set current instance month to the given value.\n * @method        CarbonInterface  setMonth(Month|int $value)                                                         Set current instance month to the given value.\n * @method        CarbonInterface  days(int $value)                                                                   Set current instance day to the given value.\n * @method        CarbonInterface  day(int $value)                                                                    Set current instance day to the given value.\n * @method        CarbonInterface  setDays(int $value)                                                                Set current instance day to the given value.\n * @method        CarbonInterface  setDay(int $value)                                                                 Set current instance day to the given value.\n * @method        CarbonInterface  hours(int $value)                                                                  Set current instance hour to the given value.\n * @method        CarbonInterface  hour(int $value)                                                                   Set current instance hour to the given value.\n * @method        CarbonInterface  setHours(int $value)                                                               Set current instance hour to the given value.\n * @method        CarbonInterface  setHour(int $value)                                                                Set current instance hour to the given value.\n * @method        CarbonInterface  minutes(int $value)                                                                Set current instance minute to the given value.\n * @method        CarbonInterface  minute(int $value)                                                                 Set current instance minute to the given value.\n * @method        CarbonInterface  setMinutes(int $value)                                                             Set current instance minute to the given value.\n * @method        CarbonInterface  setMinute(int $value)                                                              Set current instance minute to the given value.\n * @method        CarbonInterface  seconds(int $value)                                                                Set current instance second to the given value.\n * @method        CarbonInterface  second(int $value)                                                                 Set current instance second to the given value.\n * @method        CarbonInterface  setSeconds(int $value)                                                             Set current instance second to the given value.\n * @method        CarbonInterface  setSecond(int $value)                                                              Set current instance second to the given value.\n * @method        CarbonInterface  millis(int $value)                                                                 Set current instance millisecond to the given value.\n * @method        CarbonInterface  milli(int $value)                                                                  Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMillis(int $value)                                                              Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMilli(int $value)                                                               Set current instance millisecond to the given value.\n * @method        CarbonInterface  milliseconds(int $value)                                                           Set current instance millisecond to the given value.\n * @method        CarbonInterface  millisecond(int $value)                                                            Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMilliseconds(int $value)                                                        Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMillisecond(int $value)                                                         Set current instance millisecond to the given value.\n * @method        CarbonInterface  micros(int $value)                                                                 Set current instance microsecond to the given value.\n * @method        CarbonInterface  micro(int $value)                                                                  Set current instance microsecond to the given value.\n * @method        CarbonInterface  setMicros(int $value)                                                              Set current instance microsecond to the given value.\n * @method        CarbonInterface  setMicro(int $value)                                                               Set current instance microsecond to the given value.\n * @method        CarbonInterface  microseconds(int $value)                                                           Set current instance microsecond to the given value.\n * @method        CarbonInterface  microsecond(int $value)                                                            Set current instance microsecond to the given value.\n * @method        CarbonInterface  setMicroseconds(int $value)                                                        Set current instance microsecond to the given value.\n * @method        self             setMicrosecond(int $value)                                                         Set current instance microsecond to the given value.\n * @method        CarbonInterface  addYears(int|float $value = 1)                                                     Add years (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addYear()                                                                          Add one year to the instance (using date interval).\n * @method        CarbonInterface  subYears(int|float $value = 1)                                                     Sub years (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subYear()                                                                          Sub one year to the instance (using date interval).\n * @method        CarbonInterface  addYearsWithOverflow(int|float $value = 1)                                         Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addYearWithOverflow()                                                              Add one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subYearsWithOverflow(int|float $value = 1)                                         Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subYearWithOverflow()                                                              Sub one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addYearsWithoutOverflow(int|float $value = 1)                                      Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearWithoutOverflow()                                                           Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearsWithoutOverflow(int|float $value = 1)                                      Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearWithoutOverflow()                                                           Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearsWithNoOverflow(int|float $value = 1)                                       Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearWithNoOverflow()                                                            Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearsWithNoOverflow(int|float $value = 1)                                       Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearWithNoOverflow()                                                            Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearsNoOverflow(int|float $value = 1)                                           Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearNoOverflow()                                                                Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearsNoOverflow(int|float $value = 1)                                           Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearNoOverflow()                                                                Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonths(int|float $value = 1)                                                    Add months (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMonth()                                                                         Add one month to the instance (using date interval).\n * @method        CarbonInterface  subMonths(int|float $value = 1)                                                    Sub months (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMonth()                                                                         Sub one month to the instance (using date interval).\n * @method        CarbonInterface  addMonthsWithOverflow(int|float $value = 1)                                        Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMonthWithOverflow()                                                             Add one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMonthsWithOverflow(int|float $value = 1)                                        Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMonthWithOverflow()                                                             Sub one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMonthsWithoutOverflow(int|float $value = 1)                                     Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthWithoutOverflow()                                                          Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthsWithoutOverflow(int|float $value = 1)                                     Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthWithoutOverflow()                                                          Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthsWithNoOverflow(int|float $value = 1)                                      Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthWithNoOverflow()                                                           Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthsWithNoOverflow(int|float $value = 1)                                      Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthWithNoOverflow()                                                           Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthsNoOverflow(int|float $value = 1)                                          Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthNoOverflow()                                                               Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthsNoOverflow(int|float $value = 1)                                          Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthNoOverflow()                                                               Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDays(int|float $value = 1)                                                      Add days (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addDay()                                                                           Add one day to the instance (using date interval).\n * @method        CarbonInterface  subDays(int|float $value = 1)                                                      Sub days (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subDay()                                                                           Sub one day to the instance (using date interval).\n * @method        CarbonInterface  addHours(int|float $value = 1)                                                     Add hours (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addHour()                                                                          Add one hour to the instance (using date interval).\n * @method        CarbonInterface  subHours(int|float $value = 1)                                                     Sub hours (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subHour()                                                                          Sub one hour to the instance (using date interval).\n * @method        CarbonInterface  addMinutes(int|float $value = 1)                                                   Add minutes (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMinute()                                                                        Add one minute to the instance (using date interval).\n * @method        CarbonInterface  subMinutes(int|float $value = 1)                                                   Sub minutes (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMinute()                                                                        Sub one minute to the instance (using date interval).\n * @method        CarbonInterface  addSeconds(int|float $value = 1)                                                   Add seconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addSecond()                                                                        Add one second to the instance (using date interval).\n * @method        CarbonInterface  subSeconds(int|float $value = 1)                                                   Sub seconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subSecond()                                                                        Sub one second to the instance (using date interval).\n * @method        CarbonInterface  addMillis(int|float $value = 1)                                                    Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMilli()                                                                         Add one millisecond to the instance (using date interval).\n * @method        CarbonInterface  subMillis(int|float $value = 1)                                                    Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMilli()                                                                         Sub one millisecond to the instance (using date interval).\n * @method        CarbonInterface  addMilliseconds(int|float $value = 1)                                              Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMillisecond()                                                                   Add one millisecond to the instance (using date interval).\n * @method        CarbonInterface  subMilliseconds(int|float $value = 1)                                              Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMillisecond()                                                                   Sub one millisecond to the instance (using date interval).\n * @method        CarbonInterface  addMicros(int|float $value = 1)                                                    Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMicro()                                                                         Add one microsecond to the instance (using date interval).\n * @method        CarbonInterface  subMicros(int|float $value = 1)                                                    Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMicro()                                                                         Sub one microsecond to the instance (using date interval).\n * @method        CarbonInterface  addMicroseconds(int|float $value = 1)                                              Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMicrosecond()                                                                   Add one microsecond to the instance (using date interval).\n * @method        CarbonInterface  subMicroseconds(int|float $value = 1)                                              Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMicrosecond()                                                                   Sub one microsecond to the instance (using date interval).\n * @method        CarbonInterface  addMillennia(int|float $value = 1)                                                 Add millennia (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMillennium()                                                                    Add one millennium to the instance (using date interval).\n * @method        CarbonInterface  subMillennia(int|float $value = 1)                                                 Sub millennia (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMillennium()                                                                    Sub one millennium to the instance (using date interval).\n * @method        CarbonInterface  addMillenniaWithOverflow(int|float $value = 1)                                     Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMillenniumWithOverflow()                                                        Add one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMillenniaWithOverflow(int|float $value = 1)                                     Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMillenniumWithOverflow()                                                        Sub one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMillenniaWithoutOverflow(int|float $value = 1)                                  Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniumWithoutOverflow()                                                     Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniaWithoutOverflow(int|float $value = 1)                                  Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniumWithoutOverflow()                                                     Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniaWithNoOverflow(int|float $value = 1)                                   Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniumWithNoOverflow()                                                      Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniaWithNoOverflow(int|float $value = 1)                                   Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniumWithNoOverflow()                                                      Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniaNoOverflow(int|float $value = 1)                                       Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniumNoOverflow()                                                          Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniaNoOverflow(int|float $value = 1)                                       Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniumNoOverflow()                                                          Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturies(int|float $value = 1)                                                 Add centuries (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addCentury()                                                                       Add one century to the instance (using date interval).\n * @method        CarbonInterface  subCenturies(int|float $value = 1)                                                 Sub centuries (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subCentury()                                                                       Sub one century to the instance (using date interval).\n * @method        CarbonInterface  addCenturiesWithOverflow(int|float $value = 1)                                     Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addCenturyWithOverflow()                                                           Add one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subCenturiesWithOverflow(int|float $value = 1)                                     Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subCenturyWithOverflow()                                                           Sub one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addCenturiesWithoutOverflow(int|float $value = 1)                                  Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturyWithoutOverflow()                                                        Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturiesWithoutOverflow(int|float $value = 1)                                  Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturyWithoutOverflow()                                                        Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturiesWithNoOverflow(int|float $value = 1)                                   Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturyWithNoOverflow()                                                         Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturiesWithNoOverflow(int|float $value = 1)                                   Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturyWithNoOverflow()                                                         Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturiesNoOverflow(int|float $value = 1)                                       Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturyNoOverflow()                                                             Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturiesNoOverflow(int|float $value = 1)                                       Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturyNoOverflow()                                                             Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecades(int|float $value = 1)                                                   Add decades (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addDecade()                                                                        Add one decade to the instance (using date interval).\n * @method        CarbonInterface  subDecades(int|float $value = 1)                                                   Sub decades (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subDecade()                                                                        Sub one decade to the instance (using date interval).\n * @method        CarbonInterface  addDecadesWithOverflow(int|float $value = 1)                                       Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addDecadeWithOverflow()                                                            Add one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subDecadesWithOverflow(int|float $value = 1)                                       Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subDecadeWithOverflow()                                                            Sub one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addDecadesWithoutOverflow(int|float $value = 1)                                    Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadeWithoutOverflow()                                                         Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadesWithoutOverflow(int|float $value = 1)                                    Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadeWithoutOverflow()                                                         Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadesWithNoOverflow(int|float $value = 1)                                     Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadeWithNoOverflow()                                                          Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadesWithNoOverflow(int|float $value = 1)                                     Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadeWithNoOverflow()                                                          Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadesNoOverflow(int|float $value = 1)                                         Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadeNoOverflow()                                                              Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadesNoOverflow(int|float $value = 1)                                         Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadeNoOverflow()                                                              Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarters(int|float $value = 1)                                                  Add quarters (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addQuarter()                                                                       Add one quarter to the instance (using date interval).\n * @method        CarbonInterface  subQuarters(int|float $value = 1)                                                  Sub quarters (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subQuarter()                                                                       Sub one quarter to the instance (using date interval).\n * @method        CarbonInterface  addQuartersWithOverflow(int|float $value = 1)                                      Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addQuarterWithOverflow()                                                           Add one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subQuartersWithOverflow(int|float $value = 1)                                      Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subQuarterWithOverflow()                                                           Sub one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addQuartersWithoutOverflow(int|float $value = 1)                                   Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarterWithoutOverflow()                                                        Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuartersWithoutOverflow(int|float $value = 1)                                   Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuarterWithoutOverflow()                                                        Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuartersWithNoOverflow(int|float $value = 1)                                    Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarterWithNoOverflow()                                                         Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuartersWithNoOverflow(int|float $value = 1)                                    Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuarterWithNoOverflow()                                                         Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuartersNoOverflow(int|float $value = 1)                                        Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarterNoOverflow()                                                             Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuartersNoOverflow(int|float $value = 1)                                        Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuarterNoOverflow()                                                             Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addWeeks(int|float $value = 1)                                                     Add weeks (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addWeek()                                                                          Add one week to the instance (using date interval).\n * @method        CarbonInterface  subWeeks(int|float $value = 1)                                                     Sub weeks (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subWeek()                                                                          Sub one week to the instance (using date interval).\n * @method        CarbonInterface  addWeekdays(int|float $value = 1)                                                  Add weekdays (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addWeekday()                                                                       Add one weekday to the instance (using date interval).\n * @method        CarbonInterface  subWeekdays(int|float $value = 1)                                                  Sub weekdays (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subWeekday()                                                                       Sub one weekday to the instance (using date interval).\n * @method        CarbonInterface  addUTCMicros(int|float $value = 1)                                                 Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMicro()                                                                      Add one microsecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicros(int|float $value = 1)                                                 Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicro()                                                                      Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicros(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        CarbonInterface  addUTCMicroseconds(int|float $value = 1)                                           Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMicrosecond()                                                                Add one microsecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicroseconds(int|float $value = 1)                                           Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicrosecond()                                                                Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicroseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        CarbonInterface  addUTCMillis(int|float $value = 1)                                                 Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMilli()                                                                      Add one millisecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillis(int|float $value = 1)                                                 Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMilli()                                                                      Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMillis(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        CarbonInterface  addUTCMilliseconds(int|float $value = 1)                                           Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMillisecond()                                                                Add one millisecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMilliseconds(int|float $value = 1)                                           Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillisecond()                                                                Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMilliseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        CarbonInterface  addUTCSeconds(int|float $value = 1)                                                Add seconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCSecond()                                                                     Add one second to the instance (using timestamp).\n * @method        CarbonInterface  subUTCSeconds(int|float $value = 1)                                                Sub seconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCSecond()                                                                     Sub one second to the instance (using timestamp).\n * @method        CarbonPeriod     secondsUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given.\n * @method        float            diffInUTCSeconds(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of seconds.\n * @method        CarbonInterface  addUTCMinutes(int|float $value = 1)                                                Add minutes (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMinute()                                                                     Add one minute to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMinutes(int|float $value = 1)                                                Sub minutes (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMinute()                                                                     Sub one minute to the instance (using timestamp).\n * @method        CarbonPeriod     minutesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given.\n * @method        float            diffInUTCMinutes(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of minutes.\n * @method        CarbonInterface  addUTCHours(int|float $value = 1)                                                  Add hours (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCHour()                                                                       Add one hour to the instance (using timestamp).\n * @method        CarbonInterface  subUTCHours(int|float $value = 1)                                                  Sub hours (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCHour()                                                                       Sub one hour to the instance (using timestamp).\n * @method        CarbonPeriod     hoursUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given.\n * @method        float            diffInUTCHours(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of hours.\n * @method        CarbonInterface  addUTCDays(int|float $value = 1)                                                   Add days (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCDay()                                                                        Add one day to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDays(int|float $value = 1)                                                   Sub days (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDay()                                                                        Sub one day to the instance (using timestamp).\n * @method        CarbonPeriod     daysUntil($endDate = null, int|float $factor = 1)                                  Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given.\n * @method        float            diffInUTCDays(DateTimeInterface|string|null $date, bool $absolute = false)         Convert current and given date in UTC timezone and return a floating number of days.\n * @method        CarbonInterface  addUTCWeeks(int|float $value = 1)                                                  Add weeks (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCWeek()                                                                       Add one week to the instance (using timestamp).\n * @method        CarbonInterface  subUTCWeeks(int|float $value = 1)                                                  Sub weeks (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCWeek()                                                                       Sub one week to the instance (using timestamp).\n * @method        CarbonPeriod     weeksUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given.\n * @method        float            diffInUTCWeeks(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of weeks.\n * @method        CarbonInterface  addUTCMonths(int|float $value = 1)                                                 Add months (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMonth()                                                                      Add one month to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMonths(int|float $value = 1)                                                 Sub months (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMonth()                                                                      Sub one month to the instance (using timestamp).\n * @method        CarbonPeriod     monthsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given.\n * @method        float            diffInUTCMonths(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of months.\n * @method        CarbonInterface  addUTCQuarters(int|float $value = 1)                                               Add quarters (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCQuarter()                                                                    Add one quarter to the instance (using timestamp).\n * @method        CarbonInterface  subUTCQuarters(int|float $value = 1)                                               Sub quarters (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCQuarter()                                                                    Sub one quarter to the instance (using timestamp).\n * @method        CarbonPeriod     quartersUntil($endDate = null, int|float $factor = 1)                              Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given.\n * @method        float            diffInUTCQuarters(DateTimeInterface|string|null $date, bool $absolute = false)     Convert current and given date in UTC timezone and return a floating number of quarters.\n * @method        CarbonInterface  addUTCYears(int|float $value = 1)                                                  Add years (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCYear()                                                                       Add one year to the instance (using timestamp).\n * @method        CarbonInterface  subUTCYears(int|float $value = 1)                                                  Sub years (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCYear()                                                                       Sub one year to the instance (using timestamp).\n * @method        CarbonPeriod     yearsUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given.\n * @method        float            diffInUTCYears(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of years.\n * @method        CarbonInterface  addUTCDecades(int|float $value = 1)                                                Add decades (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCDecade()                                                                     Add one decade to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDecades(int|float $value = 1)                                                Sub decades (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDecade()                                                                     Sub one decade to the instance (using timestamp).\n * @method        CarbonPeriod     decadesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given.\n * @method        float            diffInUTCDecades(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of decades.\n * @method        CarbonInterface  addUTCCenturies(int|float $value = 1)                                              Add centuries (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCCentury()                                                                    Add one century to the instance (using timestamp).\n * @method        CarbonInterface  subUTCCenturies(int|float $value = 1)                                              Sub centuries (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCCentury()                                                                    Sub one century to the instance (using timestamp).\n * @method        CarbonPeriod     centuriesUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given.\n * @method        float            diffInUTCCenturies(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of centuries.\n * @method        CarbonInterface  addUTCMillennia(int|float $value = 1)                                              Add millennia (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMillennium()                                                                 Add one millennium to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillennia(int|float $value = 1)                                              Sub millennia (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillennium()                                                                 Sub one millennium to the instance (using timestamp).\n * @method        CarbonPeriod     millenniaUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given.\n * @method        float            diffInUTCMillennia(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of millennia.\n * @method        CarbonInterface  roundYear(float $precision = 1, string $function = \"round\")                        Round the current instance year with given precision using the given function.\n * @method        CarbonInterface  roundYears(float $precision = 1, string $function = \"round\")                       Round the current instance year with given precision using the given function.\n * @method        CarbonInterface  floorYear(float $precision = 1)                                                    Truncate the current instance year with given precision.\n * @method        CarbonInterface  floorYears(float $precision = 1)                                                   Truncate the current instance year with given precision.\n * @method        CarbonInterface  ceilYear(float $precision = 1)                                                     Ceil the current instance year with given precision.\n * @method        CarbonInterface  ceilYears(float $precision = 1)                                                    Ceil the current instance year with given precision.\n * @method        CarbonInterface  roundMonth(float $precision = 1, string $function = \"round\")                       Round the current instance month with given precision using the given function.\n * @method        CarbonInterface  roundMonths(float $precision = 1, string $function = \"round\")                      Round the current instance month with given precision using the given function.\n * @method        CarbonInterface  floorMonth(float $precision = 1)                                                   Truncate the current instance month with given precision.\n * @method        CarbonInterface  floorMonths(float $precision = 1)                                                  Truncate the current instance month with given precision.\n * @method        CarbonInterface  ceilMonth(float $precision = 1)                                                    Ceil the current instance month with given precision.\n * @method        CarbonInterface  ceilMonths(float $precision = 1)                                                   Ceil the current instance month with given precision.\n * @method        CarbonInterface  roundDay(float $precision = 1, string $function = \"round\")                         Round the current instance day with given precision using the given function.\n * @method        CarbonInterface  roundDays(float $precision = 1, string $function = \"round\")                        Round the current instance day with given precision using the given function.\n * @method        CarbonInterface  floorDay(float $precision = 1)                                                     Truncate the current instance day with given precision.\n * @method        CarbonInterface  floorDays(float $precision = 1)                                                    Truncate the current instance day with given precision.\n * @method        CarbonInterface  ceilDay(float $precision = 1)                                                      Ceil the current instance day with given precision.\n * @method        CarbonInterface  ceilDays(float $precision = 1)                                                     Ceil the current instance day with given precision.\n * @method        CarbonInterface  roundHour(float $precision = 1, string $function = \"round\")                        Round the current instance hour with given precision using the given function.\n * @method        CarbonInterface  roundHours(float $precision = 1, string $function = \"round\")                       Round the current instance hour with given precision using the given function.\n * @method        CarbonInterface  floorHour(float $precision = 1)                                                    Truncate the current instance hour with given precision.\n * @method        CarbonInterface  floorHours(float $precision = 1)                                                   Truncate the current instance hour with given precision.\n * @method        CarbonInterface  ceilHour(float $precision = 1)                                                     Ceil the current instance hour with given precision.\n * @method        CarbonInterface  ceilHours(float $precision = 1)                                                    Ceil the current instance hour with given precision.\n * @method        CarbonInterface  roundMinute(float $precision = 1, string $function = \"round\")                      Round the current instance minute with given precision using the given function.\n * @method        CarbonInterface  roundMinutes(float $precision = 1, string $function = \"round\")                     Round the current instance minute with given precision using the given function.\n * @method        CarbonInterface  floorMinute(float $precision = 1)                                                  Truncate the current instance minute with given precision.\n * @method        CarbonInterface  floorMinutes(float $precision = 1)                                                 Truncate the current instance minute with given precision.\n * @method        CarbonInterface  ceilMinute(float $precision = 1)                                                   Ceil the current instance minute with given precision.\n * @method        CarbonInterface  ceilMinutes(float $precision = 1)                                                  Ceil the current instance minute with given precision.\n * @method        CarbonInterface  roundSecond(float $precision = 1, string $function = \"round\")                      Round the current instance second with given precision using the given function.\n * @method        CarbonInterface  roundSeconds(float $precision = 1, string $function = \"round\")                     Round the current instance second with given precision using the given function.\n * @method        CarbonInterface  floorSecond(float $precision = 1)                                                  Truncate the current instance second with given precision.\n * @method        CarbonInterface  floorSeconds(float $precision = 1)                                                 Truncate the current instance second with given precision.\n * @method        CarbonInterface  ceilSecond(float $precision = 1)                                                   Ceil the current instance second with given precision.\n * @method        CarbonInterface  ceilSeconds(float $precision = 1)                                                  Ceil the current instance second with given precision.\n * @method        CarbonInterface  roundMillennium(float $precision = 1, string $function = \"round\")                  Round the current instance millennium with given precision using the given function.\n * @method        CarbonInterface  roundMillennia(float $precision = 1, string $function = \"round\")                   Round the current instance millennium with given precision using the given function.\n * @method        CarbonInterface  floorMillennium(float $precision = 1)                                              Truncate the current instance millennium with given precision.\n * @method        CarbonInterface  floorMillennia(float $precision = 1)                                               Truncate the current instance millennium with given precision.\n * @method        CarbonInterface  ceilMillennium(float $precision = 1)                                               Ceil the current instance millennium with given precision.\n * @method        CarbonInterface  ceilMillennia(float $precision = 1)                                                Ceil the current instance millennium with given precision.\n * @method        CarbonInterface  roundCentury(float $precision = 1, string $function = \"round\")                     Round the current instance century with given precision using the given function.\n * @method        CarbonInterface  roundCenturies(float $precision = 1, string $function = \"round\")                   Round the current instance century with given precision using the given function.\n * @method        CarbonInterface  floorCentury(float $precision = 1)                                                 Truncate the current instance century with given precision.\n * @method        CarbonInterface  floorCenturies(float $precision = 1)                                               Truncate the current instance century with given precision.\n * @method        CarbonInterface  ceilCentury(float $precision = 1)                                                  Ceil the current instance century with given precision.\n * @method        CarbonInterface  ceilCenturies(float $precision = 1)                                                Ceil the current instance century with given precision.\n * @method        CarbonInterface  roundDecade(float $precision = 1, string $function = \"round\")                      Round the current instance decade with given precision using the given function.\n * @method        CarbonInterface  roundDecades(float $precision = 1, string $function = \"round\")                     Round the current instance decade with given precision using the given function.\n * @method        CarbonInterface  floorDecade(float $precision = 1)                                                  Truncate the current instance decade with given precision.\n * @method        CarbonInterface  floorDecades(float $precision = 1)                                                 Truncate the current instance decade with given precision.\n * @method        CarbonInterface  ceilDecade(float $precision = 1)                                                   Ceil the current instance decade with given precision.\n * @method        CarbonInterface  ceilDecades(float $precision = 1)                                                  Ceil the current instance decade with given precision.\n * @method        CarbonInterface  roundQuarter(float $precision = 1, string $function = \"round\")                     Round the current instance quarter with given precision using the given function.\n * @method        CarbonInterface  roundQuarters(float $precision = 1, string $function = \"round\")                    Round the current instance quarter with given precision using the given function.\n * @method        CarbonInterface  floorQuarter(float $precision = 1)                                                 Truncate the current instance quarter with given precision.\n * @method        CarbonInterface  floorQuarters(float $precision = 1)                                                Truncate the current instance quarter with given precision.\n * @method        CarbonInterface  ceilQuarter(float $precision = 1)                                                  Ceil the current instance quarter with given precision.\n * @method        CarbonInterface  ceilQuarters(float $precision = 1)                                                 Ceil the current instance quarter with given precision.\n * @method        CarbonInterface  roundMillisecond(float $precision = 1, string $function = \"round\")                 Round the current instance millisecond with given precision using the given function.\n * @method        CarbonInterface  roundMilliseconds(float $precision = 1, string $function = \"round\")                Round the current instance millisecond with given precision using the given function.\n * @method        CarbonInterface  floorMillisecond(float $precision = 1)                                             Truncate the current instance millisecond with given precision.\n * @method        CarbonInterface  floorMilliseconds(float $precision = 1)                                            Truncate the current instance millisecond with given precision.\n * @method        CarbonInterface  ceilMillisecond(float $precision = 1)                                              Ceil the current instance millisecond with given precision.\n * @method        CarbonInterface  ceilMilliseconds(float $precision = 1)                                             Ceil the current instance millisecond with given precision.\n * @method        CarbonInterface  roundMicrosecond(float $precision = 1, string $function = \"round\")                 Round the current instance microsecond with given precision using the given function.\n * @method        CarbonInterface  roundMicroseconds(float $precision = 1, string $function = \"round\")                Round the current instance microsecond with given precision using the given function.\n * @method        CarbonInterface  floorMicrosecond(float $precision = 1)                                             Truncate the current instance microsecond with given precision.\n * @method        CarbonInterface  floorMicroseconds(float $precision = 1)                                            Truncate the current instance microsecond with given precision.\n * @method        CarbonInterface  ceilMicrosecond(float $precision = 1)                                              Ceil the current instance microsecond with given precision.\n * @method        CarbonInterface  ceilMicroseconds(float $precision = 1)                                             Ceil the current instance microsecond with given precision.\n * @method        string           shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)   Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)    Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1)  Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        int              centuriesInMillennium()                                                            Return the number of centuries contained in the current millennium\n * @method        int|static       centuryOfMillennium(?int $century = null)                                          Return the value of the century starting from the beginning of the current millennium when called with no parameters, change the current century when called with an integer value\n * @method        int|static       dayOfCentury(?int $day = null)                                                     Return the value of the day starting from the beginning of the current century when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfDecade(?int $day = null)                                                      Return the value of the day starting from the beginning of the current decade when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMillennium(?int $day = null)                                                  Return the value of the day starting from the beginning of the current millennium when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMonth(?int $day = null)                                                       Return the value of the day starting from the beginning of the current month when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfQuarter(?int $day = null)                                                     Return the value of the day starting from the beginning of the current quarter when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfWeek(?int $day = null)                                                        Return the value of the day starting from the beginning of the current week when called with no parameters, change the current day when called with an integer value\n * @method        int              daysInCentury()                                                                    Return the number of days contained in the current century\n * @method        int              daysInDecade()                                                                     Return the number of days contained in the current decade\n * @method        int              daysInMillennium()                                                                 Return the number of days contained in the current millennium\n * @method        int              daysInMonth()                                                                      Return the number of days contained in the current month\n * @method        int              daysInQuarter()                                                                    Return the number of days contained in the current quarter\n * @method        int              daysInWeek()                                                                       Return the number of days contained in the current week\n * @method        int              daysInYear()                                                                       Return the number of days contained in the current year\n * @method        int|static       decadeOfCentury(?int $decade = null)                                               Return the value of the decade starting from the beginning of the current century when called with no parameters, change the current decade when called with an integer value\n * @method        int|static       decadeOfMillennium(?int $decade = null)                                            Return the value of the decade starting from the beginning of the current millennium when called with no parameters, change the current decade when called with an integer value\n * @method        int              decadesInCentury()                                                                 Return the number of decades contained in the current century\n * @method        int              decadesInMillennium()                                                              Return the number of decades contained in the current millennium\n * @method        int|static       hourOfCentury(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current century when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDay(?int $hour = null)                                                       Return the value of the hour starting from the beginning of the current day when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDecade(?int $hour = null)                                                    Return the value of the hour starting from the beginning of the current decade when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMillennium(?int $hour = null)                                                Return the value of the hour starting from the beginning of the current millennium when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMonth(?int $hour = null)                                                     Return the value of the hour starting from the beginning of the current month when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfQuarter(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current quarter when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfWeek(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current week when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfYear(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current year when called with no parameters, change the current hour when called with an integer value\n * @method        int              hoursInCentury()                                                                   Return the number of hours contained in the current century\n * @method        int              hoursInDay()                                                                       Return the number of hours contained in the current day\n * @method        int              hoursInDecade()                                                                    Return the number of hours contained in the current decade\n * @method        int              hoursInMillennium()                                                                Return the number of hours contained in the current millennium\n * @method        int              hoursInMonth()                                                                     Return the number of hours contained in the current month\n * @method        int              hoursInQuarter()                                                                   Return the number of hours contained in the current quarter\n * @method        int              hoursInWeek()                                                                      Return the number of hours contained in the current week\n * @method        int              hoursInYear()                                                                      Return the number of hours contained in the current year\n * @method        int|static       microsecondOfCentury(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current century when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDay(?int $microsecond = null)                                         Return the value of the microsecond starting from the beginning of the current day when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDecade(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current decade when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfHour(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current hour when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillennium(?int $microsecond = null)                                  Return the value of the microsecond starting from the beginning of the current millennium when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillisecond(?int $microsecond = null)                                 Return the value of the microsecond starting from the beginning of the current millisecond when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMinute(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current minute when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMonth(?int $microsecond = null)                                       Return the value of the microsecond starting from the beginning of the current month when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfQuarter(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current quarter when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfSecond(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current second when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfWeek(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current week when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfYear(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current year when called with no parameters, change the current microsecond when called with an integer value\n * @method        int              microsecondsInCentury()                                                            Return the number of microseconds contained in the current century\n * @method        int              microsecondsInDay()                                                                Return the number of microseconds contained in the current day\n * @method        int              microsecondsInDecade()                                                             Return the number of microseconds contained in the current decade\n * @method        int              microsecondsInHour()                                                               Return the number of microseconds contained in the current hour\n * @method        int              microsecondsInMillennium()                                                         Return the number of microseconds contained in the current millennium\n * @method        int              microsecondsInMillisecond()                                                        Return the number of microseconds contained in the current millisecond\n * @method        int              microsecondsInMinute()                                                             Return the number of microseconds contained in the current minute\n * @method        int              microsecondsInMonth()                                                              Return the number of microseconds contained in the current month\n * @method        int              microsecondsInQuarter()                                                            Return the number of microseconds contained in the current quarter\n * @method        int              microsecondsInSecond()                                                             Return the number of microseconds contained in the current second\n * @method        int              microsecondsInWeek()                                                               Return the number of microseconds contained in the current week\n * @method        int              microsecondsInYear()                                                               Return the number of microseconds contained in the current year\n * @method        int|static       millisecondOfCentury(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current century when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDay(?int $millisecond = null)                                         Return the value of the millisecond starting from the beginning of the current day when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDecade(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current decade when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfHour(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current hour when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMillennium(?int $millisecond = null)                                  Return the value of the millisecond starting from the beginning of the current millennium when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMinute(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current minute when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMonth(?int $millisecond = null)                                       Return the value of the millisecond starting from the beginning of the current month when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfQuarter(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current quarter when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfSecond(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current second when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfWeek(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current week when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfYear(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current year when called with no parameters, change the current millisecond when called with an integer value\n * @method        int              millisecondsInCentury()                                                            Return the number of milliseconds contained in the current century\n * @method        int              millisecondsInDay()                                                                Return the number of milliseconds contained in the current day\n * @method        int              millisecondsInDecade()                                                             Return the number of milliseconds contained in the current decade\n * @method        int              millisecondsInHour()                                                               Return the number of milliseconds contained in the current hour\n * @method        int              millisecondsInMillennium()                                                         Return the number of milliseconds contained in the current millennium\n * @method        int              millisecondsInMinute()                                                             Return the number of milliseconds contained in the current minute\n * @method        int              millisecondsInMonth()                                                              Return the number of milliseconds contained in the current month\n * @method        int              millisecondsInQuarter()                                                            Return the number of milliseconds contained in the current quarter\n * @method        int              millisecondsInSecond()                                                             Return the number of milliseconds contained in the current second\n * @method        int              millisecondsInWeek()                                                               Return the number of milliseconds contained in the current week\n * @method        int              millisecondsInYear()                                                               Return the number of milliseconds contained in the current year\n * @method        int|static       minuteOfCentury(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current century when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDay(?int $minute = null)                                                   Return the value of the minute starting from the beginning of the current day when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDecade(?int $minute = null)                                                Return the value of the minute starting from the beginning of the current decade when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfHour(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current hour when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMillennium(?int $minute = null)                                            Return the value of the minute starting from the beginning of the current millennium when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMonth(?int $minute = null)                                                 Return the value of the minute starting from the beginning of the current month when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfQuarter(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current quarter when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfWeek(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current week when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfYear(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current year when called with no parameters, change the current minute when called with an integer value\n * @method        int              minutesInCentury()                                                                 Return the number of minutes contained in the current century\n * @method        int              minutesInDay()                                                                     Return the number of minutes contained in the current day\n * @method        int              minutesInDecade()                                                                  Return the number of minutes contained in the current decade\n * @method        int              minutesInHour()                                                                    Return the number of minutes contained in the current hour\n * @method        int              minutesInMillennium()                                                              Return the number of minutes contained in the current millennium\n * @method        int              minutesInMonth()                                                                   Return the number of minutes contained in the current month\n * @method        int              minutesInQuarter()                                                                 Return the number of minutes contained in the current quarter\n * @method        int              minutesInWeek()                                                                    Return the number of minutes contained in the current week\n * @method        int              minutesInYear()                                                                    Return the number of minutes contained in the current year\n * @method        int|static       monthOfCentury(?int $month = null)                                                 Return the value of the month starting from the beginning of the current century when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfDecade(?int $month = null)                                                  Return the value of the month starting from the beginning of the current decade when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfMillennium(?int $month = null)                                              Return the value of the month starting from the beginning of the current millennium when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfQuarter(?int $month = null)                                                 Return the value of the month starting from the beginning of the current quarter when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfYear(?int $month = null)                                                    Return the value of the month starting from the beginning of the current year when called with no parameters, change the current month when called with an integer value\n * @method        int              monthsInCentury()                                                                  Return the number of months contained in the current century\n * @method        int              monthsInDecade()                                                                   Return the number of months contained in the current decade\n * @method        int              monthsInMillennium()                                                               Return the number of months contained in the current millennium\n * @method        int              monthsInQuarter()                                                                  Return the number of months contained in the current quarter\n * @method        int              monthsInYear()                                                                     Return the number of months contained in the current year\n * @method        int|static       quarterOfCentury(?int $quarter = null)                                             Return the value of the quarter starting from the beginning of the current century when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfDecade(?int $quarter = null)                                              Return the value of the quarter starting from the beginning of the current decade when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfMillennium(?int $quarter = null)                                          Return the value of the quarter starting from the beginning of the current millennium when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfYear(?int $quarter = null)                                                Return the value of the quarter starting from the beginning of the current year when called with no parameters, change the current quarter when called with an integer value\n * @method        int              quartersInCentury()                                                                Return the number of quarters contained in the current century\n * @method        int              quartersInDecade()                                                                 Return the number of quarters contained in the current decade\n * @method        int              quartersInMillennium()                                                             Return the number of quarters contained in the current millennium\n * @method        int              quartersInYear()                                                                   Return the number of quarters contained in the current year\n * @method        int|static       secondOfCentury(?int $second = null)                                               Return the value of the second starting from the beginning of the current century when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDay(?int $second = null)                                                   Return the value of the second starting from the beginning of the current day when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDecade(?int $second = null)                                                Return the value of the second starting from the beginning of the current decade when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfHour(?int $second = null)                                                  Return the value of the second starting from the beginning of the current hour when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMillennium(?int $second = null)                                            Return the value of the second starting from the beginning of the current millennium when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMinute(?int $second = null)                                                Return the value of the second starting from the beginning of the current minute when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMonth(?int $second = null)                                                 Return the value of the second starting from the beginning of the current month when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfQuarter(?int $second = null)                                               Return the value of the second starting from the beginning of the current quarter when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfWeek(?int $second = null)                                                  Return the value of the second starting from the beginning of the current week when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfYear(?int $second = null)                                                  Return the value of the second starting from the beginning of the current year when called with no parameters, change the current second when called with an integer value\n * @method        int              secondsInCentury()                                                                 Return the number of seconds contained in the current century\n * @method        int              secondsInDay()                                                                     Return the number of seconds contained in the current day\n * @method        int              secondsInDecade()                                                                  Return the number of seconds contained in the current decade\n * @method        int              secondsInHour()                                                                    Return the number of seconds contained in the current hour\n * @method        int              secondsInMillennium()                                                              Return the number of seconds contained in the current millennium\n * @method        int              secondsInMinute()                                                                  Return the number of seconds contained in the current minute\n * @method        int              secondsInMonth()                                                                   Return the number of seconds contained in the current month\n * @method        int              secondsInQuarter()                                                                 Return the number of seconds contained in the current quarter\n * @method        int              secondsInWeek()                                                                    Return the number of seconds contained in the current week\n * @method        int              secondsInYear()                                                                    Return the number of seconds contained in the current year\n * @method        int|static       weekOfCentury(?int $week = null)                                                   Return the value of the week starting from the beginning of the current century when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfDecade(?int $week = null)                                                    Return the value of the week starting from the beginning of the current decade when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMillennium(?int $week = null)                                                Return the value of the week starting from the beginning of the current millennium when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMonth(?int $week = null)                                                     Return the value of the week starting from the beginning of the current month when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfQuarter(?int $week = null)                                                   Return the value of the week starting from the beginning of the current quarter when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfYear(?int $week = null)                                                      Return the value of the week starting from the beginning of the current year when called with no parameters, change the current week when called with an integer value\n * @method        int              weeksInCentury()                                                                   Return the number of weeks contained in the current century\n * @method        int              weeksInDecade()                                                                    Return the number of weeks contained in the current decade\n * @method        int              weeksInMillennium()                                                                Return the number of weeks contained in the current millennium\n * @method        int              weeksInMonth()                                                                     Return the number of weeks contained in the current month\n * @method        int              weeksInQuarter()                                                                   Return the number of weeks contained in the current quarter\n * @method        int|static       yearOfCentury(?int $year = null)                                                   Return the value of the year starting from the beginning of the current century when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfDecade(?int $year = null)                                                    Return the value of the year starting from the beginning of the current decade when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfMillennium(?int $year = null)                                                Return the value of the year starting from the beginning of the current millennium when called with no parameters, change the current year when called with an integer value\n * @method        int              yearsInCentury()                                                                   Return the number of years contained in the current century\n * @method        int              yearsInDecade()                                                                    Return the number of years contained in the current decade\n * @method        int              yearsInMillennium()                                                                Return the number of years contained in the current millennium\n *\n * </autodoc>\n *\n * @codeCoverageIgnore\n */\ninterface CarbonInterface extends DateTimeInterface, JsonSerializable, DiffOptions, Format, TranslationOptions, UnitValue\n{\n    // <methods>\n\n    /**\n     * Dynamically handle calls to the class.\n     *\n     * @param string $method     magic method name called\n     * @param array  $parameters parameters list\n     *\n     * @throws UnknownMethodException|BadMethodCallException|ReflectionException|Throwable\n     */\n    public function __call(string $method, array $parameters): mixed;\n\n    /**\n     * Dynamically handle calls to the class.\n     *\n     * @param string $method     magic method name called\n     * @param array  $parameters parameters list\n     *\n     * @throws BadMethodCallException\n     */\n    public static function __callStatic(string $method, array $parameters): mixed;\n\n    /**\n     * Update constructedObjectId on cloned.\n     */\n    public function __clone(): void;\n\n    /**\n     * Create a new Carbon instance.\n     *\n     * Please see the testing aids section (specifically static::setTestNow())\n     * for more on the possibility of this constructor returning a test instance.\n     *\n     * @throws InvalidFormatException\n     */\n    public function __construct(DateTimeInterface|WeekDay|Month|string|int|float|null $time = null, DateTimeZone|string|int|null $timezone = null);\n\n    /**\n     * Show truthy properties on var_dump().\n     */\n    public function __debugInfo(): array;\n\n    /**\n     * Get a part of the Carbon object.\n     *\n     * @throws UnknownGetterException\n     *\n     * @return string|int|bool|DateTimeZone|null\n     */\n    public function __get(string $name): mixed;\n\n    /**\n     * Check if an attribute exists on the object\n     *\n     * @param string $name\n     *\n     * @return bool\n     */\n    public function __isset($name);\n\n    /**\n     * Set a part of the Carbon object\n     *\n     * @param string                  $name\n     * @param string|int|DateTimeZone $value\n     *\n     * @throws UnknownSetterException|ReflectionException\n     *\n     * @return void\n     */\n    public function __set($name, $value);\n\n    /**\n     * The __set_state handler.\n     *\n     * @param string|array $dump\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public static function __set_state($dump): static;\n\n    /**\n     * Format the instance as a string using the set format\n     *\n     * @example\n     * ```\n     * echo Carbon::now(); // Carbon instances can be cast to string\n     * ```\n     */\n    public function __toString();\n\n    /**\n     * Add given units or interval to the current instance.\n     *\n     * @example $date->add('hour', 3)\n     * @example $date->add(15, 'days')\n     * @example $date->add(CarbonInterval::days(4))\n     *\n     * @param Unit|int|string|DateInterval|Closure|CarbonConverterInterface $unit\n     * @param Unit|int|float|string                                         $value\n     * @param bool|null                                                     $overflow\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public function add($unit, $value = 1, ?bool $overflow = null): static;\n\n    /**\n     * @deprecated Prefer to use add addUTCUnit() which more accurately defines what it's doing.\n     *\n     * Add seconds to the instance using timestamp. Positive $value travels\n     * forward while negative $value travels into the past.\n     *\n     * @param string         $unit\n     * @param int|float|null $value\n     *\n     * @return static\n     */\n    public function addRealUnit(string $unit, $value = 1): static;\n\n    /**\n     * Add seconds to the instance using timestamp. Positive $value travels\n     * forward while negative $value travels into the past.\n     *\n     * @param string         $unit\n     * @param int|float|null $value\n     *\n     * @return static\n     */\n    public function addUTCUnit(string $unit, $value = 1): static;\n\n    /**\n     * Add given units to the current instance.\n     */\n    public function addUnit(Unit|string $unit, $value = 1, ?bool $overflow = null): static;\n\n    /**\n     * Add any unit to a new value without overflowing current other unit given.\n     *\n     * @param string $valueUnit    unit name to modify\n     * @param int    $value        amount to add to the input unit\n     * @param string $overflowUnit unit name to not overflow\n     */\n    public function addUnitNoOverflow(string $valueUnit, int $value, string $overflowUnit): static;\n\n    /**\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given to now\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                           - 'syntax' entry (see below)\n     *                           - 'short' entry (see below)\n     *                           - 'parts' entry (see below)\n     *                           - 'options' entry (see below)\n     *                           - 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           if int passed, it add modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: 1: single part)\n     * @param int       $options human diff options\n     *\n     * @return string\n     */\n    public function ago($syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * Modify the current instance to the average of a given instance (default now) and the current instance\n     * (second-precision).\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|null $date\n     *\n     * @return static\n     */\n    public function average($date = null);\n\n    /**\n     * Clone the current instance if it's mutable.\n     *\n     * This method is convenient to ensure you don't mutate the initial object\n     * but avoid to make a useless copy of it if it's already immutable.\n     *\n     * @return static\n     */\n    public function avoidMutation(): static;\n\n    /**\n     * Determines if the instance is between two others.\n     *\n     * The third argument allow you to specify if bounds are included or not (true by default)\n     * but for when you including/excluding bounds may produce different results in your application,\n     * we recommend to use the explicit methods ->betweenIncluded() or ->betweenExcluded() instead.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->between('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->between('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01', false); // false\n     * ```\n     *\n     * @param bool $equal Indicates if an equal to comparison should be done\n     */\n    public function between(DateTimeInterface|string $date1, DateTimeInterface|string $date2, bool $equal = true): bool;\n\n    /**\n     * Determines if the instance is between two others, bounds excluded.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->betweenExcluded('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-25', '2018-08-01'); // false\n     * ```\n     */\n    public function betweenExcluded(DateTimeInterface|string $date1, DateTimeInterface|string $date2): bool;\n\n    /**\n     * Determines if the instance is between two others, bounds included.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->betweenIncluded('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-25', '2018-08-01'); // true\n     * ```\n     */\n    public function betweenIncluded(DateTimeInterface|string $date1, DateTimeInterface|string $date2): bool;\n\n    /**\n     * Returns either day of week + time (e.g. \"Last Friday at 3:30 PM\") if reference time is within 7 days,\n     * or a calendar date (e.g. \"10/29/2017\") otherwise.\n     *\n     * Language, date and time formats will change according to the current locale.\n     *\n     * @param Carbon|\\DateTimeInterface|string|null $referenceTime\n     * @param array                                 $formats\n     *\n     * @return string\n     */\n    public function calendar($referenceTime = null, array $formats = []);\n\n    /**\n     * Checks if the (date)time string is in a given format and valid to create a\n     * new instance.\n     *\n     * @example\n     * ```\n     * Carbon::canBeCreatedFromFormat('11:12:45', 'h:i:s'); // true\n     * Carbon::canBeCreatedFromFormat('13:12:45', 'h:i:s'); // false\n     * ```\n     */\n    public static function canBeCreatedFromFormat(?string $date, string $format): bool;\n\n    /**\n     * Return the Carbon instance passed through, a now instance in the same timezone\n     * if null given or parse the input if string given.\n     *\n     * @param Carbon|\\Carbon\\CarbonPeriod|\\Carbon\\CarbonInterval|\\DateInterval|\\DatePeriod|DateTimeInterface|string|null $date\n     *\n     * @return static\n     */\n    public function carbonize($date = null);\n\n    /**\n     * Cast the current instance into the given class.\n     *\n     * @template T\n     *\n     * @param class-string<T> $className The $className::instance() method will be called to cast the current object.\n     *\n     * @return T\n     */\n    public function cast(string $className): mixed;\n\n    /**\n     * Ceil the current instance second with given precision if specified.\n     */\n    public function ceil(DateInterval|string|int|float $precision = 1): static;\n\n    /**\n     * Ceil the current instance at the given unit with given precision if specified.\n     */\n    public function ceilUnit(string $unit, DateInterval|string|int|float $precision = 1): static;\n\n    /**\n     * Ceil the current instance week.\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     */\n    public function ceilWeek(WeekDay|int|null $weekStartsAt = null): static;\n\n    /**\n     * Similar to native modify() method of DateTime but can handle more grammars.\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->change('next 2pm');\n     * ```\n     *\n     * @link https://php.net/manual/en/datetime.modify.php\n     *\n     * @param string $modifier\n     *\n     * @return static\n     */\n    public function change($modifier);\n\n    /**\n     * Cleanup properties attached to the public scope of DateTime when a dump of the date is requested.\n     * foreach ($date as $_) {}\n     * serializer($date)\n     * var_export($date)\n     * get_object_vars($date)\n     */\n    public function cleanupDumpProperties();\n\n    /**\n     * @alias copy\n     *\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function clone();\n\n    /**\n     * Get the closest date from the instance (second-precision).\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date1\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date2\n     *\n     * @return static\n     */\n    public function closest($date1, $date2);\n\n    /**\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function copy();\n\n    /**\n     * Create a new Carbon instance from a specific date and time.\n     *\n     * If any of $year, $month or $day are set to null their now() values will\n     * be used.\n     *\n     * If $hour is null it will be set to its now() value and the default\n     * values for $minute and $second will be their now() values.\n     *\n     * If $hour is not null then the default values for $minute and $second\n     * will be 0.\n     *\n     * @param DateTimeInterface|string|int|null $year\n     * @param int|null                          $month\n     * @param int|null                          $day\n     * @param int|null                          $hour\n     * @param int|null                          $minute\n     * @param int|null                          $second\n     * @param DateTimeZone|string|int|null      $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $timezone = null): ?static;\n\n    /**\n     * Create a Carbon instance from just a date. The time portion is set to now.\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createFromDate($year = null, $month = null, $day = null, $timezone = null);\n\n    /**\n     * Create a Carbon instance from a specific format.\n     *\n     * @param string                       $format   Datetime format\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    #[ReturnTypeWillChange]\n    public static function createFromFormat($format, $time, $timezone = null): ?static;\n\n    /**\n     * Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()).\n     *\n     * @param string                       $format     Datetime format\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone   optional timezone\n     * @param string|null                  $locale     locale to be used for LTS, LT, LL, LLL, etc. macro-formats (en by fault, unneeded if no such macro-format in use)\n     * @param TranslatorInterface|null     $translator optional custom translator to use for macro-formats\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function createFromIsoFormat(string $format, string $time, $timezone = null, ?string $locale = 'en', ?TranslatorInterface $translator = null): ?static;\n\n    /**\n     * Create a Carbon instance from a specific format and a string in a given language.\n     *\n     * @param string                       $format   Datetime format\n     * @param string                       $locale\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function createFromLocaleFormat(string $format, string $locale, string $time, $timezone = null): ?static;\n\n    /**\n     * Create a Carbon instance from a specific ISO format and a string in a given language.\n     *\n     * @param string                       $format   Datetime ISO format\n     * @param string                       $locale\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function createFromLocaleIsoFormat(string $format, string $locale, string $time, $timezone = null): ?static;\n\n    /**\n     * Create a Carbon instance from just a time. The date portion is set to today.\n     *\n     * @param int|null                     $hour\n     * @param int|null                     $minute\n     * @param int|null                     $second\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createFromTime($hour = 0, $minute = 0, $second = 0, $timezone = null): static;\n\n    /**\n     * Create a Carbon instance from a time string. The date portion is set to today.\n     *\n     * @throws InvalidFormatException\n     */\n    public static function createFromTimeString(string $time, DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Create a Carbon instance from a timestamp and set the timezone (UTC by default).\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    #[ReturnTypeWillChange]\n    public static function createFromTimestamp(string|int|float $timestamp, DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Create a Carbon instance from a timestamp in milliseconds.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public static function createFromTimestampMs(string|int|float $timestamp, DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Create a Carbon instance from a timestamp in milliseconds.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     *\n     * @param float|int|string $timestamp\n     *\n     * @return static\n     */\n    public static function createFromTimestampMsUTC($timestamp): static;\n\n    /**\n     * Create a Carbon instance from a timestamp keeping the timezone to UTC.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public static function createFromTimestampUTC(string|int|float $timestamp): static;\n\n    /**\n     * Create a Carbon instance from just a date. The time portion is set to midnight.\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createMidnightDate($year = null, $month = null, $day = null, $timezone = null);\n\n    /**\n     * Create a new safe Carbon instance from a specific date and time.\n     *\n     * If any of $year, $month or $day are set to null their now() values will\n     * be used.\n     *\n     * If $hour is null it will be set to its now() value and the default\n     * values for $minute and $second will be their now() values.\n     *\n     * If $hour is not null then the default values for $minute and $second\n     * will be 0.\n     *\n     * If one of the set values is not valid, an InvalidDateException\n     * will be thrown.\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param int|null                     $hour\n     * @param int|null                     $minute\n     * @param int|null                     $second\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidDateException\n     *\n     * @return static|null\n     */\n    public static function createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $timezone = null): ?static;\n\n    /**\n     * Create a new Carbon instance from a specific date and time using strict validation.\n     *\n     * @see create()\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param int|null                     $hour\n     * @param int|null                     $minute\n     * @param int|null                     $second\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createStrict(?int $year = 0, ?int $month = 1, ?int $day = 1, ?int $hour = 0, ?int $minute = 0, ?int $second = 0, $timezone = null): static;\n\n    /**\n     * Get/set the day of year.\n     *\n     * @template T of int|null\n     *\n     * @param int|null $value new value for day of year if using as setter.\n     *\n     * @psalm-param T $value\n     *\n     * @return static|int\n     *\n     * @psalm-return (T is int ? static : int)\n     */\n    public function dayOfYear(?int $value = null): static|int;\n\n    /**\n     * Get the difference as a CarbonInterval instance.\n     * Return relative interval (negative if $absolute flag is not set to true and the given date is before\n     * current one).\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return CarbonInterval\n     */\n    public function diffAsCarbonInterval($date = null, bool $absolute = false, array $skip = []): CarbonInterval;\n\n    /**\n     * Get the difference as a DateInterval instance.\n     * Return relative interval (negative if $absolute flag is not set to true and the given date is before\n     * current one).\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return DateInterval\n     */\n    public function diffAsDateInterval($date = null, bool $absolute = false): DateInterval;\n\n    /**\n     * Get the difference by the given interval using a filter closure.\n     *\n     * @param CarbonInterval                                         $ci       An interval to traverse by\n     * @param Closure                                                $callback\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffFiltered(CarbonInterval $ci, Closure $callback, $date = null, bool $absolute = false): int;\n\n    /**\n     * Get the difference in a human readable format in the current locale from current instance to an other\n     * instance given (or now if null given).\n     *\n     * @example\n     * ```\n     * echo Carbon::tomorrow()->diffForHumans() . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(['parts' => 2]) . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(['parts' => 3, 'join' => true]) . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday()) . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday(), ['short' => true]) . \"\\n\";\n     * ```\n     *\n     * @param Carbon|DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                            if null passed, now will be used as comparison reference;\n     *                                                            if any other type, it will be converted to date and used as reference.\n     * @param int|array                                  $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                            ⦿ 'syntax' entry (see below)\n     *                                                            ⦿ 'short' entry (see below)\n     *                                                            ⦿ 'parts' entry (see below)\n     *                                                            ⦿ 'options' entry (see below)\n     *                                                            ⦿ 'skip' entry, list of units to skip (array of strings or a single string,\n     *                                                            ` it can be the unit name (singular or plural) or its shortcut\n     *                                                            ` (y, m, w, d, h, min, s, ms, µs).\n     *                                                            ⦿ 'aUnit' entry, prefer \"an hour\" over \"1 hour\" if true\n     *                                                            ⦿ 'altNumbers' entry, use alternative numbers if available\n     *                                                            ` (from the current language if true is passed, from the given language(s)\n     *                                                            ` if array or string is passed)\n     *                                                            ⦿ 'join' entry determines how to join multiple parts of the string\n     *                                                            `  - if $join is a string, it's used as a joiner glue\n     *                                                            `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                            `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                            `    will be used instead of the glue for the last item\n     *                                                            `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                            `  - if $join is missing, a space will be used as glue\n     *                                                            ⦿ 'other' entry (see above)\n     *                                                            ⦿ 'minimumUnit' entry determines the smallest unit of time to display can be long or\n     *                                                            `  short form of the units, e.g. 'hour' or 'h' (default value: s)\n     *                                                            ⦿ 'locale' language in which the diff should be output (has no effect if 'translator' key is set)\n     *                                                            ⦿ 'translator' a custom translator to use to translator the output.\n     *                                                            if int passed, it adds modifiers:\n     *                                                            Possible values:\n     *                                                            - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                            - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                            - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                            Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                       $short   displays short format of time units\n     * @param int                                        $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                        $options human diff options\n     */\n    public function diffForHumans($other = null, $syntax = null, $short = false, $parts = 1, $options = null): string;\n\n    /**\n     * Get the difference in days.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInDays($date = null, bool $absolute = false, bool $utc = false): float;\n\n    /**\n     * Get the difference in days using a filter closure.\n     *\n     * @param Closure                                                $callback\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInDaysFiltered(Closure $callback, $date = null, bool $absolute = false): int;\n\n    /**\n     * Get the difference in hours.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInHours($date = null, bool $absolute = false): float;\n\n    /**\n     * Get the difference in hours using a filter closure.\n     *\n     * @param Closure                                                $callback\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInHoursFiltered(Closure $callback, $date = null, bool $absolute = false): int;\n\n    /**\n     * Get the difference in microseconds.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInMicroseconds($date = null, bool $absolute = false): float;\n\n    /**\n     * Get the difference in milliseconds.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInMilliseconds($date = null, bool $absolute = false): float;\n\n    /**\n     * Get the difference in minutes.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInMinutes($date = null, bool $absolute = false): float;\n\n    /**\n     * Get the difference in months.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInMonths($date = null, bool $absolute = false, bool $utc = false): float;\n\n    /**\n     * Get the difference in quarters.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInQuarters($date = null, bool $absolute = false, bool $utc = false): float;\n\n    /**\n     * Get the difference in seconds.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInSeconds($date = null, bool $absolute = false): float;\n\n    /**\n     * @param Unit|string                                            $unit     microsecond, millisecond, second, minute,\n     *                                                                         hour, day, week, month, quarter, year,\n     *                                                                         century, millennium\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInUnit(Unit|string $unit, $date = null, bool $absolute = false, bool $utc = false): float;\n\n    /**\n     * Get the difference in weekdays.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInWeekdays($date = null, bool $absolute = false): int;\n\n    /**\n     * Get the difference in weekend days using a filter.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInWeekendDays($date = null, bool $absolute = false): int;\n\n    /**\n     * Get the difference in weeks.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInWeeks($date = null, bool $absolute = false, bool $utc = false): float;\n\n    /**\n     * Get the difference in years\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInYears($date = null, bool $absolute = false, bool $utc = false): float;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     */\n    public static function disableHumanDiffOption(int $humanDiffOption): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     */\n    public static function enableHumanDiffOption(int $humanDiffOption): void;\n\n    /**\n     * Modify to end of current given unit.\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOf(Unit::Month)\n     *   ->endOf(Unit::Week, Carbon::FRIDAY);\n     * ```\n     */\n    public function endOf(Unit|string $unit, mixed ...$params): static;\n\n    /**\n     * Resets the date to end of the century and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfCentury();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfCentury();\n\n    /**\n     * Resets the time to 23:59:59.999999 end of day\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfDay();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfDay();\n\n    /**\n     * Resets the date to end of the decade and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfDecade();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfDecade();\n\n    /**\n     * Modify to end of current hour, minutes and seconds become 59\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfHour();\n     * ```\n     */\n    public function endOfHour(): static;\n\n    /**\n     * Resets the date to end of the millennium and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfMillennium();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfMillennium();\n\n    /**\n     * Modify to end of current millisecond, microseconds such as 12345 become 123999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->endOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function endOfMillisecond(): static;\n\n    /**\n     * Modify to end of current minute, seconds become 59\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfMinute();\n     * ```\n     */\n    public function endOfMinute(): static;\n\n    /**\n     * Resets the date to end of the month and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfMonth();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfMonth();\n\n    /**\n     * Resets the date to end of the quarter and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfQuarter();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfQuarter();\n\n    /**\n     * Modify to end of current second, microseconds become 999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->endOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function endOfSecond(): static;\n\n    /**\n     * Resets the date to end of week (defined in $weekEndsAt) and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->endOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek(Carbon::SATURDAY) . \"\\n\";\n     * ```\n     *\n     * @param WeekDay|int|null $weekEndsAt optional end allow you to specify the day of week to use to end the week\n     *\n     * @return static\n     */\n    public function endOfWeek(WeekDay|int|null $weekEndsAt = null): static;\n\n    /**\n     * Resets the date to end of the year and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfYear();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfYear();\n\n    /**\n     * Determines if the instance is equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->eq(Carbon::parse('2018-07-25 12:45:16')); // true\n     * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see equalTo()\n     */\n    public function eq(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->equalTo(Carbon::parse('2018-07-25 12:45:16')); // true\n     * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:17'); // false\n     * ```\n     */\n    public function equalTo(DateTimeInterface|string $date): bool;\n\n    /**\n     * Set the current locale to the given, execute the passed function, reset the locale to previous one,\n     * then return the result of the closure (or null if the closure was void).\n     *\n     * @param string   $locale locale ex. en\n     * @param callable $func\n     *\n     * @return mixed\n     */\n    public static function executeWithLocale(string $locale, callable $func): mixed;\n\n    /**\n     * Get the farthest date from the instance (second-precision).\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date1\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date2\n     *\n     * @return static\n     */\n    public function farthest($date1, $date2);\n\n    /**\n     * Modify to the first occurrence of a given day of the week\n     * in the current month. If no dayOfWeek is provided, modify to the\n     * first day of the current month.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek\n     *\n     * @return static\n     */\n    public function firstOfMonth($dayOfWeek = null);\n\n    /**\n     * Modify to the first occurrence of a given day of the week\n     * in the current quarter. If no dayOfWeek is provided, modify to the\n     * first day of the current quarter.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function firstOfQuarter($dayOfWeek = null);\n\n    /**\n     * Modify to the first occurrence of a given day of the week\n     * in the current year. If no dayOfWeek is provided, modify to the\n     * first day of the current year.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function firstOfYear($dayOfWeek = null);\n\n    /**\n     * Round the current instance second with given precision if specified.\n     */\n    public function floor(DateInterval|string|int|float $precision = 1): static;\n\n    /**\n     * Truncate the current instance at the given unit with given precision if specified.\n     */\n    public function floorUnit(string $unit, DateInterval|string|int|float $precision = 1): static;\n\n    /**\n     * Truncate the current instance week.\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     */\n    public function floorWeek(WeekDay|int|null $weekStartsAt = null): static;\n\n    /**\n     * @alias diffForHumans\n     *\n     * Get the difference in a human readable format in the current locale from current instance to an other\n     * instance given (or now if null given).\n     *\n     * @param Carbon|\\DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                             if null passed, now will be used as comparison reference;\n     *                                                             if any other type, it will be converted to date and used as reference.\n     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                             - 'syntax' entry (see below)\n     *                                                             - 'short' entry (see below)\n     *                                                             - 'parts' entry (see below)\n     *                                                             - 'options' entry (see below)\n     *                                                             - 'join' entry determines how to join multiple parts of the string\n     *                                                             `  - if $join is a string, it's used as a joiner glue\n     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                             `    will be used instead of the glue for the last item\n     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                             `  - if $join is missing, a space will be used as glue\n     *                                                             - 'other' entry (see above)\n     *                                                             if int passed, it add modifiers:\n     *                                                             Possible values:\n     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                        $short   displays short format of time units\n     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                         $options human diff options\n     *\n     * @return string\n     */\n    public function from($other = null, $syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * Get the difference in a human readable format in the current locale from current\n     * instance to now.\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                           - 'syntax' entry (see below)\n     *                           - 'short' entry (see below)\n     *                           - 'parts' entry (see below)\n     *                           - 'options' entry (see below)\n     *                           - 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           if int passed, it add modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int       $options human diff options\n     *\n     * @return string\n     */\n    public function fromNow($syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * Create an instance from a serialized string.\n     *\n     * If $value is not from a trusted source, consider using the allowed_classes option to limit\n     * the types of objects that can be built, for instance:\n     *\n     * @example\n     * ```php\n     * $object = Carbon::fromSerialized($value, ['allowed_classes' => [Carbon::class, CarbonImmutable::class]]);\n     * ```\n     *\n     * @param \\Stringable|string $value\n     * @param array              $options example: ['allowed_classes' => [CarbonImmutable::class]]\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function fromSerialized($value, array $options = []): static;\n\n    /**\n     * Register a custom macro.\n     *\n     * @param callable $macro\n     * @param int      $priority marco with higher priority is tried first\n     *\n     * @return void\n     */\n    public static function genericMacro(callable $macro, int $priority = 0): void;\n\n    /**\n     * Get a part of the Carbon object.\n     *\n     * @throws UnknownGetterException\n     *\n     * @return string|int|bool|DateTimeZone\n     */\n    public function get(Unit|string $name): mixed;\n\n    /**\n     * Returns the alternative number for a given date property if available in the current locale.\n     *\n     * @param string $key date property\n     */\n    public function getAltNumber(string $key): string;\n\n    /**\n     * Returns the list of internally available locales and already loaded custom locales.\n     * (It will ignore custom translator dynamic loading.)\n     *\n     * @return array\n     */\n    public static function getAvailableLocales();\n\n    /**\n     * Returns list of Language object for each available locale. This object allow you to get the ISO name, native\n     * name, region and variant of the locale.\n     *\n     * @return Language[]\n     */\n    public static function getAvailableLocalesInfo();\n\n    /**\n     * Returns list of calendar formats for ISO formatting.\n     *\n     * @param string|null $locale current locale used if null\n     */\n    public function getCalendarFormats(?string $locale = null): array;\n\n    public function getClock(): ?WrapperClock;\n\n    /**\n     * Get the days of the week.\n     */\n    public static function getDays(): array;\n\n    /**\n     * Return the number of days since the start of the week (using the current locale or the first parameter\n     * if explicitly given).\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week,\n     *                                       if not provided, start of week is inferred from the locale\n     *                                       (Sunday for en_US, Monday for de_DE, etc.)\n     */\n    public function getDaysFromStartOfWeek(WeekDay|int|null $weekStartsAt = null): int;\n\n    /**\n     * Get the fallback locale.\n     *\n     * @see https://symfony.com/doc/current/components/translation.html#fallback-locales\n     */\n    public static function getFallbackLocale(): ?string;\n\n    /**\n     * List of replacements from date() format to isoFormat().\n     */\n    public static function getFormatsToIsoReplacements(): array;\n\n    /**\n     * Return default humanDiff() options (merged flags as integer).\n     */\n    public static function getHumanDiffOptions(): int;\n\n    /**\n     * Returns list of locale formats for ISO formatting.\n     *\n     * @param string|null $locale current locale used if null\n     */\n    public function getIsoFormats(?string $locale = null): array;\n\n    /**\n     * Returns list of locale units for ISO formatting.\n     */\n    public static function getIsoUnits(): array;\n\n    /**\n     * {@inheritdoc}\n     */\n    public static function getLastErrors(): array|false;\n\n    /**\n     * Get the raw callable macro registered globally or locally for a given name.\n     */\n    public function getLocalMacro(string $name): ?callable;\n\n    /**\n     * Get the translator of the current instance or the default if none set.\n     */\n    public function getLocalTranslator(): TranslatorInterface;\n\n    /**\n     * Get the current translator locale.\n     *\n     * @return string\n     */\n    public static function getLocale(): string;\n\n    /**\n     * Get the raw callable macro registered globally for a given name.\n     */\n    public static function getMacro(string $name): ?callable;\n\n    /**\n     * get midday/noon hour\n     *\n     * @return int\n     */\n    public static function getMidDayAt();\n\n    /**\n     * Returns the offset hour and minute formatted with +/- and a given separator (\":\" by default).\n     * For example, if the time zone is 9 hours 30 minutes, you'll get \"+09:30\", with \"@@\" as first\n     * argument, \"+09@@30\", with \"\" as first argument, \"+0930\". Negative offset will return something\n     * like \"-12:00\".\n     *\n     * @param string $separator string to place between hours and minutes (\":\" by default)\n     */\n    public function getOffsetString(string $separator = ':'): string;\n\n    /**\n     * Returns a unit of the instance padded with 0 by default or any other string if specified.\n     *\n     * @param string $unit      Carbon unit name\n     * @param int    $length    Length of the output (2 by default)\n     * @param string $padString String to use for padding (\"0\" by default)\n     * @param int    $padType   Side(s) to pad (STR_PAD_LEFT by default)\n     */\n    public function getPaddedUnit($unit, $length = 2, $padString = '0', $padType = 0): string;\n\n    /**\n     * Returns a timestamp rounded with the given precision (6 by default).\n     *\n     * @example getPreciseTimestamp()   1532087464437474 (microsecond maximum precision)\n     * @example getPreciseTimestamp(6)  1532087464437474\n     * @example getPreciseTimestamp(5)  153208746443747  (1/100000 second precision)\n     * @example getPreciseTimestamp(4)  15320874644375   (1/10000 second precision)\n     * @example getPreciseTimestamp(3)  1532087464437    (millisecond precision)\n     * @example getPreciseTimestamp(2)  153208746444     (1/100 second precision)\n     * @example getPreciseTimestamp(1)  15320874644      (1/10 second precision)\n     * @example getPreciseTimestamp(0)  1532087464       (second precision)\n     * @example getPreciseTimestamp(-1) 153208746        (10 second precision)\n     * @example getPreciseTimestamp(-2) 15320875         (100 second precision)\n     *\n     * @param int $precision\n     *\n     * @return float\n     */\n    public function getPreciseTimestamp($precision = 6): float;\n\n    /**\n     * Returns current local settings.\n     */\n    public function getSettings(): array;\n\n    /**\n     * Get the Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.\n     *\n     * @return Closure|self|null the current instance used for testing\n     */\n    public static function getTestNow(): Closure|self|null;\n\n    /**\n     * Return a format from H:i to H:i:s.u according to given unit precision.\n     *\n     * @param string $unitPrecision \"minute\", \"second\", \"millisecond\" or \"microsecond\"\n     */\n    public static function getTimeFormatByPrecision(string $unitPrecision): string;\n\n    /**\n     * Returns the timestamp with millisecond precision.\n     *\n     * @return int\n     */\n    public function getTimestampMs(): int;\n\n    /**\n     * Get the translation of the current week day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context      whole format string\n     * @param string      $keySuffix    \"\", \"_short\" or \"_min\"\n     * @param string|null $defaultValue default value if translation missing\n     */\n    public function getTranslatedDayName(?string $context = null, string $keySuffix = '', ?string $defaultValue = null): string;\n\n    /**\n     * Get the translation of the current abbreviated week day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context whole format string\n     */\n    public function getTranslatedMinDayName(?string $context = null): string;\n\n    /**\n     * Get the translation of the current month day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context      whole format string\n     * @param string      $keySuffix    \"\" or \"_short\"\n     * @param string|null $defaultValue default value if translation missing\n     */\n    public function getTranslatedMonthName(?string $context = null, string $keySuffix = '', ?string $defaultValue = null): string;\n\n    /**\n     * Get the translation of the current short week day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context whole format string\n     */\n    public function getTranslatedShortDayName(?string $context = null): string;\n\n    /**\n     * Get the translation of the current short month day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context whole format string\n     */\n    public function getTranslatedShortMonthName(?string $context = null): string;\n\n    /**\n     * Returns raw translation message for a given key.\n     *\n     * @param string              $key        key to find\n     * @param string|null         $locale     current locale used if null\n     * @param string|null         $default    default value if translation returns the key\n     * @param TranslatorInterface $translator an optional translator to use\n     *\n     * @return string\n     */\n    public function getTranslationMessage(string $key, ?string $locale = null, ?string $default = null, $translator = null);\n\n    /**\n     * Returns raw translation message for a given key.\n     *\n     * @param TranslatorInterface|null $translator the translator to use\n     * @param string                   $key        key to find\n     * @param string|null              $locale     current locale used if null\n     * @param string|null              $default    default value if translation returns the key\n     *\n     * @return string|Closure|null\n     */\n    public static function getTranslationMessageWith($translator, string $key, ?string $locale = null, ?string $default = null);\n\n    /**\n     * Initialize the default translator instance if necessary.\n     */\n    public static function getTranslator(): TranslatorInterface;\n\n    /**\n     * Get the last day of week.\n     *\n     * @param string $locale local to consider the last day of week.\n     *\n     * @return int\n     */\n    public static function getWeekEndsAt(?string $locale = null): int;\n\n    /**\n     * Get the first day of week.\n     *\n     * @return int\n     */\n    public static function getWeekStartsAt(?string $locale = null): int;\n\n    /**\n     * Get weekend days\n     */\n    public static function getWeekendDays(): array;\n\n    /**\n     * Determines if the instance is greater (after) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:17'); // false\n     * ```\n     */\n    public function greaterThan(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is greater (after) than or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:17'); // false\n     * ```\n     */\n    public function greaterThanOrEqualTo(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is greater (after) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see greaterThan()\n     */\n    public function gt(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is greater (after) than or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see greaterThanOrEqualTo()\n     */\n    public function gte(DateTimeInterface|string $date): bool;\n\n    /**\n     * Checks if the (date)time string is in a given format.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormat('11:12:45', 'h:i:s'); // true\n     * Carbon::hasFormat('13:12:45', 'h:i:s'); // false\n     * ```\n     */\n    public static function hasFormat(string $date, string $format): bool;\n\n    /**\n     * Checks if the (date)time string is in a given format.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormatWithModifiers('31/08/2015', 'd#m#Y'); // true\n     * Carbon::hasFormatWithModifiers('31/08/2015', 'm#d#Y'); // false\n     * ```\n     *\n     * @param string $date\n     * @param string $format\n     *\n     * @return bool\n     */\n    public static function hasFormatWithModifiers(?string $date, string $format): bool;\n\n    /**\n     * Checks if macro is registered globally or locally.\n     */\n    public function hasLocalMacro(string $name): bool;\n\n    /**\n     * Return true if the current instance has its own translator.\n     */\n    public function hasLocalTranslator(): bool;\n\n    /**\n     * Checks if macro is registered globally.\n     *\n     * @param string $name\n     *\n     * @return bool\n     */\n    public static function hasMacro(string $name): bool;\n\n    /**\n     * Determine if a time string will produce a relative date.\n     *\n     * @return bool true if time match a relative date, false if absolute or invalid time string\n     */\n    public static function hasRelativeKeywords(?string $time): bool;\n\n    /**\n     * Determine if there is a valid test instance set. A valid test instance\n     * is anything that is not null.\n     *\n     * @return bool true if there is a test instance, otherwise false\n     */\n    public static function hasTestNow(): bool;\n\n    /**\n     * Create a Carbon instance from a DateTime one.\n     */\n    public static function instance(DateTimeInterface $date): static;\n\n    /**\n     * Returns true if the current date matches the given string.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2018')); // false\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('06-02')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('Sunday')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('June')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:45')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:00')); // false\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12h')); // true\n     * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3pm')); // true\n     * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3am')); // false\n     * ```\n     *\n     * @param string $tester day name, month name, hour, date, etc. as string\n     */\n    public function is(WeekDay|Month|string $tester): bool;\n\n    /**\n     * Determines if the instance is greater (after) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see greaterThan()\n     */\n    public function isAfter(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is less (before) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see lessThan()\n     */\n    public function isBefore(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is between two others\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->isBetween('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->isBetween('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01', false); // false\n     * ```\n     *\n     * @param bool $equal Indicates if an equal to comparison should be done\n     */\n    public function isBetween(DateTimeInterface|string $date1, DateTimeInterface|string $date2, bool $equal = true): bool;\n\n    /**\n     * Check if its the birthday. Compares the date/month values of the two dates.\n     *\n     * @example\n     * ```\n     * Carbon::now()->subYears(5)->isBirthday(); // true\n     * Carbon::now()->subYears(5)->subDay()->isBirthday(); // false\n     * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-05')); // true\n     * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-06')); // false\n     * ```\n     *\n     * @param DateTimeInterface|string|null $date The instance to compare with or null to use current day.\n     *\n     * @return bool\n     */\n    public function isBirthday(DateTimeInterface|string|null $date = null): bool;\n\n    /**\n     * Determines if the instance is in the current unit given.\n     *\n     * @example\n     * ```\n     * Carbon::now()->isCurrentUnit('hour'); // true\n     * Carbon::now()->subHours(2)->isCurrentUnit('hour'); // false\n     * ```\n     *\n     * @param string $unit The unit to test.\n     *\n     * @throws BadMethodCallException\n     */\n    public function isCurrentUnit(string $unit): bool;\n\n    /**\n     * Checks if this day is a specific day of the week.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::WEDNESDAY); // true\n     * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::FRIDAY); // false\n     * Carbon::parse('2019-07-17')->isDayOfWeek('Wednesday'); // true\n     * Carbon::parse('2019-07-17')->isDayOfWeek('Friday'); // false\n     * ```\n     *\n     * @param int|string $dayOfWeek\n     *\n     * @return bool\n     */\n    public function isDayOfWeek($dayOfWeek): bool;\n\n    /**\n     * Determines if the instance is end of century (last day by default but interval can be customized).\n     */\n    public function isEndOfCentury(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Check if the instance is end of day.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(); // true\n     * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(); // true\n     * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(); // true\n     * Carbon::parse('2019-02-28 23:59:58.999999')->isEndOfDay(); // false\n     * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(true); // true\n     * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(true); // false\n     * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(true); // false\n     * ```\n     *\n     * @param bool                                                           $checkMicroseconds check time at microseconds precision\n     * @param Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval          if an interval is specified it will be used as precision\n     *                                                                                          for instance with \"15 minutes\", it checks if current date-time\n     *                                                                                          is in the last 15 minutes of the day, with Unit::Hour, it\n     *                                                                                          checks if it's in the last hour of the day.\n     */\n    public function isEndOfDay(Unit|DateInterval|Closure|CarbonConverterInterface|string|bool $checkMicroseconds = false, Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of decade (last day by default but interval can be customized).\n     */\n    public function isEndOfDecade(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of hour (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfHour(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of millennium (last day by default but interval can be customized).\n     */\n    public function isEndOfMillennium(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of millisecond (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfMillisecond(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of minute (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfMinute(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of month (last day by default but interval can be customized).\n     */\n    public function isEndOfMonth(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of quarter (last day by default but interval can be customized).\n     */\n    public function isEndOfQuarter(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is end of second (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfSecond(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Returns true if the date was created using CarbonImmutable::endOfTime()\n     *\n     * @return bool\n     */\n    public function isEndOfTime(): bool;\n\n    /**\n     * Check if the instance is end of a given unit (tolerating a given interval).\n     *\n     * @example\n     * ```\n     * // Check if a date-time is the last 15 minutes of the hour it's in\n     * Carbon::parse('2019-02-28 20:13:00')->isEndOfUnit(Unit::Hour, '15 minutes'); // false\n     * ```\n     */\n    public function isEndOfUnit(Unit $unit, Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null, mixed ...$params): bool;\n\n    /**\n     * Determines if the instance is end of week (last day by default but interval can be customized).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2024-08-31')->endOfWeek()->isEndOfWeek(); // true\n     * Carbon::parse('2024-08-31')->isEndOfWeek(); // false\n     * ```\n     */\n    public function isEndOfWeek(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null, WeekDay|int|null $weekEndsAt = null): bool;\n\n    /**\n     * Determines if the instance is end of year (last day by default but interval can be customized).\n     */\n    public function isEndOfYear(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is in the future, ie. greater (after) than now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->addHours(5)->isFuture(); // true\n     * Carbon::now()->subHours(5)->isFuture(); // false\n     * ```\n     */\n    public function isFuture(): bool;\n\n    /**\n     * Returns true if the current class/instance is immutable.\n     */\n    public static function isImmutable(): bool;\n\n    /**\n     * Check if today is the last day of the Month\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28')->isLastOfMonth(); // true\n     * Carbon::parse('2019-03-28')->isLastOfMonth(); // false\n     * Carbon::parse('2019-03-30')->isLastOfMonth(); // false\n     * Carbon::parse('2019-03-31')->isLastOfMonth(); // true\n     * Carbon::parse('2019-04-30')->isLastOfMonth(); // true\n     * ```\n     */\n    public function isLastOfMonth(): bool;\n\n    /**\n     * Determines if the instance is a leap year.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2020-01-01')->isLeapYear(); // true\n     * Carbon::parse('2019-01-01')->isLeapYear(); // false\n     * ```\n     */\n    public function isLeapYear(): bool;\n\n    /**\n     * Determines if the instance is a long year (using ISO 8601 year).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2015-01-01')->isLongIsoYear(); // true\n     * Carbon::parse('2016-01-01')->isLongIsoYear(); // true\n     * Carbon::parse('2016-01-03')->isLongIsoYear(); // false\n     * Carbon::parse('2019-12-29')->isLongIsoYear(); // false\n     * Carbon::parse('2019-12-30')->isLongIsoYear(); // true\n     * ```\n     *\n     * @see https://en.wikipedia.org/wiki/ISO_8601#Week_dates\n     */\n    public function isLongIsoYear(): bool;\n\n    /**\n     * Determines if the instance is a long year (using calendar year).\n     *\n     * ⚠️ This method completely ignores month and day to use the numeric year number,\n     * it's not correct if the exact date matters. For instance as `2019-12-30` is already\n     * in the first week of the 2020 year, if you want to know from this date if ISO week\n     * year 2020 is a long year, use `isLongIsoYear` instead.\n     *\n     * @example\n     * ```\n     * Carbon::create(2015)->isLongYear(); // true\n     * Carbon::create(2016)->isLongYear(); // false\n     * ```\n     *\n     * @see https://en.wikipedia.org/wiki/ISO_8601#Week_dates\n     */\n    public function isLongYear(): bool;\n\n    /**\n     * Check if the instance is midday.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 11:59:59.999999')->isMidday(); // false\n     * Carbon::parse('2019-02-28 12:00:00')->isMidday(); // true\n     * Carbon::parse('2019-02-28 12:00:00.999999')->isMidday(); // true\n     * Carbon::parse('2019-02-28 12:00:01')->isMidday(); // false\n     * ```\n     */\n    public function isMidday(): bool;\n\n    /**\n     * Check if the instance is start of day / midnight.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 00:00:00')->isMidnight(); // true\n     * Carbon::parse('2019-02-28 00:00:00.999999')->isMidnight(); // true\n     * Carbon::parse('2019-02-28 00:00:01')->isMidnight(); // false\n     * ```\n     */\n    public function isMidnight(): bool;\n\n    /**\n     * Returns true if a property can be changed via setter.\n     *\n     * @param string $unit\n     *\n     * @return bool\n     */\n    public static function isModifiableUnit($unit): bool;\n\n    /**\n     * Returns true if the current class/instance is mutable.\n     */\n    public static function isMutable(): bool;\n\n    /**\n     * Determines if the instance is now or in the future, ie. greater (after) than or equal to now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->isNowOrFuture(); // true\n     * Carbon::now()->addHours(5)->isNowOrFuture(); // true\n     * Carbon::now()->subHours(5)->isNowOrFuture(); // false\n     * ```\n     */\n    public function isNowOrFuture(): bool;\n\n    /**\n     * Determines if the instance is now or in the past, ie. less (before) than or equal to now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->isNowOrPast(); // true\n     * Carbon::now()->subHours(5)->isNowOrPast(); // true\n     * Carbon::now()->addHours(5)->isNowOrPast(); // false\n     * ```\n     */\n    public function isNowOrPast(): bool;\n\n    /**\n     * Determines if the instance is in the past, ie. less (before) than now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->subHours(5)->isPast(); // true\n     * Carbon::now()->addHours(5)->isPast(); // false\n     * ```\n     */\n    public function isPast(): bool;\n\n    /**\n     * Compares the formatted values of the two dates.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-12-13')); // true\n     * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-06-14')); // false\n     * ```\n     *\n     * @param string                   $format date formats to compare.\n     * @param DateTimeInterface|string $date   instance to compare with or null to use current day.\n     */\n    public function isSameAs(string $format, DateTimeInterface|string $date): bool;\n\n    /**\n     * Checks if the passed in date is in the same month as the instance´s month.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-01-01')); // true\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-02-01')); // false\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01')); // false\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01'), false); // true\n     * ```\n     *\n     * @param DateTimeInterface|string $date       The instance to compare with or null to use the current date.\n     * @param bool                     $ofSameYear Check if it is the same month in the same year.\n     *\n     * @return bool\n     */\n    public function isSameMonth(DateTimeInterface|string $date, bool $ofSameYear = true): bool;\n\n    /**\n     * Checks if the passed in date is in the same quarter as the instance quarter (and year if needed).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-03-01')); // true\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-04-01')); // false\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01')); // false\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01'), false); // true\n     * ```\n     *\n     * @param DateTimeInterface|string $date       The instance to compare with or null to use current day.\n     * @param bool                     $ofSameYear Check if it is the same month in the same year.\n     *\n     * @return bool\n     */\n    public function isSameQuarter(DateTimeInterface|string $date, bool $ofSameYear = true): bool;\n\n    /**\n     * Determines if the instance is in the current unit given.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-01-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // true\n     * Carbon::parse('2018-12-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // false\n     * ```\n     *\n     * @param string                   $unit singular unit string\n     * @param DateTimeInterface|string $date instance to compare with or null to use current day.\n     *\n     * @throws BadComparisonUnitException\n     *\n     * @return bool\n     */\n    public function isSameUnit(string $unit, DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is start of century (first day by default but interval can be customized).\n     */\n    public function isStartOfCentury(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Check if the instance is start of day / midnight.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 00:00:00')->isStartOfDay(); // true\n     * Carbon::parse('2019-02-28 00:00:00.999999')->isStartOfDay(); // true\n     * Carbon::parse('2019-02-28 00:00:01')->isStartOfDay(); // false\n     * Carbon::parse('2019-02-28 00:00:00.000000')->isStartOfDay(true); // true\n     * Carbon::parse('2019-02-28 00:00:00.000012')->isStartOfDay(true); // false\n     * ```\n     *\n     * @param bool                                                           $checkMicroseconds check time at microseconds precision\n     * @param Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval          if an interval is specified it will be used as precision\n     *                                                                                          for instance with \"15 minutes\", it checks if current date-time\n     *                                                                                          is in the last 15 minutes of the day, with Unit::Hour, it\n     *                                                                                          checks if it's in the last hour of the day.\n     */\n    public function isStartOfDay(Unit|DateInterval|Closure|CarbonConverterInterface|string|bool $checkMicroseconds = false, Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of decade (first day by default but interval can be customized).\n     */\n    public function isStartOfDecade(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of hour (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfHour(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of millennium (first day by default but interval can be customized).\n     */\n    public function isStartOfMillennium(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of millisecond (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfMillisecond(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of minute (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfMinute(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of month (first day by default but interval can be customized).\n     */\n    public function isStartOfMonth(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of quarter (first day by default but interval can be customized).\n     */\n    public function isStartOfQuarter(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Determines if the instance is start of second (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfSecond(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Returns true if the date was created using CarbonImmutable::startOfTime()\n     *\n     * @return bool\n     */\n    public function isStartOfTime(): bool;\n\n    /**\n     * Check if the instance is start of a given unit (tolerating a given interval).\n     *\n     * @example\n     * ```\n     * // Check if a date-time is the first 15 minutes of the hour it's in\n     * Carbon::parse('2019-02-28 20:13:00')->isStartOfUnit(Unit::Hour, '15 minutes'); // true\n     * ```\n     */\n    public function isStartOfUnit(Unit $unit, Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null, mixed ...$params): bool;\n\n    /**\n     * Determines if the instance is start of week (first day by default but interval can be customized).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2024-08-31')->startOfWeek()->isStartOfWeek(); // true\n     * Carbon::parse('2024-08-31')->isStartOfWeek(); // false\n     * ```\n     */\n    public function isStartOfWeek(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null, WeekDay|int|null $weekStartsAt = null): bool;\n\n    /**\n     * Determines if the instance is start of year (first day by default but interval can be customized).\n     */\n    public function isStartOfYear(Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null): bool;\n\n    /**\n     * Returns true if the strict mode is globally in use, false else.\n     * (It can be overridden in specific instances.)\n     *\n     * @return bool\n     */\n    public static function isStrictModeEnabled(): bool;\n\n    /**\n     * Determines if the instance is today.\n     *\n     * @example\n     * ```\n     * Carbon::today()->isToday(); // true\n     * Carbon::tomorrow()->isToday(); // false\n     * ```\n     */\n    public function isToday(): bool;\n\n    /**\n     * Determines if the instance is tomorrow.\n     *\n     * @example\n     * ```\n     * Carbon::tomorrow()->isTomorrow(); // true\n     * Carbon::yesterday()->isTomorrow(); // false\n     * ```\n     */\n    public function isTomorrow(): bool;\n\n    /**\n     * Determines if the instance is a weekday.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-07-14')->isWeekday(); // false\n     * Carbon::parse('2019-07-15')->isWeekday(); // true\n     * ```\n     */\n    public function isWeekday(): bool;\n\n    /**\n     * Determines if the instance is a weekend day.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-07-14')->isWeekend(); // true\n     * Carbon::parse('2019-07-15')->isWeekend(); // false\n     * ```\n     */\n    public function isWeekend(): bool;\n\n    /**\n     * Determines if the instance is yesterday.\n     *\n     * @example\n     * ```\n     * Carbon::yesterday()->isYesterday(); // true\n     * Carbon::tomorrow()->isYesterday(); // false\n     * ```\n     */\n    public function isYesterday(): bool;\n\n    /**\n     * Format in the current language using ISO replacement patterns.\n     *\n     * @param string|null $originalFormat provide context if a chunk has been passed alone\n     */\n    public function isoFormat(string $format, ?string $originalFormat = null): string;\n\n    /**\n     * Get/set the week number using given first day of week and first\n     * day of year included in the first week. Or use ISO format if no settings\n     * given.\n     *\n     * @param int|null $week\n     * @param int|null $dayOfWeek\n     * @param int|null $dayOfYear\n     *\n     * @return int|static\n     */\n    public function isoWeek($week = null, $dayOfWeek = null, $dayOfYear = null);\n\n    /**\n     * Set/get the week number of year using given first day of week and first\n     * day of year included in the first week. Or use ISO format if no settings\n     * given.\n     *\n     * @param int|null $year      if null, act as a getter, if not null, set the year and return current instance.\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int|static\n     */\n    public function isoWeekYear($year = null, $dayOfWeek = null, $dayOfYear = null);\n\n    /**\n     * Get/set the ISO weekday from 1 (Monday) to 7 (Sunday).\n     *\n     * @param WeekDay|int|null $value new value for weekday if using as setter.\n     */\n    public function isoWeekday(WeekDay|int|null $value = null): static|int;\n\n    /**\n     * Get the number of weeks of the current week-year using given first day of week and first\n     * day of year included in the first week. Or use ISO format if no settings\n     * given.\n     *\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int\n     */\n    public function isoWeeksInYear($dayOfWeek = null, $dayOfYear = null);\n\n    /**\n     * Prepare the object for JSON serialization.\n     */\n    public function jsonSerialize(): mixed;\n\n    /**\n     * Modify to the last occurrence of a given day of the week\n     * in the current month. If no dayOfWeek is provided, modify to the\n     * last day of the current month.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek\n     *\n     * @return static\n     */\n    public function lastOfMonth($dayOfWeek = null);\n\n    /**\n     * Modify to the last occurrence of a given day of the week\n     * in the current quarter. If no dayOfWeek is provided, modify to the\n     * last day of the current quarter.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function lastOfQuarter($dayOfWeek = null);\n\n    /**\n     * Modify to the last occurrence of a given day of the week\n     * in the current year. If no dayOfWeek is provided, modify to the\n     * last day of the current year.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function lastOfYear($dayOfWeek = null);\n\n    /**\n     * Determines if the instance is less (before) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:17'); // true\n     * ```\n     */\n    public function lessThan(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is less (before) or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:17'); // true\n     * ```\n     */\n    public function lessThanOrEqualTo(DateTimeInterface|string $date): bool;\n\n    /**\n     * Get/set the locale for the current instance.\n     *\n     * @param string|null $locale\n     * @param string      ...$fallbackLocales\n     *\n     * @return $this|string\n     */\n    public function locale(?string $locale = null, string ...$fallbackLocales): static|string;\n\n    /**\n     * Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow).\n     * Support is considered enabled if the 3 words are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasDiffOneDayWords(string $locale): bool;\n\n    /**\n     * Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after).\n     * Support is considered enabled if the 4 sentences are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasDiffSyntax(string $locale): bool;\n\n    /**\n     * Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow).\n     * Support is considered enabled if the 2 words are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasDiffTwoDayWords(string $locale): bool;\n\n    /**\n     * Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X).\n     * Support is considered enabled if the 4 sentences are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasPeriodSyntax($locale);\n\n    /**\n     * Returns true if the given locale is internally supported and has short-units support.\n     * Support is considered enabled if either year, day or hour has a short variant translated.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasShortUnits(string $locale): bool;\n\n    /**\n     * Determines if the instance is less (before) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see lessThan()\n     */\n    public function lt(DateTimeInterface|string $date): bool;\n\n    /**\n     * Determines if the instance is less (before) or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see lessThanOrEqualTo()\n     */\n    public function lte(DateTimeInterface|string $date): bool;\n\n    /**\n     * Register a custom macro.\n     *\n     * Pass null macro to remove it.\n     *\n     * @example\n     * ```\n     * $userSettings = [\n     *   'locale' => 'pt',\n     *   'timezone' => 'America/Sao_Paulo',\n     * ];\n     * Carbon::macro('userFormat', function () use ($userSettings) {\n     *   return $this->copy()->locale($userSettings['locale'])->tz($userSettings['timezone'])->calendar();\n     * });\n     * echo Carbon::yesterday()->hours(11)->userFormat();\n     * ```\n     *\n     * @param-closure-this static $macro\n     */\n    public static function macro(string $name, ?callable $macro): void;\n\n    /**\n     * Make a Carbon instance from given variable if possible.\n     *\n     * Always return a new instance. Parse only strings and only these likely to be dates (skip intervals\n     * and recurrences). Throw an exception for invalid format, but otherwise return null.\n     *\n     * @param mixed $var\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function make($var, DateTimeZone|string|null $timezone = null): ?static;\n\n    /**\n     * Get the maximum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @return static\n     */\n    public function max($date = null);\n\n    /**\n     * Get the maximum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @see max()\n     *\n     * @return static\n     */\n    public function maximum($date = null);\n\n    /**\n     * Return the meridiem of the current time in the current locale.\n     *\n     * @param bool $isLower if true, returns lowercase variant if available in the current locale.\n     */\n    public function meridiem(bool $isLower = false): string;\n\n    /**\n     * Modify to midday, default to self::$midDayAt\n     *\n     * @return static\n     */\n    public function midDay();\n\n    /**\n     * Get the minimum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @return static\n     */\n    public function min($date = null);\n\n    /**\n     * Get the minimum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @see min()\n     *\n     * @return static\n     */\n    public function minimum($date = null);\n\n    /**\n     * Mix another object into the class.\n     *\n     * @example\n     * ```\n     * Carbon::mixin(new class {\n     *   public function addMoon() {\n     *     return function () {\n     *       return $this->addDays(30);\n     *     };\n     *   }\n     *   public function subMoon() {\n     *     return function () {\n     *       return $this->subDays(30);\n     *     };\n     *   }\n     * });\n     * $fullMoon = Carbon::create('2018-12-22');\n     * $nextFullMoon = $fullMoon->addMoon();\n     * $blackMoon = Carbon::create('2019-01-06');\n     * $previousBlackMoon = $blackMoon->subMoon();\n     * echo \"$nextFullMoon\\n\";\n     * echo \"$previousBlackMoon\\n\";\n     * ```\n     *\n     * @throws ReflectionException\n     */\n    public static function mixin(object|string $mixin): void;\n\n    /**\n     * Calls \\DateTime::modify if mutable or \\DateTimeImmutable::modify else.\n     *\n     * @see https://php.net/manual/en/datetime.modify.php\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public function modify($modify);\n\n    /**\n     * Determines if the instance is not equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->ne(Carbon::parse('2018-07-25 12:45:16')); // false\n     * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see notEqualTo()\n     */\n    public function ne(DateTimeInterface|string $date): bool;\n\n    /**\n     * Modify to the next occurrence of a given modifier such as a day of\n     * the week. If no modifier is provided, modify to the next occurrence\n     * of the current day of the week. Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param string|int|null $modifier\n     *\n     * @return static\n     */\n    public function next($modifier = null);\n\n    /**\n     * Go forward to the next weekday.\n     *\n     * @return static\n     */\n    public function nextWeekday();\n\n    /**\n     * Go forward to the next weekend day.\n     *\n     * @return static\n     */\n    public function nextWeekendDay();\n\n    /**\n     * Determines if the instance is not equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->notEqualTo(Carbon::parse('2018-07-25 12:45:16')); // false\n     * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:17'); // true\n     * ```\n     */\n    public function notEqualTo(DateTimeInterface|string $date): bool;\n\n    /**\n     * Get a Carbon instance for the current date and time.\n     */\n    public static function now(DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Returns a present instance in the same timezone.\n     *\n     * @return static\n     */\n    public function nowWithSameTz(): static;\n\n    /**\n     * Modify to the given occurrence of a given day of the week\n     * in the current month. If the calculated occurrence is outside the scope\n     * of the current month, then return false and no modifications are made.\n     * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int $nth\n     * @param int $dayOfWeek\n     *\n     * @return mixed\n     */\n    public function nthOfMonth($nth, $dayOfWeek);\n\n    /**\n     * Modify to the given occurrence of a given day of the week\n     * in the current quarter. If the calculated occurrence is outside the scope\n     * of the current quarter, then return false and no modifications are made.\n     * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int $nth\n     * @param int $dayOfWeek\n     *\n     * @return mixed\n     */\n    public function nthOfQuarter($nth, $dayOfWeek);\n\n    /**\n     * Modify to the given occurrence of a given day of the week\n     * in the current year. If the calculated occurrence is outside the scope\n     * of the current year, then return false and no modifications are made.\n     * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int $nth\n     * @param int $dayOfWeek\n     *\n     * @return mixed\n     */\n    public function nthOfYear($nth, $dayOfWeek);\n\n    /**\n     * Return a property with its ordinal.\n     */\n    public function ordinal(string $key, ?string $period = null): string;\n\n    /**\n     * Create a carbon instance from a string.\n     *\n     * This is an alias for the constructor that allows better fluent syntax\n     * as it allows you to do Carbon::parse('Monday next week')->fn() rather\n     * than (new Carbon('Monday next week'))->fn().\n     *\n     * @throws InvalidFormatException\n     */\n    public static function parse(DateTimeInterface|WeekDay|Month|string|int|float|null $time, DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.).\n     *\n     * @param string                       $time     date/time string in the given language (may also contain English).\n     * @param string|null                  $locale   if locale is null or not specified, current global locale will be\n     *                                               used instead.\n     * @param DateTimeZone|string|int|null $timezone optional timezone for the new instance.\n     *\n     * @throws InvalidFormatException\n     */\n    public static function parseFromLocale(string $time, ?string $locale = null, DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Returns standardized plural of a given singular/plural unit name (in English).\n     */\n    public static function pluralUnit(string $unit): string;\n\n    /**\n     * Modify to the previous occurrence of a given modifier such as a day of\n     * the week. If no dayOfWeek is provided, modify to the previous occurrence\n     * of the current day of the week. Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param string|int|null $modifier\n     *\n     * @return static\n     */\n    public function previous($modifier = null);\n\n    /**\n     * Go backward to the previous weekday.\n     *\n     * @return static\n     */\n    public function previousWeekday();\n\n    /**\n     * Go backward to the previous weekend day.\n     *\n     * @return static\n     */\n    public function previousWeekendDay();\n\n    /**\n     * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval).\n     *\n     * @param \\DateTimeInterface|Carbon|CarbonImmutable|null $end      period end date\n     * @param int|\\DateInterval|string|null                  $interval period default interval or number of the given $unit\n     * @param string|null                                    $unit     if specified, $interval must be an integer\n     */\n    public function range($end = null, $interval = null, $unit = null): CarbonPeriod;\n\n    /**\n     * Call native PHP DateTime/DateTimeImmutable add() method.\n     *\n     * @param DateInterval $interval\n     *\n     * @return static\n     */\n    public function rawAdd(DateInterval $interval): static;\n\n    /**\n     * Create a Carbon instance from a specific format.\n     *\n     * @param string                       $format   Datetime format\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function rawCreateFromFormat(string $format, string $time, $timezone = null): ?static;\n\n    /**\n     * @see https://php.net/manual/en/datetime.format.php\n     */\n    public function rawFormat(string $format): string;\n\n    /**\n     * Create a carbon instance from a string.\n     *\n     * This is an alias for the constructor that allows better fluent syntax\n     * as it allows you to do Carbon::parse('Monday next week')->fn() rather\n     * than (new Carbon('Monday next week'))->fn().\n     *\n     * @throws InvalidFormatException\n     */\n    public static function rawParse(DateTimeInterface|WeekDay|Month|string|int|float|null $time, DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Call native PHP DateTime/DateTimeImmutable sub() method.\n     */\n    public function rawSub(DateInterval $interval): static;\n\n    /**\n     * Remove all macros and generic macros.\n     */\n    public static function resetMacros(): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Reset the month overflow behavior.\n     *\n     * @return void\n     */\n    public static function resetMonthsOverflow(): void;\n\n    /**\n     * Reset the format used to the default when type juggling a Carbon instance to a string\n     *\n     * @return void\n     */\n    public static function resetToStringFormat(): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Reset the month overflow behavior.\n     *\n     * @return void\n     */\n    public static function resetYearsOverflow(): void;\n\n    /**\n     * Round the current instance second with given precision if specified.\n     */\n    public function round(DateInterval|string|int|float $precision = 1, callable|string $function = 'round'): static;\n\n    /**\n     * Round the current instance at the given unit with given precision if specified and the given function.\n     */\n    public function roundUnit(string $unit, DateInterval|string|int|float $precision = 1, callable|string $function = 'round'): static;\n\n    /**\n     * Round the current instance week.\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     */\n    public function roundWeek(WeekDay|int|null $weekStartsAt = null): static;\n\n    /**\n     * The number of seconds since midnight.\n     *\n     * @return float\n     */\n    public function secondsSinceMidnight(): float;\n\n    /**\n     * The number of seconds until 23:59:59.\n     *\n     * @return float\n     */\n    public function secondsUntilEndOfDay(): float;\n\n    /**\n     * Return a serialized string of the instance.\n     */\n    public function serialize(): string;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather transform Carbon object before the serialization.\n     *\n     * JSON serialize all Carbon instances using the given callback.\n     */\n    public static function serializeUsing(callable|string|null $format): void;\n\n    /**\n     * Set a part of the Carbon object.\n     *\n     * @throws ImmutableException|UnknownSetterException\n     *\n     * @return $this\n     */\n    public function set(Unit|array|string $name, DateTimeZone|Month|string|int|float|null $value = null): static;\n\n    /**\n     * Set the date with gregorian year, month and day numbers.\n     *\n     * @see https://php.net/manual/en/datetime.setdate.php\n     */\n    public function setDate(int $year, int $month, int $day): static;\n\n    /**\n     * Set the year, month, and date for this instance to that of the passed instance.\n     */\n    public function setDateFrom(DateTimeInterface|string $date): static;\n\n    /**\n     * Set the date and time all together.\n     */\n    public function setDateTime(int $year, int $month, int $day, int $hour, int $minute, int $second = 0, int $microseconds = 0): static;\n\n    /**\n     * Set the date and time for this instance to that of the passed instance.\n     */\n    public function setDateTimeFrom(DateTimeInterface|string $date): static;\n\n    /**\n     * Set the day (keeping the current time) to the start of the week + the number of days passed as the first\n     * parameter. First day of week is driven by the locale unless explicitly set with the second parameter.\n     *\n     * @param int              $numberOfDays number of days to add after the start of the current week\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week,\n     *                                       if not provided, start of week is inferred from the locale\n     *                                       (Sunday for en_US, Monday for de_DE, etc.)\n     */\n    public function setDaysFromStartOfWeek(int $numberOfDays, WeekDay|int|null $weekStartsAt = null): static;\n\n    /**\n     * Set the fallback locale.\n     *\n     * @see https://symfony.com/doc/current/components/translation.html#fallback-locales\n     *\n     * @param string $locale\n     */\n    public static function setFallbackLocale(string $locale): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     */\n    public static function setHumanDiffOptions(int $humanDiffOptions): void;\n\n    /**\n     * Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.\n     *\n     * @see https://php.net/manual/en/datetime.setisodate.php\n     */\n    public function setISODate(int $year, int $week, int $day = 1): static;\n\n    /**\n     * Set the translator for the current instance.\n     */\n    public function setLocalTranslator(TranslatorInterface $translator);\n\n    /**\n     * Set the current translator locale and indicate if the source locale file exists.\n     * Pass 'auto' as locale to use the closest language to the current LC_TIME locale.\n     *\n     * @param string $locale locale ex. en\n     */\n    public static function setLocale(string $locale): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather consider mid-day is always 12pm, then if you need to test if it's an other\n     *             hour, test it explicitly:\n     *                 $date->format('G') == 13\n     *             or to set explicitly to a given hour:\n     *                 $date->setTime(13, 0, 0, 0)\n     *\n     * Set midday/noon hour\n     *\n     * @param int $hour midday hour\n     *\n     * @return void\n     */\n    public static function setMidDayAt($hour);\n\n    /**\n     * Set a Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.  The provided instance will be returned\n     * specifically under the following conditions:\n     *   - A call to the static now() method, ex. Carbon::now()\n     *   - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null)\n     *   - When the string \"now\" is passed to the constructor or parse(), ex. new Carbon('now')\n     *   - When a string containing the desired time is passed to Carbon::parse().\n     *\n     * Note the timezone parameter was left out of the examples above and\n     * has no affect as the mock value will be returned regardless of its value.\n     *\n     * Only the moment is mocked with setTestNow(), the timezone will still be the one passed\n     * as parameter of date_default_timezone_get() as a fallback (see setTestNowAndTimezone()).\n     *\n     * To clear the test instance call this method using the default\n     * parameter of null.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow real or mock Carbon instance\n     */\n    public static function setTestNow(mixed $testNow = null): void;\n\n    /**\n     * Set a Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.  The provided instance will be returned\n     * specifically under the following conditions:\n     *   - A call to the static now() method, ex. Carbon::now()\n     *   - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null)\n     *   - When the string \"now\" is passed to the constructor or parse(), ex. new Carbon('now')\n     *   - When a string containing the desired time is passed to Carbon::parse().\n     *\n     * It will also align default timezone (e.g. call date_default_timezone_set()) with\n     * the second argument or if null, with the timezone of the given date object.\n     *\n     * To clear the test instance call this method using the default\n     * parameter of null.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow real or mock Carbon instance\n     */\n    public static function setTestNowAndTimezone($testNow = null, $timezone = null): void;\n\n    /**\n     * Resets the current time of the DateTime object to a different time.\n     *\n     * @see https://php.net/manual/en/datetime.settime.php\n     */\n    public function setTime(int $hour, int $minute, int $second = 0, int $microseconds = 0): static;\n\n    /**\n     * Set the hour, minute, second and microseconds for this instance to that of the passed instance.\n     */\n    public function setTimeFrom(DateTimeInterface|string $date): static;\n\n    /**\n     * Set the time by time string.\n     */\n    public function setTimeFromTimeString(string $time): static;\n\n    /**\n     * Set the instance's timestamp.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public function setTimestamp(string|int|float $timestamp): static;\n\n    /**\n     * Set the instance's timezone from a string or object.\n     */\n    public function setTimezone(DateTimeZone|string|int $timeZone): static;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather let Carbon object being cast to string with DEFAULT_TO_STRING_FORMAT, and\n     *             use other method or custom format passed to format() method if you need to dump another string\n     *             format.\n     *\n     * Set the default format used when type juggling a Carbon instance to a string.\n     *\n     * @param string|Closure|null $format\n     *\n     * @return void\n     */\n    public static function setToStringFormat(Closure|string|null $format): void;\n\n    /**\n     * Set the default translator instance to use.\n     *\n     * @param TranslatorInterface $translator\n     *\n     * @return void\n     */\n    public static function setTranslator(TranslatorInterface $translator): void;\n\n    /**\n     * Set specified unit to new given value.\n     *\n     * @param string    $unit  year, month, day, hour, minute, second or microsecond\n     * @param Month|int $value new value for given unit\n     */\n    public function setUnit(string $unit, Month|int|float|null $value = null): static;\n\n    /**\n     * Set any unit to a new value without overflowing current other unit given.\n     *\n     * @param string $valueUnit    unit name to modify\n     * @param int    $value        new value for the input unit\n     * @param string $overflowUnit unit name to not overflow\n     */\n    public function setUnitNoOverflow(string $valueUnit, int $value, string $overflowUnit): static;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather consider week-end is always saturday and sunday, and if you have some custom\n     *             week-end days to handle, give to those days an other name and create a macro for them:\n     *\n     *             ```\n     *             Carbon::macro('isDayOff', function ($date) {\n     *                 return $date->isSunday() || $date->isMonday();\n     *             });\n     *             Carbon::macro('isNotDayOff', function ($date) {\n     *                 return !$date->isDayOff();\n     *             });\n     *             if ($someDate->isDayOff()) ...\n     *             if ($someDate->isNotDayOff()) ...\n     *             // Add 5 not-off days\n     *             $count = 5;\n     *             while ($someDate->isDayOff() || ($count-- > 0)) {\n     *                 $someDate->addDay();\n     *             }\n     *             ```\n     *\n     * Set weekend days\n     */\n    public static function setWeekendDays(array $days): void;\n\n    /**\n     * Set specific options.\n     *  - strictMode: true|false|null\n     *  - monthOverflow: true|false|null\n     *  - yearOverflow: true|false|null\n     *  - humanDiffOptions: int|null\n     *  - toStringFormat: string|Closure|null\n     *  - toJsonFormat: string|Closure|null\n     *  - locale: string|null\n     *  - timezone: \\DateTimeZone|string|int|null\n     *  - macros: array|null\n     *  - genericMacros: array|null\n     *\n     * @param array $settings\n     *\n     * @return $this|static\n     */\n    public function settings(array $settings): static;\n\n    /**\n     * Set the instance's timezone from a string or object and add/subtract the offset difference.\n     */\n    public function shiftTimezone(DateTimeZone|string $value): static;\n\n    /**\n     * Get the month overflow global behavior (can be overridden in specific instances).\n     *\n     * @return bool\n     */\n    public static function shouldOverflowMonths(): bool;\n\n    /**\n     * Get the month overflow global behavior (can be overridden in specific instances).\n     *\n     * @return bool\n     */\n    public static function shouldOverflowYears(): bool;\n\n    /**\n     * @alias diffForHumans\n     *\n     * Get the difference in a human readable format in the current locale from current instance to an other\n     * instance given (or now if null given).\n     */\n    public function since($other = null, $syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * Returns standardized singular of a given singular/plural unit name (in English).\n     */\n    public static function singularUnit(string $unit): string;\n\n    public static function sleep(int|float $seconds): void;\n\n    /**\n     * Modify to start of current given unit.\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOf(Unit::Month)\n     *   ->endOf(Unit::Week, Carbon::FRIDAY);\n     * ```\n     */\n    public function startOf(Unit|string $unit, mixed ...$params): static;\n\n    /**\n     * Resets the date to the first day of the century and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfCentury();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfCentury();\n\n    /**\n     * Resets the time to 00:00:00 start of day\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfDay();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfDay();\n\n    /**\n     * Resets the date to the first day of the decade and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfDecade();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfDecade();\n\n    /**\n     * Modify to start of current hour, minutes and seconds become 0\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfHour();\n     * ```\n     */\n    public function startOfHour(): static;\n\n    /**\n     * Resets the date to the first day of the millennium and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfMillennium();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfMillennium();\n\n    /**\n     * Modify to start of current millisecond, microseconds such as 12345 become 123000\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function startOfMillisecond(): static;\n\n    /**\n     * Modify to start of current minute, seconds become 0\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfMinute();\n     * ```\n     */\n    public function startOfMinute(): static;\n\n    /**\n     * Resets the date to the first day of the month and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfMonth();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfMonth();\n\n    /**\n     * Resets the date to the first day of the quarter and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfQuarter();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfQuarter();\n\n    /**\n     * Modify to start of current second, microseconds become 0\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function startOfSecond(): static;\n\n    /**\n     * Resets the date to the first day of week (defined in $weekStartsAt) and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->startOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek(Carbon::SUNDAY) . \"\\n\";\n     * ```\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     *\n     * @return static\n     */\n    public function startOfWeek(WeekDay|int|null $weekStartsAt = null): static;\n\n    /**\n     * Resets the date to the first day of the year and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfYear();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfYear();\n\n    /**\n     * Subtract given units or interval to the current instance.\n     *\n     * @example $date->sub('hour', 3)\n     * @example $date->sub(15, 'days')\n     * @example $date->sub(CarbonInterval::days(4))\n     *\n     * @param Unit|int|string|DateInterval|Closure|CarbonConverterInterface $unit\n     * @param Unit|int|float|string                                         $value\n     * @param bool|null                                                     $overflow\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public function sub($unit, $value = 1, ?bool $overflow = null): static;\n\n    /**\n     * @deprecated Prefer to use add subUTCUnit() which more accurately defines what it's doing.\n     *\n     * Subtract seconds to the instance using timestamp. Positive $value travels\n     * into the past while negative $value travels forward.\n     *\n     * @param string $unit\n     * @param int    $value\n     *\n     * @return static\n     */\n    public function subRealUnit($unit, $value = 1): static;\n\n    /**\n     * Subtract seconds to the instance using timestamp. Positive $value travels\n     * into the past while negative $value travels forward.\n     *\n     * @param string $unit\n     * @param int    $value\n     *\n     * @return static\n     */\n    public function subUTCUnit($unit, $value = 1): static;\n\n    /**\n     * Subtract given units to the current instance.\n     */\n    public function subUnit(Unit|string $unit, $value = 1, ?bool $overflow = null): static;\n\n    /**\n     * Subtract any unit to a new value without overflowing current other unit given.\n     *\n     * @param string $valueUnit    unit name to modify\n     * @param int    $value        amount to subtract to the input unit\n     * @param string $overflowUnit unit name to not overflow\n     */\n    public function subUnitNoOverflow(string $valueUnit, int $value, string $overflowUnit): static;\n\n    /**\n     * Subtract given units or interval to the current instance.\n     *\n     * @see sub()\n     *\n     * @param Unit|int|string|DateInterval $unit\n     * @param Unit|int|float|string        $value\n     * @param bool|null                    $overflow\n     *\n     * @return static\n     */\n    public function subtract($unit, $value = 1, ?bool $overflow = null): static;\n\n    /**\n     * Get the difference in a human-readable format in the current locale from current instance to another\n     * instance given (or now if null given).\n     *\n     * @return string\n     */\n    public function timespan($other = null, $timezone = null): string;\n\n    /**\n     * Set the instance's timestamp.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public function timestamp(string|int|float $timestamp): static;\n\n    /**\n     * @alias setTimezone\n     */\n    public function timezone(DateTimeZone|string|int $value): static;\n\n    /**\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given (or now if null given) to current instance.\n     *\n     * When comparing a value in the past to default now:\n     * 1 hour from now\n     * 5 months from now\n     *\n     * When comparing a value in the future to default now:\n     * 1 hour ago\n     * 5 months ago\n     *\n     * When comparing a value in the past to another value:\n     * 1 hour after\n     * 5 months after\n     *\n     * When comparing a value in the future to another value:\n     * 1 hour before\n     * 5 months before\n     *\n     * @param Carbon|\\DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                             if null passed, now will be used as comparison reference;\n     *                                                             if any other type, it will be converted to date and used as reference.\n     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                             - 'syntax' entry (see below)\n     *                                                             - 'short' entry (see below)\n     *                                                             - 'parts' entry (see below)\n     *                                                             - 'options' entry (see below)\n     *                                                             - 'join' entry determines how to join multiple parts of the string\n     *                                                             `  - if $join is a string, it's used as a joiner glue\n     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                             `    will be used instead of the glue for the last item\n     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                             `  - if $join is missing, a space will be used as glue\n     *                                                             - 'other' entry (see above)\n     *                                                             if int passed, it add modifiers:\n     *                                                             Possible values:\n     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                        $short   displays short format of time units\n     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                         $options human diff options\n     *\n     * @return string\n     */\n    public function to($other = null, $syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * Get default array representation.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toArray());\n     * ```\n     */\n    public function toArray(): array;\n\n    /**\n     * Format the instance as ATOM\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toAtomString();\n     * ```\n     */\n    public function toAtomString(): string;\n\n    /**\n     * Format the instance as COOKIE\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toCookieString();\n     * ```\n     */\n    public function toCookieString(): string;\n\n    /**\n     * @alias toDateTime\n     *\n     * Return native DateTime PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toDate());\n     * ```\n     */\n    public function toDate(): DateTime;\n\n    /**\n     * Format the instance as date\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDateString();\n     * ```\n     */\n    public function toDateString(): string;\n\n    /**\n     * Return native DateTime PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toDateTime());\n     * ```\n     */\n    public function toDateTime(): DateTime;\n\n    /**\n     * Return native toDateTimeImmutable PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toDateTimeImmutable());\n     * ```\n     */\n    public function toDateTimeImmutable(): DateTimeImmutable;\n\n    /**\n     * Format the instance as date and time T-separated with no timezone\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDateTimeLocalString();\n     * echo \"\\n\";\n     * echo Carbon::now()->toDateTimeLocalString('minute'); // You can specify precision among: minute, second, millisecond and microsecond\n     * ```\n     */\n    public function toDateTimeLocalString(string $unitPrecision = 'second'): string;\n\n    /**\n     * Format the instance as date and time\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDateTimeString();\n     * ```\n     */\n    public function toDateTimeString(string $unitPrecision = 'second'): string;\n\n    /**\n     * Format the instance with day, date and time\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDayDateTimeString();\n     * ```\n     */\n    public function toDayDateTimeString(): string;\n\n    /**\n     * Format the instance as a readable date\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toFormattedDateString();\n     * ```\n     */\n    public function toFormattedDateString(): string;\n\n    /**\n     * Format the instance with the day, and a readable date\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toFormattedDayDateString();\n     * ```\n     */\n    public function toFormattedDayDateString(): string;\n\n    /**\n     * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z, if $keepOffset truthy, offset will be kept:\n     * 1977-04-22T01:00:00-05:00).\n     *\n     * @example\n     * ```\n     * echo Carbon::now('America/Toronto')->toISOString() . \"\\n\";\n     * echo Carbon::now('America/Toronto')->toISOString(true) . \"\\n\";\n     * ```\n     *\n     * @param bool $keepOffset Pass true to keep the date offset. Else forced to UTC.\n     */\n    public function toISOString(bool $keepOffset = false): ?string;\n\n    /**\n     * Return a immutable copy of the instance.\n     *\n     * @return CarbonImmutable\n     */\n    public function toImmutable();\n\n    /**\n     * Format the instance as ISO8601\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toIso8601String();\n     * ```\n     */\n    public function toIso8601String(): string;\n\n    /**\n     * Convert the instance to UTC and return as Zulu ISO8601\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toIso8601ZuluString();\n     * ```\n     */\n    public function toIso8601ZuluString(string $unitPrecision = 'second'): string;\n\n    /**\n     * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z) with UTC timezone.\n     *\n     * @example\n     * ```\n     * echo Carbon::now('America/Toronto')->toJSON();\n     * ```\n     */\n    public function toJSON(): ?string;\n\n    /**\n     * Return a mutable copy of the instance.\n     *\n     * @return Carbon\n     */\n    public function toMutable();\n\n    /**\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given to now\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                           - 'syntax' entry (see below)\n     *                           - 'short' entry (see below)\n     *                           - 'parts' entry (see below)\n     *                           - 'options' entry (see below)\n     *                           - 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           if int passed, it add modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: 1: single part)\n     * @param int       $options human diff options\n     *\n     * @return string\n     */\n    public function toNow($syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * Get default object representation.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toObject());\n     * ```\n     */\n    public function toObject(): object;\n\n    /**\n     * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval).\n     *\n     * @param \\DateTimeInterface|Carbon|CarbonImmutable|int|null $end      period end date or recurrences count if int\n     * @param int|\\DateInterval|string|null                      $interval period default interval or number of the given $unit\n     * @param string|null                                        $unit     if specified, $interval must be an integer\n     */\n    public function toPeriod($end = null, $interval = null, $unit = null): CarbonPeriod;\n\n    /**\n     * Format the instance as RFC1036\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc1036String();\n     * ```\n     */\n    public function toRfc1036String(): string;\n\n    /**\n     * Format the instance as RFC1123\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc1123String();\n     * ```\n     */\n    public function toRfc1123String(): string;\n\n    /**\n     * Format the instance as RFC2822\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc2822String();\n     * ```\n     */\n    public function toRfc2822String(): string;\n\n    /**\n     * Format the instance as RFC3339.\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc3339String() . \"\\n\";\n     * echo Carbon::now()->toRfc3339String(true) . \"\\n\";\n     * ```\n     */\n    public function toRfc3339String(bool $extended = false): string;\n\n    /**\n     * Format the instance as RFC7231\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc7231String();\n     * ```\n     */\n    public function toRfc7231String(): string;\n\n    /**\n     * Format the instance as RFC822\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc822String();\n     * ```\n     */\n    public function toRfc822String(): string;\n\n    /**\n     * Format the instance as RFC850\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc850String();\n     * ```\n     */\n    public function toRfc850String(): string;\n\n    /**\n     * Format the instance as RSS\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRssString();\n     * ```\n     */\n    public function toRssString(): string;\n\n    /**\n     * Returns english human-readable complete date string.\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toString();\n     * ```\n     */\n    public function toString(): string;\n\n    /**\n     * Format the instance as time\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toTimeString();\n     * ```\n     */\n    public function toTimeString(string $unitPrecision = 'second'): string;\n\n    /**\n     * Format the instance as W3C\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toW3cString();\n     * ```\n     */\n    public function toW3cString(): string;\n\n    /**\n     * Create a Carbon instance for today.\n     */\n    public static function today(DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Create a Carbon instance for tomorrow.\n     */\n    public static function tomorrow(DateTimeZone|string|int|null $timezone = null): static;\n\n    /**\n     * Translate using translation string or callback available.\n     *\n     * @param string                   $key        key to find\n     * @param array                    $parameters replacement parameters\n     * @param string|int|float|null    $number     number if plural\n     * @param TranslatorInterface|null $translator an optional translator to use\n     * @param bool                     $altNumbers pass true to use alternative numbers\n     *\n     * @return string\n     */\n    public function translate(string $key, array $parameters = [], string|int|float|null $number = null, ?TranslatorInterface $translator = null, bool $altNumbers = false): string;\n\n    /**\n     * Returns the alternative number for a given integer if available in the current locale.\n     *\n     * @param int $number\n     *\n     * @return string\n     */\n    public function translateNumber(int $number): string;\n\n    /**\n     * Translate a time string from a locale to an other.\n     *\n     * @param string      $timeString date/time/duration string to translate (may also contain English)\n     * @param string|null $from       input locale of the $timeString parameter (`Carbon::getLocale()` by default)\n     * @param string|null $to         output locale of the result returned (`\"en\"` by default)\n     * @param int         $mode       specify what to translate with options:\n     *                                - self::TRANSLATE_ALL (default)\n     *                                - CarbonInterface::TRANSLATE_MONTHS\n     *                                - CarbonInterface::TRANSLATE_DAYS\n     *                                - CarbonInterface::TRANSLATE_UNITS\n     *                                - CarbonInterface::TRANSLATE_MERIDIEM\n     *                                You can use pipe to group: CarbonInterface::TRANSLATE_MONTHS | CarbonInterface::TRANSLATE_DAYS\n     *\n     * @return string\n     */\n    public static function translateTimeString(string $timeString, ?string $from = null, ?string $to = null, int $mode = self::TRANSLATE_ALL): string;\n\n    /**\n     * Translate a time string from the current locale (`$date->locale()`) to another one.\n     *\n     * @param string      $timeString time string to translate\n     * @param string|null $to         output locale of the result returned (\"en\" by default)\n     *\n     * @return string\n     */\n    public function translateTimeStringTo(string $timeString, ?string $to = null): string;\n\n    /**\n     * Translate using translation string or callback available.\n     *\n     * @param TranslatorInterface $translator an optional translator to use\n     * @param string              $key        key to find\n     * @param array               $parameters replacement parameters\n     * @param int|float|null      $number     number if plural\n     *\n     * @return string\n     */\n    public static function translateWith(TranslatorInterface $translator, string $key, array $parameters = [], $number = null): string;\n\n    /**\n     * Format as ->format() do (using date replacements patterns from https://php.net/manual/en/function.date.php)\n     * but translate words whenever possible (months, day names, etc.) using the current locale.\n     */\n    public function translatedFormat(string $format): string;\n\n    /**\n     * Set the timezone or returns the timezone name if no arguments passed.\n     *\n     * @return ($value is null ? string : static)\n     */\n    public function tz(DateTimeZone|string|int|null $value = null): static|string;\n\n    /**\n     * @alias getTimestamp\n     *\n     * Returns the UNIX timestamp for the current date.\n     *\n     * @return int\n     */\n    public function unix(): int;\n\n    /**\n     * @alias to\n     *\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given (or now if null given) to current instance.\n     *\n     * @param Carbon|\\DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                             if null passed, now will be used as comparison reference;\n     *                                                             if any other type, it will be converted to date and used as reference.\n     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                             - 'syntax' entry (see below)\n     *                                                             - 'short' entry (see below)\n     *                                                             - 'parts' entry (see below)\n     *                                                             - 'options' entry (see below)\n     *                                                             - 'join' entry determines how to join multiple parts of the string\n     *                                                             `  - if $join is a string, it's used as a joiner glue\n     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                             `    will be used instead of the glue for the last item\n     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                             `  - if $join is missing, a space will be used as glue\n     *                                                             - 'other' entry (see above)\n     *                                                             if int passed, it add modifiers:\n     *                                                             Possible values:\n     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                        $short   displays short format of time units\n     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                         $options human diff options\n     *\n     * @return string\n     */\n    public function until($other = null, $syntax = null, $short = false, $parts = 1, $options = null);\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Indicates if months should be calculated with overflow.\n     *\n     * @param bool $monthsOverflow\n     *\n     * @return void\n     */\n    public static function useMonthsOverflow(bool $monthsOverflow = true): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     *\n     * Enable the strict mode (or disable with passing false).\n     *\n     * @param bool $strictModeEnabled\n     */\n    public static function useStrictMode(bool $strictModeEnabled = true): void;\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Indicates if years should be calculated with overflow.\n     *\n     * @param bool $yearsOverflow\n     *\n     * @return void\n     */\n    public static function useYearsOverflow(bool $yearsOverflow = true): void;\n\n    /**\n     * Set the instance's timezone to UTC.\n     */\n    public function utc(): static;\n\n    /**\n     * Returns the minutes offset to UTC if no arguments passed, else set the timezone with given minutes shift passed.\n     */\n    public function utcOffset(?int $minuteOffset = null): static|int;\n\n    /**\n     * Returns the milliseconds timestamps used amongst other by Date javascript objects.\n     *\n     * @return float\n     */\n    public function valueOf(): float;\n\n    /**\n     * Get/set the week number using given first day of week and first\n     * day of year included in the first week. Or use US format if no settings\n     * given (Sunday / Jan 6).\n     *\n     * @param int|null $week\n     * @param int|null $dayOfWeek\n     * @param int|null $dayOfYear\n     *\n     * @return int|static\n     */\n    public function week($week = null, $dayOfWeek = null, $dayOfYear = null);\n\n    /**\n     * Set/get the week number of year using given first day of week and first\n     * day of year included in the first week. Or use US format if no settings\n     * given (Sunday / Jan 6).\n     *\n     * @param int|null $year      if null, act as a getter, if not null, set the year and return current instance.\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int|static\n     */\n    public function weekYear($year = null, $dayOfWeek = null, $dayOfYear = null);\n\n    /**\n     * Get/set the weekday from 0 (Sunday) to 6 (Saturday).\n     *\n     * @param WeekDay|int|null $value new value for weekday if using as setter.\n     */\n    public function weekday(WeekDay|int|null $value = null): static|int;\n\n    /**\n     * Get the number of weeks of the current week-year using given first day of week and first\n     * day of year included in the first week. Or use US format if no settings\n     * given (Sunday / Jan 6).\n     *\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int\n     */\n    public function weeksInYear($dayOfWeek = null, $dayOfYear = null);\n\n    /**\n     * Temporarily sets a static date to be used within the callback.\n     * Using setTestNow to set the date, executing the callback, then\n     * clearing the test instance.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @template T\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow  real or mock Carbon instance\n     * @param Closure(): T                                       $callback\n     *\n     * @return T\n     */\n    public static function withTestNow(mixed $testNow, callable $callback): mixed;\n\n    /**\n     * Create a Carbon instance for yesterday.\n     */\n    public static function yesterday(DateTimeZone|string|int|null $timezone = null): static;\n\n    // </methods>\n}\n"
  },
  {
    "path": "src/Carbon/CarbonInterval.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Constants\\UnitValue;\nuse Carbon\\Exceptions\\BadFluentConstructorException;\nuse Carbon\\Exceptions\\BadFluentSetterException;\nuse Carbon\\Exceptions\\InvalidCastException;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\InvalidIntervalException;\nuse Carbon\\Exceptions\\OutOfRangeException;\nuse Carbon\\Exceptions\\ParseErrorException;\nuse Carbon\\Exceptions\\UnitNotConfiguredException;\nuse Carbon\\Exceptions\\UnknownGetterException;\nuse Carbon\\Exceptions\\UnknownSetterException;\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Carbon\\Traits\\IntervalRounding;\nuse Carbon\\Traits\\IntervalStep;\nuse Carbon\\Traits\\LocalFactory;\nuse Carbon\\Traits\\MagicParameter;\nuse Carbon\\Traits\\Mixin;\nuse Carbon\\Traits\\Options;\nuse Carbon\\Traits\\ToStringFormat;\nuse Closure;\nuse DateInterval;\nuse DateTime;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Exception;\nuse InvalidArgumentException;\nuse ReflectionException;\nuse ReturnTypeWillChange;\nuse RuntimeException;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\nuse Throwable;\n\n/**\n * A simple API extension for DateInterval.\n * The implementation provides helpers to handle weeks but only days are saved.\n * Weeks are calculated based on the total days of the current instance.\n *\n * @property int $years Year component of the current interval. (For P2Y6M, the value will be 2)\n * @property int $months Month component of the current interval. (For P1Y6M10D, the value will be 6)\n * @property int $weeks Week component of the current interval calculated from the days. (For P1Y6M17D, the value will be 2)\n * @property int $dayz Day component of the current interval (weeks * 7 + days). (For P6M17DT20H, the value will be 17)\n * @property int $hours Hour component of the current interval. (For P7DT20H5M, the value will be 20)\n * @property int $minutes Minute component of the current interval. (For PT20H5M30S, the value will be 5)\n * @property int $seconds Second component of the current interval. (CarbonInterval::minutes(2)->seconds(34)->microseconds(567_890)->seconds = 34)\n * @property int $milliseconds Milliseconds component of the current interval. (CarbonInterval::seconds(34)->microseconds(567_890)->milliseconds = 567)\n * @property int $microseconds Microseconds component of the current interval. (CarbonInterval::seconds(34)->microseconds(567_890)->microseconds = 567_890)\n * @property int $microExcludeMilli Remaining microseconds without the milliseconds.\n * @property int $dayzExcludeWeeks Total days remaining in the final week of the current instance (days % 7).\n * @property int $daysExcludeWeeks alias of dayzExcludeWeeks\n * @property-read float $totalYears Number of years equivalent to the interval. (For P1Y6M, the value will be 1.5)\n * @property-read float $totalMonths Number of months equivalent to the interval. (For P1Y6M10D, the value will be ~12.357)\n * @property-read float $totalWeeks Number of weeks equivalent to the interval. (For P6M17DT20H, the value will be ~26.548)\n * @property-read float $totalDays Number of days equivalent to the interval. (For P17DT20H, the value will be ~17.833)\n * @property-read float $totalDayz Alias for totalDays.\n * @property-read float $totalHours Number of hours equivalent to the interval. (For P1DT20H5M, the value will be ~44.083)\n * @property-read float $totalMinutes Number of minutes equivalent to the interval. (For PT20H5M30S, the value will be 1205.5)\n * @property-read float $totalSeconds Number of seconds equivalent to the interval. (CarbonInterval::minutes(2)->seconds(34)->microseconds(567_890)->totalSeconds = 154.567_890)\n * @property-read float $totalMilliseconds Number of milliseconds equivalent to the interval. (CarbonInterval::seconds(34)->microseconds(567_890)->totalMilliseconds = 34567.890)\n * @property-read float $totalMicroseconds Number of microseconds equivalent to the interval. (CarbonInterval::seconds(34)->microseconds(567_890)->totalMicroseconds = 34567890)\n * @property-read string $locale locale of the current instance\n *\n * @method static CarbonInterval years($years = 1) Create instance specifying a number of years or modify the number of years if called on an instance.\n * @method static CarbonInterval year($years = 1) Alias for years()\n * @method static CarbonInterval months($months = 1) Create instance specifying a number of months or modify the number of months if called on an instance.\n * @method static CarbonInterval month($months = 1) Alias for months()\n * @method static CarbonInterval weeks($weeks = 1) Create instance specifying a number of weeks or modify the number of weeks if called on an instance.\n * @method static CarbonInterval week($weeks = 1) Alias for weeks()\n * @method static CarbonInterval days($days = 1) Create instance specifying a number of days or modify the number of days if called on an instance.\n * @method static CarbonInterval dayz($days = 1) Alias for days()\n * @method static CarbonInterval daysExcludeWeeks($days = 1) Create instance specifying a number of days or modify the number of days (keeping the current number of weeks) if called on an instance.\n * @method static CarbonInterval dayzExcludeWeeks($days = 1) Alias for daysExcludeWeeks()\n * @method static CarbonInterval day($days = 1) Alias for days()\n * @method static CarbonInterval hours($hours = 1) Create instance specifying a number of hours or modify the number of hours if called on an instance.\n * @method static CarbonInterval hour($hours = 1) Alias for hours()\n * @method static CarbonInterval minutes($minutes = 1) Create instance specifying a number of minutes or modify the number of minutes if called on an instance.\n * @method static CarbonInterval minute($minutes = 1) Alias for minutes()\n * @method static CarbonInterval seconds($seconds = 1) Create instance specifying a number of seconds or modify the number of seconds if called on an instance.\n * @method static CarbonInterval second($seconds = 1) Alias for seconds()\n * @method static CarbonInterval milliseconds($milliseconds = 1) Create instance specifying a number of milliseconds or modify the number of milliseconds if called on an instance.\n * @method static CarbonInterval millisecond($milliseconds = 1) Alias for milliseconds()\n * @method static CarbonInterval microseconds($microseconds = 1) Create instance specifying a number of microseconds or modify the number of microseconds if called on an instance.\n * @method static CarbonInterval microsecond($microseconds = 1) Alias for microseconds()\n * @method $this addYears(int $years) Add given number of years to the current interval\n * @method $this subYears(int $years) Subtract given number of years to the current interval\n * @method $this addMonths(int $months) Add given number of months to the current interval\n * @method $this subMonths(int $months) Subtract given number of months to the current interval\n * @method $this addWeeks(int|float $weeks) Add given number of weeks to the current interval\n * @method $this subWeeks(int|float $weeks) Subtract given number of weeks to the current interval\n * @method $this addDays(int|float $days) Add given number of days to the current interval\n * @method $this subDays(int|float $days) Subtract given number of days to the current interval\n * @method $this addHours(int|float $hours) Add given number of hours to the current interval\n * @method $this subHours(int|float $hours) Subtract given number of hours to the current interval\n * @method $this addMinutes(int|float $minutes) Add given number of minutes to the current interval\n * @method $this subMinutes(int|float $minutes) Subtract given number of minutes to the current interval\n * @method $this addSeconds(int|float $seconds) Add given number of seconds to the current interval\n * @method $this subSeconds(int|float $seconds) Subtract given number of seconds to the current interval\n * @method $this addMilliseconds(int|float $milliseconds) Add given number of milliseconds to the current interval\n * @method $this subMilliseconds(int|float $milliseconds) Subtract given number of milliseconds to the current interval\n * @method $this addMicroseconds(int|float $microseconds) Add given number of microseconds to the current interval\n * @method $this subMicroseconds(int|float $microseconds) Subtract given number of microseconds to the current interval\n * @method $this roundYear(int|float $precision = 1, string $function = \"round\") Round the current instance year with given precision using the given function.\n * @method $this roundYears(int|float $precision = 1, string $function = \"round\") Round the current instance year with given precision using the given function.\n * @method $this floorYear(int|float $precision = 1) Truncate the current instance year with given precision.\n * @method $this floorYears(int|float $precision = 1) Truncate the current instance year with given precision.\n * @method $this ceilYear(int|float $precision = 1) Ceil the current instance year with given precision.\n * @method $this ceilYears(int|float $precision = 1) Ceil the current instance year with given precision.\n * @method $this roundMonth(int|float $precision = 1, string $function = \"round\") Round the current instance month with given precision using the given function.\n * @method $this roundMonths(int|float $precision = 1, string $function = \"round\") Round the current instance month with given precision using the given function.\n * @method $this floorMonth(int|float $precision = 1) Truncate the current instance month with given precision.\n * @method $this floorMonths(int|float $precision = 1) Truncate the current instance month with given precision.\n * @method $this ceilMonth(int|float $precision = 1) Ceil the current instance month with given precision.\n * @method $this ceilMonths(int|float $precision = 1) Ceil the current instance month with given precision.\n * @method $this roundWeek(int|float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this roundWeeks(int|float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this floorWeek(int|float $precision = 1) Truncate the current instance day with given precision.\n * @method $this floorWeeks(int|float $precision = 1) Truncate the current instance day with given precision.\n * @method $this ceilWeek(int|float $precision = 1) Ceil the current instance day with given precision.\n * @method $this ceilWeeks(int|float $precision = 1) Ceil the current instance day with given precision.\n * @method $this roundDay(int|float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this roundDays(int|float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this floorDay(int|float $precision = 1) Truncate the current instance day with given precision.\n * @method $this floorDays(int|float $precision = 1) Truncate the current instance day with given precision.\n * @method $this ceilDay(int|float $precision = 1) Ceil the current instance day with given precision.\n * @method $this ceilDays(int|float $precision = 1) Ceil the current instance day with given precision.\n * @method $this roundHour(int|float $precision = 1, string $function = \"round\") Round the current instance hour with given precision using the given function.\n * @method $this roundHours(int|float $precision = 1, string $function = \"round\") Round the current instance hour with given precision using the given function.\n * @method $this floorHour(int|float $precision = 1) Truncate the current instance hour with given precision.\n * @method $this floorHours(int|float $precision = 1) Truncate the current instance hour with given precision.\n * @method $this ceilHour(int|float $precision = 1) Ceil the current instance hour with given precision.\n * @method $this ceilHours(int|float $precision = 1) Ceil the current instance hour with given precision.\n * @method $this roundMinute(int|float $precision = 1, string $function = \"round\") Round the current instance minute with given precision using the given function.\n * @method $this roundMinutes(int|float $precision = 1, string $function = \"round\") Round the current instance minute with given precision using the given function.\n * @method $this floorMinute(int|float $precision = 1) Truncate the current instance minute with given precision.\n * @method $this floorMinutes(int|float $precision = 1) Truncate the current instance minute with given precision.\n * @method $this ceilMinute(int|float $precision = 1) Ceil the current instance minute with given precision.\n * @method $this ceilMinutes(int|float $precision = 1) Ceil the current instance minute with given precision.\n * @method $this roundSecond(int|float $precision = 1, string $function = \"round\") Round the current instance second with given precision using the given function.\n * @method $this roundSeconds(int|float $precision = 1, string $function = \"round\") Round the current instance second with given precision using the given function.\n * @method $this floorSecond(int|float $precision = 1) Truncate the current instance second with given precision.\n * @method $this floorSeconds(int|float $precision = 1) Truncate the current instance second with given precision.\n * @method $this ceilSecond(int|float $precision = 1) Ceil the current instance second with given precision.\n * @method $this ceilSeconds(int|float $precision = 1) Ceil the current instance second with given precision.\n * @method $this roundMillennium(int|float $precision = 1, string $function = \"round\") Round the current instance millennium with given precision using the given function.\n * @method $this roundMillennia(int|float $precision = 1, string $function = \"round\") Round the current instance millennium with given precision using the given function.\n * @method $this floorMillennium(int|float $precision = 1) Truncate the current instance millennium with given precision.\n * @method $this floorMillennia(int|float $precision = 1) Truncate the current instance millennium with given precision.\n * @method $this ceilMillennium(int|float $precision = 1) Ceil the current instance millennium with given precision.\n * @method $this ceilMillennia(int|float $precision = 1) Ceil the current instance millennium with given precision.\n * @method $this roundCentury(int|float $precision = 1, string $function = \"round\") Round the current instance century with given precision using the given function.\n * @method $this roundCenturies(int|float $precision = 1, string $function = \"round\") Round the current instance century with given precision using the given function.\n * @method $this floorCentury(int|float $precision = 1) Truncate the current instance century with given precision.\n * @method $this floorCenturies(int|float $precision = 1) Truncate the current instance century with given precision.\n * @method $this ceilCentury(int|float $precision = 1) Ceil the current instance century with given precision.\n * @method $this ceilCenturies(int|float $precision = 1) Ceil the current instance century with given precision.\n * @method $this roundDecade(int|float $precision = 1, string $function = \"round\") Round the current instance decade with given precision using the given function.\n * @method $this roundDecades(int|float $precision = 1, string $function = \"round\") Round the current instance decade with given precision using the given function.\n * @method $this floorDecade(int|float $precision = 1) Truncate the current instance decade with given precision.\n * @method $this floorDecades(int|float $precision = 1) Truncate the current instance decade with given precision.\n * @method $this ceilDecade(int|float $precision = 1) Ceil the current instance decade with given precision.\n * @method $this ceilDecades(int|float $precision = 1) Ceil the current instance decade with given precision.\n * @method $this roundQuarter(int|float $precision = 1, string $function = \"round\") Round the current instance quarter with given precision using the given function.\n * @method $this roundQuarters(int|float $precision = 1, string $function = \"round\") Round the current instance quarter with given precision using the given function.\n * @method $this floorQuarter(int|float $precision = 1) Truncate the current instance quarter with given precision.\n * @method $this floorQuarters(int|float $precision = 1) Truncate the current instance quarter with given precision.\n * @method $this ceilQuarter(int|float $precision = 1) Ceil the current instance quarter with given precision.\n * @method $this ceilQuarters(int|float $precision = 1) Ceil the current instance quarter with given precision.\n * @method $this roundMillisecond(int|float $precision = 1, string $function = \"round\") Round the current instance millisecond with given precision using the given function.\n * @method $this roundMilliseconds(int|float $precision = 1, string $function = \"round\") Round the current instance millisecond with given precision using the given function.\n * @method $this floorMillisecond(int|float $precision = 1) Truncate the current instance millisecond with given precision.\n * @method $this floorMilliseconds(int|float $precision = 1) Truncate the current instance millisecond with given precision.\n * @method $this ceilMillisecond(int|float $precision = 1) Ceil the current instance millisecond with given precision.\n * @method $this ceilMilliseconds(int|float $precision = 1) Ceil the current instance millisecond with given precision.\n * @method $this roundMicrosecond(int|float $precision = 1, string $function = \"round\") Round the current instance microsecond with given precision using the given function.\n * @method $this roundMicroseconds(int|float $precision = 1, string $function = \"round\") Round the current instance microsecond with given precision using the given function.\n * @method $this floorMicrosecond(int|float $precision = 1) Truncate the current instance microsecond with given precision.\n * @method $this floorMicroseconds(int|float $precision = 1) Truncate the current instance microsecond with given precision.\n * @method $this ceilMicrosecond(int|float $precision = 1) Ceil the current instance microsecond with given precision.\n * @method $this ceilMicroseconds(int|float $precision = 1) Ceil the current instance microsecond with given precision.\n */\nclass CarbonInterval extends DateInterval implements CarbonConverterInterface, UnitValue\n{\n    use LocalFactory;\n    use IntervalRounding;\n    use IntervalStep;\n    use MagicParameter;\n    use Mixin {\n        Mixin::mixin as baseMixin;\n    }\n    use Options;\n    use ToStringFormat;\n\n    /**\n     * Unlimited parts for forHumans() method.\n     *\n     * INF constant can be used instead.\n     */\n    public const NO_LIMIT = -1;\n\n    public const POSITIVE = 1;\n    public const NEGATIVE = -1;\n\n    /**\n     * Interval spec period designators\n     */\n    public const PERIOD_PREFIX = 'P';\n    public const PERIOD_YEARS = 'Y';\n    public const PERIOD_MONTHS = 'M';\n    public const PERIOD_DAYS = 'D';\n    public const PERIOD_TIME_PREFIX = 'T';\n    public const PERIOD_HOURS = 'H';\n    public const PERIOD_MINUTES = 'M';\n    public const PERIOD_SECONDS = 'S';\n\n    public const SPECIAL_TRANSLATIONS = [\n        1 => [\n            'option' => CarbonInterface::ONE_DAY_WORDS,\n            'future' => 'diff_tomorrow',\n            'past' => 'diff_yesterday',\n        ],\n        2 => [\n            'option' => CarbonInterface::TWO_DAY_WORDS,\n            'future' => 'diff_after_tomorrow',\n            'past' => 'diff_before_yesterday',\n        ],\n    ];\n\n    protected static ?array $cascadeFactors = null;\n\n    protected static array $formats = [\n        'y' => 'y',\n        'Y' => 'y',\n        'o' => 'y',\n        'm' => 'm',\n        'n' => 'm',\n        'W' => 'weeks',\n        'd' => 'd',\n        'j' => 'd',\n        'z' => 'd',\n        'h' => 'h',\n        'g' => 'h',\n        'H' => 'h',\n        'G' => 'h',\n        'i' => 'i',\n        's' => 's',\n        'u' => 'micro',\n        'v' => 'milli',\n    ];\n\n    private static ?array $flipCascadeFactors = null;\n\n    private static bool $floatSettersEnabled = false;\n\n    /**\n     * The registered macros.\n     */\n    protected static array $macros = [];\n\n    /**\n     * Timezone handler for settings() method.\n     */\n    protected DateTimeZone|string|int|null $timezoneSetting = null;\n\n    /**\n     * The input used to create the interval.\n     */\n    protected mixed $originalInput = null;\n\n    /**\n     * Start date if interval was created from a difference between 2 dates.\n     */\n    protected ?CarbonInterface $startDate = null;\n\n    /**\n     * End date if interval was created from a difference between 2 dates.\n     */\n    protected ?CarbonInterface $endDate = null;\n\n    /**\n     * End date if interval was created from a difference between 2 dates.\n     */\n    protected ?DateInterval $rawInterval = null;\n\n    /**\n     * Flag if the interval was made from a diff with absolute flag on.\n     */\n    protected bool $absolute = false;\n\n    protected ?array $initialValues = null;\n\n    /**\n     * Set the instance's timezone from a string or object.\n     */\n    public function setTimezone(DateTimeZone|string|int $timezone): static\n    {\n        $this->timezoneSetting = $timezone;\n        $this->checkStartAndEnd();\n\n        if ($this->startDate) {\n            $this->startDate = $this->startDate\n                ->avoidMutation()\n                ->setTimezone($timezone);\n            $this->rawInterval = null;\n        }\n\n        if ($this->endDate) {\n            $this->endDate = $this->endDate\n                ->avoidMutation()\n                ->setTimezone($timezone);\n            $this->rawInterval = null;\n        }\n\n        return $this;\n    }\n\n    /**\n     * Set the instance's timezone from a string or object and add/subtract the offset difference.\n     */\n    public function shiftTimezone(DateTimeZone|string|int $timezone): static\n    {\n        $this->timezoneSetting = $timezone;\n        $this->checkStartAndEnd();\n\n        if ($this->startDate) {\n            $this->startDate = $this->startDate\n                ->avoidMutation()\n                ->shiftTimezone($timezone);\n            $this->rawInterval = null;\n        }\n\n        if ($this->endDate) {\n            $this->endDate = $this->endDate\n                ->avoidMutation()\n                ->shiftTimezone($timezone);\n            $this->rawInterval = null;\n        }\n\n        return $this;\n    }\n\n    /**\n     * Mapping of units and factors for cascading.\n     *\n     * Should only be modified by changing the factors or referenced constants.\n     */\n    public static function getCascadeFactors(): array\n    {\n        return static::$cascadeFactors ?: static::getDefaultCascadeFactors();\n    }\n\n    protected static function getDefaultCascadeFactors(): array\n    {\n        return [\n            'milliseconds' => [CarbonInterface::MICROSECONDS_PER_MILLISECOND, 'microseconds'],\n            'seconds' => [CarbonInterface::MILLISECONDS_PER_SECOND, 'milliseconds'],\n            'minutes' => [CarbonInterface::SECONDS_PER_MINUTE, 'seconds'],\n            'hours' => [CarbonInterface::MINUTES_PER_HOUR, 'minutes'],\n            'dayz' => [CarbonInterface::HOURS_PER_DAY, 'hours'],\n            'weeks' => [CarbonInterface::DAYS_PER_WEEK, 'dayz'],\n            'months' => [CarbonInterface::WEEKS_PER_MONTH, 'weeks'],\n            'years' => [CarbonInterface::MONTHS_PER_YEAR, 'months'],\n        ];\n    }\n\n    /**\n     * Set default cascading factors for ->cascade() method.\n     *\n     * @param array $cascadeFactors\n     */\n    public static function setCascadeFactors(array $cascadeFactors)\n    {\n        self::$flipCascadeFactors = null;\n        static::$cascadeFactors = $cascadeFactors;\n    }\n\n    /**\n     * This option allow you to opt-in for the Carbon 3 behavior where float\n     * values will no longer be cast to integer (so truncated).\n     *\n     * ⚠️ This settings will be applied globally, which mean your whole application\n     * code including the third-party dependencies that also may use Carbon will\n     * adopt the new behavior.\n     */\n    public static function enableFloatSetters(bool $floatSettersEnabled = true): void\n    {\n        self::$floatSettersEnabled = $floatSettersEnabled;\n    }\n\n    ///////////////////////////////////////////////////////////////////\n    //////////////////////////// CONSTRUCTORS /////////////////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Create a new CarbonInterval instance.\n     *\n     * @param Closure|DateInterval|string|int|null $years\n     * @param int|float|null                       $months\n     * @param int|float|null                       $weeks\n     * @param int|float|null                       $days\n     * @param int|float|null                       $hours\n     * @param int|float|null                       $minutes\n     * @param int|float|null                       $seconds\n     * @param int|float|null                       $microseconds\n     *\n     * @throws Exception when the interval_spec (passed as $years) cannot be parsed as an interval.\n     */\n    public function __construct($years = null, $months = null, $weeks = null, $days = null, $hours = null, $minutes = null, $seconds = null, $microseconds = null)\n    {\n        $this->originalInput = \\func_num_args() === 1 ? $years : \\func_get_args();\n\n        if ($years instanceof Closure) {\n            $this->step = $years;\n            $years = null;\n        }\n\n        if ($years instanceof DateInterval) {\n            parent::__construct(static::getDateIntervalSpec($years));\n            $this->f = $years->f;\n            self::copyNegativeUnits($years, $this);\n\n            return;\n        }\n\n        $spec = $years;\n        $isStringSpec = (\\is_string($spec) && !preg_match('/^[\\d.]/', $spec));\n\n        if (!$isStringSpec || (float) $years) {\n            $spec = static::PERIOD_PREFIX;\n\n            $spec .= $years > 0 ? $years.static::PERIOD_YEARS : '';\n            $spec .= $months > 0 ? $months.static::PERIOD_MONTHS : '';\n\n            $specDays = 0;\n            $specDays += $weeks > 0 ? $weeks * static::getDaysPerWeek() : 0;\n            $specDays += $days > 0 ? $days : 0;\n\n            $spec .= $specDays > 0 ? $specDays.static::PERIOD_DAYS : '';\n\n            if ($hours > 0 || $minutes > 0 || $seconds > 0) {\n                $spec .= static::PERIOD_TIME_PREFIX;\n                $spec .= $hours > 0 ? $hours.static::PERIOD_HOURS : '';\n                $spec .= $minutes > 0 ? $minutes.static::PERIOD_MINUTES : '';\n                $spec .= $seconds > 0 ? $seconds.static::PERIOD_SECONDS : '';\n            }\n\n            if ($spec === static::PERIOD_PREFIX) {\n                // Allow the zero interval.\n                $spec .= '0'.static::PERIOD_YEARS;\n            }\n        }\n\n        try {\n            parent::__construct($spec);\n        } catch (Throwable $exception) {\n            try {\n                parent::__construct('PT0S');\n\n                if ($isStringSpec) {\n                    if (!preg_match('/^P\n                        (?:(?<year>[+-]?\\d*(?:\\.\\d+)?)Y)?\n                        (?:(?<month>[+-]?\\d*(?:\\.\\d+)?)M)?\n                        (?:(?<week>[+-]?\\d*(?:\\.\\d+)?)W)?\n                        (?:(?<day>[+-]?\\d*(?:\\.\\d+)?)D)?\n                        (?:T\n                            (?:(?<hour>[+-]?\\d*(?:\\.\\d+)?)H)?\n                            (?:(?<minute>[+-]?\\d*(?:\\.\\d+)?)M)?\n                            (?:(?<second>[+-]?\\d*(?:\\.\\d+)?)S)?\n                        )?\n                    $/x', $spec, $match)) {\n                        throw new InvalidArgumentException(\"Invalid duration: $spec\");\n                    }\n\n                    $years = (float) ($match['year'] ?? 0);\n                    $this->assertSafeForInteger('year', $years);\n                    $months = (float) ($match['month'] ?? 0);\n                    $this->assertSafeForInteger('month', $months);\n                    $weeks = (float) ($match['week'] ?? 0);\n                    $this->assertSafeForInteger('week', $weeks);\n                    $days = (float) ($match['day'] ?? 0);\n                    $this->assertSafeForInteger('day', $days);\n                    $hours = (float) ($match['hour'] ?? 0);\n                    $this->assertSafeForInteger('hour', $hours);\n                    $minutes = (float) ($match['minute'] ?? 0);\n                    $this->assertSafeForInteger('minute', $minutes);\n                    $seconds = (float) ($match['second'] ?? 0);\n                    $this->assertSafeForInteger('second', $seconds);\n                    $microseconds = (int) str_pad(\n                        substr(explode('.', $match['second'] ?? '0.0')[1] ?? '0', 0, 6),\n                        6,\n                        '0',\n                    );\n                }\n\n                $totalDays = (($weeks * static::getDaysPerWeek()) + $days);\n                $this->assertSafeForInteger('days total (including weeks)', $totalDays);\n\n                $this->y = (int) $years;\n                $this->m = (int) $months;\n                $this->d = (int) $totalDays;\n                $this->h = (int) $hours;\n                $this->i = (int) $minutes;\n                $this->s = (int) $seconds;\n                $secondFloatPart = (float) ($microseconds / CarbonInterface::MICROSECONDS_PER_SECOND);\n                $this->f = $secondFloatPart;\n                $intervalMicroseconds = (int) ($this->f * CarbonInterface::MICROSECONDS_PER_SECOND);\n                $intervalSeconds = $seconds - $secondFloatPart;\n\n                if (\n                    ((float) $this->y) !== $years ||\n                    ((float) $this->m) !== $months ||\n                    ((float) $this->d) !== $totalDays ||\n                    ((float) $this->h) !== $hours ||\n                    ((float) $this->i) !== $minutes ||\n                    ((float) $this->s) !== $intervalSeconds ||\n                    $intervalMicroseconds !== ((int) $microseconds)\n                ) {\n                    $this->add(static::fromString(\n                        ($years - $this->y).' years '.\n                        ($months - $this->m).' months '.\n                        ($totalDays - $this->d).' days '.\n                        ($hours - $this->h).' hours '.\n                        ($minutes - $this->i).' minutes '.\n                        number_format($intervalSeconds - $this->s, 6, '.', '').' seconds '.\n                        ($microseconds - $intervalMicroseconds).' microseconds ',\n                    ));\n                }\n            } catch (Throwable $secondException) {\n                throw $secondException instanceof OutOfRangeException ? $secondException : $exception;\n            }\n        }\n\n        if ($microseconds !== null) {\n            $this->f = $microseconds / CarbonInterface::MICROSECONDS_PER_SECOND;\n        }\n\n        foreach (['years', 'months', 'weeks', 'days', 'hours', 'minutes', 'seconds'] as $unit) {\n            if ($$unit < 0) {\n                $this->set($unit, $$unit);\n            }\n        }\n    }\n\n    /**\n     * Returns the factor for a given source-to-target couple.\n     *\n     * @param string $source\n     * @param string $target\n     *\n     * @return int|float|null\n     */\n    public static function getFactor($source, $target)\n    {\n        $source = self::standardizeUnit($source);\n        $target = self::standardizeUnit($target);\n        $factors = self::getFlipCascadeFactors();\n\n        if (isset($factors[$source])) {\n            [$to, $factor] = $factors[$source];\n\n            if ($to === $target) {\n                return $factor;\n            }\n\n            return $factor * static::getFactor($to, $target);\n        }\n\n        return null;\n    }\n\n    /**\n     * Returns the factor for a given source-to-target couple if set,\n     * else try to find the appropriate constant as the factor, such as Carbon::DAYS_PER_WEEK.\n     *\n     * @param string $source\n     * @param string $target\n     *\n     * @return int|float|null\n     */\n    public static function getFactorWithDefault($source, $target)\n    {\n        $factor = self::getFactor($source, $target);\n\n        if ($factor) {\n            return $factor;\n        }\n\n        static $defaults = [\n            'month' => ['year' => Carbon::MONTHS_PER_YEAR],\n            'week' => ['month' => Carbon::WEEKS_PER_MONTH],\n            'day' => ['week' => Carbon::DAYS_PER_WEEK],\n            'hour' => ['day' => Carbon::HOURS_PER_DAY],\n            'minute' => ['hour' => Carbon::MINUTES_PER_HOUR],\n            'second' => ['minute' => Carbon::SECONDS_PER_MINUTE],\n            'millisecond' => ['second' => Carbon::MILLISECONDS_PER_SECOND],\n            'microsecond' => ['millisecond' => Carbon::MICROSECONDS_PER_MILLISECOND],\n        ];\n\n        return $defaults[$source][$target] ?? null;\n    }\n\n    /**\n     * Returns current config for days per week.\n     *\n     * @return int|float\n     */\n    public static function getDaysPerWeek()\n    {\n        return static::getFactor('dayz', 'weeks') ?: Carbon::DAYS_PER_WEEK;\n    }\n\n    /**\n     * Returns current config for hours per day.\n     *\n     * @return int|float\n     */\n    public static function getHoursPerDay()\n    {\n        return static::getFactor('hours', 'dayz') ?: Carbon::HOURS_PER_DAY;\n    }\n\n    /**\n     * Returns current config for minutes per hour.\n     *\n     * @return int|float\n     */\n    public static function getMinutesPerHour()\n    {\n        return static::getFactor('minutes', 'hours') ?: Carbon::MINUTES_PER_HOUR;\n    }\n\n    /**\n     * Returns current config for seconds per minute.\n     *\n     * @return int|float\n     */\n    public static function getSecondsPerMinute()\n    {\n        return static::getFactor('seconds', 'minutes') ?: Carbon::SECONDS_PER_MINUTE;\n    }\n\n    /**\n     * Returns current config for microseconds per second.\n     *\n     * @return int|float\n     */\n    public static function getMillisecondsPerSecond()\n    {\n        return static::getFactor('milliseconds', 'seconds') ?: Carbon::MILLISECONDS_PER_SECOND;\n    }\n\n    /**\n     * Returns current config for microseconds per second.\n     *\n     * @return int|float\n     */\n    public static function getMicrosecondsPerMillisecond()\n    {\n        return static::getFactor('microseconds', 'milliseconds') ?: Carbon::MICROSECONDS_PER_MILLISECOND;\n    }\n\n    /**\n     * Create a new CarbonInterval instance from specific values.\n     * This is an alias for the constructor that allows better fluent\n     * syntax as it allows you to do CarbonInterval::create(1)->fn() rather than\n     * (new CarbonInterval(1))->fn().\n     *\n     * @param int $years\n     * @param int $months\n     * @param int $weeks\n     * @param int $days\n     * @param int $hours\n     * @param int $minutes\n     * @param int $seconds\n     * @param int $microseconds\n     *\n     * @throws Exception when the interval_spec (passed as $years) cannot be parsed as an interval.\n     *\n     * @return static\n     */\n    public static function create($years = null, $months = null, $weeks = null, $days = null, $hours = null, $minutes = null, $seconds = null, $microseconds = null)\n    {\n        return new static($years, $months, $weeks, $days, $hours, $minutes, $seconds, $microseconds);\n    }\n\n    /**\n     * Parse a string into a new CarbonInterval object according to the specified format.\n     *\n     * @example\n     * ```\n     * echo Carboninterval::createFromFormat('H:i', '1:30');\n     * ```\n     *\n     * @param string      $format   Format of the $interval input string\n     * @param string|null $interval Input string to convert into an interval\n     *\n     * @throws \\Carbon\\Exceptions\\ParseErrorException when the $interval cannot be parsed as an interval.\n     *\n     * @return static\n     */\n    public static function createFromFormat(string $format, ?string $interval): static\n    {\n        $instance = new static(0);\n        $length = mb_strlen($format);\n\n        if (preg_match('/s([,.])([uv])$/', $format, $match)) {\n            $interval = explode($match[1], $interval);\n            $index = \\count($interval) - 1;\n            $interval[$index] = str_pad($interval[$index], $match[2] === 'v' ? 3 : 6, '0');\n            $interval = implode($match[1], $interval);\n        }\n\n        $interval ??= '';\n\n        for ($index = 0; $index < $length; $index++) {\n            $expected = mb_substr($format, $index, 1);\n            $nextCharacter = mb_substr($interval, 0, 1);\n            $unit = static::$formats[$expected] ?? null;\n\n            if ($unit) {\n                if (!preg_match('/^-?\\d+/', $interval, $match)) {\n                    throw new ParseErrorException('number', $nextCharacter);\n                }\n\n                $interval = mb_substr($interval, mb_strlen($match[0]));\n                self::incrementUnit($instance, $unit, (int) ($match[0]));\n\n                continue;\n            }\n\n            if ($nextCharacter !== $expected) {\n                throw new ParseErrorException(\n                    \"'$expected'\",\n                    $nextCharacter,\n                    'Allowed substitutes for interval formats are '.implode(', ', array_keys(static::$formats)).\"\\n\".\n                    'See https://php.net/manual/en/function.date.php for their meaning',\n                );\n            }\n\n            $interval = mb_substr($interval, 1);\n        }\n\n        if ($interval !== '') {\n            throw new ParseErrorException(\n                'end of string',\n                $interval,\n            );\n        }\n\n        return $instance;\n    }\n\n    /**\n     * Return the original source used to create the current interval.\n     *\n     * @return array|int|string|DateInterval|mixed|null\n     */\n    public function original()\n    {\n        return $this->originalInput;\n    }\n\n    /**\n     * Return the start date if interval was created from a difference between 2 dates.\n     *\n     * @return CarbonInterface|null\n     */\n    public function start(): ?CarbonInterface\n    {\n        $this->checkStartAndEnd();\n\n        return $this->startDate;\n    }\n\n    /**\n     * Return the end date if interval was created from a difference between 2 dates.\n     *\n     * @return CarbonInterface|null\n     */\n    public function end(): ?CarbonInterface\n    {\n        $this->checkStartAndEnd();\n\n        return $this->endDate;\n    }\n\n    /**\n     * Get rid of the original input, start date and end date that may be kept in memory.\n     *\n     * @return $this\n     */\n    public function optimize(): static\n    {\n        $this->originalInput = null;\n        $this->startDate = null;\n        $this->endDate = null;\n        $this->rawInterval = null;\n        $this->absolute = false;\n\n        return $this;\n    }\n\n    /**\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function copy(): static\n    {\n        $date = new static(0);\n        $date->copyProperties($this);\n        $date->step = $this->step;\n\n        return $date;\n    }\n\n    /**\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function clone(): static\n    {\n        return $this->copy();\n    }\n\n    /**\n     * Provide static helpers to create instances.  Allows CarbonInterval::years(3).\n     *\n     * Note: This is done using the magic method to allow static and instance methods to\n     *       have the same names.\n     *\n     * @param string $method     magic method name called\n     * @param array  $parameters parameters list\n     *\n     * @return static|mixed|null\n     */\n    public static function __callStatic(string $method, array $parameters)\n    {\n        try {\n            $interval = new static(0);\n            $localStrictModeEnabled = $interval->localStrictModeEnabled;\n            $interval->localStrictModeEnabled = true;\n\n            $result = static::hasMacro($method)\n                ? static::bindMacroContext(null, function () use (&$method, &$parameters, &$interval) {\n                    return $interval->callMacro($method, $parameters);\n                })\n                : $interval->$method(...$parameters);\n\n            $interval->localStrictModeEnabled = $localStrictModeEnabled;\n\n            return $result;\n        } catch (BadFluentSetterException $exception) {\n            if (Carbon::isStrictModeEnabled()) {\n                throw new BadFluentConstructorException($method, 0, $exception);\n            }\n\n            return null;\n        }\n    }\n\n    /**\n     * Evaluate the PHP generated by var_export() and recreate the exported CarbonInterval instance.\n     *\n     * @param array $dump data as exported by var_export()\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public static function __set_state($dump)\n    {\n        /** @noinspection PhpVoidFunctionResultUsedInspection */\n        /** @var DateInterval $dateInterval */\n        $dateInterval = parent::__set_state($dump);\n\n        return static::instance($dateInterval);\n    }\n\n    /**\n     * Return the current context from inside a macro callee or a new one if static.\n     *\n     * @return static\n     */\n    protected static function this(): static\n    {\n        return end(static::$macroContextStack) ?: new static(0);\n    }\n\n    /**\n     * Creates a CarbonInterval from string.\n     *\n     * Format:\n     *\n     * Suffix | Unit    | Example | DateInterval expression\n     * -------|---------|---------|------------------------\n     * y      | years   |   1y    | P1Y\n     * mo     | months  |   3mo   | P3M\n     * w      | weeks   |   2w    | P2W\n     * d      | days    |  28d    | P28D\n     * h      | hours   |   4h    | PT4H\n     * m      | minutes |  12m    | PT12M\n     * s      | seconds |  59s    | PT59S\n     *\n     * e. g. `1w 3d 4h 32m 23s` is converted to 10 days 4 hours 32 minutes and 23 seconds.\n     *\n     * Special cases:\n     *  - An empty string will return a zero interval\n     *  - Fractions are allowed for weeks, days, hours and minutes and will be converted\n     *    and rounded to the next smaller value (caution: 0.5w = 4d)\n     *\n     * @param string $intervalDefinition\n     *\n     * @throws InvalidIntervalException\n     *\n     * @return static\n     */\n    public static function fromString(string $intervalDefinition): static\n    {\n        if (empty($intervalDefinition)) {\n            return self::withOriginal(new static(0), $intervalDefinition);\n        }\n\n        $years = 0;\n        $months = 0;\n        $weeks = 0;\n        $days = 0;\n        $hours = 0;\n        $minutes = 0;\n        $seconds = 0;\n        $milliseconds = 0;\n        $microseconds = 0;\n\n        $pattern = '/(-?\\d+(?:\\.\\d+)?)\\h*([^\\d\\h]*)/i';\n        preg_match_all($pattern, $intervalDefinition, $parts, PREG_SET_ORDER);\n\n        while ([$part, $value, $unit] = array_shift($parts)) {\n            $intValue = (int) $value;\n            $fraction = (float) $value - $intValue;\n\n            // Fix calculation precision\n            switch (round($fraction, 6)) {\n                case 1:\n                    $fraction = 0;\n                    $intValue++;\n\n                    break;\n                case 0:\n                    $fraction = 0;\n\n                    break;\n            }\n\n            switch ($unit === 'µs' ? 'µs' : strtolower($unit)) {\n                case 'millennia':\n                case 'millennium':\n                    $years += $intValue * CarbonInterface::YEARS_PER_MILLENNIUM;\n\n                    break;\n\n                case 'century':\n                case 'centuries':\n                    $years += $intValue * CarbonInterface::YEARS_PER_CENTURY;\n\n                    break;\n\n                case 'decade':\n                case 'decades':\n                    $years += $intValue * CarbonInterface::YEARS_PER_DECADE;\n\n                    break;\n\n                case 'year':\n                case 'years':\n                case 'y':\n                case 'yr':\n                case 'yrs':\n                    $years += $intValue;\n\n                    break;\n\n                case 'quarter':\n                case 'quarters':\n                    $months += $intValue * CarbonInterface::MONTHS_PER_QUARTER;\n\n                    break;\n\n                case 'month':\n                case 'months':\n                case 'mo':\n                case 'mos':\n                    $months += $intValue;\n\n                    break;\n\n                case 'week':\n                case 'weeks':\n                case 'w':\n                    $weeks += $intValue;\n\n                    if ($fraction) {\n                        $parts[] = [null, $fraction * static::getDaysPerWeek(), 'd'];\n                    }\n\n                    break;\n\n                case 'day':\n                case 'days':\n                case 'd':\n                    $days += $intValue;\n\n                    if ($fraction) {\n                        $parts[] = [null, $fraction * static::getHoursPerDay(), 'h'];\n                    }\n\n                    break;\n\n                case 'hour':\n                case 'hours':\n                case 'h':\n                    $hours += $intValue;\n\n                    if ($fraction) {\n                        $parts[] = [null, $fraction * static::getMinutesPerHour(), 'm'];\n                    }\n\n                    break;\n\n                case 'minute':\n                case 'minutes':\n                case 'm':\n                    $minutes += $intValue;\n\n                    if ($fraction) {\n                        $parts[] = [null, $fraction * static::getSecondsPerMinute(), 's'];\n                    }\n\n                    break;\n\n                case 'second':\n                case 'seconds':\n                case 's':\n                    $seconds += $intValue;\n\n                    if ($fraction) {\n                        $parts[] = [null, $fraction * static::getMillisecondsPerSecond(), 'ms'];\n                    }\n\n                    break;\n\n                case 'millisecond':\n                case 'milliseconds':\n                case 'milli':\n                case 'ms':\n                    $milliseconds += $intValue;\n\n                    if ($fraction) {\n                        $microseconds += round($fraction * static::getMicrosecondsPerMillisecond());\n                    }\n\n                    break;\n\n                case 'microsecond':\n                case 'microseconds':\n                case 'micro':\n                case 'µs':\n                    $microseconds += $intValue;\n\n                    break;\n\n                default:\n                    throw new InvalidIntervalException(\n                        \"Invalid part $part in definition $intervalDefinition\",\n                    );\n            }\n        }\n\n        return self::withOriginal(\n            new static($years, $months, $weeks, $days, $hours, $minutes, $seconds, $milliseconds * Carbon::MICROSECONDS_PER_MILLISECOND + $microseconds),\n            $intervalDefinition,\n        );\n    }\n\n    /**\n     * Creates a CarbonInterval from string using a different locale.\n     *\n     * @param string      $interval interval string in the given language (may also contain English).\n     * @param string|null $locale   if locale is null or not specified, current global locale will be used instead.\n     *\n     * @return static\n     */\n    public static function parseFromLocale(string $interval, ?string $locale = null): static\n    {\n        return static::fromString(Carbon::translateTimeString($interval, $locale ?: static::getLocale(), CarbonInterface::DEFAULT_LOCALE));\n    }\n\n    /**\n     * Create an interval from the difference between 2 dates.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $start\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $end\n     *\n     * @return static\n     */\n    public static function diff($start, $end = null, bool $absolute = false, array $skip = []): static\n    {\n        $start = $start instanceof CarbonInterface ? $start : Carbon::make($start);\n        $end = $end instanceof CarbonInterface ? $end : Carbon::make($end);\n        $rawInterval = $start->diffAsDateInterval($end, $absolute);\n        $interval = static::instance($rawInterval, $skip);\n\n        $interval->absolute = $absolute;\n        $interval->rawInterval = $rawInterval;\n        $interval->startDate = $start;\n        $interval->endDate = $end;\n        $interval->initialValues = $interval->getInnerValues();\n\n        return $interval;\n    }\n\n    /**\n     * Invert the interval if it's inverted.\n     *\n     * @param bool $absolute do nothing if set to false\n     *\n     * @return $this\n     */\n    public function abs(bool $absolute = false): static\n    {\n        if ($absolute && $this->invert) {\n            $this->invert();\n        }\n\n        return $this;\n    }\n\n    /**\n     * @alias abs\n     *\n     * Invert the interval if it's inverted.\n     *\n     * @param bool $absolute do nothing if set to false\n     *\n     * @return $this\n     */\n    public function absolute(bool $absolute = true): static\n    {\n        return $this->abs($absolute);\n    }\n\n    /**\n     * Cast the current instance into the given class.\n     *\n     * @template T of DateInterval\n     *\n     * @psalm-param class-string<T> $className The $className::instance() method will be called to cast the current object.\n     *\n     * @return T\n     */\n    public function cast(string $className): mixed\n    {\n        return self::castIntervalToClass($this, $className);\n    }\n\n    /**\n     * Create a CarbonInterval instance from a DateInterval one.  Can not instance\n     * DateInterval objects created from DateTime::diff() as you can't externally\n     * set the $days field.\n     *\n     * @param DateInterval $interval\n     * @param bool         $skipCopy set to true to return the passed object\n     *                               (without copying it) if it's already of the\n     *                               current class\n     *\n     * @return static\n     */\n    public static function instance(DateInterval $interval, array $skip = [], bool $skipCopy = false): static\n    {\n        if ($skipCopy && $interval instanceof static) {\n            return $interval;\n        }\n\n        return self::castIntervalToClass($interval, static::class, $skip);\n    }\n\n    /**\n     * Make a CarbonInterval instance from given variable if possible.\n     *\n     * Always return a new instance. Parse only strings and only these likely to be intervals (skip dates\n     * and recurrences). Throw an exception for invalid format, but otherwise return null.\n     *\n     * @param mixed|int|DateInterval|string|Closure|Unit|null $interval interval or number of the given $unit\n     * @param Unit|string|null                                $unit     if specified, $interval must be an integer\n     * @param bool                                            $skipCopy set to true to return the passed object\n     *                                                                  (without copying it) if it's already of the\n     *                                                                  current class\n     *\n     * @return static|null\n     */\n    public static function make($interval, $unit = null, bool $skipCopy = false): ?self\n    {\n        if ($interval instanceof Unit) {\n            $interval = $interval->interval();\n        }\n\n        if ($unit instanceof Unit) {\n            $unit = $unit->value;\n        }\n\n        if ($unit) {\n            $interval = \"$interval $unit\";\n        }\n\n        if ($interval instanceof DateInterval) {\n            return static::instance($interval, [], $skipCopy);\n        }\n\n        if ($interval instanceof Closure) {\n            return self::withOriginal(new static($interval), $interval);\n        }\n\n        if (!\\is_string($interval)) {\n            return null;\n        }\n\n        return static::makeFromString($interval);\n    }\n\n    protected static function makeFromString(string $interval): ?self\n    {\n        $interval = preg_replace('/\\s+/', ' ', trim($interval));\n\n        if (preg_match('/^P[T\\d]/', $interval)) {\n            return new static($interval);\n        }\n\n        if (preg_match('/^(?:\\h*-?\\d+(?:\\.\\d+)?\\h*[a-z]+)+$/i', $interval)) {\n            return static::fromString($interval);\n        }\n\n        $intervalInstance = static::createFromDateString($interval);\n\n        return $intervalInstance->isEmpty() ? null : $intervalInstance;\n    }\n\n    protected function resolveInterval($interval): ?self\n    {\n        if (!($interval instanceof self)) {\n            return self::make($interval);\n        }\n\n        return $interval;\n    }\n\n    /**\n     * Sets up a DateInterval from the relative parts of the string.\n     *\n     * @param string $datetime\n     *\n     * @return static\n     *\n     * @link https://php.net/manual/en/dateinterval.createfromdatestring.php\n     */\n    public static function createFromDateString(string $datetime): static\n    {\n        $string = strtr($datetime, [\n            ',' => ' ',\n            ' and ' => ' ',\n        ]);\n        $previousException = null;\n\n        try {\n            $interval = parent::createFromDateString($string);\n        } catch (Throwable $exception) {\n            $interval = null;\n            $previousException = $exception;\n        }\n\n        $interval ?: throw new InvalidFormatException(\n            'Could not create interval from: '.var_export($datetime, true),\n            previous: $previousException,\n        );\n\n        if (!($interval instanceof static)) {\n            $interval = static::instance($interval);\n        }\n\n        return self::withOriginal($interval, $datetime);\n    }\n\n    ///////////////////////////////////////////////////////////////////\n    ///////////////////////// GETTERS AND SETTERS /////////////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Get a part of the CarbonInterval object.\n     */\n    public function get(Unit|string $name): int|float|string|null\n    {\n        $name = Unit::toName($name);\n\n        if (str_starts_with($name, 'total')) {\n            return $this->total(substr($name, 5));\n        }\n\n        $resolvedUnit = Carbon::singularUnit(rtrim($name, 'z'));\n\n        return match ($resolvedUnit) {\n            'tzname', 'tz_name' => match (true) {\n                ($this->timezoneSetting === null) => null,\n                \\is_string($this->timezoneSetting) => $this->timezoneSetting,\n                ($this->timezoneSetting instanceof DateTimeZone) => $this->timezoneSetting->getName(),\n                default => CarbonTimeZone::instance($this->timezoneSetting)->getName(),\n            },\n            'year' => $this->y,\n            'month' => $this->m,\n            'day' => $this->d,\n            'hour' => $this->h,\n            'minute' => $this->i,\n            'second' => $this->s,\n            'milli', 'millisecond' => (int) (round($this->f * Carbon::MICROSECONDS_PER_SECOND) /\n                Carbon::MICROSECONDS_PER_MILLISECOND),\n            'micro', 'microsecond' => (int) round($this->f * Carbon::MICROSECONDS_PER_SECOND),\n            'microexcludemilli' => (int) round($this->f * Carbon::MICROSECONDS_PER_SECOND) %\n                Carbon::MICROSECONDS_PER_MILLISECOND,\n            'week' => (int) ($this->d / (int) static::getDaysPerWeek()),\n            'daysexcludeweek', 'dayzexcludeweek' => $this->d % (int) static::getDaysPerWeek(),\n            'locale' => $this->getTranslatorLocale(),\n            default => throw new UnknownGetterException($name, previous: new UnknownGetterException($resolvedUnit)),\n        };\n    }\n\n    /**\n     * Get a part of the CarbonInterval object.\n     */\n    public function __get(string $name): int|float|string|null\n    {\n        return $this->get($name);\n    }\n\n    /**\n     * Set a part of the CarbonInterval object.\n     *\n     * @param Unit|string|array $name\n     * @param int               $value\n     *\n     * @throws UnknownSetterException\n     *\n     * @return $this\n     */\n    public function set($name, $value = null): static\n    {\n        $properties = \\is_array($name) ? $name : [$name => $value];\n\n        foreach ($properties as $key => $value) {\n            switch (Carbon::singularUnit($key instanceof Unit ? $key->value : rtrim((string) $key, 'z'))) {\n                case 'year':\n                    $this->checkIntegerValue($key, $value);\n                    $this->y = $value;\n                    $this->handleDecimalPart('year', $value, $this->y);\n\n                    break;\n\n                case 'month':\n                    $this->checkIntegerValue($key, $value);\n                    $this->m = $value;\n                    $this->handleDecimalPart('month', $value, $this->m);\n\n                    break;\n\n                case 'week':\n                    $this->checkIntegerValue($key, $value);\n                    $days = $value * (int) static::getDaysPerWeek();\n                    $this->assertSafeForInteger('days total (including weeks)', $days);\n                    $this->d = $days;\n                    $this->handleDecimalPart('day', $days, $this->d);\n\n                    break;\n\n                case 'day':\n                    if ($value === false) {\n                        break;\n                    }\n\n                    $this->checkIntegerValue($key, $value);\n                    $this->d = $value;\n                    $this->handleDecimalPart('day', $value, $this->d);\n\n                    break;\n\n                case 'daysexcludeweek':\n                case 'dayzexcludeweek':\n                    $this->checkIntegerValue($key, $value);\n                    $days = $this->weeks * (int) static::getDaysPerWeek() + $value;\n                    $this->assertSafeForInteger('days total (including weeks)', $days);\n                    $this->d = $days;\n                    $this->handleDecimalPart('day', $days, $this->d);\n\n                    break;\n\n                case 'hour':\n                    $this->checkIntegerValue($key, $value);\n                    $this->h = $value;\n                    $this->handleDecimalPart('hour', $value, $this->h);\n\n                    break;\n\n                case 'minute':\n                    $this->checkIntegerValue($key, $value);\n                    $this->i = $value;\n                    $this->handleDecimalPart('minute', $value, $this->i);\n\n                    break;\n\n                case 'second':\n                    $this->checkIntegerValue($key, $value);\n                    $this->s = $value;\n                    $this->handleDecimalPart('second', $value, $this->s);\n\n                    break;\n\n                case 'milli':\n                case 'millisecond':\n                    $this->microseconds = $value * Carbon::MICROSECONDS_PER_MILLISECOND + $this->microseconds % Carbon::MICROSECONDS_PER_MILLISECOND;\n\n                    break;\n\n                case 'micro':\n                case 'microsecond':\n                    $this->f = $value / Carbon::MICROSECONDS_PER_SECOND;\n\n                    break;\n\n                default:\n                    if (str_starts_with($key, ' * ')) {\n                        return $this->setSetting(substr($key, 3), $value);\n                    }\n\n                    if ($this->localStrictModeEnabled ?? Carbon::isStrictModeEnabled()) {\n                        throw new UnknownSetterException($key);\n                    }\n\n                    $this->$key = $value;\n            }\n        }\n\n        return $this;\n    }\n\n    /**\n     * Set a part of the CarbonInterval object.\n     *\n     * @param string $name\n     * @param int    $value\n     *\n     * @throws UnknownSetterException\n     */\n    public function __set(string $name, $value)\n    {\n        $this->set($name, $value);\n    }\n\n    /**\n     * Allow setting of weeks and days to be cumulative.\n     *\n     * @param int $weeks Number of weeks to set\n     * @param int $days  Number of days to set\n     *\n     * @return static\n     */\n    public function weeksAndDays(int $weeks, int $days): static\n    {\n        $this->dayz = ($weeks * static::getDaysPerWeek()) + $days;\n\n        return $this;\n    }\n\n    /**\n     * Returns true if the interval is empty for each unit.\n     *\n     * @return bool\n     */\n    public function isEmpty(): bool\n    {\n        return $this->years === 0 &&\n            $this->months === 0 &&\n            $this->dayz === 0 &&\n            !$this->days &&\n            $this->hours === 0 &&\n            $this->minutes === 0 &&\n            $this->seconds === 0 &&\n            $this->microseconds === 0;\n    }\n\n    /**\n     * Register a custom macro.\n     *\n     * Pass null macro to remove it.\n     *\n     * @example\n     * ```\n     * CarbonInterval::macro('twice', function () {\n     *   return $this->times(2);\n     * });\n     * echo CarbonInterval::hours(2)->twice();\n     * ```\n     *\n     * @param-closure-this static $macro\n     */\n    public static function macro(string $name, ?callable $macro): void\n    {\n        static::$macros[$name] = $macro;\n    }\n\n    /**\n     * Register macros from a mixin object.\n     *\n     * @example\n     * ```\n     * CarbonInterval::mixin(new class {\n     *   public function daysToHours() {\n     *     return function () {\n     *       $this->hours += $this->days;\n     *       $this->days = 0;\n     *\n     *       return $this;\n     *     };\n     *   }\n     *   public function hoursToDays() {\n     *     return function () {\n     *       $this->days += $this->hours;\n     *       $this->hours = 0;\n     *\n     *       return $this;\n     *     };\n     *   }\n     * });\n     * echo CarbonInterval::hours(5)->hoursToDays() . \"\\n\";\n     * echo CarbonInterval::days(5)->daysToHours() . \"\\n\";\n     * ```\n     *\n     * @param object|string $mixin\n     *\n     * @throws ReflectionException\n     *\n     * @return void\n     */\n    public static function mixin($mixin): void\n    {\n        static::baseMixin($mixin);\n    }\n\n    /**\n     * Check if macro is registered.\n     *\n     * @param string $name\n     *\n     * @return bool\n     */\n    public static function hasMacro(string $name): bool\n    {\n        return isset(static::$macros[$name]);\n    }\n\n    /**\n     * Call given macro.\n     *\n     * @param string $name\n     * @param array  $parameters\n     *\n     * @return mixed\n     */\n    protected function callMacro(string $name, array $parameters)\n    {\n        $macro = static::$macros[$name];\n\n        if ($macro instanceof Closure) {\n            $boundMacro = @$macro->bindTo($this, static::class) ?: @$macro->bindTo(null, static::class);\n\n            return ($boundMacro ?: $macro)(...$parameters);\n        }\n\n        return $macro(...$parameters);\n    }\n\n    /**\n     * Allow fluent calls on the setters... CarbonInterval::years(3)->months(5)->day().\n     *\n     * Note: This is done using the magic method to allow static and instance methods to\n     *       have the same names.\n     *\n     * @param string $method     magic method name called\n     * @param array  $parameters parameters list\n     *\n     * @throws BadFluentSetterException|Throwable\n     *\n     * @return static|int|float|string\n     */\n    public function __call(string $method, array $parameters)\n    {\n        if (static::hasMacro($method)) {\n            return static::bindMacroContext($this, function () use (&$method, &$parameters) {\n                return $this->callMacro($method, $parameters);\n            });\n        }\n\n        $roundedValue = $this->callRoundMethod($method, $parameters);\n\n        if ($roundedValue !== null) {\n            return $roundedValue;\n        }\n\n        if (preg_match('/^(?<method>add|sub)(?<unit>[A-Z].*)$/', $method, $match)) {\n            $value = $this->getMagicParameter($parameters, 0, Carbon::pluralUnit($match['unit']), 0);\n\n            return $this->{$match['method']}($value, $match['unit']);\n        }\n\n        $value = $this->getMagicParameter($parameters, 0, Carbon::pluralUnit($method), 1);\n\n        try {\n            $this->set($method, $value);\n        } catch (UnknownSetterException $exception) {\n            if ($this->localStrictModeEnabled ?? Carbon::isStrictModeEnabled()) {\n                throw new BadFluentSetterException($method, 0, $exception);\n            }\n        }\n\n        return $this;\n    }\n\n    protected function getForHumansInitialVariables($syntax, $short): array\n    {\n        if (\\is_array($syntax)) {\n            return $syntax;\n        }\n\n        if (\\is_int($short)) {\n            return [\n                'parts' => $short,\n                'short' => false,\n            ];\n        }\n\n        if (\\is_bool($syntax)) {\n            return [\n                'short' => $syntax,\n                'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            ];\n        }\n\n        return [];\n    }\n\n    /**\n     * @param mixed $syntax\n     * @param mixed $short\n     * @param mixed $parts\n     * @param mixed $options\n     *\n     * @return array\n     */\n    protected function getForHumansParameters($syntax = null, $short = false, $parts = self::NO_LIMIT, $options = null): array\n    {\n        $optionalSpace = ' ';\n        $default = $this->getTranslationMessage('list.0') ?? $this->getTranslationMessage('list') ?? ' ';\n        /** @var bool|string $join */\n        $join = $default === '' ? '' : ' ';\n        /** @var bool|array|string $altNumbers */\n        $altNumbers = false;\n        $aUnit = false;\n        $minimumUnit = 's';\n        $skip = [];\n        extract($this->getForHumansInitialVariables($syntax, $short));\n        $skip = array_map(\n            static fn ($unit) => $unit instanceof Unit ? $unit->value : $unit,\n            (array) $skip,\n        );\n        $skip = array_map(\n            'strtolower',\n            array_filter($skip, static fn ($unit) => \\is_string($unit) && $unit !== ''),\n        );\n\n        $syntax ??= CarbonInterface::DIFF_ABSOLUTE;\n\n        if ($parts === self::NO_LIMIT) {\n            $parts = INF;\n        }\n\n        $options ??= static::getHumanDiffOptions();\n\n        if ($join === false) {\n            $join = ' ';\n        } elseif ($join === true) {\n            $join = [\n                $default,\n                $this->getTranslationMessage('list.1') ?? $default,\n            ];\n        }\n\n        if ($altNumbers && $altNumbers !== true) {\n            $language = new Language($this->locale);\n            $altNumbers = \\in_array($language->getCode(), (array) $altNumbers, true);\n        }\n\n        if (\\is_array($join)) {\n            [$default, $last] = $join;\n\n            if ($default !== ' ') {\n                $optionalSpace = '';\n            }\n\n            $join = function ($list) use ($default, $last) {\n                if (\\count($list) < 2) {\n                    return implode('', $list);\n                }\n\n                $end = array_pop($list);\n\n                return implode($default, $list).$last.$end;\n            };\n        }\n\n        if (\\is_string($join)) {\n            if ($join !== ' ') {\n                $optionalSpace = '';\n            }\n\n            $glue = $join;\n            $join = static fn ($list) => implode($glue, $list);\n        }\n\n        $interpolations = [\n            ':optional-space' => $optionalSpace,\n        ];\n\n        $translator ??= isset($locale) ? Translator::get($locale) : null;\n\n        return [$syntax, $short, $parts, $options, $join, $aUnit, $altNumbers, $interpolations, $minimumUnit, $skip, $translator];\n    }\n\n    protected static function getRoundingMethodFromOptions(int $options): ?string\n    {\n        if ($options & CarbonInterface::ROUND) {\n            return 'round';\n        }\n\n        if ($options & CarbonInterface::CEIL) {\n            return 'ceil';\n        }\n\n        if ($options & CarbonInterface::FLOOR) {\n            return 'floor';\n        }\n\n        return null;\n    }\n\n    /**\n     * Returns interval values as an array where key are the unit names and values the counts.\n     *\n     * @return int[]\n     */\n    public function toArray(): array\n    {\n        return [\n            'years' => $this->years,\n            'months' => $this->months,\n            'weeks' => $this->weeks,\n            'days' => $this->daysExcludeWeeks,\n            'hours' => $this->hours,\n            'minutes' => $this->minutes,\n            'seconds' => $this->seconds,\n            'microseconds' => $this->microseconds,\n        ];\n    }\n\n    /**\n     * Returns interval non-zero values as an array where key are the unit names and values the counts.\n     *\n     * @return int[]\n     */\n    public function getNonZeroValues(): array\n    {\n        return array_filter($this->toArray(), 'intval');\n    }\n\n    /**\n     * Returns interval values as an array where key are the unit names and values the counts\n     * from the biggest non-zero one the the smallest non-zero one.\n     *\n     * @return int[]\n     */\n    public function getValuesSequence(): array\n    {\n        $nonZeroValues = $this->getNonZeroValues();\n\n        if ($nonZeroValues === []) {\n            return [];\n        }\n\n        $keys = array_keys($nonZeroValues);\n        $firstKey = $keys[0];\n        $lastKey = $keys[\\count($keys) - 1];\n        $values = [];\n        $record = false;\n\n        foreach ($this->toArray() as $unit => $count) {\n            if ($unit === $firstKey) {\n                $record = true;\n            }\n\n            if ($record) {\n                $values[$unit] = $count;\n            }\n\n            if ($unit === $lastKey) {\n                $record = false;\n            }\n        }\n\n        return $values;\n    }\n\n    /**\n     * Get the current interval in a human readable format in the current locale.\n     *\n     * @example\n     * ```\n     * echo CarbonInterval::fromString('4d 3h 40m')->forHumans() . \"\\n\";\n     * echo CarbonInterval::fromString('4d 3h 40m')->forHumans(['parts' => 2]) . \"\\n\";\n     * echo CarbonInterval::fromString('4d 3h 40m')->forHumans(['parts' => 3, 'join' => true]) . \"\\n\";\n     * echo CarbonInterval::fromString('4d 3h 40m')->forHumans(['short' => true]) . \"\\n\";\n     * echo CarbonInterval::fromString('1d 24h')->forHumans(['join' => ' or ']) . \"\\n\";\n     * echo CarbonInterval::fromString('1d 24h')->forHumans(['minimumUnit' => 'hour']) . \"\\n\";\n     * ```\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contain:\n     *                           ⦿ 'syntax' entry (see below)\n     *                           ⦿ 'short' entry (see below)\n     *                           ⦿ 'parts' entry (see below)\n     *                           ⦿ 'options' entry (see below)\n     *                           ⦿ 'skip' entry, list of units to skip (array of strings or a single string,\n     *                           ` it can be the unit name (singular or plural) or its shortcut\n     *                           ` (y, m, w, d, h, min, s, ms, µs).\n     *                           ⦿ 'aUnit' entry, prefer \"an hour\" over \"1 hour\" if true\n     *                           ⦿ 'altNumbers' entry, use alternative numbers if available\n     *                           ` (from the current language if true is passed, from the given language(s)\n     *                           ` if array or string is passed)\n     *                           ⦿ 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           ⦿ 'minimumUnit' entry determines the smallest unit of time to display can be long or\n     *                           `  short form of the units, e.g. 'hour' or 'h' (default value: s)\n     *                           ⦿ 'locale' language in which the diff should be output (has no effect if 'translator' key is set)\n     *                           ⦿ 'translator' a custom translator to use to translator the output.\n     *                           if int passed, it adds modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: -1: no limits)\n     * @param int       $options human diff options\n     *\n     * @throws Exception\n     *\n     * @return string\n     */\n    public function forHumans($syntax = null, $short = false, $parts = self::NO_LIMIT, $options = null): string\n    {\n        /* @var TranslatorInterface|null $translator */\n        [$syntax, $short, $parts, $options, $join, $aUnit, $altNumbers, $interpolations, $minimumUnit, $skip, $translator] = $this\n            ->getForHumansParameters($syntax, $short, $parts, $options);\n\n        $interval = [];\n\n        $syntax = (int) ($syntax ?? CarbonInterface::DIFF_ABSOLUTE);\n        $absolute = $syntax === CarbonInterface::DIFF_ABSOLUTE;\n        $relativeToNow = $syntax === CarbonInterface::DIFF_RELATIVE_TO_NOW;\n        $count = 1;\n        $unit = $short ? 's' : 'second';\n        $isFuture = $this->invert === 1;\n        $transId = $relativeToNow ? ($isFuture ? 'from_now' : 'ago') : ($isFuture ? 'after' : 'before');\n        $declensionMode = null;\n\n        $translator ??= $this->getLocalTranslator();\n\n        $handleDeclensions = function ($unit, $count, $index = 0, $parts = 1) use ($interpolations, $transId, $translator, $altNumbers, $absolute, &$declensionMode) {\n            if (!$absolute) {\n                $declensionMode = $declensionMode ?? $this->translate($transId.'_mode');\n\n                if ($this->needsDeclension($declensionMode, $index, $parts)) {\n                    // Some languages have special pluralization for past and future tense.\n                    $key = $unit.'_'.$transId;\n                    $result = $this->translate($key, $interpolations, $count, $translator, $altNumbers);\n\n                    if ($result !== $key) {\n                        return $result;\n                    }\n                }\n            }\n\n            $result = $this->translate($unit, $interpolations, $count, $translator, $altNumbers);\n\n            if ($result !== $unit) {\n                return $result;\n            }\n\n            return null;\n        };\n\n        $intervalValues = $this;\n        $method = static::getRoundingMethodFromOptions($options);\n\n        if ($method) {\n            $previousCount = INF;\n\n            while (\n                \\count($intervalValues->getNonZeroValues()) > $parts &&\n                ($count = \\count($keys = array_keys($intervalValues->getValuesSequence()))) > 1\n            ) {\n                $index = min($count, $previousCount - 1) - 2;\n\n                if ($index < 0) {\n                    break;\n                }\n\n                $intervalValues = $this->copy()->roundUnit(\n                    $keys[$index],\n                    1,\n                    $method,\n                );\n                $previousCount = $count;\n            }\n        }\n\n        $diffIntervalArray = [\n            ['value' => $intervalValues->years,             'unit' => 'year',        'unitShort' => 'y'],\n            ['value' => $intervalValues->months,            'unit' => 'month',       'unitShort' => 'm'],\n            ['value' => $intervalValues->weeks,             'unit' => 'week',        'unitShort' => 'w'],\n            ['value' => $intervalValues->daysExcludeWeeks,  'unit' => 'day',         'unitShort' => 'd'],\n            ['value' => $intervalValues->hours,             'unit' => 'hour',        'unitShort' => 'h'],\n            ['value' => $intervalValues->minutes,           'unit' => 'minute',      'unitShort' => 'min'],\n            ['value' => $intervalValues->seconds,           'unit' => 'second',      'unitShort' => 's'],\n            ['value' => $intervalValues->milliseconds,      'unit' => 'millisecond', 'unitShort' => 'ms'],\n            ['value' => $intervalValues->microExcludeMilli, 'unit' => 'microsecond', 'unitShort' => 'µs'],\n        ];\n\n        if (!empty($skip)) {\n            foreach ($diffIntervalArray as $index => &$unitData) {\n                $nextIndex = $index + 1;\n\n                if ($unitData['value'] &&\n                    isset($diffIntervalArray[$nextIndex]) &&\n                    \\count(array_intersect([$unitData['unit'], $unitData['unit'].'s', $unitData['unitShort']], $skip))\n                ) {\n                    $diffIntervalArray[$nextIndex]['value'] += $unitData['value'] *\n                        self::getFactorWithDefault($diffIntervalArray[$nextIndex]['unit'], $unitData['unit']);\n                    $unitData['value'] = 0;\n                }\n            }\n        }\n\n        $transChoice = function ($short, $unitData, $index, $parts) use ($absolute, $handleDeclensions, $translator, $aUnit, $altNumbers, $interpolations) {\n            $count = $unitData['value'];\n\n            if ($short) {\n                $result = $handleDeclensions($unitData['unitShort'], $count, $index, $parts);\n\n                if ($result !== null) {\n                    return $result;\n                }\n            } elseif ($aUnit) {\n                $result = $handleDeclensions('a_'.$unitData['unit'], $count, $index, $parts);\n\n                if ($result !== null) {\n                    return $result;\n                }\n            }\n\n            if (!$absolute) {\n                return $handleDeclensions($unitData['unit'], $count, $index, $parts);\n            }\n\n            return $this->translate($unitData['unit'], $interpolations, $count, $translator, $altNumbers);\n        };\n\n        $fallbackUnit = ['second', 's'];\n\n        foreach ($diffIntervalArray as $diffIntervalData) {\n            if ($diffIntervalData['value'] > 0) {\n                $unit = $short ? $diffIntervalData['unitShort'] : $diffIntervalData['unit'];\n                $count = $diffIntervalData['value'];\n                $interval[] = [$short, $diffIntervalData];\n            } elseif ($options & CarbonInterface::SEQUENTIAL_PARTS_ONLY && \\count($interval) > 0) {\n                break;\n            }\n\n            // break the loop after we get the required number of parts in array\n            if (\\count($interval) >= $parts) {\n                break;\n            }\n\n            // break the loop after we have reached the minimum unit\n            if (\\in_array($minimumUnit, [$diffIntervalData['unit'], $diffIntervalData['unitShort']], true)) {\n                $fallbackUnit = [$diffIntervalData['unit'], $diffIntervalData['unitShort']];\n\n                break;\n            }\n        }\n\n        $actualParts = \\count($interval);\n\n        foreach ($interval as $index => &$item) {\n            $item = $transChoice($item[0], $item[1], $index, $actualParts);\n        }\n\n        if (\\count($interval) === 0) {\n            if ($relativeToNow && $options & CarbonInterface::JUST_NOW) {\n                $key = 'diff_now';\n                $translation = $this->translate($key, $interpolations, null, $translator);\n\n                if ($translation !== $key) {\n                    return $translation;\n                }\n            }\n\n            $count = $options & CarbonInterface::NO_ZERO_DIFF ? 1 : 0;\n            $unit = $fallbackUnit[$short ? 1 : 0];\n            $interval[] = $this->translate($unit, $interpolations, $count, $translator, $altNumbers);\n        }\n\n        // join the interval parts by a space\n        $time = $join($interval);\n\n        unset($diffIntervalArray, $interval);\n\n        if ($absolute) {\n            return $time;\n        }\n\n        $isFuture = $this->invert === 1;\n\n        $transId = $relativeToNow ? ($isFuture ? 'from_now' : 'ago') : ($isFuture ? 'after' : 'before');\n\n        if ($parts === 1) {\n            if ($relativeToNow && $unit === 'day') {\n                $specialTranslations = static::SPECIAL_TRANSLATIONS[$count] ?? null;\n\n                if ($specialTranslations && $options & $specialTranslations['option']) {\n                    $key = $specialTranslations[$isFuture ? 'future' : 'past'];\n                    $translation = $this->translate($key, $interpolations, null, $translator);\n\n                    if ($translation !== $key) {\n                        return $translation;\n                    }\n                }\n            }\n\n            $aTime = $aUnit ? $handleDeclensions('a_'.$unit, $count) : null;\n\n            $time = $aTime ?: $handleDeclensions($unit, $count) ?: $time;\n        }\n\n        $time = [':time' => $time];\n\n        return $this->translate($transId, array_merge($time, $interpolations, $time), null, $translator);\n    }\n\n    public function format(string $format): string\n    {\n        $output = parent::format($format);\n\n        if (!str_contains($format, '%a') || !isset($this->startDate, $this->endDate)) {\n            return $output;\n        }\n\n        $this->rawInterval ??= $this->startDate->diffAsDateInterval($this->endDate);\n\n        return str_replace('(unknown)', $this->rawInterval->format('%a'), $output);\n    }\n\n    /**\n     * Format the instance as a string using the forHumans() function.\n     *\n     * @throws Exception\n     *\n     * @return string\n     */\n    public function __toString(): string\n    {\n        $format = $this->localToStringFormat\n            ?? $this->getFactory()->getSettings()['toStringFormat']\n            ?? null;\n\n        if (!$format) {\n            return $this->forHumans();\n        }\n\n        if ($format instanceof Closure) {\n            return $format($this);\n        }\n\n        return $this->format($format);\n    }\n\n    /**\n     * Return native DateInterval PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(CarbonInterval::hours(2)->toDateInterval());\n     * ```\n     *\n     * @return DateInterval\n     */\n    public function toDateInterval(): DateInterval\n    {\n        return self::castIntervalToClass($this, DateInterval::class);\n    }\n\n    /**\n     * Convert the interval to a CarbonPeriod.\n     *\n     * @param DateTimeInterface|string|int ...$params Start date, [end date or recurrences] and optional settings.\n     *\n     * @return CarbonPeriod\n     */\n    public function toPeriod(...$params): CarbonPeriod\n    {\n        if ($this->timezoneSetting) {\n            $timeZone = \\is_string($this->timezoneSetting)\n                ? new DateTimeZone($this->timezoneSetting)\n                : $this->timezoneSetting;\n\n            if ($timeZone instanceof DateTimeZone) {\n                array_unshift($params, $timeZone);\n            }\n        }\n\n        $class = ($params[0] ?? null) instanceof DateTime ? CarbonPeriod::class : CarbonPeriodImmutable::class;\n\n        return $class::create($this, ...$params);\n    }\n\n    /**\n     * Decompose the current interval into\n     *\n     * @param mixed|int|DateInterval|string|Closure|Unit|null $interval interval or number of the given $unit\n     * @param Unit|string|null                                $unit     if specified, $interval must be an integer\n     *\n     * @return CarbonPeriod\n     */\n    public function stepBy($interval, Unit|string|null $unit = null): CarbonPeriod\n    {\n        $this->checkStartAndEnd();\n        $start = $this->startDate ?? CarbonImmutable::make('now');\n        $end = $this->endDate ?? $start->copy()->add($this);\n\n        try {\n            $step = static::make($interval, $unit);\n        } catch (InvalidFormatException $exception) {\n            if ($unit || (\\is_string($interval) ? preg_match('/(\\s|\\d)/', $interval) : !($interval instanceof Unit))) {\n                throw $exception;\n            }\n\n            $step = static::make(1, $interval);\n        }\n\n        $class = $start instanceof DateTime ? CarbonPeriod::class : CarbonPeriodImmutable::class;\n\n        return $class::create($step, $start, $end);\n    }\n\n    /**\n     * Invert the interval.\n     *\n     * @param bool|int $inverted if a parameter is passed, the passed value cast as 1 or 0 is used\n     *                           as the new value of the ->invert property.\n     *\n     * @return $this\n     */\n    public function invert($inverted = null): static\n    {\n        $this->invert = (\\func_num_args() === 0 ? !$this->invert : $inverted) ? 1 : 0;\n\n        return $this;\n    }\n\n    protected function solveNegativeInterval(): static\n    {\n        if (!$this->isEmpty() && $this->years <= 0 && $this->months <= 0 && $this->dayz <= 0 && $this->hours <= 0 && $this->minutes <= 0 && $this->seconds <= 0 && $this->microseconds <= 0) {\n            $this->years *= self::NEGATIVE;\n            $this->months *= self::NEGATIVE;\n            $this->dayz *= self::NEGATIVE;\n            $this->hours *= self::NEGATIVE;\n            $this->minutes *= self::NEGATIVE;\n            $this->seconds *= self::NEGATIVE;\n            $this->microseconds *= self::NEGATIVE;\n            $this->invert();\n        }\n\n        return $this;\n    }\n\n    /**\n     * Add the passed interval to the current instance.\n     *\n     * @param string|DateInterval $unit\n     * @param int|float           $value\n     *\n     * @return $this\n     */\n    public function add($unit, $value = 1): static\n    {\n        if (is_numeric($unit)) {\n            [$value, $unit] = [$unit, $value];\n        }\n\n        if (\\is_string($unit) && !preg_match('/^\\s*-?\\d/', $unit)) {\n            $unit = \"$value $unit\";\n            $value = 1;\n        }\n\n        $interval = static::make($unit);\n\n        if (!$interval) {\n            throw new InvalidIntervalException('This type of data cannot be added/subtracted.');\n        }\n\n        if ($value !== 1) {\n            $interval->times($value);\n        }\n\n        $sign = ($this->invert === 1) !== ($interval->invert === 1) ? self::NEGATIVE : self::POSITIVE;\n        $this->years += $interval->y * $sign;\n        $this->months += $interval->m * $sign;\n        $this->dayz += ($interval->days === false ? $interval->d : $interval->days) * $sign;\n        $this->hours += $interval->h * $sign;\n        $this->minutes += $interval->i * $sign;\n        $this->seconds += $interval->s * $sign;\n        $this->microseconds += $interval->microseconds * $sign;\n\n        $this->solveNegativeInterval();\n\n        return $this;\n    }\n\n    /**\n     * Subtract the passed interval to the current instance.\n     *\n     * @param string|DateInterval $unit\n     * @param int|float           $value\n     *\n     * @return $this\n     */\n    public function sub($unit, $value = 1): static\n    {\n        if (is_numeric($unit)) {\n            [$value, $unit] = [$unit, $value];\n        }\n\n        return $this->add($unit, -(float) $value);\n    }\n\n    /**\n     * Subtract the passed interval to the current instance.\n     *\n     * @param string|DateInterval $unit\n     * @param int|float           $value\n     *\n     * @return $this\n     */\n    public function subtract($unit, $value = 1): static\n    {\n        return $this->sub($unit, $value);\n    }\n\n    /**\n     * Add given parameters to the current interval.\n     *\n     * @param int       $years\n     * @param int       $months\n     * @param int|float $weeks\n     * @param int|float $days\n     * @param int|float $hours\n     * @param int|float $minutes\n     * @param int|float $seconds\n     * @param int|float $microseconds\n     *\n     * @return $this\n     */\n    public function plus(\n        $years = 0,\n        $months = 0,\n        $weeks = 0,\n        $days = 0,\n        $hours = 0,\n        $minutes = 0,\n        $seconds = 0,\n        $microseconds = 0\n    ): static {\n        return $this->add(\"\n            $years years $months months $weeks weeks $days days\n            $hours hours $minutes minutes $seconds seconds $microseconds microseconds\n        \");\n    }\n\n    /**\n     * Add given parameters to the current interval.\n     *\n     * @param int       $years\n     * @param int       $months\n     * @param int|float $weeks\n     * @param int|float $days\n     * @param int|float $hours\n     * @param int|float $minutes\n     * @param int|float $seconds\n     * @param int|float $microseconds\n     *\n     * @return $this\n     */\n    public function minus(\n        $years = 0,\n        $months = 0,\n        $weeks = 0,\n        $days = 0,\n        $hours = 0,\n        $minutes = 0,\n        $seconds = 0,\n        $microseconds = 0\n    ): static {\n        return $this->sub(\"\n            $years years $months months $weeks weeks $days days\n            $hours hours $minutes minutes $seconds seconds $microseconds microseconds\n        \");\n    }\n\n    /**\n     * Multiply current instance given number of times. times() is naive, it multiplies each unit\n     * (so day can be greater than 31, hour can be greater than 23, etc.) and the result is rounded\n     * separately for each unit.\n     *\n     * Use times() when you want a fast and approximated calculation that does not cascade units.\n     *\n     * For a precise and cascaded calculation,\n     *\n     * @see multiply()\n     *\n     * @param float|int $factor\n     *\n     * @return $this\n     */\n    public function times($factor): static\n    {\n        if ($factor < 0) {\n            $this->invert = $this->invert ? 0 : 1;\n            $factor = -$factor;\n        }\n\n        $this->years = (int) round($this->years * $factor);\n        $this->months = (int) round($this->months * $factor);\n        $this->dayz = (int) round($this->dayz * $factor);\n        $this->hours = (int) round($this->hours * $factor);\n        $this->minutes = (int) round($this->minutes * $factor);\n        $this->seconds = (int) round($this->seconds * $factor);\n        $this->microseconds = (int) round($this->microseconds * $factor);\n\n        return $this;\n    }\n\n    /**\n     * Divide current instance by a given divider. shares() is naive, it divides each unit separately\n     * and the result is rounded for each unit. So 5 hours and 20 minutes shared by 3 becomes 2 hours\n     * and 7 minutes.\n     *\n     * Use shares() when you want a fast and approximated calculation that does not cascade units.\n     *\n     * For a precise and cascaded calculation,\n     *\n     * @see divide()\n     *\n     * @param float|int $divider\n     *\n     * @return $this\n     */\n    public function shares($divider): static\n    {\n        return $this->times(1 / $divider);\n    }\n\n    protected function copyProperties(self $interval, $ignoreSign = false): static\n    {\n        $this->years = $interval->years;\n        $this->months = $interval->months;\n        $this->dayz = $interval->dayz;\n        $this->hours = $interval->hours;\n        $this->minutes = $interval->minutes;\n        $this->seconds = $interval->seconds;\n        $this->microseconds = $interval->microseconds;\n\n        if (!$ignoreSign) {\n            $this->invert = $interval->invert;\n        }\n\n        return $this;\n    }\n\n    /**\n     * Multiply and cascade current instance by a given factor.\n     *\n     * @param float|int $factor\n     *\n     * @return $this\n     */\n    public function multiply($factor): static\n    {\n        if ($factor < 0) {\n            $this->invert = $this->invert ? 0 : 1;\n            $factor = -$factor;\n        }\n\n        $yearPart = (int) floor($this->years * $factor); // Split calculation to prevent imprecision\n\n        if ($yearPart) {\n            $this->years -= $yearPart / $factor;\n        }\n\n        return $this->copyProperties(\n            static::create($yearPart)\n                ->microseconds(abs($this->totalMicroseconds) * $factor)\n                ->cascade(),\n            true,\n        );\n    }\n\n    /**\n     * Divide and cascade current instance by a given divider.\n     *\n     * @param float|int $divider\n     *\n     * @return $this\n     */\n    public function divide($divider): static\n    {\n        return $this->multiply(1 / $divider);\n    }\n\n    /**\n     * Get the interval_spec string of a date interval.\n     *\n     * @param DateInterval $interval\n     *\n     * @return string\n     */\n    public static function getDateIntervalSpec(DateInterval $interval, bool $microseconds = false, array $skip = []): string\n    {\n        $date = array_filter([\n            static::PERIOD_YEARS => abs($interval->y),\n            static::PERIOD_MONTHS => abs($interval->m),\n            static::PERIOD_DAYS => abs($interval->d),\n        ]);\n\n        $skip = array_map([Unit::class, 'toNameIfUnit'], $skip);\n\n        if (\n            $interval->days >= CarbonInterface::DAYS_PER_WEEK * CarbonInterface::WEEKS_PER_MONTH &&\n            (!isset($date[static::PERIOD_YEARS]) || \\count(array_intersect(['y', 'year', 'years'], $skip))) &&\n            (!isset($date[static::PERIOD_MONTHS]) || \\count(array_intersect(['m', 'month', 'months'], $skip)))\n        ) {\n            $date = [\n                static::PERIOD_DAYS => abs($interval->days),\n            ];\n        }\n\n        $seconds = abs($interval->s);\n        if ($microseconds && $interval->f > 0) {\n            $seconds = \\sprintf('%d.%06d', $seconds, abs($interval->f) * 1000000);\n        }\n\n        $time = array_filter([\n            static::PERIOD_HOURS => abs($interval->h),\n            static::PERIOD_MINUTES => abs($interval->i),\n            static::PERIOD_SECONDS => $seconds,\n        ]);\n\n        $specString = static::PERIOD_PREFIX;\n\n        foreach ($date as $key => $value) {\n            $specString .= $value.$key;\n        }\n\n        if (\\count($time) > 0) {\n            $specString .= static::PERIOD_TIME_PREFIX;\n            foreach ($time as $key => $value) {\n                $specString .= $value.$key;\n            }\n        }\n\n        return $specString === static::PERIOD_PREFIX ? 'PT0S' : $specString;\n    }\n\n    /**\n     * Get the interval_spec string.\n     *\n     * @return string\n     */\n    public function spec(bool $microseconds = false): string\n    {\n        return static::getDateIntervalSpec($this, $microseconds);\n    }\n\n    /**\n     * Comparing 2 date intervals.\n     *\n     * @param DateInterval $first\n     * @param DateInterval $second\n     *\n     * @return int 0, 1 or -1\n     */\n    public static function compareDateIntervals(DateInterval $first, DateInterval $second): int\n    {\n        $current = Carbon::now();\n        $passed = $current->avoidMutation()->add($second);\n        $current->add($first);\n\n        return $current <=> $passed;\n    }\n\n    /**\n     * Comparing with passed interval.\n     *\n     * @param DateInterval $interval\n     *\n     * @return int 0, 1 or -1\n     */\n    public function compare(DateInterval $interval): int\n    {\n        return static::compareDateIntervals($this, $interval);\n    }\n\n    /**\n     * Convert overflowed values into bigger units.\n     *\n     * @return $this\n     */\n    public function cascade(): static\n    {\n        return $this->doCascade(false);\n    }\n\n    public function hasNegativeValues(): bool\n    {\n        foreach ($this->toArray() as $value) {\n            if ($value < 0) {\n                return true;\n            }\n        }\n\n        return false;\n    }\n\n    public function hasPositiveValues(): bool\n    {\n        foreach ($this->toArray() as $value) {\n            if ($value > 0) {\n                return true;\n            }\n        }\n\n        return false;\n    }\n\n    /**\n     * Get amount of given unit equivalent to the interval.\n     *\n     * @param string $unit\n     *\n     * @throws UnknownUnitException|UnitNotConfiguredException\n     *\n     * @return float\n     */\n    public function total(string $unit): float\n    {\n        $realUnit = $unit = strtolower($unit);\n\n        if (\\in_array($unit, ['days', 'weeks'])) {\n            $realUnit = 'dayz';\n        } elseif (!\\in_array($unit, ['microseconds', 'milliseconds', 'seconds', 'minutes', 'hours', 'dayz', 'months', 'years'])) {\n            throw new UnknownUnitException($unit);\n        }\n\n        $this->checkStartAndEnd();\n\n        if ($this->startDate && $this->endDate) {\n            $diff = $this->startDate->diffInUnit($unit, $this->endDate);\n\n            return $this->absolute ? abs($diff) : $diff;\n        }\n\n        $result = 0;\n        $cumulativeFactor = 0;\n        $unitFound = false;\n        $factors = self::getFlipCascadeFactors();\n        $daysPerWeek = (int) static::getDaysPerWeek();\n\n        $values = [\n            'years' => $this->years,\n            'months' => $this->months,\n            'weeks' => (int) ($this->d / $daysPerWeek),\n            'dayz' => fmod($this->d, $daysPerWeek),\n            'hours' => $this->hours,\n            'minutes' => $this->minutes,\n            'seconds' => $this->seconds,\n            'milliseconds' => (int) ($this->microseconds / Carbon::MICROSECONDS_PER_MILLISECOND),\n            'microseconds' => $this->microseconds % Carbon::MICROSECONDS_PER_MILLISECOND,\n        ];\n\n        if (isset($factors['dayz']) && $factors['dayz'][0] !== 'weeks') {\n            $values['dayz'] += $values['weeks'] * $daysPerWeek;\n            $values['weeks'] = 0;\n        }\n\n        foreach ($factors as $source => [$target, $factor]) {\n            if ($source === $realUnit) {\n                $unitFound = true;\n                $value = $values[$source];\n                $result += $value;\n                $cumulativeFactor = 1;\n            }\n\n            if ($factor === false) {\n                if ($unitFound) {\n                    break;\n                }\n\n                $result = 0;\n                $cumulativeFactor = 0;\n\n                continue;\n            }\n\n            if ($target === $realUnit) {\n                $unitFound = true;\n            }\n\n            if ($cumulativeFactor) {\n                $cumulativeFactor *= $factor;\n                $result += $values[$target] * $cumulativeFactor;\n\n                continue;\n            }\n\n            $value = $values[$source];\n\n            $result = ($result + $value) / $factor;\n        }\n\n        if (isset($target) && !$cumulativeFactor) {\n            $result += $values[$target];\n        }\n\n        if (!$unitFound) {\n            throw new UnitNotConfiguredException($unit);\n        }\n\n        if ($this->invert) {\n            $result *= self::NEGATIVE;\n        }\n\n        if ($unit === 'weeks') {\n            $result /= $daysPerWeek;\n        }\n\n        // Cast as int numbers with no decimal part\n        return fmod($result, 1) === 0.0 ? (int) $result : $result;\n    }\n\n    /**\n     * Determines if the instance is equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @see equalTo()\n     *\n     * @return bool\n     */\n    public function eq($interval): bool\n    {\n        return $this->equalTo($interval);\n    }\n\n    /**\n     * Determines if the instance is equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @return bool\n     */\n    public function equalTo($interval): bool\n    {\n        $interval = $this->resolveInterval($interval);\n\n        if ($interval === null) {\n            return false;\n        }\n\n        $step = $this->getStep();\n\n        if ($step) {\n            return $step === $interval->getStep();\n        }\n\n        if ($this->isEmpty()) {\n            return $interval->isEmpty();\n        }\n\n        $cascadedInterval = $this->copy()->cascade();\n        $comparedInterval = $interval->copy()->cascade();\n\n        return $cascadedInterval->invert === $comparedInterval->invert &&\n            $cascadedInterval->getNonZeroValues() === $comparedInterval->getNonZeroValues();\n    }\n\n    /**\n     * Determines if the instance is not equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @see notEqualTo()\n     *\n     * @return bool\n     */\n    public function ne($interval): bool\n    {\n        return $this->notEqualTo($interval);\n    }\n\n    /**\n     * Determines if the instance is not equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @return bool\n     */\n    public function notEqualTo($interval): bool\n    {\n        return !$this->eq($interval);\n    }\n\n    /**\n     * Determines if the instance is greater (longer) than another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @see greaterThan()\n     *\n     * @return bool\n     */\n    public function gt($interval): bool\n    {\n        return $this->greaterThan($interval);\n    }\n\n    /**\n     * Determines if the instance is greater (longer) than another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @return bool\n     */\n    public function greaterThan($interval): bool\n    {\n        $interval = $this->resolveInterval($interval);\n\n        return $interval === null || $this->totalMicroseconds > $interval->totalMicroseconds;\n    }\n\n    /**\n     * Determines if the instance is greater (longer) than or equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @see greaterThanOrEqualTo()\n     *\n     * @return bool\n     */\n    public function gte($interval): bool\n    {\n        return $this->greaterThanOrEqualTo($interval);\n    }\n\n    /**\n     * Determines if the instance is greater (longer) than or equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @return bool\n     */\n    public function greaterThanOrEqualTo($interval): bool\n    {\n        return $this->greaterThan($interval) || $this->equalTo($interval);\n    }\n\n    /**\n     * Determines if the instance is less (shorter) than another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @see lessThan()\n     *\n     * @return bool\n     */\n    public function lt($interval): bool\n    {\n        return $this->lessThan($interval);\n    }\n\n    /**\n     * Determines if the instance is less (shorter) than another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @return bool\n     */\n    public function lessThan($interval): bool\n    {\n        $interval = $this->resolveInterval($interval);\n\n        return $interval !== null && $this->totalMicroseconds < $interval->totalMicroseconds;\n    }\n\n    /**\n     * Determines if the instance is less (shorter) than or equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @see lessThanOrEqualTo()\n     *\n     * @return bool\n     */\n    public function lte($interval): bool\n    {\n        return $this->lessThanOrEqualTo($interval);\n    }\n\n    /**\n     * Determines if the instance is less (shorter) than or equal to another\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval\n     *\n     * @return bool\n     */\n    public function lessThanOrEqualTo($interval): bool\n    {\n        return $this->lessThan($interval) || $this->equalTo($interval);\n    }\n\n    /**\n     * Determines if the instance is between two others.\n     *\n     * The third argument allow you to specify if bounds are included or not (true by default)\n     * but for when you including/excluding bounds may produce different results in your application,\n     * we recommend to use the explicit methods ->betweenIncluded() or ->betweenExcluded() instead.\n     *\n     * @example\n     * ```\n     * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::days(3)); // true\n     * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::hours(36)); // false\n     * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::days(2)); // true\n     * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::days(2), false); // false\n     * ```\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval1\n     * @param CarbonInterval|DateInterval|mixed $interval2\n     * @param bool                              $equal     Indicates if an equal to comparison should be done\n     *\n     * @return bool\n     */\n    public function between($interval1, $interval2, bool $equal = true): bool\n    {\n        return $equal\n            ? $this->greaterThanOrEqualTo($interval1) && $this->lessThanOrEqualTo($interval2)\n            : $this->greaterThan($interval1) && $this->lessThan($interval2);\n    }\n\n    /**\n     * Determines if the instance is between two others, bounds excluded.\n     *\n     * @example\n     * ```\n     * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(3)); // true\n     * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::hours(36)); // false\n     * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(2)); // true\n     * ```\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval1\n     * @param CarbonInterval|DateInterval|mixed $interval2\n     *\n     * @return bool\n     */\n    public function betweenIncluded($interval1, $interval2): bool\n    {\n        return $this->between($interval1, $interval2, true);\n    }\n\n    /**\n     * Determines if the instance is between two others, bounds excluded.\n     *\n     * @example\n     * ```\n     * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(3)); // true\n     * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::hours(36)); // false\n     * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(2)); // false\n     * ```\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval1\n     * @param CarbonInterval|DateInterval|mixed $interval2\n     *\n     * @return bool\n     */\n    public function betweenExcluded($interval1, $interval2): bool\n    {\n        return $this->between($interval1, $interval2, false);\n    }\n\n    /**\n     * Determines if the instance is between two others\n     *\n     * @example\n     * ```\n     * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::days(3)); // true\n     * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::hours(36)); // false\n     * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::days(2)); // true\n     * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::days(2), false); // false\n     * ```\n     *\n     * @param CarbonInterval|DateInterval|mixed $interval1\n     * @param CarbonInterval|DateInterval|mixed $interval2\n     * @param bool                              $equal     Indicates if an equal to comparison should be done\n     *\n     * @return bool\n     */\n    public function isBetween($interval1, $interval2, bool $equal = true): bool\n    {\n        return $this->between($interval1, $interval2, $equal);\n    }\n\n    /**\n     * Round the current instance at the given unit with given precision if specified and the given function.\n     *\n     * @throws Exception\n     */\n    public function roundUnit(string $unit, DateInterval|string|int|float $precision = 1, string $function = 'round'): static\n    {\n        if (static::getCascadeFactors() !== static::getDefaultCascadeFactors()) {\n            $value = $function($this->total($unit) / $precision) * $precision;\n            $inverted = $value < 0;\n\n            return $this->copyProperties(self::fromString(\n                number_format(abs($value), 12, '.', '').' '.$unit\n            )->invert($inverted)->cascade());\n        }\n\n        $base = CarbonImmutable::parse('2000-01-01 00:00:00', 'UTC')\n            ->roundUnit($unit, $precision, $function);\n        $next = $base->add($this);\n        $inverted = $next < $base;\n\n        if ($inverted) {\n            $next = $base->sub($this);\n        }\n\n        $this->copyProperties(\n            $next\n                ->roundUnit($unit, $precision, $function)\n                ->diff($base),\n        );\n\n        return $this->invert($inverted);\n    }\n\n    /**\n     * Truncate the current instance at the given unit with given precision if specified.\n     *\n     * @param string                             $unit\n     * @param float|int|string|DateInterval|null $precision\n     *\n     * @throws Exception\n     *\n     * @return $this\n     */\n    public function floorUnit(string $unit, $precision = 1): static\n    {\n        return $this->roundUnit($unit, $precision, 'floor');\n    }\n\n    /**\n     * Ceil the current instance at the given unit with given precision if specified.\n     *\n     * @param string                             $unit\n     * @param float|int|string|DateInterval|null $precision\n     *\n     * @throws Exception\n     *\n     * @return $this\n     */\n    public function ceilUnit(string $unit, $precision = 1): static\n    {\n        return $this->roundUnit($unit, $precision, 'ceil');\n    }\n\n    /**\n     * Round the current instance second with given precision if specified.\n     *\n     * @param float|int|string|DateInterval|null $precision\n     * @param string                             $function\n     *\n     * @throws Exception\n     *\n     * @return $this\n     */\n    public function round($precision = 1, string $function = 'round'): static\n    {\n        return $this->roundWith($precision, $function);\n    }\n\n    /**\n     * Round the current instance second with given precision if specified.\n     *\n     * @throws Exception\n     *\n     * @return $this\n     */\n    public function floor(DateInterval|string|float|int $precision = 1): static\n    {\n        return $this->round($precision, 'floor');\n    }\n\n    /**\n     * Ceil the current instance second with given precision if specified.\n     *\n     * @throws Exception\n     *\n     * @return $this\n     */\n    public function ceil(DateInterval|string|float|int $precision = 1): static\n    {\n        return $this->round($precision, 'ceil');\n    }\n\n    public function __unserialize(array $data): void\n    {\n        $properties = array_combine(\n            array_map(\n                static fn (mixed $key) => \\is_string($key)\n                    ? str_replace('tzName', 'timezoneSetting', $key)\n                    : $key,\n                array_keys($data),\n            ),\n            $data,\n        );\n\n        if (method_exists(parent::class, '__unserialize')) {\n            // PHP >= 8.2\n            parent::__unserialize($properties);\n\n            return;\n        }\n\n        // PHP <= 8.1\n        // @codeCoverageIgnoreStart\n        $properties = array_combine(\n            array_map(\n                static fn (string $property) => preg_replace('/^\\0.+\\0/', '', $property),\n                array_keys($data),\n            ),\n            $data,\n        );\n        $localStrictMode = $this->localStrictModeEnabled;\n        $this->localStrictModeEnabled = false;\n        $days = $properties['days'] ?? false;\n        $this->days = $days === false ? false : (int) $days;\n        $this->y = (int) ($properties['y'] ?? 0);\n        $this->m = (int) ($properties['m'] ?? 0);\n        $this->d = (int) ($properties['d'] ?? 0);\n        $this->h = (int) ($properties['h'] ?? 0);\n        $this->i = (int) ($properties['i'] ?? 0);\n        $this->s = (int) ($properties['s'] ?? 0);\n        $this->f = (float) ($properties['f'] ?? 0.0);\n        // @phpstan-ignore-next-line\n        $this->weekday = (int) ($properties['weekday'] ?? 0);\n        // @phpstan-ignore-next-line\n        $this->weekday_behavior = (int) ($properties['weekday_behavior'] ?? 0);\n        // @phpstan-ignore-next-line\n        $this->first_last_day_of = (int) ($properties['first_last_day_of'] ?? 0);\n        $this->invert = (int) ($properties['invert'] ?? 0);\n        // @phpstan-ignore-next-line\n        $this->special_type = (int) ($properties['special_type'] ?? 0);\n        // @phpstan-ignore-next-line\n        $this->special_amount = (int) ($properties['special_amount'] ?? 0);\n        // @phpstan-ignore-next-line\n        $this->have_weekday_relative = (int) ($properties['have_weekday_relative'] ?? 0);\n        // @phpstan-ignore-next-line\n        $this->have_special_relative = (int) ($properties['have_special_relative'] ?? 0);\n        parent::__construct(self::getDateIntervalSpec($this));\n\n        foreach ($properties as $property => $value) {\n            if ($property === 'localStrictModeEnabled') {\n                continue;\n            }\n\n            $this->$property = $value;\n        }\n\n        $this->localStrictModeEnabled = $properties['localStrictModeEnabled'] ?? $localStrictMode;\n        // @codeCoverageIgnoreEnd\n    }\n\n    /**\n     * @template T\n     *\n     * @param T     $interval\n     * @param mixed $original\n     *\n     * @return T\n     */\n    private static function withOriginal(mixed $interval, mixed $original): mixed\n    {\n        if ($interval instanceof self) {\n            $interval->originalInput = $original;\n        }\n\n        return $interval;\n    }\n\n    private static function standardizeUnit(string $unit): string\n    {\n        $unit = rtrim($unit, 'sz').'s';\n\n        return $unit === 'days' ? 'dayz' : $unit;\n    }\n\n    private static function getFlipCascadeFactors(): array\n    {\n        if (!self::$flipCascadeFactors) {\n            self::$flipCascadeFactors = [];\n\n            foreach (self::getCascadeFactors() as $to => [$factor, $from]) {\n                self::$flipCascadeFactors[self::standardizeUnit($from)] = [self::standardizeUnit($to), $factor];\n            }\n        }\n\n        return self::$flipCascadeFactors;\n    }\n\n    /**\n     * @template T of DateInterval\n     *\n     * @param DateInterval $interval\n     *\n     * @psalm-param class-string<T> $className\n     *\n     * @return T\n     */\n    private static function castIntervalToClass(DateInterval $interval, string $className, array $skip = []): object\n    {\n        $mainClass = DateInterval::class;\n\n        if (!is_a($className, $mainClass, true)) {\n            throw new InvalidCastException(\"$className is not a sub-class of $mainClass.\");\n        }\n\n        $microseconds = $interval->f;\n        $instance = self::buildInstance($interval, $className, $skip);\n\n        if ($instance instanceof self) {\n            $instance->originalInput = $interval;\n        }\n\n        if ($microseconds) {\n            $instance->f = $microseconds;\n        }\n\n        if ($interval instanceof self && is_a($className, self::class, true)) {\n            self::copyStep($interval, $instance);\n        }\n\n        self::copyNegativeUnits($interval, $instance);\n\n        return self::withOriginal($instance, $interval);\n    }\n\n    /**\n     * @template T of DateInterval\n     *\n     * @param DateInterval $interval\n     *\n     * @psalm-param class-string<T> $className\n     *\n     * @return T\n     */\n    private static function buildInstance(\n        DateInterval $interval,\n        string $className,\n        array $skip = [],\n    ): object {\n        $serialization = self::buildSerializationString($interval, $className, $skip);\n\n        return match ($serialization) {\n            null => new $className(static::getDateIntervalSpec($interval, false, $skip)),\n            default => unserialize($serialization),\n        };\n    }\n\n    /**\n     * As demonstrated by rlanvin (https://github.com/rlanvin) in\n     * https://github.com/briannesbitt/Carbon/issues/3018#issuecomment-2888538438\n     *\n     * Modifying the output of serialize() to change the class name and unserializing\n     * the tweaked string allows creating new interval instances where the ->days\n     * property can be set. It's not possible neither with `new` nto with `__set_state`.\n     *\n     * It has a non-negligible performance cost, so we'll use this method only if\n     * $interval->days !== false.\n     */\n    private static function buildSerializationString(\n        DateInterval $interval,\n        string $className,\n        array $skip = [],\n    ): ?string {\n        if ($interval->days === false || PHP_VERSION_ID < 8_02_00 || $skip !== []) {\n            return null;\n        }\n\n        // De-enhance CarbonInterval objects to be serializable back to DateInterval\n        if ($interval instanceof self && !is_a($className, self::class, true)) {\n            $interval = clone $interval;\n            unset($interval->timezoneSetting);\n            unset($interval->originalInput);\n            unset($interval->startDate);\n            unset($interval->endDate);\n            unset($interval->rawInterval);\n            unset($interval->absolute);\n            unset($interval->initialValues);\n            unset($interval->clock);\n            unset($interval->step);\n            unset($interval->localMonthsOverflow);\n            unset($interval->localYearsOverflow);\n            unset($interval->localStrictModeEnabled);\n            unset($interval->localHumanDiffOptions);\n            unset($interval->localToStringFormat);\n            unset($interval->localSerializer);\n            unset($interval->localMacros);\n            unset($interval->localGenericMacros);\n            unset($interval->localFormatFunction);\n            unset($interval->localTranslator);\n        }\n\n        $serialization = serialize($interval);\n        $inputClass = $interval::class;\n        $expectedStart = 'O:'.\\strlen($inputClass).':\"'.$inputClass.'\":';\n\n        if (!str_starts_with($serialization, $expectedStart)) {\n            return null; // @codeCoverageIgnore\n        }\n\n        return 'O:'.\\strlen($className).':\"'.$className.'\":'.substr($serialization, \\strlen($expectedStart));\n    }\n\n    private static function copyStep(self $from, self $to): void\n    {\n        $to->setStep($from->getStep());\n    }\n\n    private static function copyNegativeUnits(DateInterval $from, DateInterval $to): void\n    {\n        $to->invert = $from->invert;\n\n        foreach (['y', 'm', 'd', 'h', 'i', 's'] as $unit) {\n            if ($from->$unit < 0) {\n                self::setIntervalUnit($to, $unit, $to->$unit * self::NEGATIVE);\n            }\n        }\n    }\n\n    private function invertCascade(array $values): static\n    {\n        return $this->set(array_map(function ($value) {\n            return -$value;\n        }, $values))->doCascade(true)->invert();\n    }\n\n    private function doCascade(bool $deep): static\n    {\n        $originalData = $this->toArray();\n        $originalData['milliseconds'] = (int) ($originalData['microseconds'] / static::getMicrosecondsPerMillisecond());\n        $originalData['microseconds'] = $originalData['microseconds'] % static::getMicrosecondsPerMillisecond();\n        $originalData['weeks'] = (int) ($this->d / static::getDaysPerWeek());\n        $originalData['daysExcludeWeeks'] = fmod($this->d, static::getDaysPerWeek());\n        unset($originalData['days']);\n        $newData = $originalData;\n        $previous = [];\n\n        foreach (self::getFlipCascadeFactors() as $source => [$target, $factor]) {\n            foreach (['source', 'target'] as $key) {\n                if ($$key === 'dayz') {\n                    $$key = 'daysExcludeWeeks';\n                }\n            }\n\n            $value = $newData[$source];\n            $modulo = fmod($factor + fmod($value, $factor), $factor);\n            $newData[$source] = $modulo;\n            $newData[$target] += ($value - $modulo) / $factor;\n\n            $decimalPart = fmod($newData[$source], 1);\n\n            if ($decimalPart !== 0.0) {\n                $unit = $source;\n\n                foreach ($previous as [$subUnit, $subFactor]) {\n                    $newData[$unit] -= $decimalPart;\n                    $newData[$subUnit] += $decimalPart * $subFactor;\n                    $decimalPart = fmod($newData[$subUnit], 1);\n\n                    if ($decimalPart === 0.0) {\n                        break;\n                    }\n\n                    $unit = $subUnit;\n                }\n            }\n\n            array_unshift($previous, [$source, $factor]);\n        }\n\n        $positive = null;\n\n        if (!$deep) {\n            foreach ($newData as $value) {\n                if ($value) {\n                    if ($positive === null) {\n                        $positive = ($value > 0);\n\n                        continue;\n                    }\n\n                    if (($value > 0) !== $positive) {\n                        return $this->invertCascade($originalData)\n                            ->solveNegativeInterval();\n                    }\n                }\n            }\n        }\n\n        return $this->set($newData)\n            ->solveNegativeInterval();\n    }\n\n    private function needsDeclension(string $mode, int $index, int $parts): bool\n    {\n        return match ($mode) {\n            'last' => $index === $parts - 1,\n            default => true,\n        };\n    }\n\n    private function checkIntegerValue(string $name, mixed $value): void\n    {\n        if (\\is_int($value)) {\n            return;\n        }\n\n        $this->assertSafeForInteger($name, $value);\n\n        if (\\is_float($value) && (((float) (int) $value) === $value)) {\n            return;\n        }\n\n        if (!self::$floatSettersEnabled) {\n            $type = \\gettype($value);\n            @trigger_error(\n                \"Since 2.70.0, it's deprecated to pass $type value for $name.\\n\".\n                \"It's truncated when stored as an integer interval unit.\\n\".\n                \"From 3.0.0, decimal part will no longer be truncated and will be cascaded to smaller units.\\n\".\n                \"- To maintain the current behavior, use explicit cast: $name((int) \\$value)\\n\".\n                \"- To adopt the new behavior globally, call CarbonInterval::enableFloatSetters()\\n\",\n                \\E_USER_DEPRECATED,\n            );\n        }\n    }\n\n    /**\n     * Throw an exception if precision loss when storing the given value as an integer would be >= 1.0.\n     */\n    private function assertSafeForInteger(string $name, mixed $value): void\n    {\n        if ($value && !\\is_int($value) && ($value >= 0x7fffffffffffffff || $value <= -0x7fffffffffffffff)) {\n            throw new OutOfRangeException($name, -0x7fffffffffffffff, 0x7fffffffffffffff, $value);\n        }\n    }\n\n    private function handleDecimalPart(string $unit, mixed $value, mixed $integerValue): void\n    {\n        if (self::$floatSettersEnabled) {\n            $floatValue = (float) $value;\n            $base = (float) $integerValue;\n\n            if ($floatValue === $base) {\n                return;\n            }\n\n            $units = [\n                'y' => 'year',\n                'm' => 'month',\n                'd' => 'day',\n                'h' => 'hour',\n                'i' => 'minute',\n                's' => 'second',\n            ];\n            $upper = true;\n\n            foreach ($units as $property => $name) {\n                if ($name === $unit) {\n                    $upper = false;\n\n                    continue;\n                }\n\n                if (!$upper && $this->$property !== 0) {\n                    throw new RuntimeException(\n                        \"You cannot set $unit to a float value as $name would be overridden, \".\n                        'set it first to 0 explicitly if you really want to erase its value'\n                    );\n                }\n            }\n\n            $this->add($unit, $floatValue - $base);\n        }\n    }\n\n    private function getInnerValues(): array\n    {\n        return [$this->y, $this->m, $this->d, $this->h, $this->i, $this->s, $this->f, $this->invert, $this->days];\n    }\n\n    private function checkStartAndEnd(): void\n    {\n        if (\n            $this->initialValues !== null\n            && ($this->startDate !== null || $this->endDate !== null)\n            && $this->initialValues !== $this->getInnerValues()\n        ) {\n            $this->absolute = false;\n            $this->startDate = null;\n            $this->endDate = null;\n            $this->rawInterval = null;\n        }\n    }\n\n    /** @return $this */\n    private function setSetting(string $setting, mixed $value): self\n    {\n        switch ($setting) {\n            case 'timezoneSetting':\n                return $value === null ? $this : $this->setTimezone($value);\n\n            case 'step':\n                $this->setStep($value);\n\n                return $this;\n\n            case 'localMonthsOverflow':\n                return $value === null ? $this : $this->settings(['monthOverflow' => $value]);\n\n            case 'localYearsOverflow':\n                return $value === null ? $this : $this->settings(['yearOverflow' => $value]);\n\n            case 'localStrictModeEnabled':\n            case 'localHumanDiffOptions':\n            case 'localToStringFormat':\n            case 'localSerializer':\n            case 'localMacros':\n            case 'localGenericMacros':\n            case 'localFormatFunction':\n            case 'localTranslator':\n                $this->$setting = $value;\n\n                return $this;\n\n            default:\n                // Drop unknown settings\n                return $this;\n        }\n    }\n\n    private static function incrementUnit(DateInterval $instance, string $unit, int $value): void\n    {\n        if ($value === 0) {\n            return;\n        }\n\n        // @codeCoverageIgnoreStart\n        if (PHP_VERSION_ID !== 8_03_20) {\n            $instance->$unit += $value;\n\n            return;\n        }\n\n        // Cannot use +=, nor set to a negative value directly as it segfaults in PHP 8.3.20\n        self::setIntervalUnit($instance, $unit, ($instance->$unit ?? 0) + $value);\n        // @codeCoverageIgnoreEnd\n    }\n\n    /** @codeCoverageIgnore */\n    private static function setIntervalUnit(DateInterval $instance, string $unit, mixed $value): void\n    {\n        switch ($unit) {\n            case 'y':\n                $instance->y = $value;\n\n                break;\n\n            case 'm':\n                $instance->m = $value;\n\n                break;\n\n            case 'd':\n                $instance->d = $value;\n\n                break;\n\n            case 'h':\n                $instance->h = $value;\n\n                break;\n\n            case 'i':\n                $instance->i = $value;\n\n                break;\n\n            case 's':\n                $instance->s = $value;\n\n                break;\n\n            default:\n                $instance->$unit = $value;\n        }\n    }\n}\n"
  },
  {
    "path": "src/Carbon/CarbonPeriod.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Constants\\UnitValue;\nuse Carbon\\Exceptions\\EndLessPeriodException;\nuse Carbon\\Exceptions\\InvalidCastException;\nuse Carbon\\Exceptions\\InvalidIntervalException;\nuse Carbon\\Exceptions\\InvalidPeriodDateException;\nuse Carbon\\Exceptions\\InvalidPeriodParameterException;\nuse Carbon\\Exceptions\\NotACarbonClassException;\nuse Carbon\\Exceptions\\NotAPeriodException;\nuse Carbon\\Exceptions\\UnknownGetterException;\nuse Carbon\\Exceptions\\UnknownMethodException;\nuse Carbon\\Exceptions\\UnreachableException;\nuse Carbon\\Traits\\DeprecatedPeriodProperties;\nuse Carbon\\Traits\\IntervalRounding;\nuse Carbon\\Traits\\LocalFactory;\nuse Carbon\\Traits\\Mixin;\nuse Carbon\\Traits\\Options;\nuse Carbon\\Traits\\ToStringFormat;\nuse Closure;\nuse Countable;\nuse DateInterval;\nuse DatePeriod;\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Generator;\nuse InvalidArgumentException;\nuse JsonSerializable;\nuse ReflectionException;\nuse ReturnTypeWillChange;\nuse RuntimeException;\nuse Throwable;\n\n// @codeCoverageIgnoreStart\nrequire PHP_VERSION < 8.2\n    ? __DIR__.'/../../lazy/Carbon/ProtectedDatePeriod.php'\n    : __DIR__.'/../../lazy/Carbon/UnprotectedDatePeriod.php';\n// @codeCoverageIgnoreEnd\n\n/**\n * Substitution of DatePeriod with some modifications and many more features.\n *\n * @method static static|CarbonInterface start($date = null, $inclusive = null) Create instance specifying start date or modify the start date if called on an instance.\n * @method static static since($date = null, $inclusive = null) Alias for start().\n * @method static static sinceNow($inclusive = null) Create instance with start date set to now or set the start date to now if called on an instance.\n * @method static static|CarbonInterface end($date = null, $inclusive = null) Create instance specifying end date or modify the end date if called on an instance.\n * @method static static until($date = null, $inclusive = null) Alias for end().\n * @method static static untilNow($inclusive = null) Create instance with end date set to now or set the end date to now if called on an instance.\n * @method static static dates($start, $end = null) Create instance with start and end dates or modify the start and end dates if called on an instance.\n * @method static static between($start, $end = null) Create instance with start and end dates or modify the start and end dates if called on an instance.\n * @method static static recurrences($recurrences = null) Create instance with maximum number of recurrences or modify the number of recurrences if called on an instance.\n * @method static static times($recurrences = null) Alias for recurrences().\n * @method static static|int|null options($options = null) Create instance with options or modify the options if called on an instance.\n * @method static static toggle($options, $state = null) Create instance with options toggled on or off, or toggle options if called on an instance.\n * @method static static filter($callback, $name = null) Create instance with filter added to the stack or append a filter if called on an instance.\n * @method static static push($callback, $name = null) Alias for filter().\n * @method static static prepend($callback, $name = null) Create instance with filter prepended to the stack or prepend a filter if called on an instance.\n * @method static static|array filters(array $filters = []) Create instance with filters stack or replace the whole filters stack if called on an instance.\n * @method static static|CarbonInterval interval($interval = null) Create instance with given date interval or modify the interval if called on an instance.\n * @method static static each($interval) Create instance with given date interval or modify the interval if called on an instance.\n * @method static static every($interval) Create instance with given date interval or modify the interval if called on an instance.\n * @method static static step($interval) Create instance with given date interval or modify the interval if called on an instance.\n * @method static static stepBy($interval) Create instance with given date interval or modify the interval if called on an instance.\n * @method static static invert() Create instance with inverted date interval or invert the interval if called on an instance.\n * @method static static years($years = 1) Create instance specifying a number of years for date interval or replace the interval by the given a number of years if called on an instance.\n * @method static static year($years = 1) Alias for years().\n * @method static static months($months = 1) Create instance specifying a number of months for date interval or replace the interval by the given a number of months if called on an instance.\n * @method static static month($months = 1) Alias for months().\n * @method static static weeks($weeks = 1) Create instance specifying a number of weeks for date interval or replace the interval by the given a number of weeks if called on an instance.\n * @method static static week($weeks = 1) Alias for weeks().\n * @method static static days($days = 1) Create instance specifying a number of days for date interval or replace the interval by the given a number of days if called on an instance.\n * @method static static dayz($days = 1) Alias for days().\n * @method static static day($days = 1) Alias for days().\n * @method static static hours($hours = 1) Create instance specifying a number of hours for date interval or replace the interval by the given a number of hours if called on an instance.\n * @method static static hour($hours = 1) Alias for hours().\n * @method static static minutes($minutes = 1) Create instance specifying a number of minutes for date interval or replace the interval by the given a number of minutes if called on an instance.\n * @method static static minute($minutes = 1) Alias for minutes().\n * @method static static seconds($seconds = 1) Create instance specifying a number of seconds for date interval or replace the interval by the given a number of seconds if called on an instance.\n * @method static static second($seconds = 1) Alias for seconds().\n * @method static static milliseconds($milliseconds = 1) Create instance specifying a number of milliseconds for date interval or replace the interval by the given a number of milliseconds if called on an instance.\n * @method static static millisecond($milliseconds = 1) Alias for milliseconds().\n * @method static static microseconds($microseconds = 1) Create instance specifying a number of microseconds for date interval or replace the interval by the given a number of microseconds if called on an instance.\n * @method static static microsecond($microseconds = 1) Alias for microseconds().\n * @method $this roundYear(float $precision = 1, string $function = \"round\") Round the current instance year with given precision using the given function.\n * @method $this roundYears(float $precision = 1, string $function = \"round\") Round the current instance year with given precision using the given function.\n * @method $this floorYear(float $precision = 1) Truncate the current instance year with given precision.\n * @method $this floorYears(float $precision = 1) Truncate the current instance year with given precision.\n * @method $this ceilYear(float $precision = 1) Ceil the current instance year with given precision.\n * @method $this ceilYears(float $precision = 1) Ceil the current instance year with given precision.\n * @method $this roundMonth(float $precision = 1, string $function = \"round\") Round the current instance month with given precision using the given function.\n * @method $this roundMonths(float $precision = 1, string $function = \"round\") Round the current instance month with given precision using the given function.\n * @method $this floorMonth(float $precision = 1) Truncate the current instance month with given precision.\n * @method $this floorMonths(float $precision = 1) Truncate the current instance month with given precision.\n * @method $this ceilMonth(float $precision = 1) Ceil the current instance month with given precision.\n * @method $this ceilMonths(float $precision = 1) Ceil the current instance month with given precision.\n * @method $this roundWeek(float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this roundWeeks(float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this floorWeek(float $precision = 1) Truncate the current instance day with given precision.\n * @method $this floorWeeks(float $precision = 1) Truncate the current instance day with given precision.\n * @method $this ceilWeek(float $precision = 1) Ceil the current instance day with given precision.\n * @method $this ceilWeeks(float $precision = 1) Ceil the current instance day with given precision.\n * @method $this roundDay(float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this roundDays(float $precision = 1, string $function = \"round\") Round the current instance day with given precision using the given function.\n * @method $this floorDay(float $precision = 1) Truncate the current instance day with given precision.\n * @method $this floorDays(float $precision = 1) Truncate the current instance day with given precision.\n * @method $this ceilDay(float $precision = 1) Ceil the current instance day with given precision.\n * @method $this ceilDays(float $precision = 1) Ceil the current instance day with given precision.\n * @method $this roundHour(float $precision = 1, string $function = \"round\") Round the current instance hour with given precision using the given function.\n * @method $this roundHours(float $precision = 1, string $function = \"round\") Round the current instance hour with given precision using the given function.\n * @method $this floorHour(float $precision = 1) Truncate the current instance hour with given precision.\n * @method $this floorHours(float $precision = 1) Truncate the current instance hour with given precision.\n * @method $this ceilHour(float $precision = 1) Ceil the current instance hour with given precision.\n * @method $this ceilHours(float $precision = 1) Ceil the current instance hour with given precision.\n * @method $this roundMinute(float $precision = 1, string $function = \"round\") Round the current instance minute with given precision using the given function.\n * @method $this roundMinutes(float $precision = 1, string $function = \"round\") Round the current instance minute with given precision using the given function.\n * @method $this floorMinute(float $precision = 1) Truncate the current instance minute with given precision.\n * @method $this floorMinutes(float $precision = 1) Truncate the current instance minute with given precision.\n * @method $this ceilMinute(float $precision = 1) Ceil the current instance minute with given precision.\n * @method $this ceilMinutes(float $precision = 1) Ceil the current instance minute with given precision.\n * @method $this roundSecond(float $precision = 1, string $function = \"round\") Round the current instance second with given precision using the given function.\n * @method $this roundSeconds(float $precision = 1, string $function = \"round\") Round the current instance second with given precision using the given function.\n * @method $this floorSecond(float $precision = 1) Truncate the current instance second with given precision.\n * @method $this floorSeconds(float $precision = 1) Truncate the current instance second with given precision.\n * @method $this ceilSecond(float $precision = 1) Ceil the current instance second with given precision.\n * @method $this ceilSeconds(float $precision = 1) Ceil the current instance second with given precision.\n * @method $this roundMillennium(float $precision = 1, string $function = \"round\") Round the current instance millennium with given precision using the given function.\n * @method $this roundMillennia(float $precision = 1, string $function = \"round\") Round the current instance millennium with given precision using the given function.\n * @method $this floorMillennium(float $precision = 1) Truncate the current instance millennium with given precision.\n * @method $this floorMillennia(float $precision = 1) Truncate the current instance millennium with given precision.\n * @method $this ceilMillennium(float $precision = 1) Ceil the current instance millennium with given precision.\n * @method $this ceilMillennia(float $precision = 1) Ceil the current instance millennium with given precision.\n * @method $this roundCentury(float $precision = 1, string $function = \"round\") Round the current instance century with given precision using the given function.\n * @method $this roundCenturies(float $precision = 1, string $function = \"round\") Round the current instance century with given precision using the given function.\n * @method $this floorCentury(float $precision = 1) Truncate the current instance century with given precision.\n * @method $this floorCenturies(float $precision = 1) Truncate the current instance century with given precision.\n * @method $this ceilCentury(float $precision = 1) Ceil the current instance century with given precision.\n * @method $this ceilCenturies(float $precision = 1) Ceil the current instance century with given precision.\n * @method $this roundDecade(float $precision = 1, string $function = \"round\") Round the current instance decade with given precision using the given function.\n * @method $this roundDecades(float $precision = 1, string $function = \"round\") Round the current instance decade with given precision using the given function.\n * @method $this floorDecade(float $precision = 1) Truncate the current instance decade with given precision.\n * @method $this floorDecades(float $precision = 1) Truncate the current instance decade with given precision.\n * @method $this ceilDecade(float $precision = 1) Ceil the current instance decade with given precision.\n * @method $this ceilDecades(float $precision = 1) Ceil the current instance decade with given precision.\n * @method $this roundQuarter(float $precision = 1, string $function = \"round\") Round the current instance quarter with given precision using the given function.\n * @method $this roundQuarters(float $precision = 1, string $function = \"round\") Round the current instance quarter with given precision using the given function.\n * @method $this floorQuarter(float $precision = 1) Truncate the current instance quarter with given precision.\n * @method $this floorQuarters(float $precision = 1) Truncate the current instance quarter with given precision.\n * @method $this ceilQuarter(float $precision = 1) Ceil the current instance quarter with given precision.\n * @method $this ceilQuarters(float $precision = 1) Ceil the current instance quarter with given precision.\n * @method $this roundMillisecond(float $precision = 1, string $function = \"round\") Round the current instance millisecond with given precision using the given function.\n * @method $this roundMilliseconds(float $precision = 1, string $function = \"round\") Round the current instance millisecond with given precision using the given function.\n * @method $this floorMillisecond(float $precision = 1) Truncate the current instance millisecond with given precision.\n * @method $this floorMilliseconds(float $precision = 1) Truncate the current instance millisecond with given precision.\n * @method $this ceilMillisecond(float $precision = 1) Ceil the current instance millisecond with given precision.\n * @method $this ceilMilliseconds(float $precision = 1) Ceil the current instance millisecond with given precision.\n * @method $this roundMicrosecond(float $precision = 1, string $function = \"round\") Round the current instance microsecond with given precision using the given function.\n * @method $this roundMicroseconds(float $precision = 1, string $function = \"round\") Round the current instance microsecond with given precision using the given function.\n * @method $this floorMicrosecond(float $precision = 1) Truncate the current instance microsecond with given precision.\n * @method $this floorMicroseconds(float $precision = 1) Truncate the current instance microsecond with given precision.\n * @method $this ceilMicrosecond(float $precision = 1) Ceil the current instance microsecond with given precision.\n * @method $this ceilMicroseconds(float $precision = 1) Ceil the current instance microsecond with given precision.\n *\n * @mixin DeprecatedPeriodProperties\n *\n * @SuppressWarnings(TooManyFields)\n * @SuppressWarnings(CamelCasePropertyName)\n * @SuppressWarnings(CouplingBetweenObjects)\n */\nclass CarbonPeriod extends DatePeriodBase implements Countable, JsonSerializable, UnitValue\n{\n    use LocalFactory;\n    use IntervalRounding;\n    use Mixin {\n        Mixin::mixin as baseMixin;\n    }\n    use Options {\n        Options::__debugInfo as baseDebugInfo;\n    }\n    use ToStringFormat;\n\n    /**\n     * Built-in filter for limit by recurrences.\n     *\n     * @var callable\n     */\n    public const RECURRENCES_FILTER = [self::class, 'filterRecurrences'];\n\n    /**\n     * Built-in filter for limit to an end.\n     *\n     * @var callable\n     */\n    public const END_DATE_FILTER = [self::class, 'filterEndDate'];\n\n    /**\n     * Special value which can be returned by filters to end iteration. Also a filter.\n     *\n     * @var callable\n     */\n    public const END_ITERATION = [self::class, 'endIteration'];\n\n    /**\n     * Exclude end date from iteration.\n     *\n     * @var int\n     */\n    public const EXCLUDE_END_DATE = 8;\n\n    /**\n     * Yield CarbonImmutable instances.\n     *\n     * @var int\n     */\n    public const IMMUTABLE = 4;\n\n    /**\n     * Number of maximum attempts before giving up on finding next valid date.\n     *\n     * @var int\n     */\n    public const NEXT_MAX_ATTEMPTS = 1000;\n\n    /**\n     * Number of maximum attempts before giving up on finding end date.\n     *\n     * @var int\n     */\n    public const END_MAX_ATTEMPTS = 10000;\n\n    /**\n     * Default date class of iteration items.\n     *\n     * @var string\n     */\n    protected const DEFAULT_DATE_CLASS = Carbon::class;\n\n    /**\n     * The registered macros.\n     */\n    protected static array $macros = [];\n\n    /**\n     * Date class of iteration items.\n     */\n    protected string $dateClass = Carbon::class;\n\n    /**\n     * Underlying date interval instance. Always present, one day by default.\n     */\n    protected ?CarbonInterval $dateInterval = null;\n\n    /**\n     * True once __construct is finished.\n     */\n    protected bool $constructed = false;\n\n    /**\n     * Whether current date interval was set by default.\n     */\n    protected bool $isDefaultInterval = false;\n\n    /**\n     * The filters stack.\n     */\n    protected array $filters = [];\n\n    /**\n     * Period start date. Applied on rewind. Always present, now by default.\n     */\n    protected ?CarbonInterface $startDate = null;\n\n    /**\n     * Period end date. For inverted interval should be before the start date. Applied via a filter.\n     */\n    protected ?CarbonInterface $endDate = null;\n\n    /**\n     * Limit for number of recurrences. Applied via a filter.\n     */\n    protected int|float|null $carbonRecurrences = null;\n\n    /**\n     * Iteration options.\n     */\n    protected ?int $options = null;\n\n    /**\n     * Index of current date. Always sequential, even if some dates are skipped by filters.\n     * Equal to null only before the first iteration.\n     */\n    protected int $key = 0;\n\n    /**\n     * Current date. May temporarily hold unaccepted value when looking for a next valid date.\n     * Equal to null only before the first iteration.\n     */\n    protected ?CarbonInterface $carbonCurrent = null;\n\n    /**\n     * Timezone of current date. Taken from the start date.\n     */\n    protected ?DateTimeZone $timezone = null;\n\n    /**\n     * The cached validation result for current date.\n     */\n    protected array|string|bool|null $validationResult = null;\n\n    /**\n     * Timezone handler for settings() method.\n     */\n    protected DateTimeZone|string|int|null $timezoneSetting = null;\n\n    public function getIterator(): Generator\n    {\n        $this->rewind();\n\n        while ($this->valid()) {\n            $key = $this->key();\n            $value = $this->current();\n\n            yield $key => $value;\n\n            $this->next();\n        }\n    }\n\n    /**\n     * Make a CarbonPeriod instance from given variable if possible.\n     */\n    public static function make(mixed $var): ?static\n    {\n        try {\n            return static::instance($var);\n        } catch (NotAPeriodException) {\n            return static::create($var);\n        }\n    }\n\n    /**\n     * Create a new instance from a DatePeriod or CarbonPeriod object.\n     */\n    public static function instance(mixed $period): static\n    {\n        if ($period instanceof static) {\n            return $period->copy();\n        }\n\n        if ($period instanceof self) {\n            return new static(\n                $period->getStartDate(),\n                $period->getEndDate() ?? $period->getRecurrences(),\n                $period->getDateInterval(),\n                $period->getOptions(),\n            );\n        }\n\n        if ($period instanceof DatePeriod) {\n            return new static(\n                $period->start,\n                $period->end ?: ($period->recurrences - 1),\n                $period->interval,\n                $period->include_start_date ? 0 : static::EXCLUDE_START_DATE,\n            );\n        }\n\n        $class = static::class;\n        $type = \\gettype($period);\n        $chunks = explode('::', __METHOD__);\n\n        throw new NotAPeriodException(\n            'Argument 1 passed to '.$class.'::'.end($chunks).'() '.\n            'must be an instance of DatePeriod or '.$class.', '.\n            ($type === 'object' ? 'instance of '.\\get_class($period) : $type).' given.',\n        );\n    }\n\n    /**\n     * Create a new instance.\n     */\n    public static function create(...$params): static\n    {\n        return static::createFromArray($params);\n    }\n\n    /**\n     * Create a new instance from an array of parameters.\n     */\n    public static function createFromArray(array $params): static\n    {\n        return new static(...$params);\n    }\n\n    /**\n     * Create CarbonPeriod from ISO 8601 string.\n     */\n    public static function createFromIso(string $iso, ?int $options = null): static\n    {\n        $params = static::parseIso8601($iso);\n\n        $instance = static::createFromArray($params);\n\n        $instance->options = ($instance instanceof CarbonPeriodImmutable ? static::IMMUTABLE : 0) | $options;\n        $instance->handleChangedParameters();\n\n        return $instance;\n    }\n\n    public static function createFromISO8601String(string $iso, ?int $options = null): static\n    {\n        return self::createFromIso($iso, $options);\n    }\n\n    /**\n     * Return whether the given interval contains non-zero value of any time unit.\n     */\n    protected static function intervalHasTime(DateInterval $interval): bool\n    {\n        return $interval->h || $interval->i || $interval->s || $interval->f;\n    }\n\n    /**\n     * Return whether given variable is an ISO 8601 specification.\n     *\n     * Note: Check is very basic, as actual validation will be done later when parsing.\n     * We just want to ensure that variable is not any other type of valid parameter.\n     */\n    protected static function isIso8601(mixed $var): bool\n    {\n        if (!\\is_string($var)) {\n            return false;\n        }\n\n        // Match slash but not within a timezone name.\n        $part = '[a-z]+(?:[_-][a-z]+)*';\n\n        preg_match(\"#\\b$part/$part\\b|(/)#i\", $var, $match);\n\n        return isset($match[1]);\n    }\n\n    /**\n     * Parse given ISO 8601 string into an array of arguments.\n     *\n     * @SuppressWarnings(ElseExpression)\n     */\n    protected static function parseIso8601(string $iso): array\n    {\n        $result = [];\n\n        $interval = null;\n        $start = null;\n        $end = null;\n        $dateClass = static::DEFAULT_DATE_CLASS;\n\n        foreach (explode('/', $iso) as $key => $part) {\n            if ($key === 0 && preg_match('/^R(\\d*|INF)$/', $part, $match)) {\n                $parsed = \\strlen($match[1]) ? (($match[1] !== 'INF') ? (int) $match[1] : INF) : null;\n            } elseif ($interval === null && $parsed = self::makeInterval($part)) {\n                $interval = $part;\n            } elseif ($start === null && $parsed = $dateClass::make($part)) {\n                $start = $part;\n            } elseif ($end === null && $parsed = $dateClass::make(static::addMissingParts($start ?? '', $part))) {\n                $end = $part;\n            } else {\n                throw new InvalidPeriodParameterException(\"Invalid ISO 8601 specification: $iso.\");\n            }\n\n            $result[] = $parsed;\n        }\n\n        return $result;\n    }\n\n    /**\n     * Add missing parts of the target date from the source date.\n     */\n    protected static function addMissingParts(string $source, string $target): string\n    {\n        $pattern = '/'.preg_replace('/\\d+/', '[0-9]+', preg_quote($target, '/')).'$/';\n\n        $result = preg_replace($pattern, $target, $source, 1, $count);\n\n        return $count ? $result : $target;\n    }\n\n    private static function makeInterval(mixed $input): ?CarbonInterval\n    {\n        try {\n            return CarbonInterval::make($input);\n        } catch (Throwable) {\n            return null;\n        }\n    }\n\n    private static function makeTimezone(mixed $input): ?CarbonTimeZone\n    {\n        if (!\\is_string($input)) {\n            return null;\n        }\n\n        try {\n            return CarbonTimeZone::create($input);\n        } catch (Throwable) {\n            return null;\n        }\n    }\n\n    /**\n     * Register a custom macro.\n     *\n     * Pass null macro to remove it.\n     *\n     * @example\n     * ```\n     * CarbonPeriod::macro('middle', function () {\n     *   return $this->getStartDate()->average($this->getEndDate());\n     * });\n     * echo CarbonPeriod::since('2011-05-12')->until('2011-06-03')->middle();\n     * ```\n     *\n     * @param-closure-this  static  $macro\n     */\n    public static function macro(string $name, ?callable $macro): void\n    {\n        static::$macros[$name] = $macro;\n    }\n\n    /**\n     * Register macros from a mixin object.\n     *\n     * @example\n     * ```\n     * CarbonPeriod::mixin(new class {\n     *   public function addDays() {\n     *     return function ($count = 1) {\n     *       return $this->setStartDate(\n     *         $this->getStartDate()->addDays($count)\n     *       )->setEndDate(\n     *         $this->getEndDate()->addDays($count)\n     *       );\n     *     };\n     *   }\n     *   public function subDays() {\n     *     return function ($count = 1) {\n     *       return $this->setStartDate(\n     *         $this->getStartDate()->subDays($count)\n     *       )->setEndDate(\n     *         $this->getEndDate()->subDays($count)\n     *       );\n     *     };\n     *   }\n     * });\n     * echo CarbonPeriod::create('2000-01-01', '2000-02-01')->addDays(5)->subDays(3);\n     * ```\n     *\n     * @throws ReflectionException\n     */\n    public static function mixin(object|string $mixin): void\n    {\n        static::baseMixin($mixin);\n    }\n\n    /**\n     * Check if macro is registered.\n     */\n    public static function hasMacro(string $name): bool\n    {\n        return isset(static::$macros[$name]);\n    }\n\n    /**\n     * Provide static proxy for instance aliases.\n     */\n    public static function __callStatic(string $method, array $parameters): mixed\n    {\n        $date = new static();\n\n        if (static::hasMacro($method)) {\n            return static::bindMacroContext(null, static fn () => $date->callMacro($method, $parameters));\n        }\n\n        return $date->$method(...$parameters);\n    }\n\n    /**\n     * CarbonPeriod constructor.\n     *\n     * @SuppressWarnings(ElseExpression)\n     *\n     * @throws InvalidArgumentException\n     */\n    public function __construct(...$arguments)\n    {\n        $raw = null;\n\n        if (isset($arguments['raw'])) {\n            $raw = $arguments['raw'];\n            $this->isDefaultInterval = $arguments['isDefaultInterval'] ?? false;\n\n            if (isset($arguments['dateClass'])) {\n                $this->dateClass = $arguments['dateClass'];\n            }\n\n            $arguments = $raw;\n        }\n\n        // Parse and assign arguments one by one. First argument may be an ISO 8601 spec,\n        // which will be first parsed into parts and then processed the same way.\n\n        $argumentsCount = \\count($arguments);\n\n        if ($argumentsCount && static::isIso8601($iso = $arguments[0])) {\n            array_splice($arguments, 0, 1, static::parseIso8601($iso));\n        }\n\n        if ($argumentsCount === 1) {\n            if ($arguments[0] instanceof self) {\n                $arguments = [\n                    $arguments[0]->getStartDate(),\n                    $arguments[0]->getEndDate() ?? $arguments[0]->getRecurrences(),\n                    $arguments[0]->getDateInterval(),\n                    $arguments[0]->getOptions(),\n                ];\n            } elseif ($arguments[0] instanceof DatePeriod) {\n                $arguments = [\n                    $arguments[0]->start,\n                    $arguments[0]->end ?: ($arguments[0]->recurrences - 1),\n                    $arguments[0]->interval,\n                    $arguments[0]->include_start_date ? 0 : static::EXCLUDE_START_DATE,\n                ];\n            }\n        }\n\n        if (is_a($this->dateClass, DateTimeImmutable::class, true)) {\n            $this->options = static::IMMUTABLE;\n        }\n\n        $optionsSet = false;\n        $originalArguments = [];\n        $sortedArguments = [];\n\n        foreach ($arguments as $argument) {\n            $parsedDate = null;\n\n            if ($argument instanceof DateTimeZone) {\n                $sortedArguments = $this->configureTimezone($argument, $sortedArguments, $originalArguments);\n            } elseif (!isset($sortedArguments['interval']) &&\n                (\n                    (\\is_string($argument) && preg_match(\n                        '/^(-?\\d(\\d(?![\\/-])|[^\\d\\/-]([\\/-])?)*|P[T\\d].*|(?:\\h*\\d+(?:\\.\\d+)?\\h*[a-z]+)+)$/i',\n                        $argument,\n                    )) ||\n                    $argument instanceof DateInterval ||\n                    $argument instanceof Closure ||\n                    $argument instanceof Unit\n                ) &&\n                $parsedInterval = self::makeInterval($argument)\n            ) {\n                $sortedArguments['interval'] = $parsedInterval;\n            } elseif (!isset($sortedArguments['start']) && $parsedDate = $this->makeDateTime($argument)) {\n                $sortedArguments['start'] = $parsedDate;\n                $originalArguments['start'] = $argument;\n            } elseif (!isset($sortedArguments['end']) && ($parsedDate = $parsedDate ?? $this->makeDateTime($argument))) {\n                $sortedArguments['end'] = $parsedDate;\n                $originalArguments['end'] = $argument;\n            } elseif (!isset($sortedArguments['recurrences']) &&\n                !isset($sortedArguments['end']) &&\n                (\\is_int($argument) || \\is_float($argument))\n                && $argument >= 0\n            ) {\n                $sortedArguments['recurrences'] = $argument;\n            } elseif (!$optionsSet && (\\is_int($argument) || $argument === null)) {\n                $optionsSet = true;\n                $sortedArguments['options'] = (((int) $this->options) | ((int) $argument));\n            } elseif ($parsedTimezone = self::makeTimezone($argument)) {\n                $sortedArguments = $this->configureTimezone($parsedTimezone, $sortedArguments, $originalArguments);\n            } else {\n                throw new InvalidPeriodParameterException('Invalid constructor parameters.');\n            }\n        }\n\n        if ($raw === null && isset($sortedArguments['start'])) {\n            $end = $sortedArguments['end'] ?? max(1, $sortedArguments['recurrences'] ?? 1);\n\n            if (\\is_float($end)) {\n                $end = $end === INF ? PHP_INT_MAX : (int) round($end);\n            }\n\n            $raw = [\n                $sortedArguments['start'],\n                $sortedArguments['interval'] ?? CarbonInterval::day(),\n                $end,\n            ];\n        }\n\n        $this->setFromAssociativeArray($sortedArguments);\n\n        if ($this->startDate === null) {\n            $dateClass = $this->dateClass;\n            $this->setStartDate($dateClass::now());\n        }\n\n        if ($this->dateInterval === null) {\n            $this->setDateInterval(CarbonInterval::day());\n\n            $this->isDefaultInterval = true;\n        }\n\n        if ($this->options === null) {\n            $this->setOptions(0);\n        }\n\n        parent::__construct(\n            $this->startDate,\n            $this->dateInterval,\n            $this->endDate ?? max(1, min(2147483639, $this->recurrences ?? 1)),\n            $this->options,\n        );\n\n        $this->constructed = true;\n    }\n\n    /**\n     * Get a copy of the instance.\n     */\n    public function copy(): static\n    {\n        return clone $this;\n    }\n\n    /**\n     * Prepare the instance to be set (self if mutable to be mutated,\n     * copy if immutable to generate a new instance).\n     */\n    protected function copyIfImmutable(): static\n    {\n        return $this;\n    }\n\n    /**\n     * Get the getter for a property allowing both `DatePeriod` snakeCase and camelCase names.\n     */\n    protected function getGetter(string $name): ?callable\n    {\n        return match (strtolower(preg_replace('/[A-Z]/', '_$0', $name))) {\n            'start', 'start_date' => [$this, 'getStartDate'],\n            'end', 'end_date' => [$this, 'getEndDate'],\n            'interval', 'date_interval' => [$this, 'getDateInterval'],\n            'recurrences' => [$this, 'getRecurrences'],\n            'include_start_date' => [$this, 'isStartIncluded'],\n            'include_end_date' => [$this, 'isEndIncluded'],\n            'current' => [$this, 'current'],\n            'locale' => [$this, 'locale'],\n            'tzname', 'tz_name' => fn () => match (true) {\n                $this->timezoneSetting === null => null,\n                \\is_string($this->timezoneSetting) => $this->timezoneSetting,\n                $this->timezoneSetting instanceof DateTimeZone => $this->timezoneSetting->getName(),\n                default => CarbonTimeZone::instance($this->timezoneSetting)->getName(),\n            },\n            default => null,\n        };\n    }\n\n    /**\n     * Get a property allowing both `DatePeriod` snakeCase and camelCase names.\n     *\n     * @param string $name\n     *\n     * @return bool|CarbonInterface|CarbonInterval|int|null\n     */\n    public function get(string $name)\n    {\n        $getter = $this->getGetter($name);\n\n        if ($getter) {\n            return $getter();\n        }\n\n        throw new UnknownGetterException($name);\n    }\n\n    /**\n     * Get a property allowing both `DatePeriod` snakeCase and camelCase names.\n     *\n     * @param string $name\n     *\n     * @return bool|CarbonInterface|CarbonInterval|int|null\n     */\n    public function __get(string $name)\n    {\n        return $this->get($name);\n    }\n\n    /**\n     * Check if an attribute exists on the object\n     *\n     * @param string $name\n     *\n     * @return bool\n     */\n    public function __isset(string $name): bool\n    {\n        return $this->getGetter($name) !== null;\n    }\n\n    /**\n     * @alias copy\n     *\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function clone()\n    {\n        return clone $this;\n    }\n\n    /**\n     * Set the iteration item class.\n     *\n     * @param string $dateClass\n     *\n     * @return static\n     */\n    public function setDateClass(string $dateClass)\n    {\n        if (!is_a($dateClass, CarbonInterface::class, true)) {\n            throw new NotACarbonClassException($dateClass);\n        }\n\n        $self = $this->copyIfImmutable();\n        $self->dateClass = $dateClass;\n\n        if (is_a($dateClass, Carbon::class, true)) {\n            $self->options = $self->options & ~static::IMMUTABLE;\n        } elseif (is_a($dateClass, CarbonImmutable::class, true)) {\n            $self->options = $self->options | static::IMMUTABLE;\n        }\n\n        return $self;\n    }\n\n    /**\n     * Returns iteration item date class.\n     *\n     * @return string\n     */\n    public function getDateClass(): string\n    {\n        return $this->dateClass;\n    }\n\n    /**\n     * Change the period date interval.\n     *\n     * @param DateInterval|Unit|string|int $interval\n     * @param Unit|string                  $unit     the unit of $interval if it's a number\n     *\n     * @throws InvalidIntervalException\n     *\n     * @return static\n     */\n    public function setDateInterval(mixed $interval, Unit|string|null $unit = null): static\n    {\n        if ($interval instanceof Unit) {\n            $interval = $interval->interval();\n        }\n\n        if ($unit instanceof Unit) {\n            $unit = $unit->name;\n        }\n\n        if (!$interval = CarbonInterval::make($interval, $unit)) {\n            throw new InvalidIntervalException('Invalid interval.');\n        }\n\n        if ($interval->spec() === 'PT0S' && !$interval->f && !$interval->getStep()) {\n            throw new InvalidIntervalException('Empty interval is not accepted.');\n        }\n\n        $self = $this->copyIfImmutable();\n        $self->dateInterval = $interval;\n\n        $self->isDefaultInterval = false;\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Reset the date interval to the default value.\n     *\n     * Difference with simply setting interval to 1-day is that P1D will not appear when calling toIso8601String()\n     * and also next adding to the interval won't include the default 1-day.\n     */\n    public function resetDateInterval(): static\n    {\n        $self = $this->copyIfImmutable();\n        $self->setDateInterval(CarbonInterval::day());\n\n        $self->isDefaultInterval = true;\n\n        return $self;\n    }\n\n    /**\n     * Invert the period date interval.\n     */\n    public function invertDateInterval(): static\n    {\n        return $this->setDateInterval($this->dateInterval->invert());\n    }\n\n    /**\n     * Set start and end date.\n     *\n     * @param DateTime|DateTimeInterface|string      $start\n     * @param DateTime|DateTimeInterface|string|null $end\n     *\n     * @return static\n     */\n    public function setDates(mixed $start, mixed $end): static\n    {\n        return $this->setStartDate($start)->setEndDate($end);\n    }\n\n    /**\n     * Change the period options.\n     *\n     * @param int|null $options\n     *\n     * @return static\n     */\n    public function setOptions(?int $options): static\n    {\n        $self = $this->copyIfImmutable();\n        $self->options = $options ?? 0;\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Get the period options.\n     */\n    public function getOptions(): int\n    {\n        return $this->options ?? 0;\n    }\n\n    /**\n     * Toggle given options on or off.\n     *\n     * @param int       $options\n     * @param bool|null $state\n     *\n     * @throws InvalidArgumentException\n     *\n     * @return static\n     */\n    public function toggleOptions(int $options, ?bool $state = null): static\n    {\n        $self = $this->copyIfImmutable();\n\n        if ($state === null) {\n            $state = ($this->options & $options) !== $options;\n        }\n\n        return $self->setOptions(\n            $state ?\n            $this->options | $options :\n            $this->options & ~$options,\n        );\n    }\n\n    /**\n     * Toggle EXCLUDE_START_DATE option.\n     */\n    public function excludeStartDate(bool $state = true): static\n    {\n        return $this->toggleOptions(static::EXCLUDE_START_DATE, $state);\n    }\n\n    /**\n     * Toggle EXCLUDE_END_DATE option.\n     */\n    public function excludeEndDate(bool $state = true): static\n    {\n        return $this->toggleOptions(static::EXCLUDE_END_DATE, $state);\n    }\n\n    /**\n     * Get the underlying date interval.\n     */\n    public function getDateInterval(): CarbonInterval\n    {\n        return $this->dateInterval->copy();\n    }\n\n    /**\n     * Get start date of the period.\n     *\n     * @param string|null $rounding Optional rounding 'floor', 'ceil', 'round' using the period interval.\n     */\n    public function getStartDate(?string $rounding = null): CarbonInterface\n    {\n        $date = $this->startDate->avoidMutation();\n\n        return $rounding ? $date->round($this->getDateInterval(), $rounding) : $date;\n    }\n\n    /**\n     * Get end date of the period.\n     *\n     * @param string|null $rounding Optional rounding 'floor', 'ceil', 'round' using the period interval.\n     */\n    public function getEndDate(?string $rounding = null): ?CarbonInterface\n    {\n        if (!$this->endDate) {\n            return null;\n        }\n\n        $date = $this->endDate->avoidMutation();\n\n        return $rounding ? $date->round($this->getDateInterval(), $rounding) : $date;\n    }\n\n    /**\n     * Get number of recurrences.\n     */\n    #[ReturnTypeWillChange]\n    public function getRecurrences(): int|float|null\n    {\n        return $this->carbonRecurrences;\n    }\n\n    /**\n     * Returns true if the start date should be excluded.\n     */\n    public function isStartExcluded(): bool\n    {\n        return ($this->options & static::EXCLUDE_START_DATE) !== 0;\n    }\n\n    /**\n     * Returns true if the end date should be excluded.\n     */\n    public function isEndExcluded(): bool\n    {\n        return ($this->options & static::EXCLUDE_END_DATE) !== 0;\n    }\n\n    /**\n     * Returns true if the start date should be included.\n     */\n    public function isStartIncluded(): bool\n    {\n        return !$this->isStartExcluded();\n    }\n\n    /**\n     * Returns true if the end date should be included.\n     */\n    public function isEndIncluded(): bool\n    {\n        return !$this->isEndExcluded();\n    }\n\n    /**\n     * Return the start if it's included by option, else return the start + 1 period interval.\n     */\n    public function getIncludedStartDate(): CarbonInterface\n    {\n        $start = $this->getStartDate();\n\n        if ($this->isStartExcluded()) {\n            return $start->add($this->getDateInterval());\n        }\n\n        return $start;\n    }\n\n    /**\n     * Return the end if it's included by option, else return the end - 1 period interval.\n     * Warning: if the period has no fixed end, this method will iterate the period to calculate it.\n     */\n    public function getIncludedEndDate(): CarbonInterface\n    {\n        $end = $this->getEndDate();\n\n        if (!$end) {\n            return $this->calculateEnd();\n        }\n\n        if ($this->isEndExcluded()) {\n            return $end->sub($this->getDateInterval());\n        }\n\n        return $end;\n    }\n\n    /**\n     * Add a filter to the stack.\n     *\n     * @SuppressWarnings(UnusedFormalParameter)\n     */\n    public function addFilter(callable|string $callback, ?string $name = null): static\n    {\n        $self = $this->copyIfImmutable();\n        $tuple = $self->createFilterTuple(\\func_get_args());\n\n        $self->filters[] = $tuple;\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Prepend a filter to the stack.\n     *\n     * @SuppressWarnings(UnusedFormalParameter)\n     */\n    public function prependFilter(callable|string $callback, ?string $name = null): static\n    {\n        $self = $this->copyIfImmutable();\n        $tuple = $self->createFilterTuple(\\func_get_args());\n\n        array_unshift($self->filters, $tuple);\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Remove a filter by instance or name.\n     */\n    public function removeFilter(callable|string $filter): static\n    {\n        $self = $this->copyIfImmutable();\n        $key = \\is_callable($filter) ? 0 : 1;\n\n        $self->filters = array_values(array_filter(\n            $this->filters,\n            static fn ($tuple) => $tuple[$key] !== $filter,\n        ));\n\n        $self->updateInternalState();\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Return whether given instance or name is in the filter stack.\n     */\n    public function hasFilter(callable|string $filter): bool\n    {\n        $key = \\is_callable($filter) ? 0 : 1;\n\n        foreach ($this->filters as $tuple) {\n            if ($tuple[$key] === $filter) {\n                return true;\n            }\n        }\n\n        return false;\n    }\n\n    /**\n     * Get filters stack.\n     */\n    public function getFilters(): array\n    {\n        return $this->filters;\n    }\n\n    /**\n     * Set filters stack.\n     */\n    public function setFilters(array $filters): static\n    {\n        $self = $this->copyIfImmutable();\n        $self->filters = $filters;\n\n        $self->updateInternalState();\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Reset filters stack.\n     */\n    public function resetFilters(): static\n    {\n        $self = $this->copyIfImmutable();\n        $self->filters = [];\n\n        if ($self->endDate !== null) {\n            $self->filters[] = [static::END_DATE_FILTER, null];\n        }\n\n        if ($self->carbonRecurrences !== null) {\n            $self->filters[] = [static::RECURRENCES_FILTER, null];\n        }\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Add a recurrences filter (set maximum number of recurrences).\n     *\n     * @throws InvalidArgumentException\n     */\n    public function setRecurrences(int|float|null $recurrences): static\n    {\n        if ($recurrences === null) {\n            return $this->removeFilter(static::RECURRENCES_FILTER);\n        }\n\n        if ($recurrences < 0) {\n            throw new InvalidPeriodParameterException('Invalid number of recurrences.');\n        }\n\n        /** @var self $self */\n        $self = $this->copyIfImmutable();\n        $self->carbonRecurrences = $recurrences === INF ? INF : (int) $recurrences;\n\n        if (!$self->hasFilter(static::RECURRENCES_FILTER)) {\n            return $self->addFilter(static::RECURRENCES_FILTER);\n        }\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Change the period start date.\n     *\n     * @param DateTime|DateTimeInterface|string $date\n     * @param bool|null                         $inclusive\n     *\n     * @throws InvalidPeriodDateException\n     *\n     * @return static\n     */\n    public function setStartDate(mixed $date, ?bool $inclusive = null): static\n    {\n        if (!$this->isInfiniteDate($date) && !($date = ([$this->dateClass, 'make'])($date, $this->timezone))) {\n            throw new InvalidPeriodDateException('Invalid start date.');\n        }\n\n        $self = $this->copyIfImmutable();\n        $self->startDate = $date;\n\n        if ($inclusive !== null) {\n            $self = $self->toggleOptions(static::EXCLUDE_START_DATE, !$inclusive);\n        }\n\n        return $self;\n    }\n\n    /**\n     * Change the period end date.\n     *\n     * @param DateTime|DateTimeInterface|string|null $date\n     * @param bool|null                              $inclusive\n     *\n     * @throws \\InvalidArgumentException\n     *\n     * @return static\n     */\n    public function setEndDate(mixed $date, ?bool $inclusive = null): static\n    {\n        if ($date !== null && !$this->isInfiniteDate($date) && !$date = ([$this->dateClass, 'make'])($date, $this->timezone)) {\n            throw new InvalidPeriodDateException('Invalid end date.');\n        }\n\n        if (!$date) {\n            return $this->removeFilter(static::END_DATE_FILTER);\n        }\n\n        $self = $this->copyIfImmutable();\n        $self->endDate = $date;\n\n        if ($inclusive !== null) {\n            $self = $self->toggleOptions(static::EXCLUDE_END_DATE, !$inclusive);\n        }\n\n        if (!$self->hasFilter(static::END_DATE_FILTER)) {\n            return $self->addFilter(static::END_DATE_FILTER);\n        }\n\n        $self->handleChangedParameters();\n\n        return $self;\n    }\n\n    /**\n     * Check if the current position is valid.\n     */\n    public function valid(): bool\n    {\n        return $this->validateCurrentDate() === true;\n    }\n\n    /**\n     * Return the current key.\n     */\n    public function key(): ?int\n    {\n        return $this->valid()\n            ? $this->key\n            : null;\n    }\n\n    /**\n     * Return the current date.\n     */\n    public function current(): ?CarbonInterface\n    {\n        return $this->valid()\n            ? $this->prepareForReturn($this->carbonCurrent)\n            : null;\n    }\n\n    /**\n     * Move forward to the next date.\n     *\n     * @throws RuntimeException\n     */\n    public function next(): void\n    {\n        if ($this->carbonCurrent === null) {\n            $this->rewind();\n        }\n\n        if ($this->validationResult !== static::END_ITERATION) {\n            $this->key++;\n\n            $this->incrementCurrentDateUntilValid();\n        }\n    }\n\n    /**\n     * Rewind to the start date.\n     *\n     * Iterating over a date in the UTC timezone avoids bug during backward DST change.\n     *\n     * @see https://bugs.php.net/bug.php?id=72255\n     * @see https://bugs.php.net/bug.php?id=74274\n     * @see https://wiki.php.net/rfc/datetime_and_daylight_saving_time\n     *\n     * @throws RuntimeException\n     */\n    public function rewind(): void\n    {\n        $this->key = 0;\n        $this->carbonCurrent = ([$this->dateClass, 'make'])($this->startDate);\n        $settings = $this->getSettings();\n\n        if ($this->hasLocalTranslator()) {\n            $settings['locale'] = $this->getTranslatorLocale();\n        }\n\n        $this->carbonCurrent->settings($settings);\n        $this->timezone = static::intervalHasTime($this->dateInterval) ? $this->carbonCurrent->getTimezone() : null;\n\n        if ($this->timezone) {\n            $this->carbonCurrent = $this->carbonCurrent->utc();\n        }\n\n        $this->validationResult = null;\n\n        if ($this->isStartExcluded() || $this->validateCurrentDate() === false) {\n            $this->incrementCurrentDateUntilValid();\n        }\n    }\n\n    /**\n     * Skip iterations and returns iteration state (false if ended, true if still valid).\n     *\n     * @param int $count steps number to skip (1 by default)\n     *\n     * @return bool\n     */\n    public function skip(int $count = 1): bool\n    {\n        for ($i = $count; $this->valid() && $i > 0; $i--) {\n            $this->next();\n        }\n\n        return $this->valid();\n    }\n\n    /**\n     * Format the date period as ISO 8601.\n     */\n    public function toIso8601String(): string\n    {\n        $parts = [];\n\n        if ($this->carbonRecurrences !== null) {\n            $parts[] = 'R'.$this->carbonRecurrences;\n        }\n\n        $parts[] = $this->startDate->toIso8601String();\n\n        if (!$this->isDefaultInterval) {\n            $parts[] = $this->dateInterval->spec();\n        }\n\n        if ($this->endDate !== null) {\n            $parts[] = $this->endDate->toIso8601String();\n        }\n\n        return implode('/', $parts);\n    }\n\n    /**\n     * Convert the date period into a string.\n     */\n    public function toString(): string\n    {\n        $format = $this->localToStringFormat\n            ?? $this->getFactory()->getSettings()['toStringFormat']\n            ?? null;\n\n        if ($format instanceof Closure) {\n            return $format($this);\n        }\n\n        $translator = ([$this->dateClass, 'getTranslator'])();\n\n        $parts = [];\n\n        $format = $format ?? (\n            !$this->startDate->isStartOfDay() || ($this->endDate && !$this->endDate->isStartOfDay())\n                ? 'Y-m-d H:i:s'\n                : 'Y-m-d'\n        );\n\n        if ($this->carbonRecurrences !== null) {\n            $parts[] = $this->translate('period_recurrences', [], $this->carbonRecurrences, $translator);\n        }\n\n        $parts[] = $this->translate('period_interval', [':interval' => $this->dateInterval->forHumans([\n            'join' => true,\n        ])], null, $translator);\n\n        $parts[] = $this->translate('period_start_date', [':date' => $this->startDate->rawFormat($format)], null, $translator);\n\n        if ($this->endDate !== null) {\n            $parts[] = $this->translate('period_end_date', [':date' => $this->endDate->rawFormat($format)], null, $translator);\n        }\n\n        $result = implode(' ', $parts);\n\n        return mb_strtoupper(mb_substr($result, 0, 1)).mb_substr($result, 1);\n    }\n\n    /**\n     * Format the date period as ISO 8601.\n     */\n    public function spec(): string\n    {\n        return $this->toIso8601String();\n    }\n\n    /**\n     * Cast the current instance into the given class.\n     *\n     * @param string $className The $className::instance() method will be called to cast the current object.\n     *\n     * @return DatePeriod|object\n     */\n    public function cast(string $className): object\n    {\n        if (!method_exists($className, 'instance')) {\n            if (is_a($className, DatePeriod::class, true)) {\n                return new $className(\n                    $this->rawDate($this->getStartDate()),\n                    $this->getDateInterval(),\n                    $this->getEndDate() ? $this->rawDate($this->getIncludedEndDate()) : $this->getRecurrences(),\n                    $this->isStartExcluded() ? DatePeriod::EXCLUDE_START_DATE : 0,\n                );\n            }\n\n            throw new InvalidCastException(\"$className has not the instance() method needed to cast the date.\");\n        }\n\n        return $className::instance($this);\n    }\n\n    /**\n     * Return native DatePeriod PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(CarbonPeriod::create('2021-01-05', '2021-02-15')->toDatePeriod());\n     * ```\n     */\n    public function toDatePeriod(): DatePeriod\n    {\n        return $this->cast(DatePeriod::class);\n    }\n\n    /**\n     * Return `true` if the period has no custom filter and is guaranteed to be endless.\n     *\n     * Note that we can't check if a period is endless as soon as it has custom filters\n     * because filters can emit `CarbonPeriod::END_ITERATION` to stop the iteration in\n     * a way we can't predict without actually iterating the period.\n     */\n    public function isUnfilteredAndEndLess(): bool\n    {\n        foreach ($this->filters as $filter) {\n            switch ($filter) {\n                case [static::RECURRENCES_FILTER, null]:\n                    if ($this->carbonRecurrences !== null && is_finite($this->carbonRecurrences)) {\n                        return false;\n                    }\n\n                    break;\n\n                case [static::END_DATE_FILTER, null]:\n                    if ($this->endDate !== null && !$this->endDate->isEndOfTime()) {\n                        return false;\n                    }\n\n                    break;\n\n                default:\n                    return false;\n            }\n        }\n\n        return true;\n    }\n\n    /**\n     * Convert the date period into an array without changing current iteration state.\n     *\n     * @return CarbonInterface[]\n     */\n    public function toArray(): array\n    {\n        if ($this->isUnfilteredAndEndLess()) {\n            throw new EndLessPeriodException(\"Endless period can't be converted to array nor counted.\");\n        }\n\n        $state = [\n            $this->key,\n            $this->carbonCurrent ? $this->carbonCurrent->avoidMutation() : null,\n            $this->validationResult,\n        ];\n\n        $result = iterator_to_array($this);\n\n        [$this->key, $this->carbonCurrent, $this->validationResult] = $state;\n\n        return $result;\n    }\n\n    /**\n     * Count dates in the date period.\n     */\n    public function count(): int\n    {\n        return \\count($this->toArray());\n    }\n\n    /**\n     * Return the first date in the date period.\n     */\n    public function first(): ?CarbonInterface\n    {\n        if ($this->isUnfilteredAndEndLess()) {\n            foreach ($this as $date) {\n                $this->rewind();\n\n                return $date;\n            }\n\n            return null;\n        }\n\n        return ($this->toArray() ?: [])[0] ?? null;\n    }\n\n    /**\n     * Return the last date in the date period.\n     */\n    public function last(): ?CarbonInterface\n    {\n        $array = $this->toArray();\n\n        return $array ? $array[\\count($array) - 1] : null;\n    }\n\n    /**\n     * Convert the date period into a string.\n     */\n    public function __toString(): string\n    {\n        return $this->toString();\n    }\n\n    /**\n     * Add aliases for setters.\n     *\n     * CarbonPeriod::days(3)->hours(5)->invert()\n     *     ->sinceNow()->until('2010-01-10')\n     *     ->filter(...)\n     *     ->count()\n     *\n     * Note: We use magic method to let static and instance aliases with the same names.\n     */\n    public function __call(string $method, array $parameters): mixed\n    {\n        if (static::hasMacro($method)) {\n            return static::bindMacroContext($this, fn () => $this->callMacro($method, $parameters));\n        }\n\n        $roundedValue = $this->callRoundMethod($method, $parameters);\n\n        if ($roundedValue !== null) {\n            return $roundedValue;\n        }\n\n        $count = \\count($parameters);\n\n        switch ($method) {\n            case 'start':\n            case 'since':\n                if ($count === 0) {\n                    return $this->getStartDate();\n                }\n\n                self::setDefaultParameters($parameters, [\n                    [0, 'date', null],\n                ]);\n\n                return $this->setStartDate(...$parameters);\n\n            case 'sinceNow':\n                return $this->setStartDate(new Carbon(), ...$parameters);\n\n            case 'end':\n            case 'until':\n                if ($count === 0) {\n                    return $this->getEndDate();\n                }\n\n                self::setDefaultParameters($parameters, [\n                    [0, 'date', null],\n                ]);\n\n                return $this->setEndDate(...$parameters);\n\n            case 'untilNow':\n                return $this->setEndDate(new Carbon(), ...$parameters);\n\n            case 'dates':\n            case 'between':\n                self::setDefaultParameters($parameters, [\n                    [0, 'start', null],\n                    [1, 'end', null],\n                ]);\n\n                return $this->setDates(...$parameters);\n\n            case 'recurrences':\n            case 'times':\n                if ($count === 0) {\n                    return $this->getRecurrences();\n                }\n\n                self::setDefaultParameters($parameters, [\n                    [0, 'recurrences', null],\n                ]);\n\n                return $this->setRecurrences(...$parameters);\n\n            case 'options':\n                if ($count === 0) {\n                    return $this->getOptions();\n                }\n\n                self::setDefaultParameters($parameters, [\n                    [0, 'options', null],\n                ]);\n\n                return $this->setOptions(...$parameters);\n\n            case 'toggle':\n                self::setDefaultParameters($parameters, [\n                    [0, 'options', null],\n                ]);\n\n                return $this->toggleOptions(...$parameters);\n\n            case 'filter':\n            case 'push':\n                return $this->addFilter(...$parameters);\n\n            case 'prepend':\n                return $this->prependFilter(...$parameters);\n\n            case 'filters':\n                if ($count === 0) {\n                    return $this->getFilters();\n                }\n\n                self::setDefaultParameters($parameters, [\n                    [0, 'filters', []],\n                ]);\n\n                return $this->setFilters(...$parameters);\n\n            case 'interval':\n            case 'each':\n            case 'every':\n            case 'step':\n            case 'stepBy':\n                if ($count === 0) {\n                    return $this->getDateInterval();\n                }\n\n                return $this->setDateInterval(...$parameters);\n\n            case 'invert':\n                return $this->invertDateInterval();\n\n            case 'years':\n            case 'year':\n            case 'months':\n            case 'month':\n            case 'weeks':\n            case 'week':\n            case 'days':\n            case 'dayz':\n            case 'day':\n            case 'hours':\n            case 'hour':\n            case 'minutes':\n            case 'minute':\n            case 'seconds':\n            case 'second':\n            case 'milliseconds':\n            case 'millisecond':\n            case 'microseconds':\n            case 'microsecond':\n                return $this->setDateInterval((\n                    // Override default P1D when instantiating via fluent setters.\n                    [$this->isDefaultInterval ? new CarbonInterval('PT0S') : $this->dateInterval, $method]\n                )(...$parameters));\n        }\n\n        $dateClass = $this->dateClass;\n\n        if ($this->localStrictModeEnabled ?? $dateClass::isStrictModeEnabled()) {\n            throw new UnknownMethodException($method);\n        }\n\n        return $this;\n    }\n\n    /**\n     * Set the instance's timezone from a string or object and apply it to start/end.\n     */\n    public function setTimezone(DateTimeZone|string|int $timezone): static\n    {\n        $self = $this->copyIfImmutable();\n        $self->timezoneSetting = $timezone;\n        $self->timezone = CarbonTimeZone::instance($timezone);\n\n        if ($self->startDate) {\n            $self = $self->setStartDate($self->startDate->setTimezone($timezone));\n        }\n\n        if ($self->endDate) {\n            $self = $self->setEndDate($self->endDate->setTimezone($timezone));\n        }\n\n        return $self;\n    }\n\n    /**\n     * Set the instance's timezone from a string or object and add/subtract the offset difference to start/end.\n     */\n    public function shiftTimezone(DateTimeZone|string|int $timezone): static\n    {\n        $self = $this->copyIfImmutable();\n        $self->timezoneSetting = $timezone;\n        $self->timezone = CarbonTimeZone::instance($timezone);\n\n        if ($self->startDate) {\n            $self = $self->setStartDate($self->startDate->shiftTimezone($timezone));\n        }\n\n        if ($self->endDate) {\n            $self = $self->setEndDate($self->endDate->shiftTimezone($timezone));\n        }\n\n        return $self;\n    }\n\n    /**\n     * Returns the end is set, else calculated from start and recurrences.\n     *\n     * @param string|null $rounding Optional rounding 'floor', 'ceil', 'round' using the period interval.\n     *\n     * @return CarbonInterface\n     */\n    public function calculateEnd(?string $rounding = null): CarbonInterface\n    {\n        if ($end = $this->getEndDate($rounding)) {\n            return $end;\n        }\n\n        if ($this->dateInterval->isEmpty()) {\n            return $this->getStartDate($rounding);\n        }\n\n        $date = $this->getEndFromRecurrences() ?? $this->iterateUntilEnd();\n\n        if ($date && $rounding) {\n            $date = $date->avoidMutation()->round($this->getDateInterval(), $rounding);\n        }\n\n        return $date;\n    }\n\n    private function getEndFromRecurrences(): ?CarbonInterface\n    {\n        if ($this->carbonRecurrences === null) {\n            throw new UnreachableException(\n                \"Could not calculate period end without either explicit end or recurrences.\\n\".\n                \"If you're looking for a forever-period, use ->setRecurrences(INF).\",\n            );\n        }\n\n        if ($this->carbonRecurrences === INF) {\n            $start = $this->getStartDate();\n\n            return $start < $start->avoidMutation()->add($this->getDateInterval())\n                ? CarbonImmutable::endOfTime()\n                : CarbonImmutable::startOfTime();\n        }\n\n        if ($this->filters === [[static::RECURRENCES_FILTER, null]]) {\n            return $this->getStartDate()->avoidMutation()->add(\n                $this->getDateInterval()->times(\n                    $this->carbonRecurrences - ($this->isStartExcluded() ? 0 : 1),\n                ),\n            );\n        }\n\n        return null;\n    }\n\n    private function iterateUntilEnd(): ?CarbonInterface\n    {\n        $attempts = 0;\n        $date = null;\n\n        foreach ($this as $date) {\n            if (++$attempts > static::END_MAX_ATTEMPTS) {\n                throw new UnreachableException(\n                    'Could not calculate period end after iterating '.static::END_MAX_ATTEMPTS.' times.',\n                );\n            }\n        }\n\n        return $date;\n    }\n\n    /**\n     * Returns true if the current period overlaps the given one (if 1 parameter passed)\n     * or the period between 2 dates (if 2 parameters passed).\n     *\n     * @param CarbonPeriod|\\DateTimeInterface|Carbon|CarbonImmutable|string $rangeOrRangeStart\n     * @param \\DateTimeInterface|Carbon|CarbonImmutable|string|null         $rangeEnd\n     *\n     * @return bool\n     */\n    public function overlaps(mixed $rangeOrRangeStart, mixed $rangeEnd = null): bool\n    {\n        $range = $rangeEnd ? static::create($rangeOrRangeStart, $rangeEnd) : $rangeOrRangeStart;\n\n        if (!($range instanceof self)) {\n            $range = static::create($range);\n        }\n\n        [$start, $end] = $this->orderCouple($this->getStartDate(), $this->calculateEnd());\n        [$rangeStart, $rangeEnd] = $this->orderCouple($range->getStartDate(), $range->calculateEnd());\n\n        return $end > $rangeStart && $rangeEnd > $start;\n    }\n\n    /**\n     * Execute a given function on each date of the period.\n     *\n     * @example\n     * ```\n     * Carbon::create('2020-11-29')->daysUntil('2020-12-24')->forEach(function (Carbon $date) {\n     *   echo $date->diffInDays('2020-12-25').\" days before Christmas!\\n\";\n     * });\n     * ```\n     */\n    public function forEach(callable $callback): void\n    {\n        foreach ($this as $date) {\n            $callback($date);\n        }\n    }\n\n    /**\n     * Execute a given function on each date of the period and yield the result of this function.\n     *\n     * @example\n     * ```\n     * $period = Carbon::create('2020-11-29')->daysUntil('2020-12-24');\n     * echo implode(\"\\n\", iterator_to_array($period->map(function (Carbon $date) {\n     *   return $date->diffInDays('2020-12-25').' days before Christmas!';\n     * })));\n     * ```\n     */\n    public function map(callable $callback): Generator\n    {\n        foreach ($this as $date) {\n            yield $callback($date);\n        }\n    }\n\n    /**\n     * Determines if the instance is equal to another.\n     * Warning: if options differ, instances will never be equal.\n     *\n     * @see equalTo()\n     */\n    public function eq(mixed $period): bool\n    {\n        return $this->equalTo($period);\n    }\n\n    /**\n     * Determines if the instance is equal to another.\n     * Warning: if options differ, instances will never be equal.\n     */\n    public function equalTo(mixed $period): bool\n    {\n        if (!($period instanceof self)) {\n            $period = self::make($period);\n        }\n\n        $end = $this->getEndDate();\n\n        return $period !== null\n            && $this->getDateInterval()->eq($period->getDateInterval())\n            && $this->getStartDate()->eq($period->getStartDate())\n            && ($end ? $end->eq($period->getEndDate()) : $this->getRecurrences() === $period->getRecurrences())\n            && ($this->getOptions() & (~static::IMMUTABLE)) === ($period->getOptions() & (~static::IMMUTABLE));\n    }\n\n    /**\n     * Determines if the instance is not equal to another.\n     * Warning: if options differ, instances will never be equal.\n     *\n     * @see notEqualTo()\n     */\n    public function ne(mixed $period): bool\n    {\n        return $this->notEqualTo($period);\n    }\n\n    /**\n     * Determines if the instance is not equal to another.\n     * Warning: if options differ, instances will never be equal.\n     */\n    public function notEqualTo(mixed $period): bool\n    {\n        return !$this->eq($period);\n    }\n\n    /**\n     * Determines if the start date is before another given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function startsBefore(mixed $date = null): bool\n    {\n        return $this->getStartDate()->lessThan($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the start date is before or the same as a given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function startsBeforeOrAt(mixed $date = null): bool\n    {\n        return $this->getStartDate()->lessThanOrEqualTo($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the start date is after another given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function startsAfter(mixed $date = null): bool\n    {\n        return $this->getStartDate()->greaterThan($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the start date is after or the same as a given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function startsAfterOrAt(mixed $date = null): bool\n    {\n        return $this->getStartDate()->greaterThanOrEqualTo($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the start date is the same as a given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function startsAt(mixed $date = null): bool\n    {\n        return $this->getStartDate()->equalTo($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the end date is before another given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function endsBefore(mixed $date = null): bool\n    {\n        return $this->calculateEnd()->lessThan($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the end date is before or the same as a given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function endsBeforeOrAt(mixed $date = null): bool\n    {\n        return $this->calculateEnd()->lessThanOrEqualTo($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the end date is after another given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function endsAfter(mixed $date = null): bool\n    {\n        return $this->calculateEnd()->greaterThan($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the end date is after or the same as a given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function endsAfterOrAt(mixed $date = null): bool\n    {\n        return $this->calculateEnd()->greaterThanOrEqualTo($this->resolveCarbon($date));\n    }\n\n    /**\n     * Determines if the end date is the same as a given date.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function endsAt(mixed $date = null): bool\n    {\n        return $this->calculateEnd()->equalTo($this->resolveCarbon($date));\n    }\n\n    /**\n     * Return true if start date is now or later.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function isStarted(): bool\n    {\n        return $this->startsBeforeOrAt();\n    }\n\n    /**\n     * Return true if end date is now or later.\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function isEnded(): bool\n    {\n        return $this->endsBeforeOrAt();\n    }\n\n    /**\n     * Return true if now is between start date (included) and end date (excluded).\n     * (Rather start/end are included by options is ignored.)\n     */\n    public function isInProgress(): bool\n    {\n        return $this->isStarted() && !$this->isEnded();\n    }\n\n    /**\n     * Round the current instance at the given unit with given precision if specified and the given function.\n     */\n    public function roundUnit(\n        string $unit,\n        DateInterval|float|int|string|null $precision = 1,\n        callable|string $function = 'round',\n    ): static {\n        $self = $this->copyIfImmutable();\n        $self = $self->setStartDate($self->getStartDate()->roundUnit($unit, $precision, $function));\n\n        if ($self->endDate) {\n            $self = $self->setEndDate($self->getEndDate()->roundUnit($unit, $precision, $function));\n        }\n\n        return $self->setDateInterval($self->getDateInterval()->roundUnit($unit, $precision, $function));\n    }\n\n    /**\n     * Truncate the current instance at the given unit with given precision if specified.\n     */\n    public function floorUnit(string $unit, DateInterval|float|int|string|null $precision = 1): static\n    {\n        return $this->roundUnit($unit, $precision, 'floor');\n    }\n\n    /**\n     * Ceil the current instance at the given unit with given precision if specified.\n     */\n    public function ceilUnit(string $unit, DateInterval|float|int|string|null $precision = 1): static\n    {\n        return $this->roundUnit($unit, $precision, 'ceil');\n    }\n\n    /**\n     * Round the current instance second with given precision if specified (else period interval is used).\n     */\n    public function round(\n        DateInterval|float|int|string|null $precision = null,\n        callable|string $function = 'round',\n    ): static {\n        return $this->roundWith(\n            $precision ?? $this->getDateInterval()->setLocalTranslator(TranslatorImmutable::get('en'))->forHumans(),\n            $function\n        );\n    }\n\n    /**\n     * Round the current instance second with given precision if specified (else period interval is used).\n     */\n    public function floor(DateInterval|float|int|string|null $precision = null): static\n    {\n        return $this->round($precision, 'floor');\n    }\n\n    /**\n     * Ceil the current instance second with given precision if specified (else period interval is used).\n     */\n    public function ceil(DateInterval|float|int|string|null $precision = null): static\n    {\n        return $this->round($precision, 'ceil');\n    }\n\n    /**\n     * Specify data which should be serialized to JSON.\n     *\n     * @link https://php.net/manual/en/jsonserializable.jsonserialize.php\n     *\n     * @return CarbonInterface[]\n     */\n    public function jsonSerialize(): array\n    {\n        return $this->toArray();\n    }\n\n    /**\n     * Return true if the given date is between start and end.\n     */\n    public function contains(mixed $date = null): bool\n    {\n        $startMethod = 'startsBefore'.($this->isStartIncluded() ? 'OrAt' : '');\n        $endMethod = 'endsAfter'.($this->isEndIncluded() ? 'OrAt' : '');\n\n        return $this->$startMethod($date) && $this->$endMethod($date);\n    }\n\n    /**\n     * Return true if the current period follows a given other period (with no overlap).\n     * For instance, [2019-08-01 -> 2019-08-12] follows [2019-07-29 -> 2019-07-31]\n     * Note than in this example, follows() would be false if 2019-08-01 or 2019-07-31 was excluded by options.\n     */\n    public function follows(mixed $period, mixed ...$arguments): bool\n    {\n        $period = $this->resolveCarbonPeriod($period, ...$arguments);\n\n        return $this->getIncludedStartDate()->equalTo($period->getIncludedEndDate()->add($period->getDateInterval()));\n    }\n\n    /**\n     * Return true if the given other period follows the current one (with no overlap).\n     * For instance, [2019-07-29 -> 2019-07-31] is followed by [2019-08-01 -> 2019-08-12]\n     * Note than in this example, isFollowedBy() would be false if 2019-08-01 or 2019-07-31 was excluded by options.\n     */\n    public function isFollowedBy(mixed $period, mixed ...$arguments): bool\n    {\n        $period = $this->resolveCarbonPeriod($period, ...$arguments);\n\n        return $period->follows($this);\n    }\n\n    /**\n     * Return true if the given period either follows or is followed by the current one.\n     *\n     * @see follows()\n     * @see isFollowedBy()\n     */\n    public function isConsecutiveWith(mixed $period, mixed ...$arguments): bool\n    {\n        return $this->follows($period, ...$arguments) || $this->isFollowedBy($period, ...$arguments);\n    }\n\n    public function __debugInfo(): array\n    {\n        $info = $this->baseDebugInfo();\n        unset(\n            $info['start'],\n            $info['end'],\n            $info['interval'],\n            $info['include_start_date'],\n            $info['include_end_date'],\n            $info['constructed'],\n            $info[\"\\0*\\0constructed\"],\n        );\n\n        return $info;\n    }\n\n    public function __unserialize(array $data): void\n    {\n        try {\n            $values = array_combine(\n                array_map(\n                    static fn (string $key): string => preg_replace('/^\\0\\*\\0/', '', $key),\n                    array_keys($data),\n                ),\n                $data,\n            );\n\n            $this->initializeSerialization($values);\n\n            foreach ($values as $key => $value) {\n                if ($value === null) {\n                    continue;\n                }\n\n                $property = match ($key) {\n                    'tzName' => $this->setTimezone(...),\n                    'options' => $this->setOptions(...),\n                    'recurrences' => $this->setRecurrences(...),\n                    'current' => function (mixed $current): void {\n                        if (!($current instanceof CarbonInterface)) {\n                            $current = $this->resolveCarbon($current);\n                        }\n\n                        $this->carbonCurrent = $current;\n                    },\n                    'start' => 'startDate',\n                    'interval' => $this->setDateInterval(...),\n                    'end' => 'endDate',\n                    'key' => null,\n                    'include_start_date' => function (bool $included): void {\n                        $this->excludeStartDate(!$included);\n                    },\n                    'include_end_date' => function (bool $included): void {\n                        $this->excludeEndDate(!$included);\n                    },\n                    default => $key,\n                };\n\n                if ($property === null) {\n                    continue;\n                }\n\n                if (\\is_callable($property)) {\n                    $property($value);\n\n                    continue;\n                }\n\n                if ($value instanceof DateTimeInterface && !($value instanceof CarbonInterface)) {\n                    $value = ($value instanceof DateTime)\n                        ? Carbon::instance($value)\n                        : CarbonImmutable::instance($value);\n                }\n\n                try {\n                    $this->$property = $value;\n                } catch (Throwable) {\n                    // Must be ignored for backward-compatibility\n                }\n            }\n\n            if (\\array_key_exists('carbonRecurrences', $values)) {\n                $this->carbonRecurrences = $values['carbonRecurrences'];\n            } elseif (((int) ($values['recurrences'] ?? 0)) <= 1 && $this->endDate !== null) {\n                $this->carbonRecurrences = null;\n            }\n        } catch (Throwable $e) {\n            // @codeCoverageIgnoreStart\n            if (!method_exists(parent::class, '__unserialize')) {\n                throw $e;\n            }\n\n            parent::__unserialize($data);\n            // @codeCoverageIgnoreEnd\n        }\n    }\n\n    /**\n     * Update properties after removing built-in filters.\n     */\n    protected function updateInternalState(): void\n    {\n        if (!$this->hasFilter(static::END_DATE_FILTER)) {\n            $this->endDate = null;\n        }\n\n        if (!$this->hasFilter(static::RECURRENCES_FILTER)) {\n            $this->carbonRecurrences = null;\n        }\n    }\n\n    /**\n     * Create a filter tuple from raw parameters.\n     *\n     * Will create an automatic filter callback for one of Carbon's is* methods.\n     */\n    protected function createFilterTuple(array $parameters): array\n    {\n        $method = array_shift($parameters);\n\n        if (!$this->isCarbonPredicateMethod($method)) {\n            return [$method, array_shift($parameters)];\n        }\n\n        return [static fn ($date) => ([$date, $method])(...$parameters), $method];\n    }\n\n    /**\n     * Return whether given callable is a string pointing to one of Carbon's is* methods\n     * and should be automatically converted to a filter callback.\n     */\n    protected function isCarbonPredicateMethod(callable|string $callable): bool\n    {\n        return \\is_string($callable) && str_starts_with($callable, 'is') &&\n            (method_exists($this->dateClass, $callable) || ([$this->dateClass, 'hasMacro'])($callable));\n    }\n\n    /**\n     * Recurrences filter callback (limits number of recurrences).\n     *\n     * @SuppressWarnings(UnusedFormalParameter)\n     */\n    protected function filterRecurrences(CarbonInterface $current, int $key): bool|callable\n    {\n        if ($key < $this->carbonRecurrences) {\n            return true;\n        }\n\n        return static::END_ITERATION;\n    }\n\n    /**\n     * End date filter callback.\n     *\n     * @return bool|static::END_ITERATION\n     */\n    protected function filterEndDate(CarbonInterface $current): bool|callable\n    {\n        if (!$this->isEndExcluded() && $current == $this->endDate) {\n            return true;\n        }\n\n        if ($this->dateInterval->invert ? $current > $this->endDate : $current < $this->endDate) {\n            return true;\n        }\n\n        return static::END_ITERATION;\n    }\n\n    /**\n     * End iteration filter callback.\n     *\n     * @return static::END_ITERATION\n     */\n    protected function endIteration(): callable\n    {\n        return static::END_ITERATION;\n    }\n\n    /**\n     * Handle change of the parameters.\n     */\n    protected function handleChangedParameters(): void\n    {\n        if (($this->getOptions() & static::IMMUTABLE) && $this->dateClass === Carbon::class) {\n            $this->dateClass = CarbonImmutable::class;\n        } elseif (!($this->getOptions() & static::IMMUTABLE) && $this->dateClass === CarbonImmutable::class) {\n            $this->dateClass = Carbon::class;\n        }\n\n        $this->validationResult = null;\n    }\n\n    /**\n     * Validate current date and stop iteration when necessary.\n     *\n     * Returns true when current date is valid, false if it is not, or static::END_ITERATION\n     * when iteration should be stopped.\n     *\n     * @return bool|static::END_ITERATION\n     */\n    protected function validateCurrentDate(): bool|callable\n    {\n        if ($this->carbonCurrent === null) {\n            $this->rewind();\n        }\n\n        // Check after the first rewind to avoid repeating the initial validation.\n        return $this->validationResult ?? ($this->validationResult = $this->checkFilters());\n    }\n\n    /**\n     * Check whether current value and key pass all the filters.\n     *\n     * @return bool|static::END_ITERATION\n     */\n    protected function checkFilters(): bool|callable\n    {\n        $current = $this->prepareForReturn($this->carbonCurrent);\n\n        foreach ($this->filters as $tuple) {\n            $result = \\call_user_func($tuple[0], $current->avoidMutation(), $this->key, $this);\n\n            if ($result === static::END_ITERATION) {\n                return static::END_ITERATION;\n            }\n\n            if (!$result) {\n                return false;\n            }\n        }\n\n        return true;\n    }\n\n    /**\n     * Prepare given date to be returned to the external logic.\n     *\n     * @param CarbonInterface $date\n     *\n     * @return CarbonInterface\n     */\n    protected function prepareForReturn(CarbonInterface $date)\n    {\n        $date = ([$this->dateClass, 'make'])($date);\n\n        if ($this->timezone) {\n            return $date->setTimezone($this->timezone);\n        }\n\n        return $date;\n    }\n\n    /**\n     * Keep incrementing the current date until a valid date is found or the iteration is ended.\n     *\n     * @throws RuntimeException\n     */\n    protected function incrementCurrentDateUntilValid(): void\n    {\n        $attempts = 0;\n\n        do {\n            $this->carbonCurrent = $this->carbonCurrent->add($this->dateInterval);\n\n            $this->validationResult = null;\n\n            if (++$attempts > static::NEXT_MAX_ATTEMPTS) {\n                throw new UnreachableException('Could not find next valid date.');\n            }\n        } while ($this->validateCurrentDate() === false);\n    }\n\n    /**\n     * Call given macro.\n     */\n    protected function callMacro(string $name, array $parameters): mixed\n    {\n        $macro = static::$macros[$name];\n\n        if ($macro instanceof Closure) {\n            $boundMacro = @$macro->bindTo($this, static::class) ?: @$macro->bindTo(null, static::class);\n\n            return ($boundMacro ?: $macro)(...$parameters);\n        }\n\n        return $macro(...$parameters);\n    }\n\n    /**\n     * Return the Carbon instance passed through, a now instance in the same timezone\n     * if null given or parse the input if string given.\n     *\n     * @param \\Carbon\\Carbon|\\Carbon\\CarbonPeriod|\\Carbon\\CarbonInterval|\\DateInterval|\\DatePeriod|\\DateTimeInterface|string|null $date\n     *\n     * @return \\Carbon\\CarbonInterface\n     */\n    protected function resolveCarbon($date = null)\n    {\n        return $this->getStartDate()->nowWithSameTz()->carbonize($date);\n    }\n\n    /**\n     * Resolve passed arguments or DatePeriod to a CarbonPeriod object.\n     */\n    protected function resolveCarbonPeriod(mixed $period, mixed ...$arguments): self\n    {\n        if ($period instanceof self) {\n            return $period;\n        }\n\n        return $period instanceof DatePeriod\n            ? static::instance($period)\n            : static::create($period, ...$arguments);\n    }\n\n    private function orderCouple($first, $second): array\n    {\n        return $first > $second ? [$second, $first] : [$first, $second];\n    }\n\n    private function makeDateTime($value): ?DateTimeInterface\n    {\n        if ($value instanceof DateTimeInterface) {\n            return $value;\n        }\n\n        if ($value instanceof WeekDay || $value instanceof Month) {\n            $dateClass = $this->dateClass;\n\n            return new $dateClass($value, $this->timezoneSetting);\n        }\n\n        if (\\is_string($value)) {\n            $value = trim($value);\n\n            if (!preg_match('/^P[\\dT]/', $value) &&\n                !preg_match('/^R\\d/', $value) &&\n                preg_match('/[a-z\\d]/i', $value)\n            ) {\n                $dateClass = $this->dateClass;\n\n                return $dateClass::parse($value, $this->timezoneSetting);\n            }\n        }\n\n        return null;\n    }\n\n    private function isInfiniteDate($date): bool\n    {\n        return $date instanceof CarbonInterface && ($date->isEndOfTime() || $date->isStartOfTime());\n    }\n\n    private function rawDate($date): ?DateTimeInterface\n    {\n        if ($date === false || $date === null) {\n            return null;\n        }\n\n        if ($date instanceof CarbonInterface) {\n            return $date->isMutable()\n                ? $date->toDateTime()\n                : $date->toDateTimeImmutable();\n        }\n\n        if (\\in_array(\\get_class($date), [DateTime::class, DateTimeImmutable::class], true)) {\n            return $date;\n        }\n\n        $class = $date instanceof DateTime ? DateTime::class : DateTimeImmutable::class;\n\n        return new $class($date->format('Y-m-d H:i:s.u'), $date->getTimezone());\n    }\n\n    private static function setDefaultParameters(array &$parameters, array $defaults): void\n    {\n        foreach ($defaults as [$index, $name, $value]) {\n            if (!\\array_key_exists($index, $parameters) && !\\array_key_exists($name, $parameters)) {\n                $parameters[$index] = $value;\n            }\n        }\n    }\n\n    private function setFromAssociativeArray(array $parameters): void\n    {\n        if (isset($parameters['start'])) {\n            $this->setStartDate($parameters['start']);\n        }\n\n        if (isset($parameters['start'])) {\n            $this->setStartDate($parameters['start']);\n        }\n\n        if (isset($parameters['end'])) {\n            $this->setEndDate($parameters['end']);\n        }\n\n        if (isset($parameters['recurrences'])) {\n            $this->setRecurrences($parameters['recurrences']);\n        }\n\n        if (isset($parameters['interval'])) {\n            $this->setDateInterval($parameters['interval']);\n        }\n\n        if (isset($parameters['options'])) {\n            $this->setOptions($parameters['options']);\n        }\n    }\n\n    private function configureTimezone(DateTimeZone $timezone, array $sortedArguments, array $originalArguments): array\n    {\n        $this->setTimezone($timezone);\n\n        if (\\is_string($originalArguments['start'] ?? null)) {\n            $sortedArguments['start'] = $this->makeDateTime($originalArguments['start']);\n        }\n\n        if (\\is_string($originalArguments['end'] ?? null)) {\n            $sortedArguments['end'] = $this->makeDateTime($originalArguments['end']);\n        }\n\n        return $sortedArguments;\n    }\n\n    private function initializeSerialization(array $values): void\n    {\n        $serializationBase = [\n            'start' => $values['start'] ?? $values['startDate'] ?? null,\n            'current' => $values['current'] ?? $values['carbonCurrent'] ?? null,\n            'end' => $values['end'] ?? $values['endDate'] ?? null,\n            'interval' => $values['interval'] ?? $values['dateInterval'] ?? null,\n            'recurrences' => max(1, (int) ($values['recurrences'] ?? $values['carbonRecurrences'] ?? 1)),\n            'include_start_date' => $values['include_start_date'] ?? true,\n            'include_end_date' => $values['include_end_date'] ?? false,\n        ];\n\n        foreach (['start', 'current', 'end'] as $dateProperty) {\n            if ($serializationBase[$dateProperty] instanceof Carbon) {\n                $serializationBase[$dateProperty] = $serializationBase[$dateProperty]->toDateTime();\n            } elseif ($serializationBase[$dateProperty] instanceof CarbonInterface) {\n                $serializationBase[$dateProperty] = $serializationBase[$dateProperty]->toDateTimeImmutable();\n            }\n        }\n\n        if ($serializationBase['interval'] instanceof CarbonInterval) {\n            $serializationBase['interval'] = $serializationBase['interval']->toDateInterval();\n        }\n\n        // @codeCoverageIgnoreStart\n        if (method_exists(parent::class, '__unserialize')) {\n            parent::__unserialize($serializationBase);\n\n            return;\n        }\n\n        $excludeStart = !($values['include_start_date'] ?? true);\n        $includeEnd = $values['include_end_date'] ?? true;\n\n        parent::__construct(\n            $serializationBase['start'],\n            $serializationBase['interval'],\n            $serializationBase['end'] ?? $serializationBase['recurrences'],\n            ($excludeStart ? self::EXCLUDE_START_DATE : 0) | ($includeEnd && \\defined('DatePeriod::INCLUDE_END_DATE') ? self::INCLUDE_END_DATE : 0),\n        );\n        // @codeCoverageIgnoreEnd\n    }\n}\n"
  },
  {
    "path": "src/Carbon/CarbonPeriodImmutable.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nclass CarbonPeriodImmutable extends CarbonPeriod\n{\n    /**\n     * Default date class of iteration items.\n     *\n     * @var string\n     */\n    protected const DEFAULT_DATE_CLASS = CarbonImmutable::class;\n\n    /**\n     * Date class of iteration items.\n     */\n    protected string $dateClass = CarbonImmutable::class;\n\n    /**\n     * Prepare the instance to be set (self if mutable to be mutated,\n     * copy if immutable to generate a new instance).\n     */\n    protected function copyIfImmutable(): static\n    {\n        return $this->constructed ? clone $this : $this;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/CarbonTimeZone.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Exceptions\\InvalidCastException;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse Carbon\\Traits\\LocalFactory;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Exception;\nuse Throwable;\n\nclass CarbonTimeZone extends DateTimeZone\n{\n    use LocalFactory;\n\n    public const MAXIMUM_TIMEZONE_OFFSET = 99;\n\n    public function __construct(string|int|float $timezone)\n    {\n        $this->initLocalFactory();\n\n        parent::__construct(static::getDateTimeZoneNameFromMixed($timezone));\n    }\n\n    protected static function parseNumericTimezone(string|int|float $timezone): string\n    {\n        if (abs((float) $timezone) > static::MAXIMUM_TIMEZONE_OFFSET) {\n            throw new InvalidTimeZoneException(\n                'Absolute timezone offset cannot be greater than '.\n                static::MAXIMUM_TIMEZONE_OFFSET.'.',\n            );\n        }\n\n        return ($timezone >= 0 ? '+' : '').ltrim((string) $timezone, '+').':00';\n    }\n\n    protected static function getDateTimeZoneNameFromMixed(string|int|float $timezone): string\n    {\n        if (\\is_string($timezone)) {\n            $timezone = preg_replace('/^\\s*([+-]\\d+)(\\d{2})\\s*$/', '$1:$2', $timezone);\n        }\n\n        if (is_numeric($timezone)) {\n            return static::parseNumericTimezone($timezone);\n        }\n\n        return $timezone;\n    }\n\n    /**\n     * Cast the current instance into the given class.\n     *\n     * @param class-string<DateTimeZone> $className The $className::instance() method will be called to cast the current object.\n     *\n     * @return DateTimeZone|mixed\n     */\n    public function cast(string $className): mixed\n    {\n        if (!method_exists($className, 'instance')) {\n            if (is_a($className, DateTimeZone::class, true)) {\n                return new $className($this->getName());\n            }\n\n            throw new InvalidCastException(\"$className has not the instance() method needed to cast the date.\");\n        }\n\n        return $className::instance($this);\n    }\n\n    /**\n     * Create a CarbonTimeZone from mixed input.\n     *\n     * @param DateTimeZone|string|int|false|null $object     original value to get CarbonTimeZone from it.\n     * @param DateTimeZone|string|int|false|null $objectDump dump of the object for error messages.\n     *\n     * @throws InvalidTimeZoneException\n     *\n     * @return static|null\n     */\n    public static function instance(\n        DateTimeZone|string|int|false|null $object,\n        DateTimeZone|string|int|false|null $objectDump = null,\n    ): ?self {\n        $timezone = $object;\n\n        if ($timezone instanceof static) {\n            return $timezone;\n        }\n\n        if ($timezone === null || $timezone === false) {\n            return null;\n        }\n\n        try {\n            if (!($timezone instanceof DateTimeZone)) {\n                $name = static::getDateTimeZoneNameFromMixed($object);\n                $timezone = new static($name);\n            }\n\n            return $timezone instanceof static ? $timezone : new static($timezone->getName());\n        } catch (Exception $exception) {\n            throw new InvalidTimeZoneException(\n                'Unknown or bad timezone ('.($objectDump ?: $object).')',\n                previous: $exception,\n            );\n        }\n    }\n\n    /**\n     * Returns abbreviated name of the current timezone according to DST setting.\n     *\n     * @param bool $dst\n     *\n     * @return string\n     */\n    public function getAbbreviatedName(bool $dst = false): string\n    {\n        $name = $this->getName();\n\n        $date = new DateTimeImmutable($dst ? 'July 1' : 'January 1', $this);\n        $timezone = $date->format('T');\n        $abbreviations = $this->listAbbreviations();\n        $matchingZones = array_merge($abbreviations[$timezone] ?? [], $abbreviations[strtolower($timezone)] ?? []);\n\n        if ($matchingZones !== []) {\n            foreach ($matchingZones as $zone) {\n                if ($zone['timezone_id'] === $name && $zone['dst'] == $dst) {\n                    return $timezone;\n                }\n            }\n        }\n\n        foreach ($abbreviations as $abbreviation => $zones) {\n            foreach ($zones as $zone) {\n                if ($zone['timezone_id'] === $name && $zone['dst'] == $dst) {\n                    return strtoupper($abbreviation);\n                }\n            }\n        }\n\n        return 'unknown';\n    }\n\n    /**\n     * @alias getAbbreviatedName\n     *\n     * Returns abbreviated name of the current timezone according to DST setting.\n     *\n     * @param bool $dst\n     *\n     * @return string\n     */\n    public function getAbbr(bool $dst = false): string\n    {\n        return $this->getAbbreviatedName($dst);\n    }\n\n    /**\n     * Get the offset as string \"sHH:MM\" (such as \"+00:00\" or \"-12:30\").\n     */\n    public function toOffsetName(?DateTimeInterface $date = null): string\n    {\n        return static::getOffsetNameFromMinuteOffset(\n            $this->getOffset($this->resolveCarbon($date)) / 60,\n        );\n    }\n\n    /**\n     * Returns a new CarbonTimeZone object using the offset string instead of region string.\n     */\n    public function toOffsetTimeZone(?DateTimeInterface $date = null): static\n    {\n        return new static($this->toOffsetName($date));\n    }\n\n    /**\n     * Returns the first region string (such as \"America/Toronto\") that matches the current timezone or\n     * false if no match is found.\n     *\n     * @see timezone_name_from_abbr native PHP function.\n     */\n    public function toRegionName(?DateTimeInterface $date = null, int $isDST = 1): ?string\n    {\n        $name = $this->getName();\n        $firstChar = substr($name, 0, 1);\n\n        if ($firstChar !== '+' && $firstChar !== '-') {\n            return $name;\n        }\n\n        $date = $this->resolveCarbon($date);\n\n        // Integer construction no longer supported since PHP 8\n        // @codeCoverageIgnoreStart\n        try {\n            $offset = @$this->getOffset($date) ?: 0;\n        } catch (Throwable) {\n            $offset = 0;\n        }\n        // @codeCoverageIgnoreEnd\n\n        $name = @timezone_name_from_abbr('', $offset, $isDST);\n\n        if ($name) {\n            return $name;\n        }\n\n        foreach (timezone_identifiers_list() as $timezone) {\n            if (Carbon::instance($date)->setTimezone($timezone)->getOffset() === $offset) {\n                return $timezone;\n            }\n        }\n\n        return null;\n    }\n\n    /**\n     * Returns a new CarbonTimeZone object using the region string instead of offset string.\n     */\n    public function toRegionTimeZone(?DateTimeInterface $date = null): ?self\n    {\n        $timezone = $this->toRegionName($date);\n\n        if ($timezone !== null) {\n            return new static($timezone);\n        }\n\n        if (Carbon::isStrictModeEnabled()) {\n            throw new InvalidTimeZoneException('Unknown timezone for offset '.$this->getOffset($this->resolveCarbon($date)).' seconds.');\n        }\n\n        return null;\n    }\n\n    /**\n     * Cast to string (get timezone name).\n     *\n     * @return string\n     */\n    public function __toString()\n    {\n        return $this->getName();\n    }\n\n    /**\n     * Return the type number:\n     *\n     * Type 1; A UTC offset, such as -0300\n     * Type 2; A timezone abbreviation, such as GMT\n     * Type 3: A timezone identifier, such as Europe/London\n     */\n    public function getType(): int\n    {\n        return preg_match('/\"timezone_type\";i:(\\d)/', serialize($this), $match) ? (int) $match[1] : 3;\n    }\n\n    /**\n     * Create a CarbonTimeZone from mixed input.\n     *\n     * @param DateTimeZone|string|int|null $object\n     *\n     * @return false|static\n     */\n    public static function create($object = null)\n    {\n        return static::instance($object);\n    }\n\n    /**\n     * Create a CarbonTimeZone from int/float hour offset.\n     *\n     * @param float $hourOffset number of hour of the timezone shift (can be decimal).\n     *\n     * @return false|static\n     */\n    public static function createFromHourOffset(float $hourOffset)\n    {\n        return static::createFromMinuteOffset($hourOffset * Carbon::MINUTES_PER_HOUR);\n    }\n\n    /**\n     * Create a CarbonTimeZone from int/float minute offset.\n     *\n     * @param float $minuteOffset number of total minutes of the timezone shift.\n     *\n     * @return false|static\n     */\n    public static function createFromMinuteOffset(float $minuteOffset)\n    {\n        return static::instance(static::getOffsetNameFromMinuteOffset($minuteOffset));\n    }\n\n    /**\n     * Convert a total minutes offset into a standardized timezone offset string.\n     *\n     * @param float $minutes number of total minutes of the timezone shift.\n     *\n     * @return string\n     */\n    public static function getOffsetNameFromMinuteOffset(float $minutes): string\n    {\n        $minutes = round($minutes);\n        $unsignedMinutes = abs($minutes);\n\n        return ($minutes < 0 ? '-' : '+').\n            str_pad((string) floor($unsignedMinutes / 60), 2, '0', STR_PAD_LEFT).\n            ':'.\n            str_pad((string) ($unsignedMinutes % 60), 2, '0', STR_PAD_LEFT);\n    }\n\n    private function resolveCarbon(?DateTimeInterface $date): DateTimeInterface\n    {\n        if ($date) {\n            return $date;\n        }\n\n        if (isset($this->clock)) {\n            return $this->clock->now()->setTimezone($this);\n        }\n\n        return Carbon::now($this);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Cli/Invoker.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Cli;\n\nclass Invoker\n{\n    public const CLI_CLASS_NAME = 'Carbon\\\\Cli';\n\n    protected function runWithCli(string $className, array $parameters): bool\n    {\n        $cli = new $className();\n\n        return $cli(...$parameters);\n    }\n\n    public function __invoke(...$parameters): bool\n    {\n        if (class_exists(self::CLI_CLASS_NAME)) {\n            return $this->runWithCli(self::CLI_CLASS_NAME, $parameters);\n        }\n\n        $function = (($parameters[1] ?? '') === 'install' ? ($parameters[2] ?? null) : null) ?: 'shell_exec';\n        $function('composer require carbon-cli/carbon-cli --no-interaction');\n\n        echo 'Installation succeeded.';\n\n        return true;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Constants/DiffOptions.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Constants;\n\ninterface DiffOptions\n{\n    /**\n     * Diff wording options(expressed in octal).\n     */\n    public const NO_ZERO_DIFF = 01;\n    public const JUST_NOW = 02;\n    public const ONE_DAY_WORDS = 04;\n    public const TWO_DAY_WORDS = 010;\n    public const SEQUENTIAL_PARTS_ONLY = 020;\n    public const ROUND = 040;\n    public const FLOOR = 0100;\n    public const CEIL = 0200;\n\n    /**\n     * Diff syntax options.\n     */\n    public const DIFF_ABSOLUTE = 1; // backward compatibility with true\n    public const DIFF_RELATIVE_AUTO = 0; // backward compatibility with false\n    public const DIFF_RELATIVE_TO_NOW = 2;\n    public const DIFF_RELATIVE_TO_OTHER = 3;\n}\n"
  },
  {
    "path": "src/Carbon/Constants/Format.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Constants;\n\ninterface Format\n{\n    /**\n     * RFC7231 DateTime format.\n     *\n     * @var string\n     */\n    public const RFC7231_FORMAT = 'D, d M Y H:i:s \\G\\M\\T';\n\n    /**\n     * Default format to use for __toString method when type juggling occurs.\n     *\n     * @var string\n     */\n    public const DEFAULT_TO_STRING_FORMAT = 'Y-m-d H:i:s';\n\n    /**\n     * Format for converting mocked time, includes microseconds.\n     *\n     * @var string\n     */\n    public const MOCK_DATETIME_FORMAT = 'Y-m-d H:i:s.u';\n\n    /**\n     * Pattern detection for ->isoFormat and ::createFromIsoFormat.\n     *\n     * @var string\n     */\n    public const ISO_FORMAT_REGEXP = '(O[YMDHhms]|[Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY?|g{1,5}|G{1,5}|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?)';\n}\n"
  },
  {
    "path": "src/Carbon/Constants/TranslationOptions.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Constants;\n\ninterface TranslationOptions\n{\n    /**\n     * Translate string options.\n     */\n    public const TRANSLATE_MONTHS = 1;\n    public const TRANSLATE_DAYS = 2;\n    public const TRANSLATE_UNITS = 4;\n    public const TRANSLATE_MERIDIEM = 8;\n    public const TRANSLATE_DIFF = 0x10;\n    public const TRANSLATE_ALL = self::TRANSLATE_MONTHS | self::TRANSLATE_DAYS | self::TRANSLATE_UNITS | self::TRANSLATE_MERIDIEM | self::TRANSLATE_DIFF;\n\n    /**\n     * Special settings to get the start of week from current locale culture.\n     */\n    public const WEEK_DAY_AUTO = 'auto';\n\n    /**\n     * Default locale (language and region).\n     *\n     * @var string\n     */\n    public const DEFAULT_LOCALE = 'en';\n}\n"
  },
  {
    "path": "src/Carbon/Constants/UnitValue.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Constants;\n\ninterface UnitValue\n{\n    /**\n     * The day constants.\n     */\n    public const SUNDAY = 0;\n    public const MONDAY = 1;\n    public const TUESDAY = 2;\n    public const WEDNESDAY = 3;\n    public const THURSDAY = 4;\n    public const FRIDAY = 5;\n    public const SATURDAY = 6;\n\n    /**\n     * The month constants.\n     * These aren't used by Carbon itself but exist for\n     * convenience's sake alone.\n     */\n    public const JANUARY = 1;\n    public const FEBRUARY = 2;\n    public const MARCH = 3;\n    public const APRIL = 4;\n    public const MAY = 5;\n    public const JUNE = 6;\n    public const JULY = 7;\n    public const AUGUST = 8;\n    public const SEPTEMBER = 9;\n    public const OCTOBER = 10;\n    public const NOVEMBER = 11;\n    public const DECEMBER = 12;\n\n    /**\n     * Number of X in Y.\n     */\n    public const YEARS_PER_MILLENNIUM = 1_000;\n    public const YEARS_PER_CENTURY = 100;\n    public const YEARS_PER_DECADE = 10;\n    public const MONTHS_PER_YEAR = 12;\n    public const MONTHS_PER_QUARTER = 3;\n    public const QUARTERS_PER_YEAR = 4;\n    public const WEEKS_PER_YEAR = 52;\n    public const WEEKS_PER_MONTH = 4;\n    public const DAYS_PER_YEAR = 365;\n    public const DAYS_PER_WEEK = 7;\n    public const HOURS_PER_DAY = 24;\n    public const MINUTES_PER_HOUR = 60;\n    public const SECONDS_PER_MINUTE = 60;\n    public const MILLISECONDS_PER_SECOND = 1_000;\n    public const MICROSECONDS_PER_MILLISECOND = 1_000;\n    public const MICROSECONDS_PER_SECOND = 1_000_000;\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/BadComparisonUnitException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse Throwable;\n\nclass BadComparisonUnitException extends UnitException\n{\n    /**\n     * The unit.\n     *\n     * @var string\n     */\n    protected $unit;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $unit\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($unit, $code = 0, ?Throwable $previous = null)\n    {\n        $this->unit = $unit;\n\n        parent::__construct(\"Bad comparison unit: '$unit'\", $code, $previous);\n    }\n\n    /**\n     * Get the unit.\n     *\n     * @return string\n     */\n    public function getUnit(): string\n    {\n        return $this->unit;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/BadFluentConstructorException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse BadMethodCallException as BaseBadMethodCallException;\nuse Throwable;\n\nclass BadFluentConstructorException extends BaseBadMethodCallException implements BadMethodCallException\n{\n    /**\n     * The method.\n     *\n     * @var string\n     */\n    protected $method;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $method\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($method, $code = 0, ?Throwable $previous = null)\n    {\n        $this->method = $method;\n\n        parent::__construct(\\sprintf(\"Unknown fluent constructor '%s'.\", $method), $code, $previous);\n    }\n\n    /**\n     * Get the method.\n     *\n     * @return string\n     */\n    public function getMethod(): string\n    {\n        return $this->method;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/BadFluentSetterException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse BadMethodCallException as BaseBadMethodCallException;\nuse Throwable;\n\nclass BadFluentSetterException extends BaseBadMethodCallException implements BadMethodCallException\n{\n    /**\n     * The setter.\n     *\n     * @var string\n     */\n    protected $setter;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $setter\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($setter, $code = 0, ?Throwable $previous = null)\n    {\n        $this->setter = $setter;\n\n        parent::__construct(\\sprintf(\"Unknown fluent setter '%s'\", $setter), $code, $previous);\n    }\n\n    /**\n     * Get the setter.\n     *\n     * @return string\n     */\n    public function getSetter(): string\n    {\n        return $this->setter;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/BadMethodCallException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\ninterface BadMethodCallException extends Exception\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/EndLessPeriodException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse RuntimeException as BaseRuntimeException;\n\nfinal class EndLessPeriodException extends BaseRuntimeException implements RuntimeException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/Exception.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\ninterface Exception\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/ImmutableException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse RuntimeException as BaseRuntimeException;\nuse Throwable;\n\nclass ImmutableException extends BaseRuntimeException implements RuntimeException\n{\n    /**\n     * The value.\n     *\n     * @var string\n     */\n    protected $value;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $value    the immutable type/value\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($value, $code = 0, ?Throwable $previous = null)\n    {\n        $this->value = $value;\n        parent::__construct(\"$value is immutable.\", $code, $previous);\n    }\n\n    /**\n     * Get the value.\n     *\n     * @return string\n     */\n    public function getValue(): string\n    {\n        return $this->value;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidArgumentException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\ninterface InvalidArgumentException extends Exception\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidCastException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidCastException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidDateException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\nclass InvalidDateException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    /**\n     * The invalid field.\n     *\n     * @var string\n     */\n    private $field;\n\n    /**\n     * The invalid value.\n     *\n     * @var mixed\n     */\n    private $value;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $field\n     * @param mixed          $value\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($field, $value, $code = 0, ?Throwable $previous = null)\n    {\n        $this->field = $field;\n        $this->value = $value;\n        parent::__construct($field.' : '.$value.' is not a valid value.', $code, $previous);\n    }\n\n    /**\n     * Get the invalid field.\n     *\n     * @return string\n     */\n    public function getField()\n    {\n        return $this->field;\n    }\n\n    /**\n     * Get the invalid value.\n     *\n     * @return mixed\n     */\n    public function getValue()\n    {\n        return $this->value;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidFormatException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidFormatException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidIntervalException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidIntervalException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidPeriodDateException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidPeriodDateException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidPeriodParameterException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidPeriodParameterException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidTimeZoneException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidTimeZoneException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/InvalidTypeException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass InvalidTypeException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/NotACarbonClassException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse Carbon\\CarbonInterface;\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\nclass NotACarbonClassException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    /**\n     * The className.\n     *\n     * @var string\n     */\n    protected $className;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $className\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($className, $code = 0, ?Throwable $previous = null)\n    {\n        $this->className = $className;\n\n        parent::__construct(\\sprintf(\n            'Given class does not implement %s: %s',\n            CarbonInterface::class,\n            $className,\n        ), $code, $previous);\n    }\n\n    /**\n     * Get the className.\n     *\n     * @return string\n     */\n    public function getClassName(): string\n    {\n        return $this->className;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/NotAPeriodException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass NotAPeriodException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/NotLocaleAwareException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\nclass NotLocaleAwareException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    /**\n     * Constructor.\n     *\n     * @param mixed          $object\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($object, $code = 0, ?Throwable $previous = null)\n    {\n        $dump = \\is_object($object) ? \\get_class($object) : \\gettype($object);\n\n        parent::__construct(\"$dump does neither implements Symfony\\Contracts\\Translation\\LocaleAwareInterface nor getLocale() method.\", $code, $previous);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/OutOfRangeException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\n// This will extends OutOfRangeException instead of InvalidArgumentException since 3.0.0\n// use OutOfRangeException as BaseOutOfRangeException;\n\nclass OutOfRangeException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    /**\n     * The unit or name of the value.\n     *\n     * @var string\n     */\n    private $unit;\n\n    /**\n     * The range minimum.\n     *\n     * @var mixed\n     */\n    private $min;\n\n    /**\n     * The range maximum.\n     *\n     * @var mixed\n     */\n    private $max;\n\n    /**\n     * The invalid value.\n     *\n     * @var mixed\n     */\n    private $value;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $unit\n     * @param mixed          $min\n     * @param mixed          $max\n     * @param mixed          $value\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($unit, $min, $max, $value, $code = 0, ?Throwable $previous = null)\n    {\n        $this->unit = $unit;\n        $this->min = $min;\n        $this->max = $max;\n        $this->value = $value;\n\n        parent::__construct(\"$unit must be between $min and $max, $value given\", $code, $previous);\n    }\n\n    /**\n     * @return mixed\n     */\n    public function getMax()\n    {\n        return $this->max;\n    }\n\n    /**\n     * @return mixed\n     */\n    public function getMin()\n    {\n        return $this->min;\n    }\n\n    /**\n     * @return mixed\n     */\n    public function getUnit()\n    {\n        return $this->unit;\n    }\n\n    /**\n     * @return mixed\n     */\n    public function getValue()\n    {\n        return $this->value;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/ParseErrorException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\nclass ParseErrorException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    /**\n     * The expected.\n     *\n     * @var string\n     */\n    protected $expected;\n\n    /**\n     * The actual.\n     *\n     * @var string\n     */\n    protected $actual;\n\n    /**\n     * The help message.\n     *\n     * @var string\n     */\n    protected $help;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $expected\n     * @param string         $actual\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($expected, $actual, $help = '', $code = 0, ?Throwable $previous = null)\n    {\n        $this->expected = $expected;\n        $this->actual = $actual;\n        $this->help = $help;\n\n        $actual = $actual === '' ? 'data is missing' : \"get '$actual'\";\n\n        parent::__construct(trim(\"Format expected $expected but $actual\\n$help\"), $code, $previous);\n    }\n\n    /**\n     * Get the expected.\n     *\n     * @return string\n     */\n    public function getExpected(): string\n    {\n        return $this->expected;\n    }\n\n    /**\n     * Get the actual.\n     *\n     * @return string\n     */\n    public function getActual(): string\n    {\n        return $this->actual;\n    }\n\n    /**\n     * Get the help message.\n     *\n     * @return string\n     */\n    public function getHelp(): string\n    {\n        return $this->help;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/RuntimeException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\ninterface RuntimeException extends Exception\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnitException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\n\nclass UnitException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnitNotConfiguredException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse Throwable;\n\nclass UnitNotConfiguredException extends UnitException\n{\n    /**\n     * The unit.\n     *\n     * @var string\n     */\n    protected $unit;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $unit\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($unit, $code = 0, ?Throwable $previous = null)\n    {\n        $this->unit = $unit;\n\n        parent::__construct(\"Unit $unit have no configuration to get total from other units.\", $code, $previous);\n    }\n\n    /**\n     * Get the unit.\n     *\n     * @return string\n     */\n    public function getUnit(): string\n    {\n        return $this->unit;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnknownGetterException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\nclass UnknownGetterException extends BaseInvalidArgumentException implements InvalidArgumentException\n{\n    /**\n     * The getter.\n     *\n     * @var string\n     */\n    protected $getter;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $getter   getter name\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($getter, $code = 0, ?Throwable $previous = null)\n    {\n        $this->getter = $getter;\n\n        parent::__construct(\"Unknown getter '$getter'\", $code, $previous);\n    }\n\n    /**\n     * Get the getter.\n     *\n     * @return string\n     */\n    public function getGetter(): string\n    {\n        return $this->getter;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnknownMethodException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse BadMethodCallException as BaseBadMethodCallException;\nuse Throwable;\n\nclass UnknownMethodException extends BaseBadMethodCallException implements BadMethodCallException\n{\n    /**\n     * The method.\n     *\n     * @var string\n     */\n    protected $method;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $method\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($method, $code = 0, ?Throwable $previous = null)\n    {\n        $this->method = $method;\n\n        parent::__construct(\"Method $method does not exist.\", $code, $previous);\n    }\n\n    /**\n     * Get the method.\n     *\n     * @return string\n     */\n    public function getMethod(): string\n    {\n        return $this->method;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnknownSetterException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse InvalidArgumentException as BaseInvalidArgumentException;\nuse Throwable;\n\nclass UnknownSetterException extends BaseInvalidArgumentException implements BadMethodCallException\n{\n    /**\n     * The setter.\n     *\n     * @var string\n     */\n    protected $setter;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $setter   setter name\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($setter, $code = 0, ?Throwable $previous = null)\n    {\n        $this->setter = $setter;\n\n        parent::__construct(\"Unknown setter '$setter'\", $code, $previous);\n    }\n\n    /**\n     * Get the setter.\n     *\n     * @return string\n     */\n    public function getSetter(): string\n    {\n        return $this->setter;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnknownUnitException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse Throwable;\n\nclass UnknownUnitException extends UnitException\n{\n    /**\n     * The unit.\n     *\n     * @var string\n     */\n    protected $unit;\n\n    /**\n     * Constructor.\n     *\n     * @param string         $unit\n     * @param int            $code\n     * @param Throwable|null $previous\n     */\n    public function __construct($unit, $code = 0, ?Throwable $previous = null)\n    {\n        $this->unit = $unit;\n\n        parent::__construct(\"Unknown unit '$unit'.\", $code, $previous);\n    }\n\n    /**\n     * Get the unit.\n     *\n     * @return string\n     */\n    public function getUnit(): string\n    {\n        return $this->unit;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnreachableException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse RuntimeException as BaseRuntimeException;\n\nclass UnreachableException extends BaseRuntimeException implements RuntimeException\n{\n    //\n}\n"
  },
  {
    "path": "src/Carbon/Exceptions/UnsupportedUnitException.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Exceptions;\n\nuse Exception;\n\n/**\n * @codeCoverageIgnore\n */\nclass UnsupportedUnitException extends UnitException\n{\n    public function __construct(string $unit, int $code = 0, ?Exception $previous = null)\n    {\n        parent::__construct(\"Unsupported unit '$unit'\", $code, $previous);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Factory.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Closure;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse ReflectionMethod;\nuse RuntimeException;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\nuse Throwable;\n\n/**\n * A factory to generate Carbon instances with common settings.\n *\n * <autodoc generated by `composer phpdoc`>\n *\n * @method bool                canBeCreatedFromFormat(?string $date, string $format)                                                                                Checks if the (date)time string is in a given format and valid to create a\n *                                                                                                                                                                  new instance.\n * @method ?Carbon             create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $timezone = null)                                       Create a new Carbon instance from a specific date and time.\n *                                                                                                                                                                  If any of $year, $month or $day are set to null their now() values will\n *                                                                                                                                                                  be used.\n *                                                                                                                                                                  If $hour is null it will be set to its now() value and the default\n *                                                                                                                                                                  values for $minute and $second will be their now() values.\n *                                                                                                                                                                  If $hour is not null then the default values for $minute and $second\n *                                                                                                                                                                  will be 0.\n * @method Carbon              createFromDate($year = null, $month = null, $day = null, $timezone = null)                                                           Create a Carbon instance from just a date. The time portion is set to now.\n * @method ?Carbon             createFromFormat($format, $time, $timezone = null)                                                                                   Create a Carbon instance from a specific format.\n * @method ?Carbon             createFromIsoFormat(string $format, string $time, $timezone = null, ?string $locale = 'en', ?TranslatorInterface $translator = null) Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()).\n * @method ?Carbon             createFromLocaleFormat(string $format, string $locale, string $time, $timezone = null)                                               Create a Carbon instance from a specific format and a string in a given language.\n * @method ?Carbon             createFromLocaleIsoFormat(string $format, string $locale, string $time, $timezone = null)                                            Create a Carbon instance from a specific ISO format and a string in a given language.\n * @method Carbon              createFromTime($hour = 0, $minute = 0, $second = 0, $timezone = null)                                                                Create a Carbon instance from just a time. The date portion is set to today.\n * @method Carbon              createFromTimeString(string $time, DateTimeZone|string|int|null $timezone = null)                                                    Create a Carbon instance from a time string. The date portion is set to today.\n * @method Carbon              createFromTimestamp(string|int|float $timestamp, DateTimeZone|string|int|null $timezone = null)                                      Create a Carbon instance from a timestamp and set the timezone (UTC by default).\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method Carbon              createFromTimestampMs(string|int|float $timestamp, DateTimeZone|string|int|null $timezone = null)                                    Create a Carbon instance from a timestamp in milliseconds.\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method Carbon              createFromTimestampMsUTC($timestamp)                                                                                                 Create a Carbon instance from a timestamp in milliseconds.\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method Carbon              createFromTimestampUTC(string|int|float $timestamp)                                                                                  Create a Carbon instance from a timestamp keeping the timezone to UTC.\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method Carbon              createMidnightDate($year = null, $month = null, $day = null, $timezone = null)                                                       Create a Carbon instance from just a date. The time portion is set to midnight.\n * @method ?Carbon             createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $timezone = null)                 Create a new safe Carbon instance from a specific date and time.\n *                                                                                                                                                                  If any of $year, $month or $day are set to null their now() values will\n *                                                                                                                                                                  be used.\n *                                                                                                                                                                  If $hour is null it will be set to its now() value and the default\n *                                                                                                                                                                  values for $minute and $second will be their now() values.\n *                                                                                                                                                                  If $hour is not null then the default values for $minute and $second\n *                                                                                                                                                                  will be 0.\n *                                                                                                                                                                  If one of the set values is not valid, an InvalidDateException\n *                                                                                                                                                                  will be thrown.\n * @method Carbon              createStrict(?int $year = 0, ?int $month = 1, ?int $day = 1, ?int $hour = 0, ?int $minute = 0, ?int $second = 0, $timezone = null)   Create a new Carbon instance from a specific date and time using strict validation.\n * @method mixed               executeWithLocale(string $locale, callable $func)                                                                                    Set the current locale to the given, execute the passed function, reset the locale to previous one,\n *                                                                                                                                                                  then return the result of the closure (or null if the closure was void).\n * @method Carbon              fromSerialized($value, array $options = [])                                                                                          Create an instance from a serialized string.\n *                                                                                                                                                                  If $value is not from a trusted source, consider using the allowed_classes option to limit\n *                                                                                                                                                                  the types of objects that can be built, for instance:\n * @method array               getAvailableLocales()                                                                                                                Returns the list of internally available locales and already loaded custom locales.\n *                                                                                                                                                                  (It will ignore custom translator dynamic loading.)\n * @method Language[]          getAvailableLocalesInfo()                                                                                                            Returns list of Language object for each available locale. This object allow you to get the ISO name, native\n *                                                                                                                                                                  name, region and variant of the locale.\n * @method array               getDays()                                                                                                                            Get the days of the week.\n * @method ?string             getFallbackLocale()                                                                                                                  Get the fallback locale.\n * @method array               getFormatsToIsoReplacements()                                                                                                        List of replacements from date() format to isoFormat().\n * @method array               getIsoUnits()                                                                                                                        Returns list of locale units for ISO formatting.\n * @method array|false         getLastErrors()                                                                                                                      {@inheritdoc}\n * @method string              getLocale()                                                                                                                          Get the current translator locale.\n * @method int                 getMidDayAt()                                                                                                                        get midday/noon hour\n * @method string              getTimeFormatByPrecision(string $unitPrecision)                                                                                      Return a format from H:i to H:i:s.u according to given unit precision.\n * @method string|Closure|null getTranslationMessageWith($translator, string $key, ?string $locale = null, ?string $default = null)                                 Returns raw translation message for a given key.\n * @method int                 getWeekEndsAt(?string $locale = null)                                                                                                Get the last day of week.\n * @method int                 getWeekStartsAt(?string $locale = null)                                                                                              Get the first day of week.\n * @method bool                hasRelativeKeywords(?string $time)                                                                                                   Determine if a time string will produce a relative date.\n * @method Carbon              instance(DateTimeInterface $date)                                                                                                    Create a Carbon instance from a DateTime one.\n * @method bool                isImmutable()                                                                                                                        Returns true if the current class/instance is immutable.\n * @method bool                isModifiableUnit($unit)                                                                                                              Returns true if a property can be changed via setter.\n * @method bool                isMutable()                                                                                                                          Returns true if the current class/instance is mutable.\n * @method bool                localeHasDiffOneDayWords(string $locale)                                                                                             Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow).\n *                                                                                                                                                                  Support is considered enabled if the 3 words are translated in the given locale.\n * @method bool                localeHasDiffSyntax(string $locale)                                                                                                  Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after).\n *                                                                                                                                                                  Support is considered enabled if the 4 sentences are translated in the given locale.\n * @method bool                localeHasDiffTwoDayWords(string $locale)                                                                                             Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow).\n *                                                                                                                                                                  Support is considered enabled if the 2 words are translated in the given locale.\n * @method bool                localeHasPeriodSyntax($locale)                                                                                                       Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X).\n *                                                                                                                                                                  Support is considered enabled if the 4 sentences are translated in the given locale.\n * @method bool                localeHasShortUnits(string $locale)                                                                                                  Returns true if the given locale is internally supported and has short-units support.\n *                                                                                                                                                                  Support is considered enabled if either year, day or hour has a short variant translated.\n * @method ?Carbon             make($var, DateTimeZone|string|null $timezone = null)                                                                                Make a Carbon instance from given variable if possible.\n *                                                                                                                                                                  Always return a new instance. Parse only strings and only these likely to be dates (skip intervals\n *                                                                                                                                                                  and recurrences). Throw an exception for invalid format, but otherwise return null.\n * @method void                mixin(object|string $mixin)                                                                                                          Mix another object into the class.\n * @method Carbon              now(DateTimeZone|string|int|null $timezone = null)                                                                                   Get a Carbon instance for the current date and time.\n * @method Carbon              parse(DateTimeInterface|WeekDay|Month|string|int|float|null $time, DateTimeZone|string|int|null $timezone = null)                    Create a carbon instance from a string.\n *                                                                                                                                                                  This is an alias for the constructor that allows better fluent syntax\n *                                                                                                                                                                  as it allows you to do Carbon::parse('Monday next week')->fn() rather\n *                                                                                                                                                                  than (new Carbon('Monday next week'))->fn().\n * @method Carbon              parseFromLocale(string $time, ?string $locale = null, DateTimeZone|string|int|null $timezone = null)                                 Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.).\n * @method string              pluralUnit(string $unit)                                                                                                             Returns standardized plural of a given singular/plural unit name (in English).\n * @method ?Carbon             rawCreateFromFormat(string $format, string $time, $timezone = null)                                                                  Create a Carbon instance from a specific format.\n * @method Carbon              rawParse(DateTimeInterface|WeekDay|Month|string|int|float|null $time, DateTimeZone|string|int|null $timezone = null)                 Create a carbon instance from a string.\n *                                                                                                                                                                  This is an alias for the constructor that allows better fluent syntax\n *                                                                                                                                                                  as it allows you to do Carbon::parse('Monday next week')->fn() rather\n *                                                                                                                                                                  than (new Carbon('Monday next week'))->fn().\n * @method void                setFallbackLocale(string $locale)                                                                                                    Set the fallback locale.\n * @method void                setLocale(string $locale)                                                                                                            Set the current translator locale and indicate if the source locale file exists.\n *                                                                                                                                                                  Pass 'auto' as locale to use the closest language to the current LC_TIME locale.\n * @method void                setMidDayAt($hour)                                                                                                                   @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n *                                                                                                                                                                              You should rather consider mid-day is always 12pm, then if you need to test if it's an other\n *                                                                                                                                                                              hour, test it explicitly:\n *                                                                                                                                                                                  $date->format('G') == 13\n *                                                                                                                                                                              or to set explicitly to a given hour:\n *                                                                                                                                                                                  $date->setTime(13, 0, 0, 0)\n *                                                                                                                                                                  Set midday/noon hour\n * @method string              singularUnit(string $unit)                                                                                                           Returns standardized singular of a given singular/plural unit name (in English).\n * @method void                sleep(int|float $seconds)\n * @method Carbon              today(DateTimeZone|string|int|null $timezone = null)                                                                                 Create a Carbon instance for today.\n * @method Carbon              tomorrow(DateTimeZone|string|int|null $timezone = null)                                                                              Create a Carbon instance for tomorrow.\n * @method string              translateTimeString(string $timeString, ?string $from = null, ?string $to = null, int $mode = CarbonInterface::TRANSLATE_ALL)        Translate a time string from a locale to an other.\n * @method string              translateWith(TranslatorInterface $translator, string $key, array $parameters = [], $number = null)                                  Translate using translation string or callback available.\n * @method Carbon              yesterday(DateTimeZone|string|int|null $timezone = null)                                                                             Create a Carbon instance for yesterday.\n *\n * </autodoc>\n */\nclass Factory\n{\n    protected string $className = Carbon::class;\n\n    protected array $settings = [];\n\n    /**\n     * A test Carbon instance to be returned when now instances are created.\n     */\n    protected Closure|CarbonInterface|null $testNow = null;\n\n    /**\n     * The timezone to restore to when clearing the time mock.\n     */\n    protected ?string $testDefaultTimezone = null;\n\n    /**\n     * Is true when test-now is generated by a closure and timezone should be taken on the fly from it.\n     */\n    protected bool $useTimezoneFromTestNow = false;\n\n    /**\n     * Default translator.\n     */\n    protected TranslatorInterface $translator;\n\n    /**\n     * Days of weekend.\n     */\n    protected array $weekendDays = [\n        CarbonInterface::SATURDAY,\n        CarbonInterface::SUNDAY,\n    ];\n\n    /**\n     * Format regex patterns.\n     *\n     * @var array<string, string>\n     */\n    protected array $regexFormats = [\n        'd' => '(3[01]|[12][0-9]|0[1-9])',\n        'D' => '(Sun|Mon|Tue|Wed|Thu|Fri|Sat)',\n        'j' => '([123][0-9]|[1-9])',\n        'l' => '([a-zA-Z]{2,})',\n        'N' => '([1-7])',\n        'S' => '(st|nd|rd|th)',\n        'w' => '([0-6])',\n        'z' => '(36[0-5]|3[0-5][0-9]|[12][0-9]{2}|[1-9]?[0-9])',\n        'W' => '(5[012]|[1-4][0-9]|0?[1-9])',\n        'F' => '([a-zA-Z]{2,})',\n        'm' => '(1[012]|0[1-9])',\n        'M' => '([a-zA-Z]{3})',\n        'n' => '(1[012]|[1-9])',\n        't' => '(2[89]|3[01])',\n        'L' => '(0|1)',\n        'o' => '([1-9][0-9]{0,4})',\n        'Y' => '([1-9]?[0-9]{4})',\n        'y' => '([0-9]{2})',\n        'a' => '(am|pm)',\n        'A' => '(AM|PM)',\n        'B' => '([0-9]{3})',\n        'g' => '(1[012]|[1-9])',\n        'G' => '(2[0-3]|1?[0-9])',\n        'h' => '(1[012]|0[1-9])',\n        'H' => '(2[0-3]|[01][0-9])',\n        'i' => '([0-5][0-9])',\n        's' => '([0-5][0-9])',\n        'u' => '([0-9]{1,6})',\n        'v' => '([0-9]{1,3})',\n        'e' => '([a-zA-Z]{1,5})|([a-zA-Z]*\\\\/[a-zA-Z]*)',\n        'I' => '(0|1)',\n        'O' => '([+-](1[0123]|0[0-9])[0134][05])',\n        'P' => '([+-](1[0123]|0[0-9]):[0134][05])',\n        'p' => '(Z|[+-](1[0123]|0[0-9]):[0134][05])',\n        'T' => '([a-zA-Z]{1,5})',\n        'Z' => '(-?[1-5]?[0-9]{1,4})',\n        'U' => '([0-9]*)',\n\n        // The formats below are combinations of the above formats.\n        'c' => '(([1-9]?[0-9]{4})-(1[012]|0[1-9])-(3[01]|[12][0-9]|0[1-9])T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])[+-](1[012]|0[0-9]):([0134][05]))', // Y-m-dTH:i:sP\n        'r' => '(([a-zA-Z]{3}), ([123][0-9]|0[1-9]) ([a-zA-Z]{3}) ([1-9]?[0-9]{4}) (2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9]) [+-](1[012]|0[0-9])([0134][05]))', // D, d M Y H:i:s O\n    ];\n\n    /**\n     * Format modifiers (such as available in createFromFormat) regex patterns.\n     *\n     * @var array\n     */\n    protected array $regexFormatModifiers = [\n        '*' => '.+',\n        ' ' => '[   ]',\n        '#' => '[;:\\\\/.,()-]',\n        '?' => '([^a]|[a])',\n        '!' => '',\n        '|' => '',\n        '+' => '',\n    ];\n\n    public function __construct(array $settings = [], ?string $className = null)\n    {\n        if ($className) {\n            $this->className = $className;\n        }\n\n        $this->settings = $settings;\n    }\n\n    public function getClassName(): string\n    {\n        return $this->className;\n    }\n\n    public function setClassName(string $className): self\n    {\n        $this->className = $className;\n\n        return $this;\n    }\n\n    public function className(?string $className = null): self|string\n    {\n        return $className === null ? $this->getClassName() : $this->setClassName($className);\n    }\n\n    public function getSettings(): array\n    {\n        return $this->settings;\n    }\n\n    public function setSettings(array $settings): self\n    {\n        $this->settings = $settings;\n\n        return $this;\n    }\n\n    public function settings(?array $settings = null): self|array\n    {\n        return $settings === null ? $this->getSettings() : $this->setSettings($settings);\n    }\n\n    public function mergeSettings(array $settings): self\n    {\n        $this->settings = array_merge($this->settings, $settings);\n\n        return $this;\n    }\n\n    public function setHumanDiffOptions(int $humanDiffOptions): void\n    {\n        $this->mergeSettings([\n            'humanDiffOptions' => $humanDiffOptions,\n        ]);\n    }\n\n    public function enableHumanDiffOption($humanDiffOption): void\n    {\n        $this->setHumanDiffOptions($this->getHumanDiffOptions() | $humanDiffOption);\n    }\n\n    public function disableHumanDiffOption(int $humanDiffOption): void\n    {\n        $this->setHumanDiffOptions($this->getHumanDiffOptions() & ~$humanDiffOption);\n    }\n\n    public function getHumanDiffOptions(): int\n    {\n        return (int) ($this->getSettings()['humanDiffOptions'] ?? 0);\n    }\n\n    /**\n     * Register a custom macro.\n     *\n     * Pass null macro to remove it.\n     *\n     * @example\n     * ```\n     * $userSettings = [\n     *   'locale' => 'pt',\n     *   'timezone' => 'America/Sao_Paulo',\n     * ];\n     * $factory->macro('userFormat', function () use ($userSettings) {\n     *   return $this->copy()->locale($userSettings['locale'])->tz($userSettings['timezone'])->calendar();\n     * });\n     * echo $factory->yesterday()->hours(11)->userFormat();\n     * ```\n     *\n     * @param-closure-this  static  $macro\n     */\n    public function macro(string $name, ?callable $macro): void\n    {\n        $macros = $this->getSettings()['macros'] ?? [];\n        $macros[$name] = $macro;\n\n        $this->mergeSettings([\n            'macros' => $macros,\n        ]);\n    }\n\n    /**\n     * Remove all macros and generic macros.\n     */\n    public function resetMacros(): void\n    {\n        $this->mergeSettings([\n            'macros' => null,\n            'genericMacros' => null,\n        ]);\n    }\n\n    /**\n     * Register a custom macro.\n     *\n     * @param callable $macro\n     * @param int      $priority marco with higher priority is tried first\n     *\n     * @return void\n     */\n    public function genericMacro(callable $macro, int $priority = 0): void\n    {\n        $genericMacros = $this->getSettings()['genericMacros'] ?? [];\n\n        if (!isset($genericMacros[$priority])) {\n            $genericMacros[$priority] = [];\n            krsort($genericMacros, SORT_NUMERIC);\n        }\n\n        $genericMacros[$priority][] = $macro;\n\n        $this->mergeSettings([\n            'genericMacros' => $genericMacros,\n        ]);\n    }\n\n    /**\n     * Checks if macro is registered globally.\n     */\n    public function hasMacro(string $name): bool\n    {\n        return isset($this->getSettings()['macros'][$name]);\n    }\n\n    /**\n     * Get the raw callable macro registered globally for a given name.\n     */\n    public function getMacro(string $name): ?callable\n    {\n        return $this->getSettings()['macros'][$name] ?? null;\n    }\n\n    /**\n     * Set the default translator instance to use.\n     */\n    public function setTranslator(TranslatorInterface $translator): void\n    {\n        $this->translator = $translator;\n    }\n\n    /**\n     * Initialize the default translator instance if necessary.\n     */\n    public function getTranslator(): TranslatorInterface\n    {\n        return $this->translator ??= Translator::get();\n    }\n\n    /**\n     * Reset the format used to the default when type juggling a Carbon instance to a string\n     *\n     * @return void\n     */\n    public function resetToStringFormat(): void\n    {\n        $this->setToStringFormat(null);\n    }\n\n    /**\n     * Set the default format used when type juggling a Carbon instance to a string.\n     */\n    public function setToStringFormat(string|Closure|null $format): void\n    {\n        $this->mergeSettings([\n            'toStringFormat' => $format,\n        ]);\n    }\n\n    /**\n     * JSON serialize all Carbon instances using the given callback.\n     */\n    public function serializeUsing(string|callable|null $format): void\n    {\n        $this->mergeSettings([\n            'toJsonFormat' => $format,\n        ]);\n    }\n\n    /**\n     * Enable the strict mode (or disable with passing false).\n     */\n    public function useStrictMode(bool $strictModeEnabled = true): void\n    {\n        $this->mergeSettings([\n            'strictMode' => $strictModeEnabled,\n        ]);\n    }\n\n    /**\n     * Returns true if the strict mode is globally in use, false else.\n     * (It can be overridden in specific instances.)\n     */\n    public function isStrictModeEnabled(): bool\n    {\n        return $this->getSettings()['strictMode'] ?? true;\n    }\n\n    /**\n     * Indicates if months should be calculated with overflow.\n     */\n    public function useMonthsOverflow(bool $monthsOverflow = true): void\n    {\n        $this->mergeSettings([\n            'monthOverflow' => $monthsOverflow,\n        ]);\n    }\n\n    /**\n     * Reset the month overflow behavior.\n     */\n    public function resetMonthsOverflow(): void\n    {\n        $this->useMonthsOverflow();\n    }\n\n    /**\n     * Get the month overflow global behavior (can be overridden in specific instances).\n     */\n    public function shouldOverflowMonths(): bool\n    {\n        return $this->getSettings()['monthOverflow'] ?? true;\n    }\n\n    /**\n     * Indicates if years should be calculated with overflow.\n     */\n    public function useYearsOverflow(bool $yearsOverflow = true): void\n    {\n        $this->mergeSettings([\n            'yearOverflow' => $yearsOverflow,\n        ]);\n    }\n\n    /**\n     * Reset the month overflow behavior.\n     */\n    public function resetYearsOverflow(): void\n    {\n        $this->useYearsOverflow();\n    }\n\n    /**\n     * Get the month overflow global behavior (can be overridden in specific instances).\n     */\n    public function shouldOverflowYears(): bool\n    {\n        return $this->getSettings()['yearOverflow'] ?? true;\n    }\n\n    /**\n     * Get weekend days\n     *\n     * @return array\n     */\n    public function getWeekendDays(): array\n    {\n        return $this->weekendDays;\n    }\n\n    /**\n     * Set weekend days\n     */\n    public function setWeekendDays(array $days): void\n    {\n        $this->weekendDays = $days;\n    }\n\n    /**\n     * Checks if the (date)time string is in a given format.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormat('11:12:45', 'h:i:s'); // true\n     * Carbon::hasFormat('13:12:45', 'h:i:s'); // false\n     * ```\n     */\n    public function hasFormat(string $date, string $format): bool\n    {\n        // createFromFormat() is known to handle edge cases silently.\n        // E.g. \"1975-5-1\" (Y-n-j) will still be parsed correctly when \"Y-m-d\" is supplied as the format.\n        // To ensure we're really testing against our desired format, perform an additional regex validation.\n\n        return $this->matchFormatPattern($date, preg_quote($format, '/'), $this->regexFormats);\n    }\n\n    /**\n     * Checks if the (date)time string is in a given format.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormatWithModifiers('31/08/2015', 'd#m#Y'); // true\n     * Carbon::hasFormatWithModifiers('31/08/2015', 'm#d#Y'); // false\n     * ```\n     */\n    public function hasFormatWithModifiers(string $date, string $format): bool\n    {\n        return $this->matchFormatPattern($date, $format, array_merge($this->regexFormats, $this->regexFormatModifiers));\n    }\n\n    /**\n     * Set a Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.  The provided instance will be returned\n     * specifically under the following conditions:\n     *   - A call to the static now() method, ex. Carbon::now()\n     *   - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null)\n     *   - When the string \"now\" is passed to the constructor or parse(), ex. new Carbon('now')\n     *   - When a string containing the desired time is passed to Carbon::parse().\n     *\n     * Note the timezone parameter was left out of the examples above and\n     * has no affect as the mock value will be returned regardless of its value.\n     *\n     * Only the moment is mocked with setTestNow(), the timezone will still be the one passed\n     * as parameter of date_default_timezone_get() as a fallback (see setTestNowAndTimezone()).\n     *\n     * To clear the test instance call this method using the default\n     * parameter of null.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow real or mock Carbon instance\n     */\n    public function setTestNow(mixed $testNow = null): void\n    {\n        $this->useTimezoneFromTestNow = false;\n        $this->testNow = $testNow instanceof self || $testNow instanceof Closure\n            ? $testNow\n            : $this->make($testNow);\n    }\n\n    /**\n     * Set a Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.  The provided instance will be returned\n     * specifically under the following conditions:\n     *   - A call to the static now() method, ex. Carbon::now()\n     *   - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null)\n     *   - When the string \"now\" is passed to the constructor or parse(), ex. new Carbon('now')\n     *   - When a string containing the desired time is passed to Carbon::parse().\n     *\n     * It will also align default timezone (e.g. call date_default_timezone_set()) with\n     * the second argument or if null, with the timezone of the given date object.\n     *\n     * To clear the test instance call this method using the default\n     * parameter of null.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow real or mock Carbon instance\n     */\n    public function setTestNowAndTimezone(mixed $testNow = null, $timezone = null): void\n    {\n        if ($testNow) {\n            $this->testDefaultTimezone ??= date_default_timezone_get();\n        }\n\n        $useDateInstanceTimezone = $testNow instanceof DateTimeInterface;\n\n        if ($useDateInstanceTimezone) {\n            $this->setDefaultTimezone($testNow->getTimezone()->getName(), $testNow);\n        }\n\n        $this->setTestNow($testNow);\n        $this->useTimezoneFromTestNow = ($timezone === null && $testNow instanceof Closure);\n\n        if (!$useDateInstanceTimezone) {\n            $now = $this->getMockedTestNow(\\func_num_args() === 1 ? null : $timezone);\n            $this->setDefaultTimezone($now?->tzName ?? $this->testDefaultTimezone ?? 'UTC', $now);\n        }\n\n        if (!$testNow) {\n            $this->testDefaultTimezone = null;\n        }\n    }\n\n    /**\n     * Temporarily sets a static date to be used within the callback.\n     * Using setTestNow to set the date, executing the callback, then\n     * clearing the test instance.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @template T\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow  real or mock Carbon instance\n     * @param Closure(): T                                       $callback\n     *\n     * @return T\n     */\n    public function withTestNow(mixed $testNow, callable $callback): mixed\n    {\n        $previousTestNow = $this->getTestNow();\n        $this->setTestNow($testNow);\n\n        try {\n            $result = $callback();\n        } finally {\n            $this->setTestNow($previousTestNow);\n        }\n\n        return $result;\n    }\n\n    /**\n     * Get the Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.\n     *\n     * @return Closure|CarbonInterface|null the current instance used for testing\n     */\n    public function getTestNow(): Closure|CarbonInterface|null\n    {\n        if ($this->testNow === null) {\n            $factory = FactoryImmutable::getDefaultInstance();\n\n            if ($factory !== $this) {\n                return $factory->getTestNow();\n            }\n        }\n\n        return $this->testNow;\n    }\n\n    public function handleTestNowClosure(\n        Closure|CarbonInterface|null $testNow,\n        DateTimeZone|string|int|null $timezone = null,\n    ): ?CarbonInterface {\n        if ($testNow instanceof Closure) {\n            $callback = Callback::fromClosure($testNow);\n            $realNow = new DateTimeImmutable('now');\n            $testNow = $testNow($callback->prepareParameter($this->parse(\n                $realNow->format('Y-m-d H:i:s.u'),\n                $timezone ?? $realNow->getTimezone(),\n            )));\n\n            if ($testNow !== null && !($testNow instanceof DateTimeInterface)) {\n                $function = $callback->getReflectionFunction();\n                $type = \\is_object($testNow) ? $testNow::class : \\gettype($testNow);\n\n                throw new RuntimeException(\n                    'The test closure defined in '.$function->getFileName().\n                    ' at line '.$function->getStartLine().' returned '.$type.\n                    '; expected '.CarbonInterface::class.'|null',\n                );\n            }\n\n            if (!($testNow instanceof CarbonInterface)) {\n                $timezone ??= $this->useTimezoneFromTestNow ? $testNow->getTimezone() : null;\n                $testNow = $this->__call('instance', [$testNow, $timezone]);\n            }\n        }\n\n        return $testNow;\n    }\n\n    /**\n     * Determine if there is a valid test instance set. A valid test instance\n     * is anything that is not null.\n     *\n     * @return bool true if there is a test instance, otherwise false\n     */\n    public function hasTestNow(): bool\n    {\n        return $this->getTestNow() !== null;\n    }\n\n    public function withTimeZone(DateTimeZone|string|int|null $timezone): static\n    {\n        $factory = clone $this;\n        $factory->settings['timezone'] = $timezone;\n\n        return $factory;\n    }\n\n    public function __call(string $name, array $arguments): mixed\n    {\n        $method = new ReflectionMethod($this->className, $name);\n        $settings = $this->settings;\n\n        if ($settings && isset($settings['timezone'])) {\n            $timezoneParameters = array_filter($method->getParameters(), function ($parameter) {\n                return \\in_array($parameter->getName(), ['tz', 'timezone'], true);\n            });\n            $timezoneSetting = $settings['timezone'];\n\n            if (isset($arguments[0]) && \\in_array($name, ['instance', 'make', 'create', 'parse'], true)) {\n                if ($arguments[0] instanceof DateTimeInterface) {\n                    $settings['innerTimezone'] = $settings['timezone'];\n                } elseif (\\is_string($arguments[0]) && date_parse($arguments[0])['is_localtime']) {\n                    unset($settings['timezone'], $settings['innerTimezone']);\n                }\n            }\n\n            if (\\count($timezoneParameters)) {\n                $index = key($timezoneParameters);\n\n                if (!isset($arguments[$index])) {\n                    array_splice($arguments, key($timezoneParameters), 0, [$timezoneSetting]);\n                }\n\n                unset($settings['timezone']);\n            }\n        }\n\n        $clock = FactoryImmutable::getCurrentClock();\n        FactoryImmutable::setCurrentClock($this);\n\n        try {\n            $result = $this->className::$name(...$arguments);\n        } finally {\n            FactoryImmutable::setCurrentClock($clock);\n        }\n\n        if (isset($this->translator)) {\n            $settings['translator'] = $this->translator;\n        }\n\n        return $result instanceof CarbonInterface && !empty($settings)\n            ? $result->settings($settings)\n            : $result;\n    }\n\n    /**\n     * Get the mocked date passed in setTestNow() and if it's a Closure, execute it.\n     */\n    protected function getMockedTestNow(DateTimeZone|string|int|null $timezone): ?CarbonInterface\n    {\n        $testNow = $this->handleTestNowClosure($this->getTestNow());\n\n        if ($testNow instanceof CarbonInterface) {\n            $testNow = $testNow->avoidMutation();\n\n            if ($timezone !== null) {\n                return $testNow->setTimezone($timezone);\n            }\n        }\n\n        return $testNow;\n    }\n\n    /**\n     * Checks if the (date)time string is in a given format with\n     * given list of pattern replacements.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormat('11:12:45', 'h:i:s'); // true\n     * Carbon::hasFormat('13:12:45', 'h:i:s'); // false\n     * ```\n     *\n     * @param string $date\n     * @param string $format\n     * @param array  $replacements\n     *\n     * @return bool\n     */\n    private function matchFormatPattern(string $date, string $format, array $replacements): bool\n    {\n        // Preg quote, but remove escaped backslashes since we'll deal with escaped characters in the format string.\n        $regex = str_replace('\\\\\\\\', '\\\\', $format);\n        // Replace not-escaped letters\n        $regex = preg_replace_callback(\n            '/(?<!\\\\\\\\)((?:\\\\\\\\{2})*)(['.implode('', array_keys($replacements)).'])/',\n            static fn ($match) => $match[1].strtr($match[2], $replacements),\n            $regex,\n        );\n        // Replace escaped letters by the letter itself\n        $regex = preg_replace('/(?<!\\\\\\\\)((?:\\\\\\\\{2})*)\\\\\\\\(\\w)/', '$1$2', $regex);\n        // Escape not escaped slashes\n        $regex = preg_replace('#(?<!\\\\\\\\)((?:\\\\\\\\{2})*)/#', '$1\\\\/', $regex);\n\n        return (bool) @preg_match('/^'.$regex.'$/', $date);\n    }\n\n    private function setDefaultTimezone(string $timezone, ?DateTimeInterface $date = null): void\n    {\n        $previous = null;\n        $success = false;\n\n        try {\n            $success = date_default_timezone_set($timezone);\n        } catch (Throwable $exception) {\n            $previous = $exception;\n        }\n\n        if (!$success) {\n            $suggestion = @CarbonTimeZone::create($timezone)->toRegionName($date);\n\n            throw new InvalidArgumentException(\n                \"Timezone ID '$timezone' is invalid\".\n                ($suggestion && $suggestion !== $timezone ? \", did you mean '$suggestion'?\" : '.').\"\\n\".\n                \"It must be one of the IDs from DateTimeZone::listIdentifiers(),\\n\".\n                'For the record, hours/minutes offset are relevant only for a particular moment, '.\n                'but not as a default timezone.',\n                0,\n                $previous\n            );\n        }\n    }\n}\n"
  },
  {
    "path": "src/Carbon/FactoryImmutable.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Closure;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Symfony\\Component\\Clock\\ClockInterface;\nuse Symfony\\Component\\Clock\\NativeClock;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\n\n/**\n * A factory to generate CarbonImmutable instances with common settings.\n *\n * <autodoc generated by `composer phpdoc`>\n *\n * @method bool                canBeCreatedFromFormat(?string $date, string $format)                                                                                Checks if the (date)time string is in a given format and valid to create a\n *                                                                                                                                                                  new instance.\n * @method ?CarbonImmutable    create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $timezone = null)                                       Create a new Carbon instance from a specific date and time.\n *                                                                                                                                                                  If any of $year, $month or $day are set to null their now() values will\n *                                                                                                                                                                  be used.\n *                                                                                                                                                                  If $hour is null it will be set to its now() value and the default\n *                                                                                                                                                                  values for $minute and $second will be their now() values.\n *                                                                                                                                                                  If $hour is not null then the default values for $minute and $second\n *                                                                                                                                                                  will be 0.\n * @method CarbonImmutable     createFromDate($year = null, $month = null, $day = null, $timezone = null)                                                           Create a Carbon instance from just a date. The time portion is set to now.\n * @method ?CarbonImmutable    createFromFormat($format, $time, $timezone = null)                                                                                   Create a Carbon instance from a specific format.\n * @method ?CarbonImmutable    createFromIsoFormat(string $format, string $time, $timezone = null, ?string $locale = 'en', ?TranslatorInterface $translator = null) Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()).\n * @method ?CarbonImmutable    createFromLocaleFormat(string $format, string $locale, string $time, $timezone = null)                                               Create a Carbon instance from a specific format and a string in a given language.\n * @method ?CarbonImmutable    createFromLocaleIsoFormat(string $format, string $locale, string $time, $timezone = null)                                            Create a Carbon instance from a specific ISO format and a string in a given language.\n * @method CarbonImmutable     createFromTime($hour = 0, $minute = 0, $second = 0, $timezone = null)                                                                Create a Carbon instance from just a time. The date portion is set to today.\n * @method CarbonImmutable     createFromTimeString(string $time, DateTimeZone|string|int|null $timezone = null)                                                    Create a Carbon instance from a time string. The date portion is set to today.\n * @method CarbonImmutable     createFromTimestamp(string|int|float $timestamp, DateTimeZone|string|int|null $timezone = null)                                      Create a Carbon instance from a timestamp and set the timezone (UTC by default).\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method CarbonImmutable     createFromTimestampMs(string|int|float $timestamp, DateTimeZone|string|int|null $timezone = null)                                    Create a Carbon instance from a timestamp in milliseconds.\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method CarbonImmutable     createFromTimestampMsUTC($timestamp)                                                                                                 Create a Carbon instance from a timestamp in milliseconds.\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method CarbonImmutable     createFromTimestampUTC(string|int|float $timestamp)                                                                                  Create a Carbon instance from a timestamp keeping the timezone to UTC.\n *                                                                                                                                                                  Timestamp input can be given as int, float or a string containing one or more numbers.\n * @method CarbonImmutable     createMidnightDate($year = null, $month = null, $day = null, $timezone = null)                                                       Create a Carbon instance from just a date. The time portion is set to midnight.\n * @method ?CarbonImmutable    createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $timezone = null)                 Create a new safe Carbon instance from a specific date and time.\n *                                                                                                                                                                  If any of $year, $month or $day are set to null their now() values will\n *                                                                                                                                                                  be used.\n *                                                                                                                                                                  If $hour is null it will be set to its now() value and the default\n *                                                                                                                                                                  values for $minute and $second will be their now() values.\n *                                                                                                                                                                  If $hour is not null then the default values for $minute and $second\n *                                                                                                                                                                  will be 0.\n *                                                                                                                                                                  If one of the set values is not valid, an InvalidDateException\n *                                                                                                                                                                  will be thrown.\n * @method CarbonImmutable     createStrict(?int $year = 0, ?int $month = 1, ?int $day = 1, ?int $hour = 0, ?int $minute = 0, ?int $second = 0, $timezone = null)   Create a new Carbon instance from a specific date and time using strict validation.\n * @method mixed               executeWithLocale(string $locale, callable $func)                                                                                    Set the current locale to the given, execute the passed function, reset the locale to previous one,\n *                                                                                                                                                                  then return the result of the closure (or null if the closure was void).\n * @method CarbonImmutable     fromSerialized($value, array $options = [])                                                                                          Create an instance from a serialized string.\n *                                                                                                                                                                  If $value is not from a trusted source, consider using the allowed_classes option to limit\n *                                                                                                                                                                  the types of objects that can be built, for instance:\n * @method array               getAvailableLocales()                                                                                                                Returns the list of internally available locales and already loaded custom locales.\n *                                                                                                                                                                  (It will ignore custom translator dynamic loading.)\n * @method Language[]          getAvailableLocalesInfo()                                                                                                            Returns list of Language object for each available locale. This object allow you to get the ISO name, native\n *                                                                                                                                                                  name, region and variant of the locale.\n * @method array               getDays()                                                                                                                            Get the days of the week.\n * @method ?string             getFallbackLocale()                                                                                                                  Get the fallback locale.\n * @method array               getFormatsToIsoReplacements()                                                                                                        List of replacements from date() format to isoFormat().\n * @method array               getIsoUnits()                                                                                                                        Returns list of locale units for ISO formatting.\n * @method array|false         getLastErrors()                                                                                                                      {@inheritdoc}\n * @method string              getLocale()                                                                                                                          Get the current translator locale.\n * @method int                 getMidDayAt()                                                                                                                        get midday/noon hour\n * @method string              getTimeFormatByPrecision(string $unitPrecision)                                                                                      Return a format from H:i to H:i:s.u according to given unit precision.\n * @method string|Closure|null getTranslationMessageWith($translator, string $key, ?string $locale = null, ?string $default = null)                                 Returns raw translation message for a given key.\n * @method int                 getWeekEndsAt(?string $locale = null)                                                                                                Get the last day of week.\n * @method int                 getWeekStartsAt(?string $locale = null)                                                                                              Get the first day of week.\n * @method bool                hasRelativeKeywords(?string $time)                                                                                                   Determine if a time string will produce a relative date.\n * @method CarbonImmutable     instance(DateTimeInterface $date)                                                                                                    Create a Carbon instance from a DateTime one.\n * @method bool                isImmutable()                                                                                                                        Returns true if the current class/instance is immutable.\n * @method bool                isModifiableUnit($unit)                                                                                                              Returns true if a property can be changed via setter.\n * @method bool                isMutable()                                                                                                                          Returns true if the current class/instance is mutable.\n * @method bool                localeHasDiffOneDayWords(string $locale)                                                                                             Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow).\n *                                                                                                                                                                  Support is considered enabled if the 3 words are translated in the given locale.\n * @method bool                localeHasDiffSyntax(string $locale)                                                                                                  Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after).\n *                                                                                                                                                                  Support is considered enabled if the 4 sentences are translated in the given locale.\n * @method bool                localeHasDiffTwoDayWords(string $locale)                                                                                             Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow).\n *                                                                                                                                                                  Support is considered enabled if the 2 words are translated in the given locale.\n * @method bool                localeHasPeriodSyntax($locale)                                                                                                       Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X).\n *                                                                                                                                                                  Support is considered enabled if the 4 sentences are translated in the given locale.\n * @method bool                localeHasShortUnits(string $locale)                                                                                                  Returns true if the given locale is internally supported and has short-units support.\n *                                                                                                                                                                  Support is considered enabled if either year, day or hour has a short variant translated.\n * @method ?CarbonImmutable    make($var, DateTimeZone|string|null $timezone = null)                                                                                Make a Carbon instance from given variable if possible.\n *                                                                                                                                                                  Always return a new instance. Parse only strings and only these likely to be dates (skip intervals\n *                                                                                                                                                                  and recurrences). Throw an exception for invalid format, but otherwise return null.\n * @method void                mixin(object|string $mixin)                                                                                                          Mix another object into the class.\n * @method CarbonImmutable     parse(DateTimeInterface|WeekDay|Month|string|int|float|null $time, DateTimeZone|string|int|null $timezone = null)                    Create a carbon instance from a string.\n *                                                                                                                                                                  This is an alias for the constructor that allows better fluent syntax\n *                                                                                                                                                                  as it allows you to do Carbon::parse('Monday next week')->fn() rather\n *                                                                                                                                                                  than (new Carbon('Monday next week'))->fn().\n * @method CarbonImmutable     parseFromLocale(string $time, ?string $locale = null, DateTimeZone|string|int|null $timezone = null)                                 Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.).\n * @method string              pluralUnit(string $unit)                                                                                                             Returns standardized plural of a given singular/plural unit name (in English).\n * @method ?CarbonImmutable    rawCreateFromFormat(string $format, string $time, $timezone = null)                                                                  Create a Carbon instance from a specific format.\n * @method CarbonImmutable     rawParse(DateTimeInterface|WeekDay|Month|string|int|float|null $time, DateTimeZone|string|int|null $timezone = null)                 Create a carbon instance from a string.\n *                                                                                                                                                                  This is an alias for the constructor that allows better fluent syntax\n *                                                                                                                                                                  as it allows you to do Carbon::parse('Monday next week')->fn() rather\n *                                                                                                                                                                  than (new Carbon('Monday next week'))->fn().\n * @method void                setFallbackLocale(string $locale)                                                                                                    Set the fallback locale.\n * @method void                setLocale(string $locale)                                                                                                            Set the current translator locale and indicate if the source locale file exists.\n *                                                                                                                                                                  Pass 'auto' as locale to use the closest language to the current LC_TIME locale.\n * @method void                setMidDayAt($hour)                                                                                                                   @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n *                                                                                                                                                                              You should rather consider mid-day is always 12pm, then if you need to test if it's an other\n *                                                                                                                                                                              hour, test it explicitly:\n *                                                                                                                                                                                  $date->format('G') == 13\n *                                                                                                                                                                              or to set explicitly to a given hour:\n *                                                                                                                                                                                  $date->setTime(13, 0, 0, 0)\n *                                                                                                                                                                  Set midday/noon hour\n * @method string              singularUnit(string $unit)                                                                                                           Returns standardized singular of a given singular/plural unit name (in English).\n * @method CarbonImmutable     today(DateTimeZone|string|int|null $timezone = null)                                                                                 Create a Carbon instance for today.\n * @method CarbonImmutable     tomorrow(DateTimeZone|string|int|null $timezone = null)                                                                              Create a Carbon instance for tomorrow.\n * @method string              translateTimeString(string $timeString, ?string $from = null, ?string $to = null, int $mode = CarbonInterface::TRANSLATE_ALL)        Translate a time string from a locale to an other.\n * @method string              translateWith(TranslatorInterface $translator, string $key, array $parameters = [], $number = null)                                  Translate using translation string or callback available.\n * @method CarbonImmutable     yesterday(DateTimeZone|string|int|null $timezone = null)                                                                             Create a Carbon instance for yesterday.\n *\n * </autodoc>\n */\nclass FactoryImmutable extends Factory implements ClockInterface\n{\n    protected string $className = CarbonImmutable::class;\n\n    private static ?self $defaultInstance = null;\n\n    private static ?WrapperClock $currentClock = null;\n\n    /**\n     * @internal Instance used for static calls, such as Carbon::getTranslator(), CarbonImmutable::setTestNow(), etc.\n     */\n    public static function getDefaultInstance(): self\n    {\n        return self::$defaultInstance ??= new self();\n    }\n\n    /**\n     * @internal Instance used for static calls possibly called by non-static methods.\n     */\n    public static function getInstance(): Factory\n    {\n        return self::$currentClock?->getFactory() ?? self::getDefaultInstance();\n    }\n\n    /**\n     * @internal Set instance before creating new dates.\n     */\n    public static function setCurrentClock(ClockInterface|Factory|DateTimeInterface|null $currentClock): void\n    {\n        if ($currentClock && !($currentClock instanceof WrapperClock)) {\n            $currentClock = new WrapperClock($currentClock);\n        }\n\n        self::$currentClock = $currentClock;\n    }\n\n    /**\n     * @internal Instance used to link new object to their factory creator.\n     */\n    public static function getCurrentClock(): ?WrapperClock\n    {\n        return self::$currentClock;\n    }\n\n    /**\n     * Get a Carbon instance for the current date and time.\n     */\n    public function now(DateTimeZone|string|int|null $timezone = null): CarbonImmutable\n    {\n        return $this->__call('now', [$timezone]);\n    }\n\n    public function sleep(int|float $seconds): void\n    {\n        if ($this->hasTestNow()) {\n            $this->setTestNow($this->getTestNow()->avoidMutation()->addSeconds($seconds));\n\n            return;\n        }\n\n        (new NativeClock('UTC'))->sleep($seconds);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Lang/aa.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/aa_DJ.php';\n"
  },
  {
    "path": "src/Carbon/Lang/aa_DJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Qunxa Garablu', 'Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Liiqen', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'],\n    'months_short' => ['qun', 'nah', 'cig', 'agd', 'cax', 'qas', 'qad', 'leq', 'way', 'dit', 'xim', 'kax'],\n    'weekdays' => ['Acaada', 'Etleeni', 'Talaata', 'Arbaqa', 'Kamiisi', 'Gumqata', 'Sabti'],\n    'weekdays_short' => ['aca', 'etl', 'tal', 'arb', 'kam', 'gum', 'sab'],\n    'weekdays_min' => ['aca', 'etl', 'tal', 'arb', 'kam', 'gum', 'sab'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['saaku', 'carra'],\n\n    'year' => ':count gaqambo', // less reliable\n    'y' => ':count gaqambo', // less reliable\n    'a_year' => ':count gaqambo', // less reliable\n\n    'month' => ':count àlsa',\n    'm' => ':count àlsa',\n    'a_month' => ':count àlsa',\n\n    'day' => ':count saaku', // less reliable\n    'd' => ':count saaku', // less reliable\n    'a_day' => ':count saaku', // less reliable\n\n    'hour' => ':count ayti', // less reliable\n    'h' => ':count ayti', // less reliable\n    'a_hour' => ':count ayti', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/aa_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Qunxa Garablu', 'Naharsi Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Leqeeni', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'],\n    'months_short' => ['Qun', 'Nah', 'Cig', 'Agd', 'Cax', 'Qas', 'Qad', 'Leq', 'Way', 'Dit', 'Xim', 'Kax'],\n    'weekdays' => ['Acaada', 'Etleeni', 'Talaata', 'Arbaqa', 'Kamiisi', 'Gumqata', 'Sabti'],\n    'weekdays_short' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'],\n    'weekdays_min' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['saaku', 'carra'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/aa_ER@saaho.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Qunxa Garablu', 'Naharsi Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Leqeeni', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'],\n    'months_short' => ['Qun', 'Nah', 'Cig', 'Agd', 'Cax', 'Qas', 'Qad', 'Leq', 'Way', 'Dit', 'Xim', 'Kax'],\n    'weekdays' => ['Naba Sambat', 'Sani', 'Salus', 'Rabuq', 'Camus', 'Jumqata', 'Qunxa Sambat'],\n    'weekdays_short' => ['Nab', 'San', 'Sal', 'Rab', 'Cam', 'Jum', 'Qun'],\n    'weekdays_min' => ['Nab', 'San', 'Sal', 'Rab', 'Cam', 'Jum', 'Qun'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['saaku', 'carra'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/aa_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Qunxa Garablu', 'Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Liiqen', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'],\n    'months_short' => ['Qun', 'Kud', 'Cig', 'Agd', 'Cax', 'Qas', 'Qad', 'Leq', 'Way', 'Dit', 'Xim', 'Kax'],\n    'weekdays' => ['Acaada', 'Etleeni', 'Talaata', 'Arbaqa', 'Kamiisi', 'Gumqata', 'Sabti'],\n    'weekdays_short' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'],\n    'weekdays_min' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['saaku', 'carra'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/af.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - JD Isaacks\n * - Pierre du Plessis\n */\nreturn [\n    'year' => ':count jaar',\n    'a_year' => '\\'n jaar|:count jaar',\n    'y' => ':count j.',\n    'month' => ':count maand|:count maande',\n    'a_month' => '\\'n maand|:count maande',\n    'm' => ':count maa.',\n    'week' => ':count week|:count weke',\n    'a_week' => '\\'n week|:count weke',\n    'w' => ':count w.',\n    'day' => ':count dag|:count dae',\n    'a_day' => '\\'n dag|:count dae',\n    'd' => ':count d.',\n    'hour' => ':count uur',\n    'a_hour' => '\\'n uur|:count uur',\n    'h' => ':count u.',\n    'minute' => ':count minuut|:count minute',\n    'a_minute' => '\\'n minuut|:count minute',\n    'min' => ':count min.',\n    'second' => ':count sekond|:count sekondes',\n    'a_second' => '\\'n paar sekondes|:count sekondes',\n    's' => ':count s.',\n    'ago' => ':time gelede',\n    'from_now' => 'oor :time',\n    'after' => ':time na',\n    'before' => ':time voor',\n    'diff_now' => 'Nou',\n    'diff_today' => 'Vandag',\n    'diff_today_regexp' => 'Vandag(?:\\\\s+om)?',\n    'diff_yesterday' => 'Gister',\n    'diff_yesterday_regexp' => 'Gister(?:\\\\s+om)?',\n    'diff_tomorrow' => 'Môre',\n    'diff_tomorrow_regexp' => 'Môre(?:\\\\s+om)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Vandag om] LT',\n        'nextDay' => '[Môre om] LT',\n        'nextWeek' => 'dddd [om] LT',\n        'lastDay' => '[Gister om] LT',\n        'lastWeek' => '[Laas] dddd [om] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static fn ($number) => $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de'),\n    'meridiem' => ['VM', 'NM'],\n    'months' => ['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember'],\n    'months_short' => ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'],\n    'weekdays_short' => ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'],\n    'weekdays_min' => ['So', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' en '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/af_NA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/af.php', [\n    'meridiem' => ['v', 'n'],\n    'weekdays' => ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'],\n    'weekdays_short' => ['So.', 'Ma.', 'Di.', 'Wo.', 'Do.', 'Vr.', 'Sa.'],\n    'weekdays_min' => ['So.', 'Ma.', 'Di.', 'Wo.', 'Do.', 'Vr.', 'Sa.'],\n    'months' => ['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember'],\n    'months_short' => ['Jan.', 'Feb.', 'Mrt.', 'Apr.', 'Mei', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Okt.', 'Nov.', 'Des.'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'DD MMM YYYY',\n        'LLL' => 'DD MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, DD MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/af_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/af.php';\n"
  },
  {
    "path": "src/Carbon/Lang/agq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['a.g', 'a.k'],\n    'weekdays' => ['tsuʔntsɨ', 'tsuʔukpà', 'tsuʔughɔe', 'tsuʔutɔ̀mlò', 'tsuʔumè', 'tsuʔughɨ̂m', 'tsuʔndzɨkɔʔɔ'],\n    'weekdays_short' => ['nts', 'kpa', 'ghɔ', 'tɔm', 'ume', 'ghɨ', 'dzk'],\n    'weekdays_min' => ['nts', 'kpa', 'ghɔ', 'tɔm', 'ume', 'ghɨ', 'dzk'],\n    'months' => ['ndzɔ̀ŋɔ̀nùm', 'ndzɔ̀ŋɔ̀kƗ̀zùʔ', 'ndzɔ̀ŋɔ̀tƗ̀dʉ̀ghà', 'ndzɔ̀ŋɔ̀tǎafʉ̄ghā', 'ndzɔ̀ŋèsèe', 'ndzɔ̀ŋɔ̀nzùghò', 'ndzɔ̀ŋɔ̀dùmlo', 'ndzɔ̀ŋɔ̀kwîfɔ̀e', 'ndzɔ̀ŋɔ̀tƗ̀fʉ̀ghàdzughù', 'ndzɔ̀ŋɔ̀ghǔuwelɔ̀m', 'ndzɔ̀ŋɔ̀chwaʔàkaa wo', 'ndzɔ̀ŋèfwòo'],\n    'months_short' => ['nùm', 'kɨz', 'tɨd', 'taa', 'see', 'nzu', 'dum', 'fɔe', 'dzu', 'lɔm', 'kaa', 'fwo'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/agr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/agr_PE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/agr_PE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - somosazucar.org    libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Petsatin', 'Kupitin', 'Uyaitin', 'Tayutin', 'Kegketin', 'Tegmatin', 'Kuntutin', 'Yagkujutin', 'Daiktatin', 'Ipamtatin', 'Shinutin', 'Sakamtin'],\n    'months_short' => ['Pet', 'Kup', 'Uya', 'Tay', 'Keg', 'Teg', 'Kun', 'Yag', 'Dait', 'Ipam', 'Shin', 'Sak'],\n    'weekdays' => ['Tuntuamtin', 'Achutin', 'Kugkuktin', 'Saketin', 'Shimpitin', 'Imaptin', 'Bataetin'],\n    'weekdays_short' => ['Tun', 'Ach', 'Kug', 'Sak', 'Shim', 'Im', 'Bat'],\n    'weekdays_min' => ['Tun', 'Ach', 'Kug', 'Sak', 'Shim', 'Im', 'Bat'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 7,\n    'meridiem' => ['VM', 'NM'],\n\n    'year' => ':count yaya', // less reliable\n    'y' => ':count yaya', // less reliable\n    'a_year' => ':count yaya', // less reliable\n\n    'month' => ':count nantu', // less reliable\n    'm' => ':count nantu', // less reliable\n    'a_month' => ':count nantu', // less reliable\n\n    'day' => ':count nayaim', // less reliable\n    'd' => ':count nayaim', // less reliable\n    'a_day' => ':count nayaim', // less reliable\n\n    'hour' => ':count kuwiš', // less reliable\n    'h' => ':count kuwiš', // less reliable\n    'a_hour' => ':count kuwiš', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ak.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ak_GH.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ak_GH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY/MM/DD',\n    ],\n    'months' => ['Sanda-Ɔpɛpɔn', 'Kwakwar-Ɔgyefuo', 'Ebɔw-Ɔbenem', 'Ebɔbira-Oforisuo', 'Esusow Aketseaba-Kɔtɔnimba', 'Obirade-Ayɛwohomumu', 'Ayɛwoho-Kitawonsa', 'Difuu-Ɔsandaa', 'Fankwa-Ɛbɔ', 'Ɔbɛsɛ-Ahinime', 'Ɔberɛfɛw-Obubuo', 'Mumu-Ɔpɛnimba'],\n    'months_short' => ['S-Ɔ', 'K-Ɔ', 'E-Ɔ', 'E-O', 'E-K', 'O-A', 'A-K', 'D-Ɔ', 'F-Ɛ', 'Ɔ-A', 'Ɔ-O', 'M-Ɔ'],\n    'weekdays' => ['Kwesida', 'Dwowda', 'Benada', 'Wukuda', 'Yawda', 'Fida', 'Memeneda'],\n    'weekdays_short' => ['Kwe', 'Dwo', 'Ben', 'Wuk', 'Yaw', 'Fia', 'Mem'],\n    'weekdays_min' => ['Kwe', 'Dwo', 'Ben', 'Wuk', 'Yaw', 'Fia', 'Mem'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['AN', 'EW'],\n\n    'year' => ':count afe',\n    'y' => ':count afe',\n    'a_year' => ':count afe',\n\n    'month' => ':count bosume',\n    'm' => ':count bosume',\n    'a_month' => ':count bosume',\n\n    'day' => ':count ɛda',\n    'd' => ':count ɛda',\n    'a_day' => ':count ɛda',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/am.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/am_ET.php';\n"
  },
  {
    "path": "src/Carbon/Lang/am_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጃንዩወሪ', 'ፌብሩወሪ', 'ማርች', 'ኤፕሪል', 'ሜይ', 'ጁን', 'ጁላይ', 'ኦገስት', 'ሴፕቴምበር', 'ኦክቶበር', 'ኖቬምበር', 'ዲሴምበር'],\n    'months_short' => ['ጃንዩ', 'ፌብሩ', 'ማርች', 'ኤፕረ', 'ሜይ ', 'ጁን ', 'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክተ', 'ኖቬም', 'ዲሴም'],\n    'weekdays' => ['እሑድ', 'ሰኞ', 'ማክሰኞ', 'ረቡዕ', 'ሐሙስ', 'ዓርብ', 'ቅዳሜ'],\n    'weekdays_short' => ['እሑድ', 'ሰኞ ', 'ማክሰ', 'ረቡዕ', 'ሐሙስ', 'ዓርብ', 'ቅዳሜ'],\n    'weekdays_min' => ['እሑድ', 'ሰኞ ', 'ማክሰ', 'ረቡዕ', 'ሐሙስ', 'ዓርብ', 'ቅዳሜ'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ጡዋት', 'ከሰዓት'],\n\n    'year' => ':count አመት',\n    'y' => ':count አመት',\n    'a_year' => ':count አመት',\n\n    'month' => ':count ወር',\n    'm' => ':count ወር',\n    'a_month' => ':count ወር',\n\n    'week' => ':count ሳምንት',\n    'w' => ':count ሳምንት',\n    'a_week' => ':count ሳምንት',\n\n    'day' => ':count ቀን',\n    'd' => ':count ቀን',\n    'a_day' => ':count ቀን',\n\n    'hour' => ':count ሰዓት',\n    'h' => ':count ሰዓት',\n    'a_hour' => ':count ሰዓት',\n\n    'minute' => ':count ደቂቃ',\n    'min' => ':count ደቂቃ',\n    'a_minute' => ':count ደቂቃ',\n\n    'second' => ':count ሴኮንድ',\n    's' => ':count ሴኮንድ',\n    'a_second' => ':count ሴኮንድ',\n\n    'ago' => 'ከ:time በፊት',\n    'from_now' => 'በ:time ውስጥ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/an.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/an_ES.php';\n"
  },
  {
    "path": "src/Carbon/Lang/an_ES.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Softaragones Jordi Mallach Pérez, Juan Pablo Martínez bug-glibc-locales@gnu.org, softaragones@softaragones.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['chinero', 'febrero', 'marzo', 'abril', 'mayo', 'chunyo', 'chuliol', 'agosto', 'setiembre', 'octubre', 'noviembre', 'aviento'],\n    'months_short' => ['chi', 'feb', 'mar', 'abr', 'may', 'chn', 'chl', 'ago', 'set', 'oct', 'nov', 'avi'],\n    'weekdays' => ['domingo', 'luns', 'martes', 'mierques', 'chueves', 'viernes', 'sabado'],\n    'weekdays_short' => ['dom', 'lun', 'mar', 'mie', 'chu', 'vie', 'sab'],\n    'weekdays_min' => ['dom', 'lun', 'mar', 'mie', 'chu', 'vie', 'sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count año',\n    'y' => ':count año',\n    'a_year' => ':count año',\n\n    'month' => ':count mes',\n    'm' => ':count mes',\n    'a_month' => ':count mes',\n\n    'week' => ':count semana',\n    'w' => ':count semana',\n    'a_week' => ':count semana',\n\n    'day' => ':count día',\n    'd' => ':count día',\n    'a_day' => ':count día',\n\n    'hour' => ':count reloch', // less reliable\n    'h' => ':count reloch', // less reliable\n    'a_hour' => ':count reloch', // less reliable\n\n    'minute' => ':count minuto',\n    'min' => ':count minuto',\n    'a_minute' => ':count minuto',\n\n    'second' => ':count segundo',\n    's' => ':count segundo',\n    'a_second' => ':count segundo',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/anp.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/anp_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/anp_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bhashaghar@googlegroups.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितंबर', 'अक्टूबर', 'नवंबर', 'दिसंबर\"'],\n    'months_short' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितंबर', 'अक्टूबर', 'नवंबर', 'दिसंबर'],\n    'weekdays' => ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'बृहस्पतिवार', 'शुक्रवार', 'शनिवार'],\n    'weekdays_short' => ['रवि', 'सोम', 'मंगल', 'बुध', 'बृहस्पति', 'शुक्र', 'शनि'],\n    'weekdays_min' => ['रवि', 'सोम', 'मंगल', 'बुध', 'बृहस्पति', 'शुक्र', 'शनि'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Atef Ben Ali (atefBB)\n * - Ibrahim AshShohail\n * - MLTDev\n * - Mohamed Sabil (mohamedsabil83)\n * - Yazan Alnugnugh (yazan-alnugnugh)\n */\n$months = [\n    'يناير',\n    'فبراير',\n    'مارس',\n    'أبريل',\n    'مايو',\n    'يونيو',\n    'يوليو',\n    'أغسطس',\n    'سبتمبر',\n    'أكتوبر',\n    'نوفمبر',\n    'ديسمبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'a_month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'a_day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'a_hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'a_minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'a_second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => ':time من الآن',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدًا(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'اث', 'ثل', 'أر', 'خم', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم عند الساعة] LT',\n        'nextDay' => '[غدًا عند الساعة] LT',\n        'nextWeek' => 'dddd [عند الساعة] LT',\n        'lastDay' => '[أمس عند الساعة] LT',\n        'lastWeek' => 'dddd [عند الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_AE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت '],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_BH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_DJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_DZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/**\n * Authors:\n * - Josh Soref\n * - Noureddine LOUAHEDJ\n * - JD Isaacks\n * - Atef Ben Ali (atefBB)\n * - Mohamed Sabil (mohamedsabil83)\n */\n$months = [\n    'جانفي',\n    'فيفري',\n    'مارس',\n    'أفريل',\n    'ماي',\n    'جوان',\n    'جويلية',\n    'أوت',\n    'سبتمبر',\n    'أكتوبر',\n    'نوفمبر',\n    'ديسمبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'a_month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'a_day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'a_hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'a_minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'a_second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => 'في :time',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدا(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['أح', 'إث', 'ثلا', 'أر', 'خم', 'جم', 'سب'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 4,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم على الساعة] LT',\n        'nextDay' => '[غدا على الساعة] LT',\n        'nextWeek' => 'dddd [على الساعة] LT',\n        'lastDay' => '[أمس على الساعة] LT',\n        'lastWeek' => 'dddd [على الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_EG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_EH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_IL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_IQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'months_short' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_JO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'months_short' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_KM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_KW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/**\n * Authors:\n * - Josh Soref\n * - Nusret Parlak\n * - JD Isaacks\n * - Atef Ben Ali (atefBB)\n * - Mohamed Sabil (mohamedsabil83)\n * - Abdullah-Alhariri\n */\n$months = [\n    'يناير',\n    'فبراير',\n    'مارس',\n    'أبريل',\n    'ماي',\n    'يونيو',\n    'يوليوز',\n    'غشت',\n    'شتنبر',\n    'أكتوبر',\n    'نونبر',\n    'دجنبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'a_month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'a_day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'a_hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'a_minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'a_second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => 'في :time',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدا(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم على الساعة] LT',\n        'nextDay' => '[غدا على الساعة] LT',\n        'nextWeek' => 'dddd [على الساعة] LT',\n        'lastDay' => '[أمس على الساعة] LT',\n        'lastWeek' => 'dddd [على الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_LB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'months_short' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_LY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Atef Ben Ali (atefBB)\n * - Ibrahim AshShohail\n * - MLTDev\n */\n\n$months = [\n    'يناير',\n    'فبراير',\n    'مارس',\n    'أبريل',\n    'مايو',\n    'يونيو',\n    'يوليو',\n    'أغسطس',\n    'سبتمبر',\n    'أكتوبر',\n    'نوفمبر',\n    'ديسمبر',\n];\n\nreturn [\n    'year' => implode('|', [':count سنة', 'سنة', 'سنتين', ':count سنوات', ':count سنة']),\n    'a_year' => implode('|', [':count سنة', 'سنة', 'سنتين', ':count سنوات', ':count سنة']),\n    'month' => implode('|', [':count شهر', 'شهر', 'شهرين', ':count أشهر', ':count شهر']),\n    'a_month' => implode('|', [':count شهر', 'شهر', 'شهرين', ':count أشهر', ':count شهر']),\n    'week' => implode('|', [':count أسبوع', 'أسبوع', 'أسبوعين', ':count أسابيع', ':count أسبوع']),\n    'a_week' => implode('|', [':count أسبوع', 'أسبوع', 'أسبوعين', ':count أسابيع', ':count أسبوع']),\n    'day' => implode('|', [':count يوم', 'يوم', 'يومين', ':count أيام', ':count يوم']),\n    'a_day' => implode('|', [':count يوم', 'يوم', 'يومين', ':count أيام', ':count يوم']),\n    'hour' => implode('|', [':count ساعة', 'ساعة', 'ساعتين', ':count ساعات', ':count ساعة']),\n    'a_hour' => implode('|', [':count ساعة', 'ساعة', 'ساعتين', ':count ساعات', ':count ساعة']),\n    'minute' => implode('|', [':count دقيقة', 'دقيقة', 'دقيقتين', ':count دقائق', ':count دقيقة']),\n    'a_minute' => implode('|', [':count دقيقة', 'دقيقة', 'دقيقتين', ':count دقائق', ':count دقيقة']),\n    'second' => implode('|', [':count ثانية', 'ثانية', 'ثانيتين', ':count ثواني', ':count ثانية']),\n    'a_second' => implode('|', [':count ثانية', 'ثانية', 'ثانيتين', ':count ثواني', ':count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => ':time من الآن',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدًا(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['مرة', 'مرة', ':count مرتين', ':count مرات', ':count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'اث', 'ثل', 'أر', 'خم', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم عند الساعة] LT',\n        'nextDay' => '[غدًا عند الساعة] LT',\n        'nextWeek' => 'dddd [عند الساعة] LT',\n        'lastDay' => '[أمس عند الساعة] LT',\n        'lastWeek' => 'dddd [عند الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_MA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/**\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n * - Atef Ben Ali (atefBB)\n * - Mohamed Sabil (mohamedsabil83)\n */\n$months = [\n    'يناير',\n    'فبراير',\n    'مارس',\n    'أبريل',\n    'ماي',\n    'يونيو',\n    'يوليوز',\n    'غشت',\n    'شتنبر',\n    'أكتوبر',\n    'نونبر',\n    'دجنبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'a_month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'a_day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'a_hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'a_minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'a_second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => 'في :time',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدا(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم على الساعة] LT',\n        'nextDay' => '[غدا على الساعة] LT',\n        'nextWeek' => 'dddd [على الساعة] LT',\n        'lastDay' => '[أمس على الساعة] LT',\n        'lastWeek' => 'dddd [على الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_MR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_OM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_PS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_QA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_SA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/**\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n * - Atef Ben Ali (atefBB)\n * - Mohamed Sabil (mohamedsabil83)\n * - Abdullah-Alhariri\n */\n$months = [\n    'يناير',\n    'فبراير',\n    'مارس',\n    'أبريل',\n    'مايو',\n    'يونيو',\n    'يوليو',\n    'أغسطس',\n    'سبتمبر',\n    'أكتوبر',\n    'نوفمبر',\n    'ديسمبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'a_month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'a_day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'a_hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'a_minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'a_second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => 'في :time',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدا(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم على الساعة] LT',\n        'nextDay' => '[غدا على الساعة] LT',\n        'nextWeek' => 'dddd [على الساعة] LT',\n        'lastDay' => '[أمس على الساعة] LT',\n        'lastWeek' => 'dddd [على الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_SD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_SO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_SS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_SY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'months_short' => ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران', 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_Shakl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Abdellah Chadidi\n * - Atef Ben Ali (atefBB)\n * - Mohamed Sabil (mohamedsabil83)\n */\n// Same for long and short\n$months = [\n    // @TODO add shakl to months\n    'يناير',\n    'فبراير',\n    'مارس',\n    'أبريل',\n    'مايو',\n    'يونيو',\n    'يوليو',\n    'أغسطس',\n    'سبتمبر',\n    'أكتوبر',\n    'نوفمبر',\n    'ديسمبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سَنَة', '{1}سَنَة', '{2}سَنَتَيْن', ']2,11[:count سَنَوَات', ']10,Inf[:count سَنَة']),\n    'a_year' => implode('|', ['{0}:count سَنَة', '{1}سَنَة', '{2}سَنَتَيْن', ']2,11[:count سَنَوَات', ']10,Inf[:count سَنَة']),\n    'month' => implode('|', ['{0}:count شَهْرَ', '{1}شَهْرَ', '{2}شَهْرَيْن', ']2,11[:count أَشْهُر', ']10,Inf[:count شَهْرَ']),\n    'a_month' => implode('|', ['{0}:count شَهْرَ', '{1}شَهْرَ', '{2}شَهْرَيْن', ']2,11[:count أَشْهُر', ']10,Inf[:count شَهْرَ']),\n    'week' => implode('|', ['{0}:count أُسْبُوع', '{1}أُسْبُوع', '{2}أُسْبُوعَيْن', ']2,11[:count أَسَابِيع', ']10,Inf[:count أُسْبُوع']),\n    'a_week' => implode('|', ['{0}:count أُسْبُوع', '{1}أُسْبُوع', '{2}أُسْبُوعَيْن', ']2,11[:count أَسَابِيع', ']10,Inf[:count أُسْبُوع']),\n    'day' => implode('|', ['{0}:count يَوْم', '{1}يَوْم', '{2}يَوْمَيْن', ']2,11[:count أَيَّام', ']10,Inf[:count يَوْم']),\n    'a_day' => implode('|', ['{0}:count يَوْم', '{1}يَوْم', '{2}يَوْمَيْن', ']2,11[:count أَيَّام', ']10,Inf[:count يَوْم']),\n    'hour' => implode('|', ['{0}:count سَاعَة', '{1}سَاعَة', '{2}سَاعَتَيْن', ']2,11[:count سَاعَات', ']10,Inf[:count سَاعَة']),\n    'a_hour' => implode('|', ['{0}:count سَاعَة', '{1}سَاعَة', '{2}سَاعَتَيْن', ']2,11[:count سَاعَات', ']10,Inf[:count سَاعَة']),\n    'minute' => implode('|', ['{0}:count دَقِيقَة', '{1}دَقِيقَة', '{2}دَقِيقَتَيْن', ']2,11[:count دَقَائِق', ']10,Inf[:count دَقِيقَة']),\n    'a_minute' => implode('|', ['{0}:count دَقِيقَة', '{1}دَقِيقَة', '{2}دَقِيقَتَيْن', ']2,11[:count دَقَائِق', ']10,Inf[:count دَقِيقَة']),\n    'second' => implode('|', ['{0}:count ثَانِيَة', '{1}ثَانِيَة', '{2}ثَانِيَتَيْن', ']2,11[:count ثَوَان', ']10,Inf[:count ثَانِيَة']),\n    'a_second' => implode('|', ['{0}:count ثَانِيَة', '{1}ثَانِيَة', '{2}ثَانِيَتَيْن', ']2,11[:count ثَوَان', ']10,Inf[:count ثَانِيَة']),\n    'ago' => 'مُنْذُ :time',\n    'from_now' => 'مِنَ الْآن :time',\n    'after' => 'بَعْدَ :time',\n    'before' => 'قَبْلَ :time',\n\n    // @TODO add shakl to translations below\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدًا(?:\\\\s+عند)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'اث', 'ثل', 'أر', 'خم', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم عند الساعة] LT',\n        'nextDay' => '[غدًا عند الساعة] LT',\n        'nextWeek' => 'dddd [عند الساعة] LT',\n        'lastDay' => '[أمس عند الساعة] LT',\n        'lastWeek' => 'dddd [عند الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_TD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ar_TN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/**\n * Authors:\n * - JD Isaacks\n * - Atef Ben Ali (atefBB)\n * - Mohamed Sabil (mohamedsabil83)\n */\n$months = [\n    'جانفي',\n    'فيفري',\n    'مارس',\n    'أفريل',\n    'ماي',\n    'جوان',\n    'جويلية',\n    'أوت',\n    'سبتمبر',\n    'أكتوبر',\n    'نوفمبر',\n    'ديسمبر',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}سنتين', ']2,11[:count سنوات', ']10,Inf[:count سنة']),\n    'month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'a_month' => implode('|', ['{0}:count شهر', '{1}شهر', '{2}شهرين', ']2,11[:count أشهر', ']10,Inf[:count شهر']),\n    'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}أسبوعين', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']),\n    'day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'a_day' => implode('|', ['{0}:count يوم', '{1}يوم', '{2}يومين', ']2,11[:count أيام', ']10,Inf[:count يوم']),\n    'hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'a_hour' => implode('|', ['{0}:count ساعة', '{1}ساعة', '{2}ساعتين', ']2,11[:count ساعات', ']10,Inf[:count ساعة']),\n    'minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'a_minute' => implode('|', ['{0}:count دقيقة', '{1}دقيقة', '{2}دقيقتين', ']2,11[:count دقائق', ']10,Inf[:count دقيقة']),\n    'second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'a_second' => implode('|', ['{0}:count ثانية', '{1}ثانية', '{2}ثانيتين', ']2,11[:count ثواني', ']10,Inf[:count ثانية']),\n    'ago' => 'منذ :time',\n    'from_now' => 'في :time',\n    'after' => 'بعد :time',\n    'before' => 'قبل :time',\n    'diff_now' => 'الآن',\n    'diff_today' => 'اليوم',\n    'diff_today_regexp' => 'اليوم(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_yesterday' => 'أمس',\n    'diff_yesterday_regexp' => 'أمس(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_tomorrow' => 'غداً',\n    'diff_tomorrow_regexp' => 'غدا(?:\\\\s+على)?(?:\\\\s+الساعة)?',\n    'diff_before_yesterday' => 'قبل الأمس',\n    'diff_after_tomorrow' => 'بعد غد',\n    'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),\n    'period_interval' => 'كل :interval',\n    'period_start_date' => 'من :date',\n    'period_end_date' => 'إلى :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اليوم على الساعة] LT',\n        'nextDay' => '[غدا على الساعة] LT',\n        'nextWeek' => 'dddd [على الساعة] LT',\n        'lastDay' => '[أمس على الساعة] LT',\n        'lastWeek' => 'dddd [على الساعة] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ص', 'م'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ar_YE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n * - Abdullah-Alhariri\n */\nreturn array_replace_recursive(require __DIR__.'/ar.php', [\n    'formats' => [\n        'L' => 'DD MMM, YYYY',\n    ],\n    'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],\n    'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],\n    'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],\n    'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/as.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/as_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/as_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Amitakhya Phukan, Red Hat    bug-glibc@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D-MM-YYYY',\n    ],\n    'months' => ['জানুৱাৰী', 'ফেব্ৰুৱাৰী', 'মাৰ্চ', 'এপ্ৰিল', 'মে', 'জুন', 'জুলাই', 'আগষ্ট', 'ছেপ্তেম্বৰ', 'অক্টোবৰ', 'নৱেম্বৰ', 'ডিচেম্বৰ'],\n    'months_short' => ['জানু', 'ফেব্ৰু', 'মাৰ্চ', 'এপ্ৰিল', 'মে', 'জুন', 'জুলাই', 'আগ', 'সেপ্ট', 'অক্টো', 'নভে', 'ডিসে'],\n    'weekdays' => ['দেওবাৰ', 'সোমবাৰ', 'মঙ্গলবাৰ', 'বুধবাৰ', 'বৃহষ্পতিবাৰ', 'শুক্ৰবাৰ', 'শনিবাৰ'],\n    'weekdays_short' => ['দেও', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহষ্পতি', 'শুক্ৰ', 'শনি'],\n    'weekdays_min' => ['দেও', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহষ্পতি', 'শুক্ৰ', 'শনি'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['পূৰ্ব্বাহ্ন', 'অপৰাহ্ন'],\n\n    'year' => ':count বছৰ',\n    'y' => ':count বছৰ',\n    'a_year' => ':count বছৰ',\n\n    'month' => ':count মাহ',\n    'm' => ':count মাহ',\n    'a_month' => ':count মাহ',\n\n    'week' => ':count সপ্তাহ',\n    'w' => ':count সপ্তাহ',\n    'a_week' => ':count সপ্তাহ',\n\n    'day' => ':count বাৰ',\n    'd' => ':count বাৰ',\n    'a_day' => ':count বাৰ',\n\n    'hour' => ':count ঘণ্টা',\n    'h' => ':count ঘণ্টা',\n    'a_hour' => ':count ঘণ্টা',\n\n    'minute' => ':count মিনিট',\n    'min' => ':count মিনিট',\n    'a_minute' => ':count মিনিট',\n\n    'second' => ':count দ্বিতীয়',\n    's' => ':count দ্বিতীয়',\n    'a_second' => ':count দ্বিতীয়',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/asa.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['icheheavo', 'ichamthi'],\n    'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Ijm', 'Jmo'],\n    'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Ijm', 'Jmo'],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Dec'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ast.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Jordi Mallach jordi@gnu.org\n * - Adolfo Jayme-Barrientos (fitojb)\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['de xineru', 'de febreru', 'de marzu', 'd’abril', 'de mayu', 'de xunu', 'de xunetu', 'd’agostu', 'de setiembre', 'd’ochobre', 'de payares', 'd’avientu'],\n    'months_short' => ['xin', 'feb', 'mar', 'abr', 'may', 'xun', 'xnt', 'ago', 'set', 'och', 'pay', 'avi'],\n    'weekdays' => ['domingu', 'llunes', 'martes', 'miércoles', 'xueves', 'vienres', 'sábadu'],\n    'weekdays_short' => ['dom', 'llu', 'mar', 'mié', 'xue', 'vie', 'sáb'],\n    'weekdays_min' => ['dom', 'llu', 'mar', 'mié', 'xue', 'vie', 'sáb'],\n\n    'year' => ':count añu|:count años',\n    'y' => ':count añu|:count años',\n    'a_year' => 'un añu|:count años',\n\n    'month' => ':count mes',\n    'm' => ':count mes',\n    'a_month' => 'un mes|:count mes',\n\n    'week' => ':count selmana|:count selmanes',\n    'w' => ':count selmana|:count selmanes',\n    'a_week' => 'una selmana|:count selmanes',\n\n    'day' => ':count día|:count díes',\n    'd' => ':count día|:count díes',\n    'a_day' => 'un día|:count díes',\n\n    'hour' => ':count hora|:count hores',\n    'h' => ':count hora|:count hores',\n    'a_hour' => 'una hora|:count hores',\n\n    'minute' => ':count minutu|:count minutos',\n    'min' => ':count minutu|:count minutos',\n    'a_minute' => 'un minutu|:count minutos',\n\n    'second' => ':count segundu|:count segundos',\n    's' => ':count segundu|:count segundos',\n    'a_second' => 'un segundu|:count segundos',\n\n    'ago' => 'hai :time',\n    'from_now' => 'en :time',\n    'after' => ':time dempués',\n    'before' => ':time enantes',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ast_ES.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ast.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ayc.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ayc_PE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ayc_PE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - runasimipi.org    libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['inïru', 'phiwriru', 'marsu', 'awrila', 'mayu', 'junyu', 'julyu', 'awustu', 'sitimri', 'uktuwri', 'nuwimri', 'risimri'],\n    'months_short' => ['ini', 'phi', 'mar', 'awr', 'may', 'jun', 'jul', 'awu', 'sit', 'ukt', 'nuw', 'ris'],\n    'weekdays' => ['tuminku', 'lunisa', 'martisa', 'mirkulisa', 'juywisa', 'wirnisa', 'sawäru'],\n    'weekdays_short' => ['tum', 'lun', 'mar', 'mir', 'juy', 'wir', 'saw'],\n    'weekdays_min' => ['tum', 'lun', 'mar', 'mir', 'juy', 'wir', 'saw'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['VM', 'NM'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/az.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - Kunal Marwaha\n * - François B\n * - JD Isaacks\n * - Orxan\n * - Şəhriyar İmanov\n * - Baran Şengül\n * - Novruz Rahimov\n */\nreturn [\n    'year' => ':count il',\n    'a_year' => '{1}bir il|[-Inf,Inf]:count il',\n    'y' => ':count il',\n    'month' => ':count ay',\n    'a_month' => '{1}bir ay|[-Inf,Inf]:count ay',\n    'm' => ':count ay',\n    'week' => ':count həftə',\n    'a_week' => '{1}bir həftə|[-Inf,Inf]:count həftə',\n    'w' => ':count h.',\n    'day' => ':count gün',\n    'a_day' => '{1}bir gün|[-Inf,Inf]:count gün',\n    'd' => ':count g.',\n    'hour' => ':count saat',\n    'a_hour' => '{1}bir saat|[-Inf,Inf]:count saat',\n    'h' => ':count s.',\n    'minute' => ':count dəqiqə',\n    'a_minute' => '{1}bir dəqiqə|[-Inf,Inf]:count dəqiqə',\n    'min' => ':count d.',\n    'second' => ':count saniyə',\n    'a_second' => '{1}birneçə saniyə|[-Inf,Inf]:count saniyə',\n    's' => ':count san.',\n    'ago' => ':time əvvəl',\n    'from_now' => ':time sonra',\n    'after' => ':time sonra',\n    'before' => ':time əvvəl',\n    'diff_now' => 'indi',\n    'diff_today' => 'bugün',\n    'diff_today_regexp' => 'bugün(?:\\\\s+saat)?',\n    'diff_yesterday' => 'dünən',\n    'diff_tomorrow' => 'sabah',\n    'diff_tomorrow_regexp' => 'sabah(?:\\\\s+saat)?',\n    'diff_before_yesterday' => 'srağagün',\n    'diff_after_tomorrow' => 'birisi gün',\n    'period_recurrences' => ':count dəfədən bir',\n    'period_interval' => 'hər :interval',\n    'period_start_date' => ':date tarixindən başlayaraq',\n    'period_end_date' => ':date tarixinədək',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[bugün saat] LT',\n        'nextDay' => '[sabah saat] LT',\n        'nextWeek' => '[gələn həftə] dddd [saat] LT',\n        'lastDay' => '[dünən] LT',\n        'lastWeek' => '[keçən həftə] dddd [saat] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        if ($number === 0) { // special case for zero\n            return \"$number-ıncı\";\n        }\n\n        static $suffixes = [\n            1 => '-inci',\n            5 => '-inci',\n            8 => '-inci',\n            70 => '-inci',\n            80 => '-inci',\n            2 => '-nci',\n            7 => '-nci',\n            20 => '-nci',\n            50 => '-nci',\n            3 => '-üncü',\n            4 => '-üncü',\n            100 => '-üncü',\n            6 => '-ncı',\n            9 => '-uncu',\n            10 => '-uncu',\n            30 => '-uncu',\n            60 => '-ıncı',\n            90 => '-ıncı',\n        ];\n\n        $lastDigit = $number % 10;\n\n        return $number.($suffixes[$lastDigit] ?? $suffixes[$number % 100 - $lastDigit] ?? $suffixes[$number >= 100 ? 100 : -1] ?? '');\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'gecə';\n        }\n        if ($hour < 12) {\n            return 'səhər';\n        }\n        if ($hour < 17) {\n            return 'gündüz';\n        }\n\n        return 'axşam';\n    },\n    'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'],\n    'months_short' => ['yan', 'fev', 'mar', 'apr', 'may', 'iyn', 'iyl', 'avq', 'sen', 'okt', 'noy', 'dek'],\n    'weekdays' => ['bazar', 'bazar ertəsi', 'çərşənbə axşamı', 'çərşənbə', 'cümə axşamı', 'cümə', 'şənbə'],\n    'weekdays_short' => ['baz', 'bze', 'çax', 'çər', 'cax', 'cüm', 'şən'],\n    'weekdays_min' => ['bz', 'be', 'ça', 'çə', 'ca', 'cü', 'şə'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' və '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/az_AZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/az.php', [\n    'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'],\n    'weekdays' => ['bazar günü', 'bazar ertəsi', 'çərşənbə axşamı', 'çərşənbə', 'cümə axşamı', 'cümə', 'şənbə'],\n    'weekdays_short' => ['baz', 'ber', 'çax', 'çər', 'cax', 'cüm', 'şnb'],\n    'weekdays_min' => ['baz', 'ber', 'çax', 'çər', 'cax', 'cüm', 'şnb'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/az_Arab.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Mousa Moradi mousamk@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'OY/OM/OD',\n    ],\n    'months' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مئی', 'ژوئن', 'جولای', 'آقۇست', 'سپتامبر', 'اوْکتوْبر', 'نوْوامبر', 'دسامبر'],\n    'months_short' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مئی', 'ژوئن', 'جولای', 'آقۇست', 'سپتامبر', 'اوْکتوْبر', 'نوْوامبر', 'دسامبر'],\n    'weekdays' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چارشنبه', 'جۆمعه آخشامی', 'جۆمعه', 'شنبه'],\n    'weekdays_short' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چارشنبه', 'جۆمعه آخشامی', 'جۆمعه', 'شنبه'],\n    'weekdays_min' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چارشنبه', 'جۆمعه آخشامی', 'جۆمعه', 'شنبه'],\n    'first_day_of_week' => 6,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰۴', '۰۵', '۰۶', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱۴', '۱۵', '۱۶', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲۴', '۲۵', '۲۶', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳۴', '۳۵', '۳۶', '۳۷', '۳۸', '۳۹', '۴۰', '۴۱', '۴۲', '۴۳', '۴۴', '۴۵', '۴۶', '۴۷', '۴۸', '۴۹', '۵۰', '۵۱', '۵۲', '۵۳', '۵۴', '۵۵', '۵۶', '۵۷', '۵۸', '۵۹', '۶۰', '۶۱', '۶۲', '۶۳', '۶۴', '۶۵', '۶۶', '۶۷', '۶۸', '۶۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷۴', '۷۵', '۷۶', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸۴', '۸۵', '۸۶', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹۴', '۹۵', '۹۶', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/az_Cyrl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/az.php', [\n    'weekdays' => ['базар', 'базар ертәси', 'чәршәнбә ахшамы', 'чәршәнбә', 'ҹүмә ахшамы', 'ҹүмә', 'шәнбә'],\n    'weekdays_short' => ['Б.', 'Б.Е.', 'Ч.А.', 'Ч.', 'Ҹ.А.', 'Ҹ.', 'Ш.'],\n    'weekdays_min' => ['Б.', 'Б.Е.', 'Ч.А.', 'Ч.', 'Ҹ.А.', 'Ҹ.', 'Ш.'],\n    'months' => ['јанвар', 'феврал', 'март', 'апрел', 'май', 'ијун', 'ијул', 'август', 'сентјабр', 'октјабр', 'нојабр', 'декабр'],\n    'months_short' => ['јан', 'фев', 'мар', 'апр', 'май', 'ијн', 'ијл', 'авг', 'сен', 'окт', 'ној', 'дек'],\n    'meridiem' => ['а', 'п'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/az_IR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'OY/OM/OD',\n    ],\n    'months' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مئی', 'ژوئن', 'جولای', 'آقۇست', 'سپتامبر', 'اوْکتوْبر', 'نوْوامبر', 'دسامبر'],\n    'months_short' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مئی', 'ژوئن', 'جولای', 'آقۇست', 'سپتامبر', 'اوْکتوْبر', 'نوْوامبر', 'دسامبر'],\n    'weekdays' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چارشنبه', 'جۆمعه آخشامی', 'جۆمعه', 'شنبه'],\n    'weekdays_short' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چارشنبه', 'جۆمعه آخشامی', 'جۆمعه', 'شنبه'],\n    'weekdays_min' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چارشنبه', 'جۆمعه آخشامی', 'جۆمعه', 'شنبه'],\n    'first_day_of_week' => 6,\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰۴', '۰۵', '۰۶', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱۴', '۱۵', '۱۶', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲۴', '۲۵', '۲۶', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳۴', '۳۵', '۳۶', '۳۷', '۳۸', '۳۹', '۴۰', '۴۱', '۴۲', '۴۳', '۴۴', '۴۵', '۴۶', '۴۷', '۴۸', '۴۹', '۵۰', '۵۱', '۵۲', '۵۳', '۵۴', '۵۵', '۵۶', '۵۷', '۵۸', '۵۹', '۶۰', '۶۱', '۶۲', '۶۳', '۶۴', '۶۵', '۶۶', '۶۷', '۶۸', '۶۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷۴', '۷۵', '۷۶', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸۴', '۸۵', '۸۶', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹۴', '۹۵', '۹۶', '۹۷', '۹۸', '۹۹'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/az_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/az.php', [\n    'meridiem' => ['a', 'p'],\n    'weekdays' => ['bazar', 'bazar ertəsi', 'çərşənbə axşamı', 'çərşənbə', 'cümə axşamı', 'cümə', 'şənbə'],\n    'weekdays_short' => ['B.', 'B.E.', 'Ç.A.', 'Ç.', 'C.A.', 'C.', 'Ş.'],\n    'weekdays_min' => ['B.', 'B.E.', 'Ç.A.', 'Ç.', 'C.A.', 'C.', 'Ş.'],\n    'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'],\n    'months_short' => ['yan', 'fev', 'mar', 'apr', 'may', 'iyn', 'iyl', 'avq', 'sen', 'okt', 'noy', 'dek'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'D MMMM YYYY, dddd HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bas.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['I bikɛ̂glà', 'I ɓugajɔp'],\n    'weekdays' => ['ŋgwà nɔ̂y', 'ŋgwà njaŋgumba', 'ŋgwà ûm', 'ŋgwà ŋgê', 'ŋgwà mbɔk', 'ŋgwà kɔɔ', 'ŋgwà jôn'],\n    'weekdays_short' => ['nɔy', 'nja', 'uum', 'ŋge', 'mbɔ', 'kɔɔ', 'jon'],\n    'weekdays_min' => ['nɔy', 'nja', 'uum', 'ŋge', 'mbɔ', 'kɔɔ', 'jon'],\n    'months' => ['Kɔndɔŋ', 'Màcɛ̂l', 'Màtùmb', 'Màtop', 'M̀puyɛ', 'Hìlòndɛ̀', 'Njèbà', 'Hìkaŋ', 'Dìpɔ̀s', 'Bìòôm', 'Màyɛsèp', 'Lìbuy li ńyèe'],\n    'months_short' => ['kɔn', 'mac', 'mat', 'mto', 'mpu', 'hil', 'nje', 'hik', 'dip', 'bio', 'may', 'liɓ'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'second' => ':count móndî', // less reliable\n    's' => ':count móndî', // less reliable\n    'a_second' => ':count móndî', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/be.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonInterface;\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return (($number % 10 == 1) && ($number % 100 != 11)) ? 0 : ((($number % 10 >= 2) && ($number % 10 <= 4) && (($number % 100 < 10) || ($number % 100 >= 20))) ? 1 : 2);\n    }, 'be');\n}\n// @codeCoverageIgnoreEnd\n\n/*\n * Authors:\n * - Josh Soref\n * - SobakaSlava\n * - François B\n * - Serhan Apaydın\n * - JD Isaacks\n * - AbadonnaAbbys\n * - Siomkin Alexander\n */\nreturn [\n    'year' => ':count год|:count гады|:count гадоў',\n    'a_year' => '{1}год|:count год|:count гады|:count гадоў',\n    'y' => ':count год|:count гады|:count гадоў',\n    'month' => ':count месяц|:count месяцы|:count месяцаў',\n    'a_month' => '{1}месяц|:count месяц|:count месяцы|:count месяцаў',\n    'm' => ':count месяц|:count месяцы|:count месяцаў',\n    'week' => ':count тыдзень|:count тыдні|:count тыдняў',\n    'a_week' => '{1}тыдзень|:count тыдзень|:count тыдні|:count тыдняў',\n    'w' => ':count тыдзень|:count тыдні|:count тыдняў',\n    'day' => ':count дзень|:count дні|:count дзён',\n    'a_day' => '{1}дзень|:count дзень|:count дні|:count дзён',\n    'd' => ':count дн',\n    'hour' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'a_hour' => '{1}гадзіна|:count гадзіна|:count гадзіны|:count гадзін',\n    'h' => ':count гадзіна|:count гадзіны|:count гадзін',\n    'minute' => ':count хвіліна|:count хвіліны|:count хвілін',\n    'a_minute' => '{1}хвіліна|:count хвіліна|:count хвіліны|:count хвілін',\n    'min' => ':count хв',\n    'second' => ':count секунда|:count секунды|:count секунд',\n    'a_second' => '{1}некалькі секунд|:count секунда|:count секунды|:count секунд',\n    's' => ':count сек',\n\n    'hour_ago' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'a_hour_ago' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',\n    'h_ago' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'minute_ago' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'a_minute_ago' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',\n    'min_ago' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'second_ago' => ':count секунду|:count секунды|:count секунд',\n    'a_second_ago' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',\n    's_ago' => ':count секунду|:count секунды|:count секунд',\n\n    'hour_from_now' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'a_hour_from_now' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',\n    'h_from_now' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'minute_from_now' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'a_minute_from_now' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',\n    'min_from_now' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'second_from_now' => ':count секунду|:count секунды|:count секунд',\n    'a_second_from_now' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',\n    's_from_now' => ':count секунду|:count секунды|:count секунд',\n\n    'hour_after' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'a_hour_after' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',\n    'h_after' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'minute_after' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'a_minute_after' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',\n    'min_after' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'second_after' => ':count секунду|:count секунды|:count секунд',\n    'a_second_after' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',\n    's_after' => ':count секунду|:count секунды|:count секунд',\n\n    'hour_before' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'a_hour_before' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',\n    'h_before' => ':count гадзіну|:count гадзіны|:count гадзін',\n    'minute_before' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'a_minute_before' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',\n    'min_before' => ':count хвіліну|:count хвіліны|:count хвілін',\n    'second_before' => ':count секунду|:count секунды|:count секунд',\n    'a_second_before' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',\n    's_before' => ':count секунду|:count секунды|:count секунд',\n\n    'ago' => ':time таму',\n    'from_now' => 'праз :time',\n    'after' => ':time пасля',\n    'before' => ':time да',\n    'diff_now' => 'цяпер',\n    'diff_today' => 'Сёння',\n    'diff_today_regexp' => 'Сёння(?:\\\\s+ў)?',\n    'diff_yesterday' => 'учора',\n    'diff_yesterday_regexp' => 'Учора(?:\\\\s+ў)?',\n    'diff_tomorrow' => 'заўтра',\n    'diff_tomorrow_regexp' => 'Заўтра(?:\\\\s+ў)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY г.',\n        'LLL' => 'D MMMM YYYY г., HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY г., HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Сёння ў] LT',\n        'nextDay' => '[Заўтра ў] LT',\n        'nextWeek' => '[У] dddd [ў] LT',\n        'lastDay' => '[Учора ў] LT',\n        'lastWeek' => static fn (CarbonInterface $current) => match ($current->dayOfWeek) {\n            1, 2, 4 => '[У мінулы] dddd [ў] LT',\n            default => '[У мінулую] dddd [ў] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static fn ($number, $period) => match ($period) {\n        'M', 'd', 'DDD', 'w', 'W' => ($number % 10 === 2 || $number % 10 === 3) &&\n                ($number % 100 !== 12 && $number % 100 !== 13) ? $number.'-і' : $number.'-ы',\n        'D' => $number.'-га',\n        default => $number,\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'ночы';\n        }\n\n        if ($hour < 12) {\n            return 'раніцы';\n        }\n\n        if ($hour < 17) {\n            return 'дня';\n        }\n\n        return 'вечара';\n    },\n    'months' => ['студзеня', 'лютага', 'сакавіка', 'красавіка', 'траўня', 'чэрвеня', 'ліпеня', 'жніўня', 'верасня', 'кастрычніка', 'лістапада', 'снежня'],\n    'months_standalone' => ['студзень', 'люты', 'сакавік', 'красавік', 'травень', 'чэрвень', 'ліпень', 'жнівень', 'верасень', 'кастрычнік', 'лістапад', 'снежань'],\n    'months_short' => ['студ', 'лют', 'сак', 'крас', 'трав', 'чэрв', 'ліп', 'жнів', 'вер', 'каст', 'ліст', 'снеж'],\n    'months_regexp' => '/(DD?o?\\.?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['нядзелю', 'панядзелак', 'аўторак', 'сераду', 'чацвер', 'пятніцу', 'суботу'],\n    'weekdays_standalone' => ['нядзеля', 'панядзелак', 'аўторак', 'серада', 'чацвер', 'пятніца', 'субота'],\n    'weekdays_short' => ['нд', 'пн', 'ат', 'ср', 'чц', 'пт', 'сб'],\n    'weekdays_min' => ['нд', 'пн', 'ат', 'ср', 'чц', 'пт', 'сб'],\n    'weekdays_regexp' => '/\\[ ?[Ууў] ?(?:мінулую|наступную)? ?\\] ?dddd/',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' і '],\n    'months_short_standalone' => ['сту', 'лют', 'сак', 'кра', 'май', 'чэр', 'ліп', 'жні', 'вер', 'кас', 'ліс', 'сне'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/be_BY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/be.php', [\n    'months' => ['студзеня', 'лютага', 'сакавіка', 'красавіка', 'мая', 'чэрвеня', 'ліпеня', 'жніўня', 'верасня', 'кастрычніка', 'лістапада', 'снежня'],\n    'months_short' => ['сту', 'лют', 'сак', 'кра', 'мая', 'чэр', 'ліп', 'жні', 'вер', 'кас', 'ліс', 'сне'],\n    'weekdays' => ['Нядзеля', 'Панядзелак', 'Аўторак', 'Серада', 'Чацвер', 'Пятніца', 'Субота'],\n    'weekdays_short' => ['Няд', 'Пан', 'Аўт', 'Срд', 'Чцв', 'Пят', 'Суб'],\n    'weekdays_min' => ['Няд', 'Пан', 'Аўт', 'Срд', 'Чцв', 'Пят', 'Суб'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/be_BY@latin.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['studzienia', 'lutaha', 'sakavika', 'krasavika', 'maja', 'červienia', 'lipienia', 'žniŭnia', 'vieraśnia', 'kastryčnika', 'listapada', 'śniežnia'],\n    'months_short' => ['Stu', 'Lut', 'Sak', 'Kra', 'Maj', 'Čer', 'Lip', 'Žni', 'Vie', 'Kas', 'Lis', 'Śni'],\n    'weekdays' => ['Niadziela', 'Paniadziełak', 'Aŭtorak', 'Sierada', 'Čaćvier', 'Piatnica', 'Subota'],\n    'weekdays_short' => ['Nia', 'Pan', 'Aŭt', 'Sie', 'Čać', 'Pia', 'Sub'],\n    'weekdays_min' => ['Nia', 'Pan', 'Aŭt', 'Sie', 'Čać', 'Pia', 'Sub'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bem.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/bem_ZM.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bem_ZM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - ANLoc Martin Benjamin locales@africanlocalization.net\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'MM/DD/YYYY',\n    ],\n    'months' => ['Januari', 'Februari', 'Machi', 'Epreo', 'Mei', 'Juni', 'Julai', 'Ogasti', 'Septemba', 'Oktoba', 'Novemba', 'Disemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Epr', 'Mei', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Dis'],\n    'weekdays' => ['Pa Mulungu', 'Palichimo', 'Palichibuli', 'Palichitatu', 'Palichine', 'Palichisano', 'Pachibelushi'],\n    'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],\n    'weekdays_min' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['uluchelo', 'akasuba'],\n\n    'year' => 'myaka :count',\n    'y' => 'myaka :count',\n    'a_year' => 'myaka :count',\n\n    'month' => 'myeshi :count',\n    'm' => 'myeshi :count',\n    'a_month' => 'myeshi :count',\n\n    'week' => 'umulungu :count',\n    'w' => 'umulungu :count',\n    'a_week' => 'umulungu :count',\n\n    'day' => 'inshiku :count',\n    'd' => 'inshiku :count',\n    'a_day' => 'inshiku :count',\n\n    'hour' => 'awala :count',\n    'h' => 'awala :count',\n    'a_hour' => 'awala :count',\n\n    'minute' => 'miniti :count',\n    'min' => 'miniti :count',\n    'a_minute' => 'miniti :count',\n\n    'second' => 'sekondi :count',\n    's' => 'sekondi :count',\n    'a_second' => 'sekondi :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ber.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ber_DZ.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ber_DZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'],\n    'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'],\n    'weekdays' => ['bazar günü', 'birinci gün', 'ikinci gün', 'üçüncü gün', 'dördüncü gün', 'beşinci gün', 'altıncı gün'],\n    'weekdays_short' => ['baz', 'bir', 'iki', 'üçü', 'dör', 'beş', 'alt'],\n    'weekdays_min' => ['baz', 'bir', 'iki', 'üçü', 'dör', 'beş', 'alt'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ber_MA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'],\n    'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'],\n    'weekdays' => ['bazar günü', 'birinci gün', 'ikinci gün', 'üçüncü gün', 'dördüncü gün', 'beşinci gün', 'altıncı gün'],\n    'weekdays_short' => ['baz', 'bir', 'iki', 'üçü', 'dör', 'beş', 'alt'],\n    'weekdays_min' => ['baz', 'bir', 'iki', 'üçü', 'dör', 'beş', 'alt'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bez.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['pamilau', 'pamunyi'],\n    'weekdays' => ['pa mulungu', 'pa shahuviluha', 'pa hivili', 'pa hidatu', 'pa hitayi', 'pa hihanu', 'pa shahulembela'],\n    'weekdays_short' => ['Mul', 'Vil', 'Hiv', 'Hid', 'Hit', 'Hih', 'Lem'],\n    'weekdays_min' => ['Mul', 'Vil', 'Hiv', 'Hid', 'Hit', 'Hih', 'Lem'],\n    'months' => ['pa mwedzi gwa hutala', 'pa mwedzi gwa wuvili', 'pa mwedzi gwa wudatu', 'pa mwedzi gwa wutai', 'pa mwedzi gwa wuhanu', 'pa mwedzi gwa sita', 'pa mwedzi gwa saba', 'pa mwedzi gwa nane', 'pa mwedzi gwa tisa', 'pa mwedzi gwa kumi', 'pa mwedzi gwa kumi na moja', 'pa mwedzi gwa kumi na mbili'],\n    'months_short' => ['Hut', 'Vil', 'Dat', 'Tai', 'Han', 'Sit', 'Sab', 'Nan', 'Tis', 'Kum', 'Kmj', 'Kmb'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - Serhan Apaydın\n * - JD Isaacks\n * - Glavić\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count година|:count години',\n    'a_year' => 'година|:count години',\n    'y' => ':count година|:count години',\n    'month' => ':count месец|:count месеца',\n    'a_month' => 'месец|:count месеца',\n    'm' => ':count месец|:count месеца',\n    'week' => ':count седмица|:count седмици',\n    'a_week' => 'седмица|:count седмици',\n    'w' => ':count седмица|:count седмици',\n    'day' => ':count ден|:count дни',\n    'a_day' => 'ден|:count дни',\n    'd' => ':count ден|:count дни',\n    'hour' => ':count час|:count часа',\n    'a_hour' => 'час|:count часа',\n    'h' => ':count час|:count часа',\n    'minute' => ':count минута|:count минути',\n    'a_minute' => 'минута|:count минути',\n    'min' => ':count минута|:count минути',\n    'second' => ':count секунда|:count секунди',\n    'a_second' => 'няколко секунди|:count секунди',\n    's' => ':count секунда|:count секунди',\n    'ago' => 'преди :time',\n    'from_now' => 'след :time',\n    'after' => 'след :time',\n    'before' => 'преди :time',\n    'diff_now' => 'сега',\n    'diff_today' => 'Днес',\n    'diff_today_regexp' => 'Днес(?:\\\\s+в)?',\n    'diff_yesterday' => 'вчера',\n    'diff_yesterday_regexp' => 'Вчера(?:\\\\s+в)?',\n    'diff_tomorrow' => 'утре',\n    'diff_tomorrow_regexp' => 'Утре(?:\\\\s+в)?',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'D.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Днес в] LT',\n        'nextDay' => '[Утре в] LT',\n        'nextWeek' => 'dddd [в] LT',\n        'lastDay' => '[Вчера в] LT',\n        'lastWeek' => static fn (CarbonInterface $current) => match ($current->dayOfWeek) {\n            0, 3, 6 => '[В изминалата] dddd [в] LT',\n            default => '[В изминалия] dddd [в] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        $lastDigit = $number % 10;\n        $last2Digits = $number % 100;\n        if ($number === 0) {\n            return \"$number-ев\";\n        }\n        if ($last2Digits === 0) {\n            return \"$number-ен\";\n        }\n        if ($last2Digits > 10 && $last2Digits < 20) {\n            return \"$number-ти\";\n        }\n        if ($lastDigit === 1) {\n            return \"$number-ви\";\n        }\n        if ($lastDigit === 2) {\n            return \"$number-ри\";\n        }\n        if ($lastDigit === 7 || $lastDigit === 8) {\n            return \"$number-ми\";\n        }\n\n        return \"$number-ти\";\n    },\n    'months' => ['януари', 'февруари', 'март', 'април', 'май', 'юни', 'юли', 'август', 'септември', 'октомври', 'ноември', 'декември'],\n    'months_short' => ['яну', 'фев', 'мар', 'апр', 'май', 'юни', 'юли', 'авг', 'сеп', 'окт', 'ное', 'дек'],\n    'weekdays' => ['неделя', 'понеделник', 'вторник', 'сряда', 'четвъртък', 'петък', 'събота'],\n    'weekdays_short' => ['нед', 'пон', 'вто', 'сря', 'чет', 'пет', 'съб'],\n    'weekdays_min' => ['нд', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' и '],\n    'meridiem' => ['преди обяд', 'следобед'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/bg_BG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/bg.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bhb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/bhb_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bhb_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Samsung Electronics Co., Ltd.    alexey.merzlyakov@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],\n    'weekdays' => ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],\n    'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],\n    'weekdays_min' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bho.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/bho_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bho_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bhashaghar@googlegroups.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर\"'],\n    'months_short' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर\"'],\n    'weekdays' => ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'],\n    'weekdays_short' => ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],\n    'weekdays_min' => ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n\n    'hour' => ':count मौसम',\n    'h' => ':count मौसम',\n    'a_hour' => ':count मौसम',\n\n    'minute' => ':count कला',\n    'min' => ':count कला',\n    'a_minute' => ':count कला',\n\n    'second' => ':count सोमार',\n    's' => ':count सोमार',\n    'a_second' => ':count सोमार',\n\n    'year' => ':count साल',\n    'y' => ':count साल',\n    'a_year' => ':count साल',\n\n    'month' => ':count महिना',\n    'm' => ':count महिना',\n    'a_month' => ':count महिना',\n\n    'week' => ':count सप्ताह',\n    'w' => ':count सप्ताह',\n    'a_week' => ':count सप्ताह',\n\n    'day' => ':count दिन',\n    'd' => ':count दिन',\n    'a_day' => ':count दिन',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/bi_VU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bi_VU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Samsung Electronics Co., Ltd.    akhilesh.k@samsung.com & maninder1.s@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'dddd DD MMM YYYY',\n    ],\n    'months' => ['jenuware', 'febwari', 'maj', 'epril', 'mei', 'jun', 'julae', 'ogis', 'septemba', 'oktoba', 'novemba', 'disemba'],\n    'months_short' => ['jen', 'feb', 'maj', 'epr', 'mei', 'jun', 'jul', 'ogi', 'sep', 'okt', 'nov', 'dis'],\n    'weekdays' => ['sande', 'mande', 'maj', 'wota', 'fraede', 'sarede'],\n    'weekdays_short' => ['san', 'man', 'maj', 'wot', 'fra', 'sar'],\n    'weekdays_min' => ['san', 'man', 'maj', 'wot', 'fra', 'sar'],\n\n    'year' => ':count seven', // less reliable\n    'y' => ':count seven', // less reliable\n    'a_year' => ':count seven', // less reliable\n\n    'month' => ':count mi', // less reliable\n    'm' => ':count mi', // less reliable\n    'a_month' => ':count mi', // less reliable\n\n    'week' => ':count sarede', // less reliable\n    'w' => ':count sarede', // less reliable\n    'a_week' => ':count sarede', // less reliable\n\n    'day' => ':count betde', // less reliable\n    'd' => ':count betde', // less reliable\n    'a_day' => ':count betde', // less reliable\n\n    'hour' => ':count klok', // less reliable\n    'h' => ':count klok', // less reliable\n    'a_hour' => ':count klok', // less reliable\n\n    'minute' => ':count smol', // less reliable\n    'min' => ':count smol', // less reliable\n    'a_minute' => ':count smol', // less reliable\n\n    'second' => ':count tu', // less reliable\n    's' => ':count tu', // less reliable\n    'a_second' => ':count tu', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bm.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Estelle Comment\n */\nreturn [\n    'year' => 'san :count',\n    'a_year' => '{1}san kelen|san :count',\n    'y' => 'san :count',\n    'month' => 'kalo :count',\n    'a_month' => '{1}kalo kelen|kalo :count',\n    'm' => 'k. :count',\n    'week' => 'dɔgɔkun :count',\n    'a_week' => 'dɔgɔkun kelen',\n    'w' => 'd. :count',\n    'day' => 'tile :count',\n    'd' => 't. :count',\n    'a_day' => '{1}tile kelen|tile :count',\n    'hour' => 'lɛrɛ :count',\n    'a_hour' => '{1}lɛrɛ kelen|lɛrɛ :count',\n    'h' => 'l. :count',\n    'minute' => 'miniti :count',\n    'a_minute' => '{1}miniti kelen|miniti :count',\n    'min' => 'm. :count',\n    'second' => 'sekondi :count',\n    'a_second' => '{1}sanga dama dama|sekondi :count',\n    's' => 'sek. :count',\n    'ago' => 'a bɛ :time bɔ',\n    'from_now' => ':time kɔnɔ',\n    'diff_today' => 'Bi',\n    'diff_yesterday' => 'Kunu',\n    'diff_yesterday_regexp' => 'Kunu(?:\\\\s+lɛrɛ)?',\n    'diff_tomorrow' => 'Sini',\n    'diff_tomorrow_regexp' => 'Sini(?:\\\\s+lɛrɛ)?',\n    'diff_today_regexp' => 'Bi(?:\\\\s+lɛrɛ)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'MMMM [tile] D [san] YYYY',\n        'LLL' => 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',\n        'LLLL' => 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Bi lɛrɛ] LT',\n        'nextDay' => '[Sini lɛrɛ] LT',\n        'nextWeek' => 'dddd [don lɛrɛ] LT',\n        'lastDay' => '[Kunu lɛrɛ] LT',\n        'lastWeek' => 'dddd [tɛmɛnen lɛrɛ] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['Zanwuyekalo', 'Fewuruyekalo', 'Marisikalo', 'Awirilikalo', 'Mɛkalo', 'Zuwɛnkalo', 'Zuluyekalo', 'Utikalo', 'Sɛtanburukalo', 'ɔkutɔburukalo', 'Nowanburukalo', 'Desanburukalo'],\n    'months_short' => ['Zan', 'Few', 'Mar', 'Awi', 'Mɛ', 'Zuw', 'Zul', 'Uti', 'Sɛt', 'ɔku', 'Now', 'Des'],\n    'weekdays' => ['Kari', 'Ntɛnɛn', 'Tarata', 'Araba', 'Alamisa', 'Juma', 'Sibiri'],\n    'weekdays_short' => ['Kar', 'Ntɛ', 'Tar', 'Ara', 'Ala', 'Jum', 'Sib'],\n    'weekdays_min' => ['Ka', 'Nt', 'Ta', 'Ar', 'Al', 'Ju', 'Si'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' ni '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/bn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n$bengaliNumbers = ['০', '১', '২', '৩', '৪', '৫', '৬', '৭', '৮', '৯'];\n\n/*\n * Authors:\n * - Josh Soref\n * - Shakib Hossain\n * - Raju\n * - Aniruddha Adhikary\n * - JD Isaacks\n * - Saiful Islam\n * - Faisal Islam\n * - Hayatunnabi Nabil\n */\nreturn [\n    'year' => ':count বছর',\n    'a_year' => 'এক বছর|:count বছর',\n    'y' => '১ বছর|:count বছর',\n    'month' => ':count মাস',\n    'a_month' => 'এক মাস|:count মাস',\n    'm' => '১ মাস|:count মাস',\n    'week' => ':count সপ্তাহ',\n    'a_week' => '১ সপ্তাহ|:count সপ্তাহ',\n    'w' => '১ সপ্তাহ|:count সপ্তাহ',\n    'day' => ':count দিন',\n    'a_day' => 'এক দিন|:count দিন',\n    'd' => '১ দিন|:count দিন',\n    'hour' => ':count ঘন্টা',\n    'a_hour' => 'এক ঘন্টা|:count ঘন্টা',\n    'h' => '১ ঘন্টা|:count ঘন্টা',\n    'minute' => ':count মিনিট',\n    'a_minute' => 'এক মিনিট|:count মিনিট',\n    'min' => '১ মিনিট|:count মিনিট',\n    'second' => ':count সেকেন্ড',\n    'a_second' => 'কয়েক সেকেন্ড|:count সেকেন্ড',\n    's' => '১ সেকেন্ড|:count সেকেন্ড',\n    'millisecond' => ':count মিলিসেকেন্ড',\n    'a_millisecond' => 'এক মিলিসেকেন্ড|:count মিলিসেকেন্ড',\n    'ms' => '১ মিলিসেকেন্ড|:count মিলিসেকেন্ড',\n    'microsecond' => ':count মাইক্রোসেকেন্ড',\n    'a_microsecond' => 'এক মাইক্রোসেকেন্ড|:count মাইক্রোসেকেন্ড',\n    'µs' => '১ মাইক্রোসেকেন্ড|:count মাইক্রোসেকেন্ড',\n    'ago' => ':time আগে',\n    'from_now' => ':time পরে',\n    'after' => ':time পরে',\n    'before' => ':time আগে',\n    'diff_now' => 'এখন',\n    'diff_today' => 'আজ',\n    'diff_yesterday' => 'গতকাল',\n    'diff_tomorrow' => 'আগামীকাল',\n    'diff_before_yesterday' => 'গত পরশু',\n    'diff_after_tomorrow' => 'আগামী পরশু',\n    'period_recurrences' => ':count বার|:count বার',\n    'period_interval' => 'প্রতি :interval',\n    'period_start_date' => ':date থেকে',\n    'period_end_date' => ':date পর্যন্ত',\n    'formats' => [\n        'LT' => 'A Oh:Om সময়',\n        'LTS' => 'A Oh:Om:Os সময়',\n        'L' => 'OD/OM/OY',\n        'LL' => 'OD MMMM OY',\n        'LLL' => 'OD MMMM OY, A Oh:Om সময়',\n        'LLLL' => 'dddd, OD MMMM OY, A Oh:Om সময়',\n    ],\n    'calendar' => [\n        'sameDay' => '[আজ] LT',\n        'nextDay' => '[আগামীকাল] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[গতকাল] LT',\n        'lastWeek' => '[গত] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'রাত';\n        }\n        if ($hour < 10) {\n            return 'সকাল';\n        }\n        if ($hour < 17) {\n            return 'দুপুর';\n        }\n        if ($hour < 20) {\n            return 'বিকাল';\n        }\n\n        return 'রাত';\n    },\n    'months' => ['জানুয়ারী', 'ফেব্রুয়ারি', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],\n    'months_short' => ['জানু', 'ফেব', 'মার্চ', 'এপ্র', 'মে', 'জুন', 'জুল', 'আগ', 'সেপ্ট', 'অক্টো', 'নভে', 'ডিসে'],\n    'weekdays' => ['রবিবার', 'সোমবার', 'মঙ্গলবার', 'বুধবার', 'বৃহস্পতিবার', 'শুক্রবার', 'শনিবার'],\n    'weekdays_short' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি'],\n    'weekdays_min' => ['রবি', 'সোম', 'মঙ্গ', 'বুধ', 'বৃহঃ', 'শুক্র', 'শনি'],\n    'ordinal' => static function ($number) use ($bengaliNumbers) {\n        // Convert to Bengali numerals\n        $bengaliNumber = str_replace(\n            ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],\n            $bengaliNumbers,\n            (string) $number\n        );\n\n        // Apply Bengali ordinal rules\n        $lastDigit = $number % 10;\n        $lastTwoDigits = $number % 100;\n\n        // Special cases for teens (11-19) always use তম\n        if ($lastTwoDigits >= 11 && $lastTwoDigits <= 19) {\n            return $bengaliNumber.'তম';\n        }\n\n        // For numbers 1-10, use specific rules\n        if ($number <= 10) {\n            switch ($number) {\n                case 1:\n                case 5:\n                case 7:\n                case 8:\n                case 9:\n                case 10:\n                    return $bengaliNumber.'ম';\n                case 2:\n                case 3:\n                    return $bengaliNumber.'য়';\n                case 4:\n                    return $bengaliNumber.'র্থ';\n                case 6:\n                    return $bengaliNumber.'ষ্ঠ';\n                default:\n                    return $bengaliNumber.'তম';\n            }\n        }\n\n        // For numbers > 20, all use তম\n        return $bengaliNumber.'তম';\n    },\n    'list' => [', ', ' এবং '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'weekdays_standalone' => ['রবিবার', 'সোমবার', 'মঙ্গলবার', 'বুধবার', 'বৃহষ্পতিবার', 'শুক্রবার', 'শনিবার'],\n    'weekdays_min_standalone' => ['রঃ', 'সোঃ', 'মঃ', 'বুঃ', 'বৃঃ', 'শুঃ', 'শনি'],\n    'months_short_standalone' => ['জানুয়ারী', 'ফেব্রুয়ারী', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],\n    'alt_numbers' => $bengaliNumbers,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/bn_BD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ankur Group, Taneem Ahmed, Jamil Ahmed\n */\nreturn array_replace_recursive(require __DIR__.'/bn.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['জানুয়ারী', 'ফেব্রুয়ারী', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],\n    'months_short' => ['জানু', 'ফেব', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],\n    'weekdays' => ['রবিবার', 'সোমবার', 'মঙ্গলবার', 'বুধবার', 'বৃহস্পতিবার', 'শুক্রবার', 'শনিবার'],\n    'weekdays_short' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহঃ', 'শুক্র', 'শনি'],\n    'weekdays_min' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহঃ', 'শুক্র', 'শনি'],\n    'first_day_of_week' => 5,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bn_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/bn.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['জানুয়ারী', 'ফেব্রুয়ারী', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],\n    'months_short' => ['জানু', 'ফেব', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],\n    'weekdays' => ['রবিবার', 'সোমবার', 'মঙ্গলবার', 'বুধবার', 'বৃহস্পতিবার', 'শুক্রবার', 'শনিবার'],\n    'weekdays_short' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি'],\n    'weekdays_min' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি'],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n */\nreturn [\n    'year' => 'ལོ:count',\n    'a_year' => '{1}ལོ་གཅིག|[-Inf,Inf]ལོ:count',\n    'month' => 'ཟླ་བ:count',\n    'a_month' => '{1}ཟླ་བ་གཅིག|[-Inf,Inf]ཟླ་བ:count',\n    'week' => 'གཟའ་འཁོར་:count',\n    'a_week' => 'གཟའ་འཁོར་གཅིག',\n    'day' => 'ཉིན:count་',\n    'a_day' => '{1}ཉིན་གཅིག|[-Inf,Inf]ཉིན:count',\n    'hour' => 'ཆུ་ཚོད:count',\n    'a_hour' => '{1}ཆུ་ཚོད་གཅིག|[-Inf,Inf]ཆུ་ཚོད:count',\n    'minute' => 'སྐར་མ་:count',\n    'a_minute' => '{1}སྐར་མ་གཅིག|[-Inf,Inf]སྐར་མ་:count',\n    'second' => 'སྐར་ཆ:count',\n    'a_second' => '{01}ལམ་སང|[-Inf,Inf]སྐར་ཆ:count',\n    'ago' => ':time སྔན་ལ',\n    'from_now' => ':time ལ་',\n    'diff_yesterday' => 'ཁ་སང',\n    'diff_today' => 'དི་རིང',\n    'diff_tomorrow' => 'སང་ཉིན',\n    'formats' => [\n        'LT' => 'A h:mm',\n        'LTS' => 'A h:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[དི་རིང] LT',\n        'nextDay' => '[སང་ཉིན] LT',\n        'nextWeek' => '[བདུན་ཕྲག་རྗེས་མ], LT',\n        'lastDay' => '[ཁ་སང] LT',\n        'lastWeek' => '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'མཚན་མོ';\n        }\n        if ($hour < 10) {\n            return 'ཞོགས་ཀས';\n        }\n        if ($hour < 17) {\n            return 'ཉིན་གུང';\n        }\n        if ($hour < 20) {\n            return 'དགོང་དག';\n        }\n\n        return 'མཚན་མོ';\n    },\n    'months' => ['ཟླ་བ་དང་པོ', 'ཟླ་བ་གཉིས་པ', 'ཟླ་བ་གསུམ་པ', 'ཟླ་བ་བཞི་པ', 'ཟླ་བ་ལྔ་པ', 'ཟླ་བ་དྲུག་པ', 'ཟླ་བ་བདུན་པ', 'ཟླ་བ་བརྒྱད་པ', 'ཟླ་བ་དགུ་པ', 'ཟླ་བ་བཅུ་པ', 'ཟླ་བ་བཅུ་གཅིག་པ', 'ཟླ་བ་བཅུ་གཉིས་པ'],\n    'months_short' => ['ཟླ་བ་དང་པོ', 'ཟླ་བ་གཉིས་པ', 'ཟླ་བ་གསུམ་པ', 'ཟླ་བ་བཞི་པ', 'ཟླ་བ་ལྔ་པ', 'ཟླ་བ་དྲུག་པ', 'ཟླ་བ་བདུན་པ', 'ཟླ་བ་བརྒྱད་པ', 'ཟླ་བ་དགུ་པ', 'ཟླ་བ་བཅུ་པ', 'ཟླ་བ་བཅུ་གཅིག་པ', 'ཟླ་བ་བཅུ་གཉིས་པ'],\n    'weekdays' => ['གཟའ་ཉི་མ་', 'གཟའ་ཟླ་བ་', 'གཟའ་མིག་དམར་', 'གཟའ་ལྷག་པ་', 'གཟའ་ཕུར་བུ', 'གཟའ་པ་སངས་', 'གཟའ་སྤེན་པ་'],\n    'weekdays_short' => ['ཉི་མ་', 'ཟླ་བ་', 'མིག་དམར་', 'ལྷག་པ་', 'ཕུར་བུ', 'པ་སངས་', 'སྤེན་པ་'],\n    'weekdays_min' => ['ཉི་མ་', 'ཟླ་བ་', 'མིག་དམར་', 'ལྷག་པ་', 'ཕུར་བུ', 'པ་སངས་', 'སྤེན་པ་'],\n    'list' => [', ', ' ཨནད་ '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'months_standalone' => ['ཟླ་བ་དང་པོ་', 'ཟླ་བ་གཉིས་པ་', 'ཟླ་བ་གསུམ་པ་', 'ཟླ་བ་བཞི་པ་', 'ཟླ་བ་ལྔ་པ་', 'ཟླ་བ་དྲུག་པ་', 'ཟླ་བ་བདུན་པ་', 'ཟླ་བ་བརྒྱད་པ་', 'ཟླ་བ་དགུ་པ་', 'ཟླ་བ་བཅུ་པ་', 'ཟླ་བ་བཅུ་གཅིག་པ་', 'ཟླ་བ་བཅུ་གཉིས་པ་'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/bo_CN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/bo.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bo_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/bo.php', [\n    'meridiem' => ['སྔ་དྲོ་', 'ཕྱི་དྲོ་'],\n    'weekdays' => ['གཟའ་ཉི་མ་', 'གཟའ་ཟླ་བ་', 'གཟའ་མིག་དམར་', 'གཟའ་ལྷག་པ་', 'གཟའ་ཕུར་བུ་', 'གཟའ་པ་སངས་', 'གཟའ་སྤེན་པ་'],\n    'weekdays_short' => ['ཉི་མ་', 'ཟླ་བ་', 'མིག་དམར་', 'ལྷག་པ་', 'ཕུར་བུ་', 'པ་སངས་', 'སྤེན་པ་'],\n    'weekdays_min' => ['ཉི་མ་', 'ཟླ་བ་', 'མིག་དམར་', 'ལྷག་པ་', 'ཕུར་བུ་', 'པ་སངས་', 'སྤེན་པ་'],\n    'months' => ['ཟླ་བ་དང་པོ', 'ཟླ་བ་གཉིས་པ', 'ཟླ་བ་གསུམ་པ', 'ཟླ་བ་བཞི་པ', 'ཟླ་བ་ལྔ་པ', 'ཟླ་བ་དྲུག་པ', 'ཟླ་བ་བདུན་པ', 'ཟླ་བ་བརྒྱད་པ', 'ཟླ་བ་དགུ་པ', 'ཟླ་བ་བཅུ་པ', 'ཟླ་བ་བཅུ་གཅིག་པ', 'ཟླ་བ་བཅུ་གཉིས་པ'],\n    'months_short' => ['ཟླ་༡', 'ཟླ་༢', 'ཟླ་༣', 'ཟླ་༤', 'ཟླ་༥', 'ཟླ་༦', 'ཟླ་༧', 'ཟླ་༨', 'ཟླ་༩', 'ཟླ་༡༠', 'ཟླ་༡༡', 'ཟླ་༡༢'],\n    'months_standalone' => ['ཟླ་བ་དང་པོ་', 'ཟླ་བ་གཉིས་པ་', 'ཟླ་བ་གསུམ་པ་', 'ཟླ་བ་བཞི་པ་', 'ཟླ་བ་ལྔ་པ་', 'ཟླ་བ་དྲུག་པ་', 'ཟླ་བ་བདུན་པ་', 'ཟླ་བ་བརྒྱད་པ་', 'ཟླ་བ་དགུ་པ་', 'ཟླ་བ་བཅུ་པ་', 'ཟླ་བ་བཅུ་གཅིག་པ་', 'ཟླ་བ་བཅུ་གཉིས་པ་'],\n    'weekend' => [0, 0],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'YYYY ལོའི་MMMཚེས་D',\n        'LLL' => 'སྤྱི་ལོ་YYYY MMMMའི་ཚེས་D h:mm a',\n        'LLLL' => 'YYYY MMMMའི་ཚེས་D, dddd h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/br.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Serhan Apaydın\n * - JD Isaacks\n */\nreturn [\n    'year' => '{1}:count bloaz|{3,4,5,9}:count bloaz|[0,Inf[:count vloaz',\n    'a_year' => '{1}ur bloaz|{3,4,5,9}:count bloaz|[0,Inf[:count vloaz',\n    'month' => '{1}:count miz|{2}:count viz|[0,Inf[:count miz',\n    'a_month' => '{1}ur miz|{2}:count viz|[0,Inf[:count miz',\n    'week' => ':count sizhun',\n    'a_week' => '{1}ur sizhun|:count sizhun',\n    'day' => '{1}:count devezh|{2}:count zevezh|[0,Inf[:count devezh',\n    'a_day' => '{1}un devezh|{2}:count zevezh|[0,Inf[:count devezh',\n    'hour' => ':count eur',\n    'a_hour' => '{1}un eur|:count eur',\n    'minute' => '{1}:count vunutenn|{2}:count vunutenn|[0,Inf[:count munutenn',\n    'a_minute' => '{1}ur vunutenn|{2}:count vunutenn|[0,Inf[:count munutenn',\n    'second' => ':count eilenn',\n    'a_second' => '{1}un nebeud segondennoù|[0,Inf[:count eilenn',\n    'ago' => ':time \\'zo',\n    'from_now' => 'a-benn :time',\n    'diff_now' => 'bremañ',\n    'diff_today' => 'Hiziv',\n    'diff_today_regexp' => 'Hiziv(?:\\\\s+da)?',\n    'diff_yesterday' => 'decʼh',\n    'diff_yesterday_regexp' => 'Dec\\'h(?:\\\\s+da)?',\n    'diff_tomorrow' => 'warcʼhoazh',\n    'diff_tomorrow_regexp' => 'Warc\\'hoazh(?:\\\\s+da)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D [a viz] MMMM YYYY',\n        'LLL' => 'D [a viz] MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D [a viz] MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Hiziv da] LT',\n        'nextDay' => '[Warc\\'hoazh da] LT',\n        'nextWeek' => 'dddd [da] LT',\n        'lastDay' => '[Dec\\'h da] LT',\n        'lastWeek' => 'dddd [paset da] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static fn ($number) => $number.($number === 1 ? 'añ' : 'vet'),\n    'months' => ['Genver', 'C\\'hwevrer', 'Meurzh', 'Ebrel', 'Mae', 'Mezheven', 'Gouere', 'Eost', 'Gwengolo', 'Here', 'Du', 'Kerzu'],\n    'months_short' => ['Gen', 'C\\'hwe', 'Meu', 'Ebr', 'Mae', 'Eve', 'Gou', 'Eos', 'Gwe', 'Her', 'Du', 'Ker'],\n    'weekdays' => ['Sul', 'Lun', 'Meurzh', 'Merc\\'her', 'Yaou', 'Gwener', 'Sadorn'],\n    'weekdays_short' => ['Sul', 'Lun', 'Meu', 'Mer', 'Yao', 'Gwe', 'Sad'],\n    'weekdays_min' => ['Su', 'Lu', 'Me', 'Mer', 'Ya', 'Gw', 'Sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' hag '],\n    'meridiem' => ['A.M.', 'G.M.'],\n\n    'y' => ':count bl.',\n    'd' => ':count d',\n    'h' => ':count e',\n    'min' => ':count min',\n    's' => ':count s',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/br_FR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/br.php';\n"
  },
  {
    "path": "src/Carbon/Lang/brx.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/brx_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/brx_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'M/D/YY',\n    ],\n    'months' => ['जानुवारी', 'फेब्रुवारी', 'मार्स', 'एफ्रिल', 'मे', 'जुन', 'जुलाइ', 'आगस्थ', 'सेबथेज्ब़र', 'अखथबर', 'नबेज्ब़र', 'दिसेज्ब़र'],\n    'months_short' => ['जानुवारी', 'फेब्रुवारी', 'मार्स', 'एप्रिल', 'मे', 'जुन', 'जुलाइ', 'आगस्थ', 'सेबथेज्ब़र', 'अखथबर', 'नबेज्ब़र', 'दिसेज्ब़र'],\n    'weekdays' => ['रबिबार', 'सोबार', 'मंगलबार', 'बुदबार', 'बिसथिबार', 'सुखुरबार', 'सुनिबार'],\n    'weekdays_short' => ['रबि', 'सम', 'मंगल', 'बुद', 'बिसथि', 'सुखुर', 'सुनि'],\n    'weekdays_min' => ['रबि', 'सम', 'मंगल', 'बुद', 'बिसथि', 'सुखुर', 'सुनि'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['फुं.', 'बेलासे.'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bs.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bokideckonja\n * - Josh Soref\n * - François B\n * - shaishavgandhi05\n * - Serhan Apaydın\n * - JD Isaacks\n * - Ademir Šehić\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count godina|:count godine|:count godina',\n    'y' => ':count godina|:count godine|:count godina',\n    'month' => ':count mjesec|:count mjeseca|:count mjeseci',\n    'm' => ':count mjesec|:count mjeseca|:count mjeseci',\n    'week' => ':count sedmica|:count sedmice|:count sedmica',\n    'w' => ':count sedmica|:count sedmice|:count sedmica',\n    'day' => ':count dan|:count dana|:count dana',\n    'd' => ':count dan|:count dana|:count dana',\n    'hour' => ':count sat|:count sata|:count sati',\n    'h' => ':count sat|:count sata|:count sati',\n    'minute' => ':count minut|:count minuta|:count minuta',\n    'min' => ':count minut|:count minuta|:count minuta',\n    'second' => ':count sekund|:count sekunda|:count sekundi',\n    's' => ':count sekund|:count sekunda|:count sekundi',\n\n    'ago' => 'prije :time',\n    'from_now' => 'za :time',\n    'after' => 'nakon :time',\n    'before' => ':time ranije',\n\n    'year_ago' => ':count godinu|:count godine|:count godina',\n    'year_from_now' => ':count godinu|:count godine|:count godina',\n    'week_ago' => ':count sedmicu|:count sedmice|:count sedmica',\n    'week_from_now' => ':count sedmicu|:count sedmice|:count sedmica',\n\n    'diff_now' => 'sada',\n    'diff_today' => 'danas',\n    'diff_today_regexp' => 'danas(?:\\\\s+u)?',\n    'diff_yesterday' => 'jučer',\n    'diff_yesterday_regexp' => 'jučer(?:\\\\s+u)?',\n    'diff_tomorrow' => 'sutra',\n    'diff_tomorrow_regexp' => 'sutra(?:\\\\s+u)?',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[danas u] LT',\n        'nextDay' => '[sutra u] LT',\n        'nextWeek' => static fn (CarbonInterface $current) => match ($current->dayOfWeek) {\n            0 => '[u] [nedjelju] [u] LT',\n            3 => '[u] [srijedu] [u] LT',\n            6 => '[u] [subotu] [u] LT',\n            default => '[u] dddd [u] LT',\n        },\n        'lastDay' => '[jučer u] LT',\n        'lastWeek' => static fn (CarbonInterface $current) => match ($current->dayOfWeek) {\n            0, 3 => '[prošlu] dddd [u] LT',\n            6 => '[prošle] [subote] [u] LT',\n            default => '[prošli] dddd [u] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['januar', 'februar', 'mart', 'april', 'maj', 'juni', 'juli', 'august', 'septembar', 'oktobar', 'novembar', 'decembar'],\n    'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj.', 'jun.', 'jul.', 'aug.', 'sep.', 'okt.', 'nov.', 'dec.'],\n    'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],\n    'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'],\n    'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' i '],\n    'meridiem' => ['prijepodne', 'popodne'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/bs_BA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/bs.php';\n"
  },
  {
    "path": "src/Carbon/Lang/bs_Cyrl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/bs.php', [\n    'meridiem' => ['пре подне', 'поподне'],\n    'weekdays' => ['недјеља', 'понедјељак', 'уторак', 'сриједа', 'четвртак', 'петак', 'субота'],\n    'weekdays_short' => ['нед', 'пон', 'уто', 'сри', 'чет', 'пет', 'суб'],\n    'weekdays_min' => ['нед', 'пон', 'уто', 'сри', 'чет', 'пет', 'суб'],\n    'months' => ['јануар', 'фебруар', 'март', 'април', 'мај', 'јуни', 'јули', 'аугуст', 'септембар', 'октобар', 'новембар', 'децембар'],\n    'months_short' => ['јан', 'феб', 'мар', 'апр', 'мај', 'јун', 'јул', 'ауг', 'сеп', 'окт', 'нов', 'дец'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D.M.YYYY.',\n        'LL' => 'DD.MM.YYYY.',\n        'LLL' => 'DD. MMMM YYYY. HH:mm',\n        'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/bs_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/bs.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/byn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/byn_ER.php';\n"
  },
  {
    "path": "src/Carbon/Lang/byn_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ልደትሪ', 'ካብኽብቲ', 'ክብላ', 'ፋጅኺሪ', 'ክቢቅሪ', 'ምኪኤል ትጓ̅ኒሪ', 'ኰርኩ', 'ማርያም ትሪ', 'ያኸኒ መሳቅለሪ', 'መተሉ', 'ምኪኤል መሽወሪ', 'ተሕሳስሪ'],\n    'months_short' => ['ልደት', 'ካብኽ', 'ክብላ', 'ፋጅኺ', 'ክቢቅ', 'ም/ት', 'ኰር', 'ማርያ', 'ያኸኒ', 'መተሉ', 'ም/ም', 'ተሕሳ'],\n    'weekdays' => ['ሰንበር ቅዳዅ', 'ሰኑ', 'ሰሊጝ', 'ለጓ ወሪ ለብዋ', 'ኣምድ', 'ኣርብ', 'ሰንበር ሽጓዅ'],\n    'weekdays_short' => ['ሰ/ቅ', 'ሰኑ', 'ሰሊጝ', 'ለጓ', 'ኣምድ', 'ኣርብ', 'ሰ/ሽ'],\n    'weekdays_min' => ['ሰ/ቅ', 'ሰኑ', 'ሰሊጝ', 'ለጓ', 'ኣምድ', 'ኣርብ', 'ሰ/ሽ'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ፋዱስ ጃብ', 'ፋዱስ ደምቢ'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ca.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - mestremuten\n * - François B\n * - Marc Ordinas i Llopis\n * - Pere Orga\n * - JD Isaacks\n * - Quentí\n * - Víctor Díaz\n * - Xavi\n * - qcardona\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count any|:count anys',\n    'a_year' => 'un any|:count anys',\n    'y' => ':count any|:count anys',\n    'month' => ':count mes|:count mesos',\n    'a_month' => 'un mes|:count mesos',\n    'm' => ':count mes|:count mesos',\n    'week' => ':count setmana|:count setmanes',\n    'a_week' => 'una setmana|:count setmanes',\n    'w' => ':count setmana|:count setmanes',\n    'day' => ':count dia|:count dies',\n    'a_day' => 'un dia|:count dies',\n    'd' => ':count d',\n    'hour' => ':count hora|:count hores',\n    'a_hour' => 'una hora|:count hores',\n    'h' => ':count h',\n    'minute' => ':count minut|:count minuts',\n    'a_minute' => 'un minut|:count minuts',\n    'min' => ':count min',\n    'second' => ':count segon|:count segons',\n    'a_second' => 'uns segons|:count segons',\n    's' => ':count s',\n    'ago' => 'fa :time',\n    'from_now' => 'd\\'aquí a :time',\n    'after' => ':time després',\n    'before' => ':time abans',\n    'diff_now' => 'ara mateix',\n    'diff_today' => 'avui',\n    'diff_today_regexp' => 'avui(?:\\\\s+a)?(?:\\\\s+les)?',\n    'diff_yesterday' => 'ahir',\n    'diff_yesterday_regexp' => 'ahir(?:\\\\s+a)?(?:\\\\s+les)?',\n    'diff_tomorrow' => 'demà',\n    'diff_tomorrow_regexp' => 'demà(?:\\\\s+a)?(?:\\\\s+les)?',\n    'diff_before_yesterday' => 'abans d\\'ahir',\n    'diff_after_tomorrow' => 'demà passat',\n    'period_recurrences' => ':count cop|:count cops',\n    'period_interval' => 'cada :interval',\n    'period_start_date' => 'de :date',\n    'period_end_date' => 'fins a :date',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM [de] YYYY',\n        'LLL' => 'D MMMM [de] YYYY [a les] H:mm',\n        'LLLL' => 'dddd D MMMM [de] YYYY [a les] H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => static function (CarbonInterface $current) {\n            return '[avui a '.($current->hour !== 1 ? 'les' : 'la').'] LT';\n        },\n        'nextDay' => static function (CarbonInterface $current) {\n            return '[demà a '.($current->hour !== 1 ? 'les' : 'la').'] LT';\n        },\n        'nextWeek' => static function (CarbonInterface $current) {\n            return 'dddd [a '.($current->hour !== 1 ? 'les' : 'la').'] LT';\n        },\n        'lastDay' => static function (CarbonInterface $current) {\n            return '[ahir a '.($current->hour !== 1 ? 'les' : 'la').'] LT';\n        },\n        'lastWeek' => static function (CarbonInterface $current) {\n            return '[el] dddd [passat a '.($current->hour !== 1 ? 'les' : 'la').'] LT';\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return $number.(\n            ($period === 'w' || $period === 'W') ? 'a' : (\n                ($number === 1) ? 'r' : (\n                    ($number === 2) ? 'n' : (\n                        ($number === 3) ? 'r' : (\n                            ($number === 4) ? 't' : 'è'\n                        )\n                    )\n                )\n            )\n        );\n    },\n    'months' => ['de gener', 'de febrer', 'de març', 'd\\'abril', 'de maig', 'de juny', 'de juliol', 'd\\'agost', 'de setembre', 'd\\'octubre', 'de novembre', 'de desembre'],\n    'months_standalone' => ['gener', 'febrer', 'març', 'abril', 'maig', 'juny', 'juliol', 'agost', 'setembre', 'octubre', 'novembre', 'desembre'],\n    'months_short' => ['de gen.', 'de febr.', 'de març', 'd\\'abr.', 'de maig', 'de juny', 'de jul.', 'd\\'ag.', 'de set.', 'd\\'oct.', 'de nov.', 'de des.'],\n    'months_short_standalone' => ['gen.', 'febr.', 'març', 'abr.', 'maig', 'juny', 'jul.', 'ag.', 'set.', 'oct.', 'nov.', 'des.'],\n    'months_regexp' => '/(D[oD]?[\\s,]+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['diumenge', 'dilluns', 'dimarts', 'dimecres', 'dijous', 'divendres', 'dissabte'],\n    'weekdays_short' => ['dg.', 'dl.', 'dt.', 'dc.', 'dj.', 'dv.', 'ds.'],\n    'weekdays_min' => ['dg', 'dl', 'dt', 'dc', 'dj', 'dv', 'ds'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' i '],\n    'meridiem' => ['a. m.', 'p. m.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ca_AD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ca.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ca_ES.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ca.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ca_ES_Valencia.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'ca');\n    }, 'ca_ES_Valencia');\n}\n// @codeCoverageIgnoreEnd\n\nreturn array_replace_recursive(require __DIR__.'/ca.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ca_FR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ca.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ca_IT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ca.php', [\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ccp.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['𑄢𑄧𑄝𑄨𑄝𑄢𑄴', '𑄥𑄧𑄟𑄴𑄝𑄢𑄴', '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴', '𑄝𑄪𑄖𑄴𑄝𑄢𑄴', '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴', '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴', '𑄥𑄧𑄚𑄨𑄝𑄢𑄴'],\n    'weekdays_short' => ['𑄢𑄧𑄝𑄨', '𑄥𑄧𑄟𑄴', '𑄟𑄧𑄁𑄉𑄧𑄣𑄴', '𑄝𑄪𑄖𑄴', '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴', '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴', '𑄥𑄧𑄚𑄨'],\n    'weekdays_min' => ['𑄢𑄧𑄝𑄨', '𑄥𑄧𑄟𑄴', '𑄟𑄧𑄁𑄉𑄧𑄣𑄴', '𑄝𑄪𑄖𑄴', '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴', '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴', '𑄥𑄧𑄚𑄨'],\n    'months' => ['𑄎𑄚𑄪𑄠𑄢𑄨', '𑄜𑄬𑄛𑄴𑄝𑄳𑄢𑄪𑄠𑄢𑄨', '𑄟𑄢𑄴𑄌𑄧', '𑄃𑄬𑄛𑄳𑄢𑄨𑄣𑄴', '𑄟𑄬', '𑄎𑄪𑄚𑄴', '𑄎𑄪𑄣𑄭', '𑄃𑄉𑄧𑄌𑄴𑄑𑄴', '𑄥𑄬𑄛𑄴𑄑𑄬𑄟𑄴𑄝𑄧𑄢𑄴', '𑄃𑄧𑄇𑄴𑄑𑄬𑄝𑄧𑄢𑄴', '𑄚𑄧𑄞𑄬𑄟𑄴𑄝𑄧𑄢𑄴', '𑄓𑄨𑄥𑄬𑄟𑄴𑄝𑄧𑄢𑄴'],\n    'months_short' => ['𑄎𑄚𑄪', '𑄜𑄬𑄛𑄴', '𑄟𑄢𑄴𑄌𑄧', '𑄃𑄬𑄛𑄳𑄢𑄨𑄣𑄴', '𑄟𑄬', '𑄎𑄪𑄚𑄴', '𑄎𑄪𑄣𑄭', '𑄃𑄉𑄧𑄌𑄴𑄑𑄴', '𑄥𑄬𑄛𑄴𑄑𑄬𑄟𑄴𑄝𑄧𑄢𑄴', '𑄃𑄧𑄇𑄴𑄑𑄮𑄝𑄧𑄢𑄴', '𑄚𑄧𑄞𑄬𑄟𑄴𑄝𑄧𑄢𑄴', '𑄓𑄨𑄥𑄬𑄟𑄴𑄝𑄢𑄴'],\n    'months_short_standalone' => ['𑄎𑄚𑄪𑄠𑄢𑄨', '𑄜𑄬𑄛𑄴𑄝𑄳𑄢𑄪𑄠𑄢𑄨', '𑄟𑄢𑄴𑄌𑄧', '𑄃𑄬𑄛𑄳𑄢𑄨𑄣𑄴', '𑄟𑄬', '𑄎𑄪𑄚𑄴', '𑄎𑄪𑄣𑄭', '𑄃𑄉𑄧𑄌𑄴𑄑𑄴', '𑄥𑄬𑄛𑄴𑄑𑄬𑄟𑄴𑄝𑄧𑄢𑄴', '𑄃𑄧𑄇𑄴𑄑𑄮𑄝𑄧𑄢𑄴', '𑄚𑄧𑄞𑄬𑄟𑄴𑄝𑄧𑄢𑄴', '𑄓𑄨𑄥𑄬𑄟𑄴𑄝𑄧𑄢𑄴'],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM, YYYY h:mm a',\n        'LLLL' => 'dddd, D MMMM, YYYY h:mm a',\n    ],\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ccp_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ccp.php', [\n    'weekend' => [0, 0],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ce.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ce_RU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ce_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - ANCHR\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY.DD.MM',\n    ],\n    'months' => ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'],\n    'months_short' => ['янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'weekdays' => ['КӀиранан де', 'Оршотан де', 'Шинарин де', 'Кхаарин де', 'Еарин де', 'ПӀераскан де', 'Шот де'],\n    'weekdays_short' => ['КӀ', 'Ор', 'Ши', 'Кх', 'Еа', 'ПӀ', 'Шо'],\n    'weekdays_min' => ['КӀ', 'Ор', 'Ши', 'Кх', 'Еа', 'ПӀ', 'Шо'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count шо',\n    'y' => ':count шо',\n    'a_year' => ':count шо',\n\n    'month' => ':count бутт',\n    'm' => ':count бутт',\n    'a_month' => ':count бутт',\n\n    'week' => ':count кӏира',\n    'w' => ':count кӏира',\n    'a_week' => ':count кӏира',\n\n    'day' => ':count де',\n    'd' => ':count де',\n    'a_day' => ':count де',\n\n    'hour' => ':count сахьт',\n    'h' => ':count сахьт',\n    'a_hour' => ':count сахьт',\n\n    'minute' => ':count минот',\n    'min' => ':count минот',\n    'a_minute' => ':count минот',\n\n    'second' => ':count секунд',\n    's' => ':count секунд',\n    'a_second' => ':count секунд',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/cgg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['Sande', 'Orwokubanza', 'Orwakabiri', 'Orwakashatu', 'Orwakana', 'Orwakataano', 'Orwamukaaga'],\n    'weekdays_short' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'],\n    'weekdays_min' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'],\n    'months' => ['Okwokubanza', 'Okwakabiri', 'Okwakashatu', 'Okwakana', 'Okwakataana', 'Okwamukaaga', 'Okwamushanju', 'Okwamunaana', 'Okwamwenda', 'Okwaikumi', 'Okwaikumi na kumwe', 'Okwaikumi na ibiri'],\n    'months_short' => ['KBZ', 'KBR', 'KST', 'KKN', 'KTN', 'KMK', 'KMS', 'KMN', 'KMW', 'KKM', 'KNK', 'KNB'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'day' => ':count ruhanga', // less reliable\n    'd' => ':count ruhanga', // less reliable\n    'a_day' => ':count ruhanga', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/chr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/chr_US.php';\n"
  },
  {
    "path": "src/Carbon/Lang/chr_US.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Cherokee Nation Joseph Erb josepherb7@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'MM/DD/YYYY',\n    ],\n    'months' => ['ᎤᏃᎸᏔᏅ', 'ᎧᎦᎵ', 'ᎠᏅᏱ', 'ᎧᏬᏂ', 'ᎠᏂᏍᎬᏘ', 'ᏕᎭᎷᏱ', 'ᎫᏰᏉᏂ', 'ᎦᎶᏂ', 'ᏚᎵᏍᏗ', 'ᏚᏂᏅᏗ', 'ᏅᏓᏕᏆ', 'ᎥᏍᎩᏱ'],\n    'months_short' => ['ᎤᏃ', 'ᎧᎦ', 'ᎠᏅ', 'ᎧᏬ', 'ᎠᏂ', 'ᏕᎭ', 'ᎫᏰ', 'ᎦᎶ', 'ᏚᎵ', 'ᏚᏂ', 'ᏅᏓ', 'ᎥᏍ'],\n    'weekdays' => ['ᎤᎾᏙᏓᏆᏍᎬ', 'ᎤᎾᏙᏓᏉᏅᎯ', 'ᏔᎵᏁᎢᎦ', 'ᏦᎢᏁᎢᎦ', 'ᏅᎩᏁᎢᎦ', 'ᏧᎾᎩᎶᏍᏗ', 'ᎤᎾᏙᏓᏈᏕᎾ'],\n    'weekdays_short' => ['ᏆᏍᎬ', 'ᏉᏅᎯ', 'ᏔᎵᏁ', 'ᏦᎢᏁ', 'ᏅᎩᏁ', 'ᏧᎾᎩ', 'ᏈᏕᎾ'],\n    'weekdays_min' => ['ᏆᏍᎬ', 'ᏉᏅᎯ', 'ᏔᎵᏁ', 'ᏦᎢᏁ', 'ᏅᎩᏁ', 'ᏧᎾᎩ', 'ᏈᏕᎾ'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ᏌᎾᎴ', 'ᏒᎯᏱᎢᏗᏢ', 'ꮜꮎꮄ', 'ꮢꭿᏹꭲꮧꮲ'],\n\n    'second' => ':count ᏐᎢ', // less reliable\n    's' => ':count ᏐᎢ', // less reliable\n    'a_second' => ':count ᏐᎢ', // less reliable\n\n    'year' => ':count ᏑᏕᏘᏴᏓ',\n    'y' => ':count ᏑᏕᏘᏴᏓ',\n    'a_year' => ':count ᏑᏕᏘᏴᏓ',\n\n    'month' => ':count ᏏᏅᏙ',\n    'm' => ':count ᏏᏅᏙ',\n    'a_month' => ':count ᏏᏅᏙ',\n\n    'week' => ':count ᏑᎾᏙᏓᏆᏍᏗ',\n    'w' => ':count ᏑᎾᏙᏓᏆᏍᏗ',\n    'a_week' => ':count ᏑᎾᏙᏓᏆᏍᏗ',\n\n    'day' => ':count ᎢᎦ',\n    'd' => ':count ᎢᎦ',\n    'a_day' => ':count ᎢᎦ',\n\n    'hour' => ':count ᏑᏟᎶᏛ',\n    'h' => ':count ᏑᏟᎶᏛ',\n    'a_hour' => ':count ᏑᏟᎶᏛ',\n\n    'minute' => ':count ᎢᏯᏔᏬᏍᏔᏅ',\n    'min' => ':count ᎢᏯᏔᏬᏍᏔᏅ',\n    'a_minute' => ':count ᎢᏯᏔᏬᏍᏔᏅ',\n\n    'ago' => ':time ᏥᎨᏒ',\n    'from_now' => 'ᎾᎿ :time',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ckb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Swara Mohammed\n * - Kawan Pshtiwan\n */\n$months = [\n    'کانونی دووەم',\n    'شوبات',\n    'ئازار',\n    'نیسان',\n    'ئایار',\n    'حوزەیران',\n    'تەمموز',\n    'ئاب',\n    'ئەیلوول',\n    'تشرینی یەکەم',\n    'تشرینی دووەم',\n    'کانونی یەکەم',\n];\n\nreturn [\n    'year' => implode('|', ['{0}:count ساڵێک', '{1}ساڵێک', '{2}دوو ساڵ', ']2,11[:count ساڵ', ']10,Inf[:count ساڵ']),\n    'a_year' => implode('|', ['{0}:count ساڵێک', '{1}ساڵێک', '{2}دوو ساڵ', ']2,11[:count ساڵ', ']10,Inf[:count ساڵ']),\n    'month' => implode('|', ['{0}:count مانگێک', '{1}مانگێک', '{2}دوو مانگ', ']2,11[:count مانگ', ']10,Inf[:count مانگ']),\n    'a_month' => implode('|', ['{0}:count مانگێک', '{1}مانگێک', '{2}دوو مانگ', ']2,11[:count مانگ', ']10,Inf[:count مانگ']),\n    'week' => implode('|', ['{0}:count هەفتەیەک', '{1}هەفتەیەک', '{2}دوو هەفتە', ']2,11[:count هەفتە', ']10,Inf[:count هەفتە']),\n    'a_week' => implode('|', ['{0}:count هەفتەیەک', '{1}هەفتەیەک', '{2}دوو هەفتە', ']2,11[:count هەفتە', ']10,Inf[:count هەفتە']),\n    'day' => implode('|', ['{0}:count ڕۆژێک', '{1}ڕۆژێک', '{2}دوو ڕۆژ', ']2,11[:count ڕۆژ', ']10,Inf[:count ڕۆژ']),\n    'a_day' => implode('|', ['{0}:count ڕۆژێک', '{1}ڕۆژێک', '{2}دوو ڕۆژ', ']2,11[:count ڕۆژ', ']10,Inf[:count ڕۆژ']),\n    'hour' => implode('|', ['{0}:count کاتژمێرێک', '{1}کاتژمێرێک', '{2}دوو کاتژمێر', ']2,11[:count کاتژمێر', ']10,Inf[:count کاتژمێر']),\n    'a_hour' => implode('|', ['{0}:count کاتژمێرێک', '{1}کاتژمێرێک', '{2}دوو کاتژمێر', ']2,11[:count کاتژمێر', ']10,Inf[:count کاتژمێر']),\n    'minute' => implode('|', ['{0}:count خولەکێک', '{1}خولەکێک', '{2}دوو خولەک', ']2,11[:count خولەک', ']10,Inf[:count خولەک']),\n    'a_minute' => implode('|', ['{0}:count خولەکێک', '{1}خولەکێک', '{2}دوو خولەک', ']2,11[:count خولەک', ']10,Inf[:count خولەک']),\n    'second' => implode('|', ['{0}:count چرکەیەک', '{1}چرکەیەک', '{2}دوو چرکە', ']2,11[:count چرکە', ']10,Inf[:count چرکە']),\n    'a_second' => implode('|', ['{0}:count چرکەیەک', '{1}چرکەیەک', '{2}دوو چرکە', ']2,11[:count چرکە', ']10,Inf[:count چرکە']),\n    'ago' => 'پێش :time',\n    'from_now' => ':time لە ئێستاوە',\n    'after' => 'دوای :time',\n    'before' => 'پێش :time',\n    'diff_now' => 'ئێستا',\n    'diff_today' => 'ئەمڕۆ',\n    'diff_today_regexp' => 'ڕۆژ(?:\\\\s+لە)?(?:\\\\s+کاتژمێر)?',\n    'diff_yesterday' => 'دوێنێ',\n    'diff_yesterday_regexp' => 'دوێنێ(?:\\\\s+لە)?(?:\\\\s+کاتژمێر)?',\n    'diff_tomorrow' => 'سبەینێ',\n    'diff_tomorrow_regexp' => 'سبەینێ(?:\\\\s+لە)?(?:\\\\s+کاتژمێر)?',\n    'diff_before_yesterday' => 'پێش دوێنێ',\n    'diff_after_tomorrow' => 'دوای سبەینێ',\n    'period_recurrences' => implode('|', ['{0}جار', '{1}جار', '{2}:count دووجار', ']2,11[:count جار', ']10,Inf[:count جار']),\n    'period_interval' => 'هەموو :interval',\n    'period_start_date' => 'لە :date',\n    'period_end_date' => 'بۆ :date',\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => ['یەکشەممە', 'دووشەممە', 'سێشەممە', 'چوارشەممە', 'پێنجشەممە', 'هەینی', 'شەممە'],\n    'weekdays_short' => ['یەکشەممە', 'دووشەممە', 'سێشەممە', 'چوارشەممە', 'پێنجشەممە', 'هەینی', 'شەممە'],\n    'weekdays_min' => ['یەکشەممە', 'دووشەممە', 'سێشەممە', 'چوارشەممە', 'پێنجشەممە', 'هەینی', 'شەممە'],\n    'list' => ['، ', ' و '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ئەمڕۆ لە کاتژمێر] LT',\n        'nextDay' => '[سبەینێ لە کاتژمێر] LT',\n        'nextWeek' => 'dddd [لە کاتژمێر] LT',\n        'lastDay' => '[دوێنێ لە کاتژمێر] LT',\n        'lastWeek' => 'dddd [لە کاتژمێر] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['پ.ن', 'د.ن'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/cmn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/cmn_TW.php';\n"
  },
  {
    "path": "src/Carbon/Lang/cmn_TW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'YYYY年MM月DD號',\n    ],\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'],\n    'weekdays' => ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],\n    'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'meridiem' => ['上午', '下午'],\n\n    'year' => ':count 年',\n    'y' => ':count 年',\n    'a_year' => ':count 年',\n\n    'month' => ':count 月',\n    'm' => ':count 月',\n    'a_month' => ':count 月',\n\n    'week' => ':count 周',\n    'w' => ':count 周',\n    'a_week' => ':count 周',\n\n    'day' => ':count 白天',\n    'd' => ':count 白天',\n    'a_day' => ':count 白天',\n\n    'hour' => ':count 小时',\n    'h' => ':count 小时',\n    'a_hour' => ':count 小时',\n\n    'minute' => ':count 分钟',\n    'min' => ':count 分钟',\n    'a_minute' => ':count 分钟',\n\n    'second' => ':count 秒',\n    's' => ':count 秒',\n    'a_second' => ':count 秒',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/crh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/crh_UA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/crh_UA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Reşat SABIQ tilde.birlik@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'Mayıs', 'İyun', 'İyul', 'Avgust', 'Sentâbr', 'Oktâbr', 'Noyabr', 'Dekabr'],\n    'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'],\n    'weekdays' => ['Bazar', 'Bazarertesi', 'Salı', 'Çarşembe', 'Cumaaqşamı', 'Cuma', 'Cumaertesi'],\n    'weekdays_short' => ['Baz', 'Ber', 'Sal', 'Çar', 'Caq', 'Cum', 'Cer'],\n    'weekdays_min' => ['Baz', 'Ber', 'Sal', 'Çar', 'Caq', 'Cum', 'Cer'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ÜE', 'ÜS'],\n\n    'year' => ':count yıl',\n    'y' => ':count yıl',\n    'a_year' => ':count yıl',\n\n    'month' => ':count ay',\n    'm' => ':count ay',\n    'a_month' => ':count ay',\n\n    'week' => ':count afta',\n    'w' => ':count afta',\n    'a_week' => ':count afta',\n\n    'day' => ':count kün',\n    'd' => ':count kün',\n    'a_day' => ':count kün',\n\n    'hour' => ':count saat',\n    'h' => ':count saat',\n    'a_hour' => ':count saat',\n\n    'minute' => ':count daqqa',\n    'min' => ':count daqqa',\n    'a_minute' => ':count daqqa',\n\n    'second' => ':count ekinci',\n    's' => ':count ekinci',\n    'a_second' => ':count ekinci',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/cs.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Jakub Tesinsky\n * - Martin Suja\n * - Nikos Timiopulos\n * - Bohuslav Blín\n * - Tsutomu Kuroda\n * - tjku\n * - Lukas Svoboda\n * - Max Melentiev\n * - Juanito Fatas\n * - Akira Matsuda\n * - Christopher Dell\n * - Václav Pávek\n * - CodeSkills\n * - Tlapi\n * - newman101\n * - Petr Kadlec\n * - tommaskraus\n * - Karel Sommer (calvera)\n */\n$za = function ($time) {\n    return 'za '.strtr($time, [\n        'hodina' => 'hodinu',\n        'minuta' => 'minutu',\n        'sekunda' => 'sekundu',\n    ]);\n};\n\n$pred = function ($time) {\n    $time = strtr($time, [\n        'hodina' => 'hodinou',\n        'minuta' => 'minutou',\n        'sekunda' => 'sekundou',\n    ]);\n    $time = preg_replace('/hodiny?(?!\\w)/', 'hodinami', $time);\n    $time = preg_replace('/minuty?(?!\\w)/', 'minutami', $time);\n    $time = preg_replace('/sekundy?(?!\\w)/', 'sekundami', $time);\n\n    return \"před $time\";\n};\n\nreturn [\n    'year' => ':count rok|:count roky|:count let',\n    'y' => ':count rok|:count roky|:count let',\n    'a_year' => 'rok|:count roky|:count let',\n    'month' => ':count měsíc|:count měsíce|:count měsíců',\n    'm' => ':count měs.',\n    'a_month' => 'měsíc|:count měsíce|:count měsíců',\n    'week' => ':count týden|:count týdny|:count týdnů',\n    'w' => ':count týd.',\n    'a_week' => 'týden|:count týdny|:count týdnů',\n    'day' => ':count den|:count dny|:count dní',\n    'd' => ':count den|:count dny|:count dní',\n    'a_day' => 'den|:count dny|:count dní',\n    'hour' => ':count hodina|:count hodiny|:count hodin',\n    'h' => ':count hod.',\n    'a_hour' => 'hodina|:count hodiny|:count hodin',\n    'minute' => ':count minuta|:count minuty|:count minut',\n    'min' => ':count min.',\n    'a_minute' => 'minuta|:count minuty|:count minut',\n    'second' => ':count sekunda|:count sekundy|:count sekund',\n    's' => ':count sek.',\n    'a_second' => 'pár sekund|:count sekundy|:count sekund',\n\n    'month_ago' => ':count měsícem|:count měsíci|:count měsíci',\n    'a_month_ago' => 'měsícem|:count měsíci|:count měsíci',\n    'day_ago' => ':count dnem|:count dny|:count dny',\n    'a_day_ago' => 'dnem|:count dny|:count dny',\n    'week_ago' => ':count týdnem|:count týdny|:count týdny',\n    'a_week_ago' => 'týdnem|:count týdny|:count týdny',\n    'year_ago' => ':count rokem|:count roky|:count lety',\n    'y_ago' => ':count rok.|:count rok.|:count let.',\n    'a_year_ago' => 'rokem|:count roky|:count lety',\n\n    'month_before' => ':count měsícem|:count měsíci|:count měsíci',\n    'a_month_before' => 'měsícem|:count měsíci|:count měsíci',\n    'day_before' => ':count dnem|:count dny|:count dny',\n    'a_day_before' => 'dnem|:count dny|:count dny',\n    'week_before' => ':count týdnem|:count týdny|:count týdny',\n    'a_week_before' => 'týdnem|:count týdny|:count týdny',\n    'year_before' => ':count rokem|:count roky|:count lety',\n    'y_before' => ':count rok.|:count rok.|:count let.',\n    'a_year_before' => 'rokem|:count roky|:count lety',\n\n    'ago' => $pred,\n    'from_now' => $za,\n    'before' => $pred,\n    'after' => $za,\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'months' => ['ledna', 'února', 'března', 'dubna', 'května', 'června', 'července', 'srpna', 'září', 'října', 'listopadu', 'prosince'],\n    'months_standalone' => ['leden', 'únor', 'březen', 'duben', 'květen', 'červen', 'červenec', 'srpen', 'září', 'říjen', 'listopad', 'prosinec'],\n    'months_short' => ['led', 'úno', 'bře', 'dub', 'kvě', 'čvn', 'čvc', 'srp', 'zář', 'říj', 'lis', 'pro'],\n    'months_regexp' => '/(DD?o?\\.?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'],\n    'weekdays_short' => ['ned', 'pon', 'úte', 'stř', 'čtv', 'pát', 'sob'],\n    'weekdays_min' => ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],\n    'list' => [', ', ' a '],\n    'diff_now' => 'nyní',\n    'diff_yesterday' => 'včera',\n    'diff_tomorrow' => 'zítra',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD. MM. YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D. MMMM YYYY HH:mm',\n    ],\n    'meridiem' => ['dopoledne', 'odpoledne'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/cs_CZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/cs.php';\n"
  },
  {
    "path": "src/Carbon/Lang/csb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/csb_PL.php';\n"
  },
  {
    "path": "src/Carbon/Lang/csb_PL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - csb_PL locale Michal Ostrowski bug-glibc-locales@gnu.org\n */\nreturn [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'MMMM DD, YYYY',\n        'LLL' => 'DD MMM HH:mm',\n        'LLLL' => 'MMMM DD, YYYY HH:mm',\n    ],\n    'months' => ['stëcznika', 'gromicznika', 'strëmiannika', 'łżëkwiata', 'maja', 'czerwińca', 'lëpińca', 'zélnika', 'séwnika', 'rujana', 'lëstopadnika', 'gòdnika'],\n    'months_short' => ['stë', 'gro', 'str', 'łżë', 'maj', 'cze', 'lëp', 'zél', 'séw', 'ruj', 'lës', 'gòd'],\n    'weekdays' => ['niedzela', 'pòniedzôłk', 'wtórk', 'strzoda', 'czwiôrtk', 'piątk', 'sobòta'],\n    'weekdays_short' => ['nie', 'pòn', 'wtó', 'str', 'czw', 'pią', 'sob'],\n    'weekdays_min' => ['nie', 'pòn', 'wtó', 'str', 'czw', 'pią', 'sob'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' a téż '],\n    'two_words_connector' => ' a téż ',\n    'year' => ':count rok',\n    'month' => ':count miesiąc',\n    'week' => ':count tidzéń',\n    'day' => ':count dzéń',\n    'hour' => ':count gòdzëna',\n    'minute' => ':count minuta',\n    'second' => ':count sekunda',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/cu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],\n    'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'YYYY MMMM D, dddd HH:mm',\n    ],\n\n    'year' => ':count лѣто',\n    'y' => ':count лѣто',\n    'a_year' => ':count лѣто',\n\n    'month' => ':count мѣсѧць',\n    'm' => ':count мѣсѧць',\n    'a_month' => ':count мѣсѧць',\n\n    'week' => ':count сєдмица',\n    'w' => ':count сєдмица',\n    'a_week' => ':count сєдмица',\n\n    'day' => ':count дьнь',\n    'd' => ':count дьнь',\n    'a_day' => ':count дьнь',\n\n    'hour' => ':count година',\n    'h' => ':count година',\n    'a_hour' => ':count година',\n\n    'minute' => ':count малъ', // less reliable\n    'min' => ':count малъ', // less reliable\n    'a_minute' => ':count малъ', // less reliable\n\n    'second' => ':count въторъ',\n    's' => ':count въторъ',\n    'a_second' => ':count въторъ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/cv.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count ҫул',\n    'a_year' => '{1}пӗр ҫул|:count ҫул',\n    'month' => ':count уйӑх',\n    'a_month' => '{1}пӗр уйӑх|:count уйӑх',\n    'week' => ':count эрне',\n    'a_week' => '{1}пӗр эрне|:count эрне',\n    'day' => ':count кун',\n    'a_day' => '{1}пӗр кун|:count кун',\n    'hour' => ':count сехет',\n    'a_hour' => '{1}пӗр сехет|:count сехет',\n    'minute' => ':count минут',\n    'a_minute' => '{1}пӗр минут|:count минут',\n    'second' => ':count ҫеккунт',\n    'a_second' => '{1}пӗр-ик ҫеккунт|:count ҫеккунт',\n    'ago' => ':time каялла',\n    'from_now' => static function ($time) {\n        return $time.(preg_match('/сехет$/u', $time) ? 'рен' : (preg_match('/ҫул/', $time) ? 'тан' : 'ран'));\n    },\n    'diff_yesterday' => 'Ӗнер',\n    'diff_today' => 'Паян',\n    'diff_tomorrow' => 'Ыран',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD-MM-YYYY',\n        'LL' => 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',\n        'LLL' => 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',\n        'LLLL' => 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Паян] LT [сехетре]',\n        'nextDay' => '[Ыран] LT [сехетре]',\n        'nextWeek' => '[Ҫитес] dddd LT [сехетре]',\n        'lastDay' => '[Ӗнер] LT [сехетре]',\n        'lastWeek' => '[Иртнӗ] dddd LT [сехетре]',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number-мӗш',\n    'months' => ['кӑрлач', 'нарӑс', 'пуш', 'ака', 'май', 'ҫӗртме', 'утӑ', 'ҫурла', 'авӑн', 'юпа', 'чӳк', 'раштав'],\n    'months_short' => ['кӑр', 'нар', 'пуш', 'ака', 'май', 'ҫӗр', 'утӑ', 'ҫур', 'авн', 'юпа', 'чӳк', 'раш'],\n    'weekdays' => ['вырсарникун', 'тунтикун', 'ытларикун', 'юнкун', 'кӗҫнерникун', 'эрнекун', 'шӑматкун'],\n    'weekdays_short' => ['выр', 'тун', 'ытл', 'юн', 'кӗҫ', 'эрн', 'шӑм'],\n    'weekdays_min' => ['вр', 'тн', 'ыт', 'юн', 'кҫ', 'эр', 'шм'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' тата '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/cv_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/cv.php';\n"
  },
  {
    "path": "src/Carbon/Lang/cy.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - JD Isaacks\n * - Daniel Monaghan\n */\nreturn [\n    'year' => '{1}:count flwyddyn|[-Inf,Inf]:count flynedd',\n    'a_year' => '{1}blwyddyn|[-Inf,Inf]:count flynedd',\n    'y' => ':countbl',\n    'month' => ':count mis',\n    'a_month' => '{1}mis|[-Inf,Inf]:count mis',\n    'm' => ':countmi',\n    'week' => ':count wythnos',\n    'a_week' => '{1}wythnos|[-Inf,Inf]:count wythnos',\n    'w' => ':countw',\n    'day' => ':count diwrnod',\n    'a_day' => '{1}diwrnod|[-Inf,Inf]:count diwrnod',\n    'd' => ':countd',\n    'hour' => ':count awr',\n    'a_hour' => '{1}awr|[-Inf,Inf]:count awr',\n    'h' => ':counth',\n    'minute' => ':count munud',\n    'a_minute' => '{1}munud|[-Inf,Inf]:count munud',\n    'min' => ':countm',\n    'second' => ':count eiliad',\n    'a_second' => '{0,1}ychydig eiliadau|[-Inf,Inf]:count eiliad',\n    's' => ':counts',\n    'ago' => ':time yn ôl',\n    'from_now' => 'mewn :time',\n    'after' => ':time ar ôl',\n    'before' => ':time o\\'r blaen',\n    'diff_now' => 'nawr',\n    'diff_today' => 'Heddiw',\n    'diff_today_regexp' => 'Heddiw(?:\\\\s+am)?',\n    'diff_yesterday' => 'ddoe',\n    'diff_yesterday_regexp' => 'Ddoe(?:\\\\s+am)?',\n    'diff_tomorrow' => 'yfory',\n    'diff_tomorrow_regexp' => 'Yfory(?:\\\\s+am)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Heddiw am] LT',\n        'nextDay' => '[Yfory am] LT',\n        'nextWeek' => 'dddd [am] LT',\n        'lastDay' => '[Ddoe am] LT',\n        'lastWeek' => 'dddd [diwethaf am] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        return $number.(\n            $number > 20\n                ? (\\in_array((int) $number, [40, 50, 60, 80, 100], true) ? 'fed' : 'ain')\n                : ([\n                    '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed\n                    'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed', // 11eg to 20fed\n                ])[$number] ?? ''\n        );\n    },\n    'months' => ['Ionawr', 'Chwefror', 'Mawrth', 'Ebrill', 'Mai', 'Mehefin', 'Gorffennaf', 'Awst', 'Medi', 'Hydref', 'Tachwedd', 'Rhagfyr'],\n    'months_short' => ['Ion', 'Chwe', 'Maw', 'Ebr', 'Mai', 'Meh', 'Gor', 'Aws', 'Med', 'Hyd', 'Tach', 'Rhag'],\n    'weekdays' => ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'],\n    'weekdays_short' => ['Sul', 'Llun', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'],\n    'weekdays_min' => ['Su', 'Ll', 'Ma', 'Me', 'Ia', 'Gw', 'Sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' a '],\n    'meridiem' => ['yb', 'yh'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/cy_GB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/cy.php';\n"
  },
  {
    "path": "src/Carbon/Lang/da.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Rune Mønnike\n * - François B\n * - codenhagen\n * - JD Isaacks\n * - Jens Herlevsen\n * - Ulrik McArdle (mcardle)\n * - Frederik Sauer (FrittenKeeZ)\n * - Janus Bahs Jacquet (kokoshneta)\n */\nreturn [\n    'year' => ':count år|:count år',\n    'a_year' => 'et år|:count år',\n    'y' => ':count år|:count år',\n    'month' => ':count måned|:count måneder',\n    'a_month' => 'en måned|:count måneder',\n    'm' => ':count mdr.',\n    'week' => ':count uge|:count uger',\n    'a_week' => 'en uge|:count uger',\n    'w' => ':count u.',\n    'day' => ':count dag|:count dage',\n    'a_day' => ':count dag|:count dage',\n    'd' => ':count d.',\n    'hour' => ':count time|:count timer',\n    'a_hour' => 'en time|:count timer',\n    'h' => ':count t.',\n    'minute' => ':count minut|:count minutter',\n    'a_minute' => 'et minut|:count minutter',\n    'min' => ':count min.',\n    'second' => ':count sekund|:count sekunder',\n    'a_second' => 'få sekunder|:count sekunder',\n    's' => ':count s.',\n    'ago' => 'for :time siden',\n    'from_now' => 'om :time',\n    'after' => ':time efter',\n    'before' => ':time før',\n    'diff_now' => 'nu',\n    'diff_today' => 'i dag',\n    'diff_today_regexp' => 'i dag(?:\\\\s+kl.)?',\n    'diff_yesterday' => 'i går',\n    'diff_yesterday_regexp' => 'i går(?:\\\\s+kl.)?',\n    'diff_tomorrow' => 'i morgen',\n    'diff_tomorrow_regexp' => 'i morgen(?:\\\\s+kl.)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[i dag kl.] LT',\n        'nextDay' => '[i morgen kl.] LT',\n        'nextWeek' => 'på dddd [kl.] LT',\n        'lastDay' => '[i går kl.] LT',\n        'lastWeek' => '[i] dddd[s kl.] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['januar', 'februar', 'marts', 'april', 'maj', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'december'],\n    'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj', 'jun.', 'jul.', 'aug.', 'sep.', 'okt.', 'nov.', 'dec.'],\n    'weekdays' => ['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag'],\n    'weekdays_short' => ['søn.', 'man.', 'tir.', 'ons.', 'tor.', 'fre.', 'lør.'],\n    'weekdays_min' => ['sø.', 'ma.', 'ti.', 'on.', 'to.', 'fr.', 'lø.'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' og '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/da_DK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/da.php';\n"
  },
  {
    "path": "src/Carbon/Lang/da_GL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/da.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D. MMM YYYY',\n        'LLL' => 'D. MMMM YYYY HH.mm',\n        'LLLL' => 'dddd [den] D. MMMM YYYY HH.mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/dav.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['Luma lwa K', 'luma lwa p'],\n    'weekdays' => ['Ituku ja jumwa', 'Kuramuka jimweri', 'Kuramuka kawi', 'Kuramuka kadadu', 'Kuramuka kana', 'Kuramuka kasanu', 'Kifula nguwo'],\n    'weekdays_short' => ['Jum', 'Jim', 'Kaw', 'Kad', 'Kan', 'Kas', 'Ngu'],\n    'weekdays_min' => ['Jum', 'Jim', 'Kaw', 'Kad', 'Kan', 'Kas', 'Ngu'],\n    'months' => ['Mori ghwa imbiri', 'Mori ghwa kawi', 'Mori ghwa kadadu', 'Mori ghwa kana', 'Mori ghwa kasanu', 'Mori ghwa karandadu', 'Mori ghwa mfungade', 'Mori ghwa wunyanya', 'Mori ghwa ikenda', 'Mori ghwa ikumi', 'Mori ghwa ikumi na imweri', 'Mori ghwa ikumi na iwi'],\n    'months_short' => ['Imb', 'Kaw', 'Kad', 'Kan', 'Kas', 'Kar', 'Mfu', 'Wun', 'Ike', 'Iku', 'Imw', 'Iwi'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/de.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Michael Hohl\n * - sheriffmarley\n * - dennisoderwald\n * - Timo\n * - Karag2006\n * - Pete Scopes (pdscopes)\n */\nreturn [\n    'year' => ':count Jahr|:count Jahre',\n    'a_year' => 'ein Jahr|:count Jahre',\n    'y' => ':count J.',\n    'month' => ':count Monat|:count Monate',\n    'a_month' => 'ein Monat|:count Monate',\n    'm' => ':count Mon.',\n    'week' => ':count Woche|:count Wochen',\n    'a_week' => 'eine Woche|:count Wochen',\n    'w' => ':count Wo.',\n    'day' => ':count Tag|:count Tage',\n    'a_day' => 'ein Tag|:count Tage',\n    'd' => ':count Tg.',\n    'hour' => ':count Stunde|:count Stunden',\n    'a_hour' => 'eine Stunde|:count Stunden',\n    'h' => ':count Std.',\n    'minute' => ':count Minute|:count Minuten',\n    'a_minute' => 'eine Minute|:count Minuten',\n    'min' => ':count Min.',\n    'second' => ':count Sekunde|:count Sekunden',\n    'a_second' => 'ein paar Sekunden|:count Sekunden',\n    's' => ':count Sek.',\n    'millisecond' => ':count Millisekunde|:count Millisekunden',\n    'a_millisecond' => 'eine Millisekunde|:count Millisekunden',\n    'ms' => ':countms',\n    'microsecond' => ':count Mikrosekunde|:count Mikrosekunden',\n    'a_microsecond' => 'eine Mikrosekunde|:count Mikrosekunden',\n    'µs' => ':countµs',\n    'ago' => 'vor :time',\n    'from_now' => 'in :time',\n    'after' => ':time später',\n    'before' => ':time zuvor',\n\n    'year_from_now' => ':count Jahr|:count Jahren',\n    'month_from_now' => ':count Monat|:count Monaten',\n    'week_from_now' => ':count Woche|:count Wochen',\n    'day_from_now' => ':count Tag|:count Tagen',\n    'year_ago' => ':count Jahr|:count Jahren',\n    'month_ago' => ':count Monat|:count Monaten',\n    'week_ago' => ':count Woche|:count Wochen',\n    'day_ago' => ':count Tag|:count Tagen',\n    'a_year_from_now' => 'ein Jahr|:count Jahren',\n    'a_month_from_now' => 'ein Monat|:count Monaten',\n    'a_week_from_now' => 'eine Woche|:count Wochen',\n    'a_day_from_now' => 'ein Tag|:count Tagen',\n    'a_year_ago' => 'ein Jahr|:count Jahren',\n    'a_month_ago' => 'ein Monat|:count Monaten',\n    'a_week_ago' => 'eine Woche|:count Wochen',\n    'a_day_ago' => 'ein Tag|:count Tagen',\n\n    'diff_now' => 'Gerade eben',\n    'diff_today' => 'heute',\n    'diff_today_regexp' => 'heute(?:\\\\s+um)?',\n    'diff_yesterday' => 'Gestern',\n    'diff_yesterday_regexp' => 'gestern(?:\\\\s+um)?',\n    'diff_tomorrow' => 'Morgen',\n    'diff_tomorrow_regexp' => 'morgen(?:\\\\s+um)?',\n    'diff_before_yesterday' => 'Vorgestern',\n    'diff_after_tomorrow' => 'Übermorgen',\n\n    'period_recurrences' => 'einmal|:count mal',\n    'period_interval' => static function (string $interval = '') {\n        /** @var string $output */\n        $output = preg_replace('/^(ein|eine|1)\\s+/u', '', $interval);\n\n        if (preg_match('/^(ein|1)( Monat| Mon.| Tag| Tg.)/u', $interval)) {\n            return \"jeden $output\";\n        }\n\n        if (preg_match('/^(ein|1)( Jahr| J.)/u', $interval)) {\n            return \"jedes $output\";\n        }\n\n        return \"jede $output\";\n    },\n    'period_start_date' => 'von :date',\n    'period_end_date' => 'bis :date',\n\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY HH:mm',\n    ],\n\n    'calendar' => [\n        'sameDay' => '[heute um] LT [Uhr]',\n        'nextDay' => '[morgen um] LT [Uhr]',\n        'nextWeek' => 'dddd [um] LT [Uhr]',\n        'lastDay' => '[gestern um] LT [Uhr]',\n        'lastWeek' => '[letzten] dddd [um] LT [Uhr]',\n        'sameElse' => 'L',\n    ],\n\n    'months' => ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],\n    'months_short' => ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],\n    'weekdays' => ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],\n    'weekdays_short' => ['So.', 'Mo.', 'Di.', 'Mi.', 'Do.', 'Fr.', 'Sa.'],\n    'weekdays_min' => ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],\n    'ordinal' => ':number.',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' und '],\n    'ordinal_words' => [\n        'of' => 'im',\n        'first' => 'erster',\n        'second' => 'zweiter',\n        'third' => 'dritter',\n        'fourth' => 'vierten',\n        'fifth' => 'fünfter',\n        'last' => 'letzten',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/de_AT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - sheriffmarley\n * - Timo\n * - Michael Hohl\n * - Namoshek\n * - Bernhard Baumrock (BernhardBaumrock)\n */\nreturn array_replace_recursive(require __DIR__.'/de.php', [\n    'months' => [\n        0 => 'Jänner',\n    ],\n    'months_short' => [\n        0 => 'Jän',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/de_BE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/de.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/de_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - sheriffmarley\n * - Timo\n * - Michael Hohl\n */\nreturn array_replace_recursive(require __DIR__.'/de.php', [\n    'weekdays_short' => ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/de_DE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.    bug-glibc-locales@gnu.org\n */\nreturn require __DIR__.'/de.php';\n"
  },
  {
    "path": "src/Carbon/Lang/de_IT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Matthias Dieter Wallno:fer libc-locales@sourceware.org\n */\nreturn require __DIR__.'/de.php';\n"
  },
  {
    "path": "src/Carbon/Lang/de_LI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/de.php';\n"
  },
  {
    "path": "src/Carbon/Lang/de_LU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/de.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/dje.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Subbaahi', 'Zaarikay b'],\n    'weekdays' => ['Alhadi', 'Atinni', 'Atalaata', 'Alarba', 'Alhamisi', 'Alzuma', 'Asibti'],\n    'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'],\n    'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'],\n    'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'],\n    'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count hari', // less reliable\n    'y' => ':count hari', // less reliable\n    'a_year' => ':count hari', // less reliable\n\n    'week' => ':count alzuma', // less reliable\n    'w' => ':count alzuma', // less reliable\n    'a_week' => ':count alzuma', // less reliable\n\n    'second' => ':count atinni', // less reliable\n    's' => ':count atinni', // less reliable\n    'a_second' => ':count atinni', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/doi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/doi_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/doi_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat Pune    libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फरवरी', 'मार्च', 'एप्रैल', 'मेई', 'जून', 'जूलै', 'अगस्त', 'सितंबर', 'अक्तूबर', 'नवंबर', 'दिसंबर'],\n    'months_short' => ['जनवरी', 'फरवरी', 'मार्च', 'एप्रैल', 'मेई', 'जून', 'जूलै', 'अगस्त', 'सितंबर', 'अक्तूबर', 'नवंबर', 'दिसंबर'],\n    'weekdays' => ['ऐतबार', 'सोमबार', 'मंगलबर', 'बुधबार', 'बीरबार', 'शुक्करबार', 'श्नीचरबार'],\n    'weekdays_short' => ['ऐत', 'सोम', 'मंगल', 'बुध', 'बीर', 'शुक्कर', 'श्नीचर'],\n    'weekdays_min' => ['ऐत', 'सोम', 'मंगल', 'बुध', 'बीर', 'शुक्कर', 'श्नीचर'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['सञं', 'सबेर'],\n\n    'second' => ':count सङार', // less reliable\n    's' => ':count सङार', // less reliable\n    'a_second' => ':count सङार', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/dsb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/dsb_DE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/dsb_DE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Information from Michael Wolf    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'DD. MMMM YYYY',\n        'LLL' => 'DD. MMMM, HH:mm [góź.]',\n        'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [góź.]',\n    ],\n    'months' => ['januara', 'februara', 'měrca', 'apryla', 'maja', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'],\n    'months_short' => ['Jan', 'Feb', 'Měr', 'Apr', 'Maj', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'],\n    'weekdays' => ['Njeźela', 'Pónjeźele', 'Wałtora', 'Srjoda', 'Stwórtk', 'Pětk', 'Sobota'],\n    'weekdays_short' => ['Nj', 'Pó', 'Wa', 'Sr', 'St', 'Pě', 'So'],\n    'weekdays_min' => ['Nj', 'Pó', 'Wa', 'Sr', 'St', 'Pě', 'So'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count lěto',\n    'y' => ':count lěto',\n    'a_year' => ':count lěto',\n\n    'month' => ':count mjasec',\n    'm' => ':count mjasec',\n    'a_month' => ':count mjasec',\n\n    'week' => ':count tyźeń',\n    'w' => ':count tyźeń',\n    'a_week' => ':count tyźeń',\n\n    'day' => ':count źeń',\n    'd' => ':count źeń',\n    'a_day' => ':count źeń',\n\n    'hour' => ':count góźina',\n    'h' => ':count góźina',\n    'a_hour' => ':count góźina',\n\n    'minute' => ':count minuta',\n    'min' => ':count minuta',\n    'a_minute' => ':count minuta',\n\n    'second' => ':count drugi',\n    's' => ':count drugi',\n    'a_second' => ':count drugi',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/dua.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['idiɓa', 'ebyámu'],\n    'weekdays' => ['éti', 'mɔ́sú', 'kwasú', 'mukɔ́sú', 'ŋgisú', 'ɗónɛsú', 'esaɓasú'],\n    'weekdays_short' => ['ét', 'mɔ́s', 'kwa', 'muk', 'ŋgi', 'ɗón', 'esa'],\n    'weekdays_min' => ['ét', 'mɔ́s', 'kwa', 'muk', 'ŋgi', 'ɗón', 'esa'],\n    'months' => ['dimɔ́di', 'ŋgɔndɛ', 'sɔŋɛ', 'diɓáɓá', 'emiasele', 'esɔpɛsɔpɛ', 'madiɓɛ́díɓɛ́', 'diŋgindi', 'nyɛtɛki', 'mayésɛ́', 'tiníní', 'eláŋgɛ́'],\n    'months_short' => ['di', 'ŋgɔn', 'sɔŋ', 'diɓ', 'emi', 'esɔ', 'mad', 'diŋ', 'nyɛt', 'may', 'tin', 'elá'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count ma mbu', // less reliable\n    'y' => ':count ma mbu', // less reliable\n    'a_year' => ':count ma mbu', // less reliable\n\n    'month' => ':count myo̱di', // less reliable\n    'm' => ':count myo̱di', // less reliable\n    'a_month' => ':count myo̱di', // less reliable\n\n    'week' => ':count woki', // less reliable\n    'w' => ':count woki', // less reliable\n    'a_week' => ':count woki', // less reliable\n\n    'day' => ':count buńa', // less reliable\n    'd' => ':count buńa', // less reliable\n    'a_day' => ':count buńa', // less reliable\n\n    'hour' => ':count ma awa', // less reliable\n    'h' => ':count ma awa', // less reliable\n    'a_hour' => ':count ma awa', // less reliable\n\n    'minute' => ':count minuti', // less reliable\n    'min' => ':count minuti', // less reliable\n    'a_minute' => ':count minuti', // less reliable\n\n    'second' => ':count maba', // less reliable\n    's' => ':count maba', // less reliable\n    'a_second' => ':count maba', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/dv.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n$months = [\n    'ޖަނަވަރީ',\n    'ފެބުރުވަރީ',\n    'މާރިޗު',\n    'އެޕްރީލް',\n    'މޭ',\n    'ޖޫން',\n    'ޖުލައި',\n    'އޮގަސްޓު',\n    'ސެޕްޓެންބަރު',\n    'އޮކްޓޫބަރު',\n    'ނޮވެންބަރު',\n    'ޑިސެންބަރު',\n];\n\n$weekdays = [\n    'އާދިއްތަ',\n    'ހޯމަ',\n    'އަންގާރަ',\n    'ބުދަ',\n    'ބުރާސްފަތި',\n    'ހުކުރު',\n    'ހޮނިހިރު',\n];\n\n/*\n * Authors:\n * - Josh Soref\n * - Jawish Hameed\n * - Saiph Muhammad\n */\nreturn [\n    'year' => ':count '.'އަހަރު',\n    'a_year' => '{1}'.'އަހަރެއް'.'|:count '.'އަހަރު',\n    'month' => ':count '.'މަސް',\n    'a_month' => '{1}'.'މަހެއް'.'|:count '.'މަސް',\n    'week' => ':count '.'ހަފްތާ',\n    'a_week' => '{1}'.'ސިކުންތުކޮޅެއް'.'|:count '.'ހަފްތާ',\n    'day' => ':count '.'ދުވަސް',\n    'a_day' => '{1}'.'ދުވަހެއް'.'|:count '.'ދުވަސް',\n    'hour' => ':count '.'ގަޑިއިރު',\n    'a_hour' => '{1}'.'ގަޑިއިރެއް'.'|:count '.'ގަޑިއިރު',\n    'minute' => ':count '.'މިނިޓު',\n    'a_minute' => '{1}'.'މިނިޓެއް'.'|:count '.'މިނިޓު',\n    'second' => ':count '.'ސިކުންތު',\n    'a_second' => '{1}'.'ސިކުންތުކޮޅެއް'.'|:count '.'ސިކުންތު',\n    'ago' => 'ކުރިން :time',\n    'from_now' => 'ތެރޭގައި :time',\n    'after' => ':time ފަހުން',\n    'before' => ':time ކުރި',\n    'diff_yesterday' => 'އިއްޔެ',\n    'diff_today' => 'މިއަދު',\n    'diff_tomorrow' => 'މާދަމާ',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[މިއަދު] LT',\n        'nextDay' => '[މާދަމާ] LT',\n        'nextWeek' => 'dddd LT',\n        'lastDay' => '[އިއްޔެ] LT',\n        'lastWeek' => '[ފާއިތުވި] dddd LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['މކ', 'މފ'],\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => $weekdays,\n    'weekdays_short' => $weekdays,\n    'weekdays_min' => ['އާދި', 'ހޯމަ', 'އަން', 'ބުދަ', 'ބުރާ', 'ހުކު', 'ހޮނި'],\n    'list' => [', ', ' އަދި '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/dv_MV.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ahmed Ali\n */\n\n$months = [\n    'ޖެނުއަރީ',\n    'ފެބްރުއަރީ',\n    'މާރިޗު',\n    'އޭޕްރީލު',\n    'މޭ',\n    'ޖޫން',\n    'ޖުލައި',\n    'އޯގަސްޓު',\n    'ސެޕްޓެމްބަރު',\n    'އޮކްޓޯބަރު',\n    'ނޮވެމްބަރު',\n    'ޑިސެމްބަރު',\n];\n\n$weekdays = [\n    'އާދިއްތަ',\n    'ހޯމަ',\n    'އަންގާރަ',\n    'ބުދަ',\n    'ބުރާސްފަތި',\n    'ހުކުރު',\n    'ހޮނިހިރު',\n];\n\nreturn [\n    'year' => '{0}އަހަރެއް|[1,Inf]:count އަހަރު',\n    'y' => '{0}އަހަރެއް|[1,Inf]:count އަހަރު',\n    'month' => '{0}މައްސަރެއް|[1,Inf]:count މަސް',\n    'm' => '{0}މައްސަރެއް|[1,Inf]:count މަސް',\n    'week' => '{0}ހަފްތާއެއް|[1,Inf]:count ހަފްތާ',\n    'w' => '{0}ހަފްތާއެއް|[1,Inf]:count ހަފްތާ',\n    'day' => '{0}ދުވަސް|[1,Inf]:count ދުވަސް',\n    'd' => '{0}ދުވަސް|[1,Inf]:count ދުވަސް',\n    'hour' => '{0}ގަޑިއިރެއް|[1,Inf]:count ގަޑި',\n    'h' => '{0}ގަޑިއިރެއް|[1,Inf]:count ގަޑި',\n    'minute' => '{0}މިނެޓެއް|[1,Inf]:count މިނެޓް',\n    'min' => '{0}މިނެޓެއް|[1,Inf]:count މިނެޓް',\n    'second' => '{0}ސިކުންތެއް|[1,Inf]:count ސިކުންތު',\n    's' => '{0}ސިކުންތެއް|[1,Inf]:count ސިކުންތު',\n    'ago' => ':time ކުރިން',\n    'from_now' => ':time ފަހުން',\n    'after' => ':time ފަހުން',\n    'before' => ':time ކުރި',\n    'diff_yesterday' => 'އިއްޔެ',\n    'diff_today' => 'މިއަދު',\n    'diff_tomorrow' => 'މާދަމާ',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[މިއަދު] LT',\n        'nextDay' => '[މާދަމާ] LT',\n        'nextWeek' => 'dddd LT',\n        'lastDay' => '[އިއްޔެ] LT',\n        'lastWeek' => '[ފާއިތުވި] dddd LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['މކ', 'މފ'],\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => $weekdays,\n    'weekdays_short' => $weekdays,\n    'weekdays_min' => ['އާދި', 'ހޯމަ', 'އަން', 'ބުދަ', 'ބުރާ', 'ހުކު', 'ހޮނި'],\n    'list' => [', ', ' އަދި '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/dyo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['Dimas', 'Teneŋ', 'Talata', 'Alarbay', 'Aramisay', 'Arjuma', 'Sibiti'],\n    'weekdays_short' => ['Dim', 'Ten', 'Tal', 'Ala', 'Ara', 'Arj', 'Sib'],\n    'weekdays_min' => ['Dim', 'Ten', 'Tal', 'Ala', 'Ara', 'Arj', 'Sib'],\n    'months' => ['Sanvie', 'Fébirie', 'Mars', 'Aburil', 'Mee', 'Sueŋ', 'Súuyee', 'Ut', 'Settembar', 'Oktobar', 'Novembar', 'Disambar'],\n    'months_short' => ['Sa', 'Fe', 'Ma', 'Ab', 'Me', 'Su', 'Sú', 'Ut', 'Se', 'Ok', 'No', 'De'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/dz.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/dz_BT.php';\n"
  },
  {
    "path": "src/Carbon/Lang/dz_BT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Sherubtse College    bug-glibc@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'པསྱི་ལོYYཟལMMཚེསDD',\n    ],\n    'months' => ['ཟླ་བ་དང་པ་', 'ཟླ་བ་གཉིས་པ་', 'ཟླ་བ་གསུམ་པ་', 'ཟླ་བ་བཞི་པ་', 'ཟླ་བ་ལྔ་ཕ་', 'ཟླ་བ་དྲུག་པ་', 'ཟླ་བ་བདུནཔ་', 'ཟླ་བ་བརྒྱད་པ་', 'ཟླ་བ་དགུ་པ་', 'ཟླ་བ་བཅུ་པ་', 'ཟླ་བ་བཅུ་གཅིག་པ་', 'ཟླ་བ་བཅུ་གཉིས་པ་'],\n    'months_short' => ['ཟླ་༡', 'ཟླ་༢', 'ཟླ་༣', 'ཟླ་༤', 'ཟླ་༥', 'ཟླ་༦', 'ཟླ་༧', 'ཟླ་༨', 'ཟླ་༩', 'ཟླ་༡༠', 'ཟླ་༡༡', 'ཟླ་༡༢'],\n    'weekdays' => ['གཟའ་ཟླ་བ་', 'གཟའ་མིག་དམར་', 'གཟའ་ལྷག་ཕ་', 'གཟའ་པུར་བུ་', 'གཟའ་པ་སངས་', 'གཟའ་སྤེན་ཕ་', 'གཟའ་ཉི་མ་'],\n    'weekdays_short' => ['ཟླ་', 'མིར་', 'ལྷག་', 'པུར་', 'སངས་', 'སྤེན་', 'ཉི་'],\n    'weekdays_min' => ['ཟླ་', 'མིར་', 'ལྷག་', 'པུར་', 'སངས་', 'སྤེན་', 'ཉི་'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ངས་ཆ', 'ཕྱི་ཆ'],\n\n    'year' => ':count ཆརཔ', // less reliable\n    'y' => ':count ཆརཔ', // less reliable\n    'a_year' => ':count ཆརཔ', // less reliable\n\n    'month' => ':count ཟླ་བ', // less reliable\n    'm' => ':count ཟླ་བ', // less reliable\n    'a_month' => ':count ཟླ་བ', // less reliable\n\n    'day' => ':count ཉི', // less reliable\n    'd' => ':count ཉི', // less reliable\n    'a_day' => ':count ཉི', // less reliable\n\n    'second' => ':count ཆ', // less reliable\n    's' => ':count ཆ', // less reliable\n    'a_second' => ':count ཆ', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ebu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['KI', 'UT'],\n    'weekdays' => ['Kiumia', 'Njumatatu', 'Njumaine', 'Njumatano', 'Aramithi', 'Njumaa', 'NJumamothii'],\n    'weekdays_short' => ['Kma', 'Tat', 'Ine', 'Tan', 'Arm', 'Maa', 'NMM'],\n    'weekdays_min' => ['Kma', 'Tat', 'Ine', 'Tan', 'Arm', 'Maa', 'NMM'],\n    'months' => ['Mweri wa mbere', 'Mweri wa kaĩri', 'Mweri wa kathatũ', 'Mweri wa kana', 'Mweri wa gatano', 'Mweri wa gatantatũ', 'Mweri wa mũgwanja', 'Mweri wa kanana', 'Mweri wa kenda', 'Mweri wa ikũmi', 'Mweri wa ikũmi na ũmwe', 'Mweri wa ikũmi na Kaĩrĩ'],\n    'months_short' => ['Mbe', 'Kai', 'Kat', 'Kan', 'Gat', 'Gan', 'Mug', 'Knn', 'Ken', 'Iku', 'Imw', 'Igi'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ee.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['ŋ', 'ɣ'],\n    'weekdays' => ['kɔsiɖa', 'dzoɖa', 'blaɖa', 'kuɖa', 'yawoɖa', 'fiɖa', 'memleɖa'],\n    'weekdays_short' => ['kɔs', 'dzo', 'bla', 'kuɖ', 'yaw', 'fiɖ', 'mem'],\n    'weekdays_min' => ['kɔs', 'dzo', 'bla', 'kuɖ', 'yaw', 'fiɖ', 'mem'],\n    'months' => ['dzove', 'dzodze', 'tedoxe', 'afɔfĩe', 'dama', 'masa', 'siamlɔm', 'deasiamime', 'anyɔnyɔ', 'kele', 'adeɛmekpɔxe', 'dzome'],\n    'months_short' => ['dzv', 'dzd', 'ted', 'afɔ', 'dam', 'mas', 'sia', 'dea', 'any', 'kel', 'ade', 'dzm'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'a [ga] h:mm',\n        'LTS' => 'a [ga] h:mm:ss',\n        'L' => 'M/D/YYYY',\n        'LL' => 'MMM D [lia], YYYY',\n        'LLL' => 'a [ga] h:mm MMMM D [lia] YYYY',\n        'LLLL' => 'a [ga] h:mm dddd, MMMM D [lia] YYYY',\n    ],\n\n    'year' => 'ƒe :count',\n    'y' => 'ƒe :count',\n    'a_year' => 'ƒe :count',\n\n    'month' => 'ɣleti :count',\n    'm' => 'ɣleti :count',\n    'a_month' => 'ɣleti :count',\n\n    'week' => 'kwasiɖa :count',\n    'w' => 'kwasiɖa :count',\n    'a_week' => 'kwasiɖa :count',\n\n    'day' => 'ŋkeke :count',\n    'd' => 'ŋkeke :count',\n    'a_day' => 'ŋkeke :count',\n\n    'hour' => 'gaƒoƒo :count',\n    'h' => 'gaƒoƒo :count',\n    'a_hour' => 'gaƒoƒo :count',\n\n    'minute' => 'miniti :count', // less reliable\n    'min' => 'miniti :count', // less reliable\n    'a_minute' => 'miniti :count', // less reliable\n\n    'second' => 'sɛkɛnd :count', // less reliable\n    's' => 'sɛkɛnd :count', // less reliable\n    'a_second' => 'sɛkɛnd :count', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ee_TG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ee.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'LLL' => 'HH:mm MMMM D [lia] YYYY',\n        'LLLL' => 'HH:mm dddd, MMMM D [lia] YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/el.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Alessandro Di Felice\n * - François B\n * - Tim Fish\n * - Gabriel Monteagudo\n * - JD Isaacks\n * - yiannisdesp\n * - Ilias Kasmeridis (iliaskasm)\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count χρόνος|:count χρόνια',\n    'a_year' => 'ένας χρόνος|:count χρόνια',\n    'y' => ':count χρ.',\n    'month' => ':count μήνας|:count μήνες',\n    'a_month' => 'ένας μήνας|:count μήνες',\n    'm' => ':count μήν.',\n    'week' => ':count εβδομάδα|:count εβδομάδες',\n    'a_week' => 'μια εβδομάδα|:count εβδομάδες',\n    'w' => ':count εβδ.',\n    'day' => ':count μέρα|:count μέρες',\n    'a_day' => 'μία μέρα|:count μέρες',\n    'd' => ':count μέρ.',\n    'hour' => ':count ώρα|:count ώρες',\n    'a_hour' => 'μία ώρα|:count ώρες',\n    'h' => ':count ώρα|:count ώρες',\n    'minute' => ':count λεπτό|:count λεπτά',\n    'a_minute' => 'ένα λεπτό|:count λεπτά',\n    'min' => ':count λεπ.',\n    'second' => ':count δευτερόλεπτο|:count δευτερόλεπτα',\n    'a_second' => 'λίγα δευτερόλεπτα|:count δευτερόλεπτα',\n    's' => ':count δευ.',\n\n    'ago' => 'πριν :time',\n    'from_now' => 'σε :time',\n    'after' => ':time μετά',\n    'before' => ':time πριν',\n\n    'year_ago' => ':count χρόνο|:count χρόνια',\n    'year_from_now' => ':count χρόνο|:count χρόνια',\n    'month_ago' => ':count μήνα|:count μήνες',\n    'month_from_now' => ':count μήνα|:count μήνες',\n\n    'diff_now' => 'τώρα',\n    'diff_today' => 'Σήμερα',\n    'diff_today_regexp' => 'Σήμερα(?:\\\\s+{})?',\n    'diff_yesterday' => 'χθες',\n    'diff_yesterday_regexp' => 'Χθες(?:\\\\s+{})?',\n    'diff_tomorrow' => 'αύριο',\n    'diff_tomorrow_regexp' => 'Αύριο(?:\\\\s+{})?',\n\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm A',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm A',\n    ],\n    'calendar' => [\n        'sameDay' => '[Σήμερα {}] LT',\n        'nextDay' => '[Αύριο {}] LT',\n        'nextWeek' => 'dddd [{}] LT',\n        'lastDay' => '[Χθες {}] LT',\n        'lastWeek' => static fn (CarbonInterface $current) => match ($current->dayOfWeek) {\n            6 => '[το προηγούμενο] dddd [{}] LT',\n            default => '[την προηγούμενη] dddd [{}] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberη',\n    'meridiem' => ['ΠΜ', 'ΜΜ', 'πμ', 'μμ'],\n    'months' => ['Ιανουαρίου', 'Φεβρουαρίου', 'Μαρτίου', 'Απριλίου', 'Μαΐου', 'Ιουνίου', 'Ιουλίου', 'Αυγούστου', 'Σεπτεμβρίου', 'Οκτωβρίου', 'Νοεμβρίου', 'Δεκεμβρίου'],\n    'months_standalone' => ['Ιανουάριος', 'Φεβρουάριος', 'Μάρτιος', 'Απρίλιος', 'Μάιος', 'Ιούνιος', 'Ιούλιος', 'Αύγουστος', 'Σεπτέμβριος', 'Οκτώβριος', 'Νοέμβριος', 'Δεκέμβριος'],\n    'months_regexp' => '/(D[oD]?[\\s,]+MMMM|L{2,4}|l{2,4})/',\n    'months_short' => ['Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαϊ', 'Ιουν', 'Ιουλ', 'Αυγ', 'Σεπ', 'Οκτ', 'Νοε', 'Δεκ'],\n    'weekdays' => ['Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο'],\n    'weekdays_short' => ['Κυρ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'],\n    'weekdays_min' => ['Κυ', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' και '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/el_CY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Greek Debian Translation Team    bug-glibc@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/el.php', [\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/el_GR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/el.php', [\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Milos Sakovic\n * - Paul\n * - Pete Scopes (pdscopes)\n */\nreturn [\n    /*\n     * {1}, {0} and [-Inf,Inf] are not needed as it's the default for English pluralization.\n     * But as some languages are using en.php as a fallback, it's better to specify it\n     * explicitly so those languages also fallback to English pluralization when a unit\n     * is missing.\n     */\n    'year' => '{1}:count year|{0}:count years|[-Inf,Inf]:count years',\n    'a_year' => '{1}a year|{0}:count years|[-Inf,Inf]:count years',\n    'y' => '{1}:countyr|{0}:countyrs|[-Inf,Inf]:countyrs',\n    'month' => '{1}:count month|{0}:count months|[-Inf,Inf]:count months',\n    'a_month' => '{1}a month|{0}:count months|[-Inf,Inf]:count months',\n    'm' => '{1}:countmo|{0}:countmos|[-Inf,Inf]:countmos',\n    'week' => '{1}:count week|{0}:count weeks|[-Inf,Inf]:count weeks',\n    'a_week' => '{1}a week|{0}:count weeks|[-Inf,Inf]:count weeks',\n    'w' => ':countw',\n    'day' => '{1}:count day|{0}:count days|[-Inf,Inf]:count days',\n    'a_day' => '{1}a day|{0}:count days|[-Inf,Inf]:count days',\n    'd' => ':countd',\n    'hour' => '{1}:count hour|{0}:count hours|[-Inf,Inf]:count hours',\n    'a_hour' => '{1}an hour|{0}:count hours|[-Inf,Inf]:count hours',\n    'h' => ':counth',\n    'minute' => '{1}:count minute|{0}:count minutes|[-Inf,Inf]:count minutes',\n    'a_minute' => '{1}a minute|{0}:count minutes|[-Inf,Inf]:count minutes',\n    'min' => ':countm',\n    'second' => '{1}:count second|{0}:count seconds|[-Inf,Inf]:count seconds',\n    'a_second' => '{0,1}a few seconds|[-Inf,Inf]:count seconds',\n    's' => ':counts',\n    'millisecond' => '{1}:count millisecond|{0}:count milliseconds|[-Inf,Inf]:count milliseconds',\n    'a_millisecond' => '{1}a millisecond|{0}:count milliseconds|[-Inf,Inf]:count milliseconds',\n    'ms' => ':countms',\n    'microsecond' => '{1}:count microsecond|{0}:count microseconds|[-Inf,Inf]:count microseconds',\n    'a_microsecond' => '{1}a microsecond|{0}:count microseconds|[-Inf,Inf]:count microseconds',\n    'µs' => ':countµs',\n    'ago' => ':time ago',\n    'from_now' => ':time from now',\n    'after' => ':time after',\n    'before' => ':time before',\n    'diff_now' => 'just now',\n    'diff_today' => 'today',\n    'diff_yesterday' => 'yesterday',\n    'diff_tomorrow' => 'tomorrow',\n    'diff_before_yesterday' => 'before yesterday',\n    'diff_after_tomorrow' => 'after tomorrow',\n    'period_recurrences' => '{1}once|{0}:count times|[-Inf,Inf]:count times',\n    'period_interval' => 'every :interval',\n    'period_start_date' => 'from :date',\n    'period_end_date' => 'to :date',\n    'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],\n    'weekdays' => ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],\n    'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],\n    'weekdays_min' => ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],\n    'ordinal' => static function ($number) {\n        $lastDigit = $number % 10;\n\n        return $number.(\n            ((int) ($number % 100 / 10) === 1) ? 'th' : (\n                ($lastDigit === 1) ? 'st' : (\n                    ($lastDigit === 2) ? 'nd' : (\n                        ($lastDigit === 3) ? 'rd' : 'th'\n                    )\n                )\n            )\n        );\n    },\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'MM/DD/YYYY',\n        'LL' => 'MMMM D, YYYY',\n        'LLL' => 'MMMM D, YYYY h:mm A',\n        'LLLL' => 'dddd, MMMM D, YYYY h:mm A',\n    ],\n    'list' => [', ', ' and '],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['AM', 'PM'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/en_001.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_150.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_AG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.  bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_AI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_AS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_AT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_AU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - François B\n * - Mayank Badola\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm A',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm A',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_BB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_BE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_BI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_BM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_BS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_BW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_BZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_CA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Zhan Tong Zhang\n * - Mayank Badola\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'MMMM D, YYYY',\n        'LLL' => 'MMMM D, YYYY h:mm A',\n        'LLLL' => 'dddd, MMMM D, YYYY h:mm A',\n    ],\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_CC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_CK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_CM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_CX.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_CY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - NehaGautam\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD-MM-YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_DE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_DG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_DK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Danish Standards Association  bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_DM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_FI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_FJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_FK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_FM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_GB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Mayank Badola\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_GD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_GG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_GH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_GI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_GM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_GU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_GY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_HK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory  bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_IE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Martin McWhorter\n * - François B\n * - Chris Cartlidge\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD-MM-YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_IL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Yoav Amit\n * - François B\n * - Mayank Badola\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_IM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory  bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YY',\n        'LL' => 'MMMM DD, YYYY',\n        'LLL' => 'DD MMM HH:mm',\n        'LLLL' => 'MMMM DD, YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_IO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_ISO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'dddd, YYYY MMMM DD HH:mm',\n    ],\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_JE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_JM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_KE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_KI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_KN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_KY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_LC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_LR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_LS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_MG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_MH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_MO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_MP.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_MS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_MT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_MU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_MW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_MY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_NA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_NF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_NG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_NL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_NR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_NU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_NZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Mayank Badola\n * - Luke McGregor\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm A',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm A',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_PG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_PH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory  bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_PK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_PN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_PR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_PW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_RW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 6,\n    'weekend' => [5, 6],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_SE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'from_now' => 'in :time',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_SH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SX.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_SZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_TC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_TK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_TO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_TT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_TV.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_TZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_UG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_UM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_US.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_US_Posix.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en_US.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_VC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_VG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_VI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_VU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/en.php';\n"
  },
  {
    "path": "src/Carbon/Lang/en_WS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YY',\n        'LL' => 'MMMM DD, YYYY',\n        'LLL' => 'DD MMM HH:mm',\n        'LLLL' => 'MMMM DD, YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_ZM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - ANLoc Martin Benjamin locales@africanlocalization.net\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/en_ZW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/eo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - Mia Nordentoft\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count jaro|:count jaroj',\n    'a_year' => 'jaro|:count jaroj',\n    'y' => ':count j.',\n    'month' => ':count monato|:count monatoj',\n    'a_month' => 'monato|:count monatoj',\n    'm' => ':count mo.',\n    'week' => ':count semajno|:count semajnoj',\n    'a_week' => 'semajno|:count semajnoj',\n    'w' => ':count sem.',\n    'day' => ':count tago|:count tagoj',\n    'a_day' => 'tago|:count tagoj',\n    'd' => ':count t.',\n    'hour' => ':count horo|:count horoj',\n    'a_hour' => 'horo|:count horoj',\n    'h' => ':count h.',\n    'minute' => ':count minuto|:count minutoj',\n    'a_minute' => 'minuto|:count minutoj',\n    'min' => ':count min.',\n    'second' => ':count sekundo|:count sekundoj',\n    'a_second' => 'sekundoj|:count sekundoj',\n    's' => ':count sek.',\n    'ago' => 'antaŭ :time',\n    'from_now' => 'post :time',\n    'after' => ':time poste',\n    'before' => ':time antaŭe',\n    'diff_yesterday' => 'Hieraŭ',\n    'diff_yesterday_regexp' => 'Hieraŭ(?:\\\\s+je)?',\n    'diff_today' => 'Hodiaŭ',\n    'diff_today_regexp' => 'Hodiaŭ(?:\\\\s+je)?',\n    'diff_tomorrow' => 'Morgaŭ',\n    'diff_tomorrow_regexp' => 'Morgaŭ(?:\\\\s+je)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'D[-a de] MMMM, YYYY',\n        'LLL' => 'D[-a de] MMMM, YYYY HH:mm',\n        'LLLL' => 'dddd, [la] D[-a de] MMMM, YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Hodiaŭ je] LT',\n        'nextDay' => '[Morgaŭ je] LT',\n        'nextWeek' => 'dddd [je] LT',\n        'lastDay' => '[Hieraŭ je] LT',\n        'lastWeek' => '[pasinta] dddd [je] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numbera',\n    'meridiem' => ['a.t.m.', 'p.t.m.'],\n    'months' => ['januaro', 'februaro', 'marto', 'aprilo', 'majo', 'junio', 'julio', 'aŭgusto', 'septembro', 'oktobro', 'novembro', 'decembro'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aŭg', 'sep', 'okt', 'nov', 'dec'],\n    'weekdays' => ['dimanĉo', 'lundo', 'mardo', 'merkredo', 'ĵaŭdo', 'vendredo', 'sabato'],\n    'weekdays_short' => ['dim', 'lun', 'mard', 'merk', 'ĵaŭ', 'ven', 'sab'],\n    'weekdays_min' => ['di', 'lu', 'ma', 'me', 'ĵa', 've', 'sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' kaj '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/es.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - kostas\n * - François B\n * - Tim Fish\n * - Claire Coloma\n * - Steven Heinrich\n * - JD Isaacks\n * - Raphael Amorim\n * - Jorge Y. Castillo\n * - Víctor Díaz\n * - Diego\n * - Sebastian Thierer\n * - quinterocesar\n * - Daniel Commesse Liévanos (danielcommesse)\n * - Pete Scopes (pdscopes)\n * - gam04\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count año|:count años',\n    'a_year' => 'un año|:count años',\n    'y' => ':count año|:count años',\n    'month' => ':count mes|:count meses',\n    'a_month' => 'un mes|:count meses',\n    'm' => ':count mes|:count meses',\n    'week' => ':count semana|:count semanas',\n    'a_week' => 'una semana|:count semanas',\n    'w' => ':countsem',\n    'day' => ':count día|:count días',\n    'a_day' => 'un día|:count días',\n    'd' => ':countd',\n    'hour' => ':count hora|:count horas',\n    'a_hour' => 'una hora|:count horas',\n    'h' => ':counth',\n    'minute' => ':count minuto|:count minutos',\n    'a_minute' => 'un minuto|:count minutos',\n    'min' => ':countm',\n    'second' => ':count segundo|:count segundos',\n    'a_second' => 'unos segundos|:count segundos',\n    's' => ':counts',\n    'millisecond' => ':count milisegundo|:count milisegundos',\n    'a_millisecond' => 'un milisegundo|:count milisegundos',\n    'ms' => ':countms',\n    'microsecond' => ':count microsegundo|:count microsegundos',\n    'a_microsecond' => 'un microsegundo|:count microsegundos',\n    'µs' => ':countµs',\n    'ago' => 'hace :time',\n    'from_now' => 'en :time',\n    'after' => ':time después',\n    'before' => ':time antes',\n    'diff_now' => 'ahora mismo',\n    'diff_today' => 'hoy',\n    'diff_today_regexp' => 'hoy(?:\\\\s+a)?(?:\\\\s+las)?',\n    'diff_yesterday' => 'ayer',\n    'diff_yesterday_regexp' => 'ayer(?:\\\\s+a)?(?:\\\\s+las)?',\n    'diff_tomorrow' => 'mañana',\n    'diff_tomorrow_regexp' => 'mañana(?:\\\\s+a)?(?:\\\\s+las)?',\n    'diff_before_yesterday' => 'anteayer',\n    'diff_after_tomorrow' => 'pasado mañana',\n    'period_recurrences' => 'una vez|:count veces',\n    'period_interval' => 'cada :interval',\n    'period_start_date' => 'de :date',\n    'period_end_date' => 'a :date',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D [de] MMMM [de] YYYY',\n        'LLL' => 'D [de] MMMM [de] YYYY H:mm',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => static function (CarbonInterface $current) {\n            return '[hoy a la'.($current->hour !== 1 ? 's' : '').'] LT';\n        },\n        'nextDay' => static function (CarbonInterface $current) {\n            return '[mañana a la'.($current->hour !== 1 ? 's' : '').'] LT';\n        },\n        'nextWeek' => static function (CarbonInterface $current) {\n            return 'dddd [a la'.($current->hour !== 1 ? 's' : '').'] LT';\n        },\n        'lastDay' => static function (CarbonInterface $current) {\n            return '[ayer a la'.($current->hour !== 1 ? 's' : '').'] LT';\n        },\n        'lastWeek' => static function (CarbonInterface $current) {\n            return '[el] dddd [pasado a la'.($current->hour !== 1 ? 's' : '').'] LT';\n        },\n        'sameElse' => 'L',\n    ],\n    'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'],\n    'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'],\n    'mmm_suffix' => '.',\n    'ordinal' => ':numberº',\n    'weekdays' => ['domingo', 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado'],\n    'weekdays_short' => ['dom.', 'lun.', 'mar.', 'mié.', 'jue.', 'vie.', 'sáb.'],\n    'weekdays_min' => ['do', 'lu', 'ma', 'mi', 'ju', 'vi', 'sá'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' y '],\n    'meridiem' => ['a. m.', 'p. m.'],\n    'ordinal_words' => [\n        'of' => 'de',\n        'first' => 'primer',\n        'second' => 'segundo',\n        'third' => 'tercer',\n        'fourth' => 'cuarto',\n        'fifth' => 'quinto',\n        'last' => 'último',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/es_419.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_AR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_BO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_BR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_BZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_CL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_CO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_CR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_CU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_DO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - kostas\n * - François B\n * - Tim Fish\n * - Chiel Robben\n * - Claire Coloma\n * - Steven Heinrich\n * - JD Isaacks\n * - Raphael Amorim\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'diff_before_yesterday' => 'anteayer',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'LLL' => 'D [de] MMMM [de] YYYY h:mm A',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY h:mm A',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_EA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_EC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_ES.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn require __DIR__.'/es.php';\n"
  },
  {
    "path": "src/Carbon/Lang/es_GQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_GT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_HN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_IC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_MX.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'diff_before_yesterday' => 'antier',\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_NI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_PA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_PE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_PH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/M/yy',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D [de] MMMM [de] YYYY h:mm a',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_PR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_PY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_SV.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'],\n    'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_US.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - Josh Soref\n * - Jørn Ølmheim\n * - Craig Patik\n * - bustta\n * - François B\n * - Tim Fish\n * - Claire Coloma\n * - Steven Heinrich\n * - JD Isaacks\n * - Raphael Amorim\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'diff_before_yesterday' => 'anteayer',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'MM/DD/YYYY',\n        'LL' => 'MMMM [de] D [de] YYYY',\n        'LLL' => 'MMMM [de] D [de] YYYY h:mm A',\n        'LLLL' => 'dddd, MMMM [de] D [de] YYYY h:mm A',\n    ],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_UY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'setiembre', 'octubre', 'noviembre', 'diciembre'],\n    'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'set', 'oct', 'nov', 'dic'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/es_VE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/es.php', [\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/et.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Andres Ivanov\n * - Tsutomu Kuroda\n * - tjku\n * - Max Melentiev\n * - Juanito Fatas\n * - RM87\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Esko Lehtme\n * - Mart Karu\n * - Nicolás Hock Isaza\n * - Kevin Valdek\n * - Zahhar Kirillov\n * - João Magalhães\n * - Ingmar\n * - Illimar Tambek\n * - Mihkel\n */\nreturn [\n    'year' => ':count aasta|:count aastat',\n    'y' => ':count a',\n    'month' => ':count kuu|:count kuud',\n    'm' => ':count k',\n    'week' => ':count nädal|:count nädalat',\n    'w' => ':count näd',\n    'day' => ':count päev|:count päeva',\n    'd' => ':count p',\n    'hour' => ':count tund|:count tundi',\n    'h' => ':count t',\n    'minute' => ':count minut|:count minutit',\n    'min' => ':count min',\n    'second' => ':count sekund|:count sekundit',\n    's' => ':count s',\n    'ago' => ':time tagasi',\n    'from_now' => ':time pärast',\n    'after' => ':time pärast',\n    'before' => ':time enne',\n    'year_from_now' => ':count aasta',\n    'month_from_now' => ':count kuu',\n    'week_from_now' => ':count nädala',\n    'day_from_now' => ':count päeva',\n    'hour_from_now' => ':count tunni',\n    'minute_from_now' => ':count minuti',\n    'second_from_now' => ':count sekundi',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'diff_now' => 'nüüd',\n    'diff_today' => 'täna',\n    'diff_yesterday' => 'eile',\n    'diff_tomorrow' => 'homme',\n    'diff_before_yesterday' => 'üleeile',\n    'diff_after_tomorrow' => 'ülehomme',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[täna] LT',\n        'nextDay' => '[homme] LT',\n        'lastDay' => '[eile] LT',\n        'nextWeek' => 'dddd LT',\n        'lastWeek' => '[eelmine] dddd LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['jaanuar', 'veebruar', 'märts', 'aprill', 'mai', 'juuni', 'juuli', 'august', 'september', 'oktoober', 'november', 'detsember'],\n    'months_short' => ['jaan', 'veebr', 'märts', 'apr', 'mai', 'juuni', 'juuli', 'aug', 'sept', 'okt', 'nov', 'dets'],\n    'weekdays' => ['pühapäev', 'esmaspäev', 'teisipäev', 'kolmapäev', 'neljapäev', 'reede', 'laupäev'],\n    'weekdays_short' => ['P', 'E', 'T', 'K', 'N', 'R', 'L'],\n    'weekdays_min' => ['P', 'E', 'T', 'K', 'N', 'R', 'L'],\n    'list' => [', ', ' ja '],\n    'meridiem' => ['enne lõunat', 'pärast lõunat'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/et_EE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/et.php';\n"
  },
  {
    "path": "src/Carbon/Lang/eu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - JD Isaacks\n */\nreturn [\n    'year' => 'urte bat|:count urte',\n    'y' => 'Urte 1|:count urte',\n    'month' => 'hilabete bat|:count hilabete',\n    'm' => 'Hile 1|:count hile',\n    'week' => 'Aste 1|:count aste',\n    'w' => 'Aste 1|:count aste',\n    'day' => 'egun bat|:count egun',\n    'd' => 'Egun 1|:count egun',\n    'hour' => 'ordu bat|:count ordu',\n    'h' => 'Ordu 1|:count ordu',\n    'minute' => 'minutu bat|:count minutu',\n    'min' => 'Minutu 1|:count minutu',\n    'second' => 'segundo batzuk|:count segundo',\n    's' => 'Segundu 1|:count segundu',\n    'ago' => 'duela :time',\n    'from_now' => ':time barru',\n    'after' => ':time geroago',\n    'before' => ':time lehenago',\n    'diff_now' => 'orain',\n    'diff_today' => 'gaur',\n    'diff_yesterday' => 'atzo',\n    'diff_tomorrow' => 'bihar',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'YYYY[ko] MMMM[ren] D[a]',\n        'LLL' => 'YYYY[ko] MMMM[ren] D[a] HH:mm',\n        'LLLL' => 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[gaur] LT[etan]',\n        'nextDay' => '[bihar] LT[etan]',\n        'nextWeek' => 'dddd LT[etan]',\n        'lastDay' => '[atzo] LT[etan]',\n        'lastWeek' => '[aurreko] dddd LT[etan]',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['urtarrila', 'otsaila', 'martxoa', 'apirila', 'maiatza', 'ekaina', 'uztaila', 'abuztua', 'iraila', 'urria', 'azaroa', 'abendua'],\n    'months_short' => ['urt.', 'ots.', 'mar.', 'api.', 'mai.', 'eka.', 'uzt.', 'abu.', 'ira.', 'urr.', 'aza.', 'abe.'],\n    'weekdays' => ['igandea', 'astelehena', 'asteartea', 'asteazkena', 'osteguna', 'ostirala', 'larunbata'],\n    'weekdays_short' => ['ig.', 'al.', 'ar.', 'az.', 'og.', 'ol.', 'lr.'],\n    'weekdays_min' => ['ig', 'al', 'ar', 'az', 'og', 'ol', 'lr'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' eta '],\n    'meridiem' => ['g', 'a'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/eu_ES.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/eu.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ewo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['kíkíríg', 'ngəgógəle'],\n    'weekdays' => ['sɔ́ndɔ', 'mɔ́ndi', 'sɔ́ndɔ məlú mə́bɛ̌', 'sɔ́ndɔ məlú mə́lɛ́', 'sɔ́ndɔ məlú mə́nyi', 'fúladé', 'séradé'],\n    'weekdays_short' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'fúl', 'sér'],\n    'weekdays_min' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'fúl', 'sér'],\n    'months' => ['ngɔn osú', 'ngɔn bɛ̌', 'ngɔn lála', 'ngɔn nyina', 'ngɔn tána', 'ngɔn saməna', 'ngɔn zamgbála', 'ngɔn mwom', 'ngɔn ebulú', 'ngɔn awóm', 'ngɔn awóm ai dziá', 'ngɔn awóm ai bɛ̌'],\n    'months_short' => ['ngo', 'ngb', 'ngl', 'ngn', 'ngt', 'ngs', 'ngz', 'ngm', 'nge', 'nga', 'ngad', 'ngab'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    // Too unreliable\n    /*\n    'year' => ':count mbu', // less reliable\n    'y' => ':count mbu', // less reliable\n    'a_year' => ':count mbu', // less reliable\n\n    'month' => ':count ngòn', // less reliable\n    'm' => ':count ngòn', // less reliable\n    'a_month' => ':count ngòn', // less reliable\n\n    'week' => ':count mësë', // less reliable\n    'w' => ':count mësë', // less reliable\n    'a_week' => ':count mësë', // less reliable\n\n    'day' => ':count mësë', // less reliable\n    'd' => ':count mësë', // less reliable\n    'a_day' => ':count mësë', // less reliable\n\n    'hour' => ':count awola', // less reliable\n    'h' => ':count awola', // less reliable\n    'a_hour' => ':count awola', // less reliable\n\n    'minute' => ':count awola', // less reliable\n    'min' => ':count awola', // less reliable\n    'a_minute' => ':count awola', // less reliable\n    */\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fa.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - Nasser Ghiasi\n * - JD Isaacks\n * - Hossein Jabbari\n * - nimamo\n * - hafezdivandari\n * - Hassan Pezeshk (hpez)\n */\nreturn [\n    'year' => ':count سال',\n    'a_year' => 'یک سال'.'|:count '.'سال',\n    'y' => ':count سال',\n    'month' => ':count ماه',\n    'a_month' => 'یک ماه'.'|:count '.'ماه',\n    'm' => ':count ماه',\n    'week' => ':count هفته',\n    'a_week' => 'یک هفته'.'|:count '.'هفته',\n    'w' => ':count هفته',\n    'day' => ':count روز',\n    'a_day' => 'یک روز'.'|:count '.'روز',\n    'd' => ':count روز',\n    'hour' => ':count ساعت',\n    'a_hour' => 'یک ساعت'.'|:count '.'ساعت',\n    'h' => ':count ساعت',\n    'minute' => ':count دقیقه',\n    'a_minute' => 'یک دقیقه'.'|:count '.'دقیقه',\n    'min' => ':count دقیقه',\n    'second' => ':count ثانیه',\n    's' => ':count ثانیه',\n    'ago' => ':time پیش',\n    'from_now' => ':time دیگر',\n    'after' => ':time پس از',\n    'before' => ':time پیش از',\n    'diff_now' => 'اکنون',\n    'diff_today' => 'امروز',\n    'diff_today_regexp' => 'امروز(?:\\\\s+ساعت)?',\n    'diff_yesterday' => 'دیروز',\n    'diff_yesterday_regexp' => 'دیروز(?:\\\\s+ساعت)?',\n    'diff_tomorrow' => 'فردا',\n    'diff_tomorrow_regexp' => 'فردا(?:\\\\s+ساعت)?',\n    'formats' => [\n        'LT' => 'OH:Om',\n        'LTS' => 'OH:Om:Os',\n        'L' => 'OD/OM/OY',\n        'LL' => 'OD MMMM OY',\n        'LLL' => 'OD MMMM OY OH:Om',\n        'LLLL' => 'dddd, OD MMMM OY OH:Om',\n    ],\n    'calendar' => [\n        'sameDay' => '[امروز ساعت] LT',\n        'nextDay' => '[فردا ساعت] LT',\n        'nextWeek' => 'dddd [ساعت] LT',\n        'lastDay' => '[دیروز ساعت] LT',\n        'lastWeek' => 'dddd [پیش] [ساعت] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':timeم',\n    'meridiem' => ['قبل از ظهر', 'بعد از ظهر'],\n    'months' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],\n    'months_short' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],\n    'weekdays' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'],\n    'weekdays_short' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'],\n    'weekdays_min' => ['ی', 'د', 'س', 'چ', 'پ', 'ج', 'ش'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'list' => ['، ', ' و '],\n    'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰۴', '۰۵', '۰۶', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱۴', '۱۵', '۱۶', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲۴', '۲۵', '۲۶', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳۴', '۳۵', '۳۶', '۳۷', '۳۸', '۳۹', '۴۰', '۴۱', '۴۲', '۴۳', '۴۴', '۴۵', '۴۶', '۴۷', '۴۸', '۴۹', '۵۰', '۵۱', '۵۲', '۵۳', '۵۴', '۵۵', '۵۶', '۵۷', '۵۸', '۵۹', '۶۰', '۶۱', '۶۲', '۶۳', '۶۴', '۶۵', '۶۶', '۶۷', '۶۸', '۶۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷۴', '۷۵', '۷۶', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸۴', '۸۵', '۸۶', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹۴', '۹۵', '۹۶', '۹۷', '۹۸', '۹۹'],\n    'months_short_standalone' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],\n    'weekend' => [5, 5],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/fa_AF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fa.php', [\n    'meridiem' => ['ق', 'ب'],\n    'weekend' => [4, 5],\n    'formats' => [\n        'L' => 'OY/OM/OD',\n        'LL' => 'OD MMM OY',\n        'LLL' => 'OD MMMM OY،‏ H:mm',\n        'LLLL' => 'dddd OD MMMM OY،‏ H:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fa_IR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fa.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ff.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'months' => ['siilo', 'colte', 'mbooy', 'seeɗto', 'duujal', 'korse', 'morso', 'juko', 'siilto', 'yarkomaa', 'jolal', 'bowte'],\n    'months_short' => ['sii', 'col', 'mbo', 'see', 'duu', 'kor', 'mor', 'juk', 'slt', 'yar', 'jol', 'bow'],\n    'weekdays' => ['dewo', 'aaɓnde', 'mawbaare', 'njeslaare', 'naasaande', 'mawnde', 'hoore-biir'],\n    'weekdays_short' => ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],\n    'weekdays_min' => ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['subaka', 'kikiiɗe'],\n\n    'year' => ':count baret', // less reliable\n    'y' => ':count baret', // less reliable\n    'a_year' => ':count baret', // less reliable\n\n    'month' => ':count lewru', // less reliable\n    'm' => ':count lewru', // less reliable\n    'a_month' => ':count lewru', // less reliable\n\n    'week' => ':count naange', // less reliable\n    'w' => ':count naange', // less reliable\n    'a_week' => ':count naange', // less reliable\n\n    'day' => ':count dian', // less reliable\n    'd' => ':count dian', // less reliable\n    'a_day' => ':count dian', // less reliable\n\n    'hour' => ':count montor', // less reliable\n    'h' => ':count montor', // less reliable\n    'a_hour' => ':count montor', // less reliable\n\n    'minute' => ':count tokossuoum', // less reliable\n    'min' => ':count tokossuoum', // less reliable\n    'a_minute' => ':count tokossuoum', // less reliable\n\n    'second' => ':count tenen', // less reliable\n    's' => ':count tenen', // less reliable\n    'a_second' => ':count tenen', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ff_CM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ff.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ff_GN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ff.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ff_MR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ff.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ff_SN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Pular-Fulfulde.org Ibrahima Sarr admin@pulaar-fulfulde.org\n */\nreturn require __DIR__.'/ff.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Janne Warén\n * - digitalfrost\n * - Tsutomu Kuroda\n * - Roope Salmi\n * - tjku\n * - Max Melentiev\n * - Sami Haahtinen\n * - Teemu Leisti\n * - Artem Ignatyev\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Robert Bjarnason\n * - Aaron Patterson\n * - Nicolás Hock Isaza\n * - Tom Hughes\n * - Sven Fuchs\n * - Petri Kivikangas\n * - Nizar Jouini\n * - Marko Seppae\n * - Tomi Mynttinen (Pikseli)\n * - Petteri (powergrip)\n */\nreturn [\n    'year' => ':count vuosi|:count vuotta',\n    'y' => ':count v',\n    'month' => ':count kuukausi|:count kuukautta',\n    'm' => ':count kk',\n    'week' => ':count viikko|:count viikkoa',\n    'w' => ':count vk',\n    'day' => ':count päivä|:count päivää',\n    'd' => ':count pv',\n    'hour' => ':count tunti|:count tuntia',\n    'h' => ':count t',\n    'minute' => ':count minuutti|:count minuuttia',\n    'min' => ':count min',\n    'second' => ':count sekunti|:count sekuntia',\n    'a_second' => 'muutama sekunti|:count sekuntia',\n    's' => ':count s',\n    'ago' => ':time sitten',\n    'from_now' => ':time päästä',\n    'year_from_now' => ':count vuoden',\n    'month_from_now' => ':count kuukauden',\n    'week_from_now' => ':count viikon',\n    'day_from_now' => ':count päivän',\n    'hour_from_now' => ':count tunnin',\n    'minute_from_now' => ':count minuutin',\n    'second_from_now' => ':count sekunnin',\n    'after' => ':time sen jälkeen',\n    'before' => ':time ennen',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' ja '],\n    'diff_now' => 'nyt',\n    'diff_yesterday' => 'eilen',\n    'diff_tomorrow' => 'huomenna',\n    'formats' => [\n        'LT' => 'HH.mm',\n        'LTS' => 'HH.mm:ss',\n        'L' => 'D.M.YYYY',\n        'LL' => 'dddd D. MMMM[ta] YYYY',\n        'll' => 'ddd D. MMM YYYY',\n        'LLL' => 'D.MM. HH.mm',\n        'LLLL' => 'D. MMMM[ta] YYYY HH.mm',\n        'llll' => 'D. MMM YY HH.mm',\n    ],\n    'weekdays' => ['sunnuntai', 'maanantai', 'tiistai', 'keskiviikko', 'torstai', 'perjantai', 'lauantai'],\n    'weekdays_short' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],\n    'weekdays_min' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],\n    'months' => ['tammikuu', 'helmikuu', 'maaliskuu', 'huhtikuu', 'toukokuu', 'kesäkuu', 'heinäkuu', 'elokuu', 'syyskuu', 'lokakuu', 'marraskuu', 'joulukuu'],\n    'months_short' => ['tammi', 'helmi', 'maalis', 'huhti', 'touko', 'kesä', 'heinä', 'elo', 'syys', 'loka', 'marras', 'joulu'],\n    'meridiem' => ['aamupäivä', 'iltapäivä'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/fi_FI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fi.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fil.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/fil_PH.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fil_PH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Rene Torres Rene Torres, Pablo Saratxaga rgtorre@rocketmail.com, pablo@mandrakesoft.com\n * - Jaycee Mariano (alohajaycee)\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'MM/DD/YY',\n    ],\n    'months' => ['Enero', 'Pebrero', 'Marso', 'Abril', 'Mayo', 'Hunyo', 'Hulyo', 'Agosto', 'Setyembre', 'Oktubre', 'Nobyembre', 'Disyembre'],\n    'months_short' => ['Ene', 'Peb', 'Mar', 'Abr', 'May', 'Hun', 'Hul', 'Ago', 'Set', 'Okt', 'Nob', 'Dis'],\n    'weekdays' => ['Linggo', 'Lunes', 'Martes', 'Miyerkoles', 'Huwebes', 'Biyernes', 'Sabado'],\n    'weekdays_short' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],\n    'weekdays_min' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['N.U.', 'N.H.'],\n\n    'before' => ':time bago',\n    'after' => ':time pagkatapos',\n\n    'year' => ':count taon',\n    'y' => ':count taon',\n    'a_year' => ':count taon',\n\n    'month' => ':count buwan',\n    'm' => ':count buwan',\n    'a_month' => ':count buwan',\n\n    'week' => ':count linggo',\n    'w' => ':count linggo',\n    'a_week' => ':count linggo',\n\n    'day' => ':count araw',\n    'd' => ':count araw',\n    'a_day' => ':count araw',\n\n    'hour' => ':count oras',\n    'h' => ':count oras',\n    'a_hour' => ':count oras',\n\n    'minute' => ':count minuto',\n    'min' => ':count minuto',\n    'a_minute' => ':count minuto',\n\n    'second' => ':count segundo',\n    's' => ':count segundo',\n    'a_second' => ':count segundo',\n\n    'ago' => ':time ang nakalipas',\n    'from_now' => 'sa :time',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kristian Sakarisson\n * - François B\n * - JD Isaacks\n * - Sverri Mohr Olsen\n */\nreturn [\n    'year' => 'eitt ár|:count ár',\n    'y' => ':count ár|:count ár',\n    'month' => 'ein mánaði|:count mánaðir',\n    'm' => ':count mánaður|:count mánaðir',\n    'week' => ':count vika|:count vikur',\n    'w' => ':count vika|:count vikur',\n    'day' => 'ein dagur|:count dagar',\n    'd' => ':count dag|:count dagar',\n    'hour' => 'ein tími|:count tímar',\n    'h' => ':count tími|:count tímar',\n    'minute' => 'ein minutt|:count minuttir',\n    'min' => ':count minutt|:count minuttir',\n    'second' => 'fá sekund|:count sekundir',\n    's' => ':count sekund|:count sekundir',\n    'ago' => ':time síðani',\n    'from_now' => 'um :time',\n    'after' => ':time aftaná',\n    'before' => ':time áðrenn',\n    'diff_today' => 'Í',\n    'diff_yesterday' => 'Í',\n    'diff_yesterday_regexp' => 'Í(?:\\\\s+gjár)?(?:\\\\s+kl.)?',\n    'diff_tomorrow' => 'Í',\n    'diff_tomorrow_regexp' => 'Í(?:\\\\s+morgin)?(?:\\\\s+kl.)?',\n    'diff_today_regexp' => 'Í(?:\\\\s+dag)?(?:\\\\s+kl.)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D. MMMM, YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Í dag kl.] LT',\n        'nextDay' => '[Í morgin kl.] LT',\n        'nextWeek' => 'dddd [kl.] LT',\n        'lastDay' => '[Í gjár kl.] LT',\n        'lastWeek' => '[síðstu] dddd [kl] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['januar', 'februar', 'mars', 'apríl', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],\n    'weekdays' => ['sunnudagur', 'mánadagur', 'týsdagur', 'mikudagur', 'hósdagur', 'fríggjadagur', 'leygardagur'],\n    'weekdays_short' => ['sun', 'mán', 'týs', 'mik', 'hós', 'frí', 'ley'],\n    'weekdays_min' => ['su', 'má', 'tý', 'mi', 'hó', 'fr', 'le'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' og '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/fo_DK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fo.php', [\n    'formats' => [\n        'L' => 'DD.MM.yy',\n        'LL' => 'DD.MM.YYYY',\n        'LLL' => 'D. MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY, HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fo_FO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fo.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Dieter Sting\n * - François B\n * - Maxime VALY\n * - JD Isaacks\n * - Dieter Sting\n * - François B\n * - JD Isaacks\n * - Sebastian Thierer\n * - Fastfuel\n * - Pete Scopes (pdscopes)\n */\nreturn [\n    'millennium' => ':count millénaire|:count millénaires',\n    'a_millennium' => 'un millénaire|:count millénaires',\n    'century' => ':count siècle|:count siècles',\n    'a_century' => 'un siècle|:count siècles',\n    'decade' => ':count décennie|:count décennies',\n    'a_decade' => 'une décennie|:count décennies',\n    'year' => ':count an|:count ans',\n    'a_year' => 'un an|:count ans',\n    'y' => ':count an|:count ans',\n    'month' => ':count mois|:count mois',\n    'a_month' => 'un mois|:count mois',\n    'm' => ':count mois',\n    'week' => ':count semaine|:count semaines',\n    'a_week' => 'une semaine|:count semaines',\n    'w' => ':count sem.',\n    'day' => ':count jour|:count jours',\n    'a_day' => 'un jour|:count jours',\n    'd' => ':count j',\n    'hour' => ':count heure|:count heures',\n    'a_hour' => 'une heure|:count heures',\n    'h' => ':count h',\n    'minute' => ':count minute|:count minutes',\n    'a_minute' => 'une minute|:count minutes',\n    'min' => ':count min',\n    'second' => ':count seconde|:count secondes',\n    'a_second' => 'quelques secondes|:count secondes',\n    's' => ':count s',\n    'millisecond' => ':count milliseconde|:count millisecondes',\n    'a_millisecond' => 'une milliseconde|:count millisecondes',\n    'ms' => ':countms',\n    'microsecond' => ':count microseconde|:count microsecondes',\n    'a_microsecond' => 'une microseconde|:count microsecondes',\n    'µs' => ':countµs',\n    'ago' => 'il y a :time',\n    'from_now' => 'dans :time',\n    'after' => ':time après',\n    'before' => ':time avant',\n    'diff_now' => \"à l'instant\",\n    'diff_today' => \"aujourd'hui\",\n    'diff_today_regexp' => \"aujourd'hui(?:\\s+à)?\",\n    'diff_yesterday' => 'hier',\n    'diff_yesterday_regexp' => 'hier(?:\\s+à)?',\n    'diff_tomorrow' => 'demain',\n    'diff_tomorrow_regexp' => 'demain(?:\\s+à)?',\n    'diff_before_yesterday' => 'avant-hier',\n    'diff_after_tomorrow' => 'après-demain',\n    'period_recurrences' => ':count fois',\n    'period_interval' => 'tous les :interval',\n    'period_start_date' => 'de :date',\n    'period_end_date' => 'à :date',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Aujourd’hui à] LT',\n        'nextDay' => '[Demain à] LT',\n        'nextWeek' => 'dddd [à] LT',\n        'lastDay' => '[Hier à] LT',\n        'lastWeek' => 'dddd [dernier à] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],\n    'months_short' => ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],\n    'weekdays' => ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],\n    'weekdays_short' => ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],\n    'weekdays_min' => ['di', 'lu', 'ma', 'me', 'je', 've', 'sa'],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            // In French, only the first has to be ordinal, other number remains cardinal\n            // @link https://fr.wikihow.com/%C3%A9crire-la-date-en-fran%C3%A7ais\n            'D' => $number.($number === 1 ? 'er' : ''),\n            default => $number.($number === 1 ? 'er' : 'e'),\n            'w', 'W' => $number.($number === 1 ? 're' : 'e'),\n        };\n    },\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' et '],\n    'ordinal_words' => [\n        'of' => 'de',\n        'first' => 'premier',\n        'second' => 'deuxième',\n        'third' => 'troisième',\n        'fourth' => 'quatrième',\n        'fifth' => 'cinquième',\n        'last' => 'dernier',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/fr_BE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_BF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_BI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_BJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_BL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Dieter Sting\n * - François B\n * - Maxime VALY\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Dieter Sting\n * - François B\n * - Gaspard Bucher\n * - Maxime VALY\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_CM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'meridiem' => ['mat.', 'soir'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_DJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'first_day_of_week' => 6,\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_DZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'first_day_of_week' => 6,\n    'weekend' => [5, 6],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_FR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_GA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_GF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_GN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_GP.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_GQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_HT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_KM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_LU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'first_day_of_week' => 6,\n    'weekend' => [5, 6],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_ML.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_MU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_NC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_NE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_PF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_PM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_RE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_RW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_SC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_SN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_SY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'first_day_of_week' => 6,\n    'weekend' => [5, 6],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_TD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_TG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_TN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'weekend' => [5, 6],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_VU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fr.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fr_WF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fr_YT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/fr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fur.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/fur_IT.php';\n"
  },
  {
    "path": "src/Carbon/Lang/fur_IT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD. MM. YY',\n        'LL' => 'DD di MMMM dal YYYY',\n        'LLL' => 'DD di MMM HH:mm',\n        'LLLL' => 'DD di MMMM dal YYYY HH:mm',\n    ],\n    'months' => ['zenâr', 'fevrâr', 'març', 'avrîl', 'mai', 'jugn', 'lui', 'avost', 'setembar', 'otubar', 'novembar', 'dicembar'],\n    'months_short' => ['zen', 'fev', 'mar', 'avr', 'mai', 'jug', 'lui', 'avo', 'set', 'otu', 'nov', 'dic'],\n    'weekdays' => ['domenie', 'lunis', 'martars', 'miercus', 'joibe', 'vinars', 'sabide'],\n    'weekdays_short' => ['dom', 'lun', 'mar', 'mie', 'joi', 'vin', 'sab'],\n    'weekdays_min' => ['dom', 'lun', 'mar', 'mie', 'joi', 'vin', 'sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'year' => ':count an',\n    'month' => ':count mês',\n    'week' => ':count setemane',\n    'day' => ':count zornade',\n    'hour' => ':count ore',\n    'minute' => ':count minût',\n    'second' => ':count secont',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/fy.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Tim Fish\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count jier|:count jierren',\n    'a_year' => 'ien jier|:count jierren',\n    'y' => ':count j',\n    'month' => ':count moanne|:count moannen',\n    'a_month' => 'ien moanne|:count moannen',\n    'm' => ':count moa.',\n    'week' => ':count wike|:count wiken',\n    'a_week' => 'in wike|:count wiken',\n    'a' => ':count w.',\n    'day' => ':count dei|:count dagen',\n    'a_day' => 'ien dei|:count dagen',\n    'd' => ':count d.',\n    'hour' => ':count oere|:count oeren',\n    'a_hour' => 'ien oere|:count oeren',\n    'h' => ':count o.',\n    'minute' => ':count minút|:count minuten',\n    'a_minute' => 'ien minút|:count minuten',\n    'min' => ':count min.',\n    'second' => ':count sekonde|:count sekonden',\n    'a_second' => 'in pear sekonden|:count sekonden',\n    's' => ':count s.',\n    'ago' => ':time lyn',\n    'from_now' => 'oer :time',\n    'diff_yesterday' => 'juster',\n    'diff_yesterday_regexp' => 'juster(?:\\\\s+om)?',\n    'diff_today' => 'hjoed',\n    'diff_today_regexp' => 'hjoed(?:\\\\s+om)?',\n    'diff_tomorrow' => 'moarn',\n    'diff_tomorrow_regexp' => 'moarn(?:\\\\s+om)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD-MM-YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[hjoed om] LT',\n        'nextDay' => '[moarn om] LT',\n        'nextWeek' => 'dddd [om] LT',\n        'lastDay' => '[juster om] LT',\n        'lastWeek' => '[ôfrûne] dddd [om] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de');\n    },\n    'months' => ['jannewaris', 'febrewaris', 'maart', 'april', 'maaie', 'juny', 'july', 'augustus', 'septimber', 'oktober', 'novimber', 'desimber'],\n    'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],\n    'mmm_suffix' => '.',\n    'weekdays' => ['snein', 'moandei', 'tiisdei', 'woansdei', 'tongersdei', 'freed', 'sneon'],\n    'weekdays_short' => ['si.', 'mo.', 'ti.', 'wo.', 'to.', 'fr.', 'so.'],\n    'weekdays_min' => ['Si', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'So'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' en '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/fy_DE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandriva.com\n */\nreturn array_replace_recursive(require __DIR__.'/fy.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Jaunuwoa', 'Februwoa', 'Moaz', 'Aprell', 'Mai', 'Juni', 'Juli', 'August', 'Septamba', 'Oktoba', 'Nowamba', 'Dezamba'],\n    'months_short' => ['Jan', 'Feb', 'Moz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Now', 'Dez'],\n    'weekdays' => ['Sinndag', 'Mondag', 'Dingsdag', 'Meddwäakj', 'Donnadag', 'Friedag', 'Sinnowend'],\n    'weekdays_short' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'],\n    'weekdays_min' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/fy_NL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/fy.php', [\n    'formats' => [\n        'L' => 'DD-MM-YY',\n    ],\n    'months' => ['Jannewaris', 'Febrewaris', 'Maart', 'April', 'Maaie', 'Juny', 'July', 'Augustus', 'Septimber', 'Oktober', 'Novimber', 'Desimber'],\n    'months_short' => ['Jan', 'Feb', 'Mrt', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Snein', 'Moandei', 'Tiisdei', 'Woansdei', 'Tongersdei', 'Freed', 'Sneon'],\n    'weekdays_short' => ['Sn', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'Sn'],\n    'weekdays_min' => ['Sn', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'Sn'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ga.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Thanks to André Silva : https://github.com/askpt\n */\n\nreturn [\n    'year' => ':count bliain',\n    'a_year' => '{1}bliain|:count bliain',\n    'y' => ':countb',\n    'month' => ':count mí',\n    'a_month' => '{1}mí|:count mí',\n    'm' => ':countm',\n    'week' => ':count sheachtain',\n    'a_week' => '{1}sheachtain|:count sheachtain',\n    'w' => ':countsh',\n    'day' => ':count lá',\n    'a_day' => '{1}lá|:count lá',\n    'd' => ':countl',\n    'hour' => ':count uair an chloig',\n    'a_hour' => '{1}uair an chloig|:count uair an chloig',\n    'h' => ':countu',\n    'minute' => ':count nóiméad',\n    'a_minute' => '{1}nóiméad|:count nóiméad',\n    'min' => ':countn',\n    'second' => ':count soicind',\n    'a_second' => '{1}cúpla soicind|:count soicind',\n    's' => ':countso',\n    'ago' => ':time ó shin',\n    'from_now' => 'i :time',\n    'after' => ':time tar éis',\n    'before' => ':time roimh',\n    'diff_now' => 'anois',\n    'diff_today' => 'Inniu',\n    'diff_today_regexp' => 'Inniu(?:\\\\s+ag)?',\n    'diff_yesterday' => 'inné',\n    'diff_yesterday_regexp' => 'Inné(?:\\\\s+aig)?',\n    'diff_tomorrow' => 'amárach',\n    'diff_tomorrow_regexp' => 'Amárach(?:\\\\s+ag)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Inniu ag] LT',\n        'nextDay' => '[Amárach ag] LT',\n        'nextWeek' => 'dddd [ag] LT',\n        'lastDay' => '[Inné aig] LT',\n        'lastWeek' => 'dddd [seo caite] [ag] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['Eanáir', 'Feabhra', 'Márta', 'Aibreán', 'Bealtaine', 'Méitheamh', 'Iúil', 'Lúnasa', 'Meán Fómhair', 'Deaireadh Fómhair', 'Samhain', 'Nollaig'],\n    'months_short' => ['Eaná', 'Feab', 'Márt', 'Aibr', 'Beal', 'Méit', 'Iúil', 'Lúna', 'Meán', 'Deai', 'Samh', 'Noll'],\n    'weekdays' => ['Dé Domhnaigh', 'Dé Luain', 'Dé Máirt', 'Dé Céadaoin', 'Déardaoin', 'Dé hAoine', 'Dé Satharn'],\n    'weekdays_short' => ['Dom', 'Lua', 'Mái', 'Céa', 'Déa', 'hAo', 'Sat'],\n    'weekdays_min' => ['Do', 'Lu', 'Má', 'Ce', 'Dé', 'hA', 'Sa'],\n    'ordinal' => static fn ($number) => $number.($number === 1 ? 'd' : ($number % 10 === 2 ? 'na' : 'mh')),\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' agus '],\n    'meridiem' => ['r.n.', 'i.n.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ga_IE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ga.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gd.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Jon Ashdown\n */\nreturn [\n    'year' => ':count bliadhna',\n    'a_year' => '{1}bliadhna|:count bliadhna',\n    'y' => ':count b.',\n    'month' => ':count mìosan',\n    'a_month' => '{1}mìos|:count mìosan',\n    'm' => ':count ms.',\n    'week' => ':count seachdainean',\n    'a_week' => '{1}seachdain|:count seachdainean',\n    'w' => ':count s.',\n    'day' => ':count latha',\n    'a_day' => '{1}latha|:count latha',\n    'd' => ':count l.',\n    'hour' => ':count uairean',\n    'a_hour' => '{1}uair|:count uairean',\n    'h' => ':count u.',\n    'minute' => ':count mionaidean',\n    'a_minute' => '{1}mionaid|:count mionaidean',\n    'min' => ':count md.',\n    'second' => ':count diogan',\n    'a_second' => '{1}beagan diogan|:count diogan',\n    's' => ':count d.',\n    'ago' => 'bho chionn :time',\n    'from_now' => 'ann an :time',\n    'diff_yesterday' => 'An-dè',\n    'diff_yesterday_regexp' => 'An-dè(?:\\\\s+aig)?',\n    'diff_today' => 'An-diugh',\n    'diff_today_regexp' => 'An-diugh(?:\\\\s+aig)?',\n    'diff_tomorrow' => 'A-màireach',\n    'diff_tomorrow_regexp' => 'A-màireach(?:\\\\s+aig)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[An-diugh aig] LT',\n        'nextDay' => '[A-màireach aig] LT',\n        'nextWeek' => 'dddd [aig] LT',\n        'lastDay' => '[An-dè aig] LT',\n        'lastWeek' => 'dddd [seo chaidh] [aig] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        return $number.($number === 1 ? 'd' : ($number % 10 === 2 ? 'na' : 'mh'));\n    },\n    'months' => ['Am Faoilleach', 'An Gearran', 'Am Màrt', 'An Giblean', 'An Cèitean', 'An t-Ògmhios', 'An t-Iuchar', 'An Lùnastal', 'An t-Sultain', 'An Dàmhair', 'An t-Samhain', 'An Dùbhlachd'],\n    'months_short' => ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh'],\n    'weekdays' => ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'],\n    'weekdays_short' => ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'],\n    'weekdays_min' => ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' agus '],\n    'meridiem' => ['m', 'f'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/gd_GB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/gd.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gez.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/gez_ER.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gez_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጠሐረ', 'ከተተ', 'መገበ', 'አኀዘ', 'ግንባት', 'ሠንየ', 'ሐመለ', 'ነሐሰ', 'ከረመ', 'ጠቀመ', 'ኀደረ', 'ኀሠሠ'],\n    'months_short' => ['ጠሐረ', 'ከተተ', 'መገበ', 'አኀዘ', 'ግንባ', 'ሠንየ', 'ሐመለ', 'ነሐሰ', 'ከረመ', 'ጠቀመ', 'ኀደረ', 'ኀሠሠ'],\n    'weekdays' => ['እኁድ', 'ሰኑይ', 'ሠሉስ', 'ራብዕ', 'ሐሙስ', 'ዓርበ', 'ቀዳሚት'],\n    'weekdays_short' => ['እኁድ', 'ሰኑይ', 'ሠሉስ', 'ራብዕ', 'ሐሙስ', 'ዓርበ', 'ቀዳሚ'],\n    'weekdays_min' => ['እኁድ', 'ሰኑይ', 'ሠሉስ', 'ራብዕ', 'ሐሙስ', 'ዓርበ', 'ቀዳሚ'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ጽባሕ', 'ምሴት'],\n\n    'month' => ':count ወርሕ', // less reliable\n    'm' => ':count ወርሕ', // less reliable\n    'a_month' => ':count ወርሕ', // less reliable\n\n    'week' => ':count ሰብዑ', // less reliable\n    'w' => ':count ሰብዑ', // less reliable\n    'a_week' => ':count ሰብዑ', // less reliable\n\n    'hour' => ':count አንትሙ', // less reliable\n    'h' => ':count አንትሙ', // less reliable\n    'a_hour' => ':count አንትሙ', // less reliable\n\n    'minute' => ':count ንኡስ', // less reliable\n    'min' => ':count ንኡስ', // less reliable\n    'a_minute' => ':count ንኡስ', // less reliable\n\n    'year' => ':count ዓመት',\n    'y' => ':count ዓመት',\n    'a_year' => ':count ዓመት',\n\n    'day' => ':count ዕለት',\n    'd' => ':count ዕለት',\n    'a_day' => ':count ዕለት',\n\n    'second' => ':count ካልእ',\n    's' => ':count ካልእ',\n    'a_second' => ':count ካልእ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/gez_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጃንዩወሪ', 'ፌብሩወሪ', 'ማርች', 'ኤፕረል', 'ሜይ', 'ጁን', 'ጁላይ', 'ኦገስት', 'ሴፕቴምበር', 'ኦክተውበር', 'ኖቬምበር', 'ዲሴምበር'],\n    'months_short' => ['ጃንዩ', 'ፌብሩ', 'ማርች', 'ኤፕረ', 'ሜይ ', 'ጁን ', 'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክተ', 'ኖቬም', 'ዲሴም'],\n    'weekdays' => ['እኁድ', 'ሰኑይ', 'ሠሉስ', 'ራብዕ', 'ሐሙስ', 'ዓርበ', 'ቀዳሚት'],\n    'weekdays_short' => ['እኁድ', 'ሰኑይ', 'ሠሉስ', 'ራብዕ', 'ሐሙስ', 'ዓርበ', 'ቀዳሚ'],\n    'weekdays_min' => ['እኁድ', 'ሰኑይ', 'ሠሉስ', 'ራብዕ', 'ሐሙስ', 'ዓርበ', 'ቀዳሚ'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ጽባሕ', 'ምሴት'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/gl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Fidel Pita\n * - JD Isaacks\n * - Diego Vilariño\n * - Sebastian Thierer\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count ano|:count anos',\n    'a_year' => 'un ano|:count anos',\n    'y' => ':count a.',\n    'month' => ':count mes|:count meses',\n    'a_month' => 'un mes|:count meses',\n    'm' => ':count mes.',\n    'week' => ':count semana|:count semanas',\n    'a_week' => 'unha semana|:count semanas',\n    'w' => ':count sem.',\n    'day' => ':count día|:count días',\n    'a_day' => 'un día|:count días',\n    'd' => ':count d.',\n    'hour' => ':count hora|:count horas',\n    'a_hour' => 'unha hora|:count horas',\n    'h' => ':count h.',\n    'minute' => ':count minuto|:count minutos',\n    'a_minute' => 'un minuto|:count minutos',\n    'min' => ':count min.',\n    'second' => ':count segundo|:count segundos',\n    'a_second' => 'uns segundos|:count segundos',\n    's' => ':count seg.',\n    'ago' => 'hai :time',\n    'from_now' => static function ($time) {\n        if (str_starts_with($time, 'un')) {\n            return \"n$time\";\n        }\n\n        return \"en $time\";\n    },\n    'diff_now' => 'agora',\n    'diff_today' => 'hoxe',\n    'diff_today_regexp' => 'hoxe(?:\\\\s+ás)?',\n    'diff_yesterday' => 'onte',\n    'diff_yesterday_regexp' => 'onte(?:\\\\s+á)?',\n    'diff_tomorrow' => 'mañá',\n    'diff_tomorrow_regexp' => 'mañá(?:\\\\s+ás)?',\n    'after' => ':time despois',\n    'before' => ':time antes',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D [de] MMMM [de] YYYY',\n        'LLL' => 'D [de] MMMM [de] YYYY H:mm',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => static function (CarbonInterface $current) {\n            return '[hoxe '.($current->hour !== 1 ? 'ás' : 'á').'] LT';\n        },\n        'nextDay' => static function (CarbonInterface $current) {\n            return '[mañá '.($current->hour !== 1 ? 'ás' : 'á').'] LT';\n        },\n        'nextWeek' => static function (CarbonInterface $current) {\n            return 'dddd ['.($current->hour !== 1 ? 'ás' : 'á').'] LT';\n        },\n        'lastDay' => static function (CarbonInterface $current) {\n            return '[onte '.($current->hour !== 1 ? 'á' : 'a').'] LT';\n        },\n        'lastWeek' => static function (CarbonInterface $current) {\n            return '[o] dddd [pasado '.($current->hour !== 1 ? 'ás' : 'á').'] LT';\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberº',\n    'months' => ['xaneiro', 'febreiro', 'marzo', 'abril', 'maio', 'xuño', 'xullo', 'agosto', 'setembro', 'outubro', 'novembro', 'decembro'],\n    'months_short' => ['xan.', 'feb.', 'mar.', 'abr.', 'mai.', 'xuñ.', 'xul.', 'ago.', 'set.', 'out.', 'nov.', 'dec.'],\n    'weekdays' => ['domingo', 'luns', 'martes', 'mércores', 'xoves', 'venres', 'sábado'],\n    'weekdays_short' => ['dom.', 'lun.', 'mar.', 'mér.', 'xov.', 'ven.', 'sáb.'],\n    'weekdays_min' => ['do', 'lu', 'ma', 'mé', 'xo', 've', 'sá'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' e '],\n    'meridiem' => ['a.m.', 'p.m.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/gl_ES.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/gl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gom.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/gom_Latn.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gom_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn [\n    'year' => ':count voros|:count vorsam',\n    'y' => ':countv',\n    'month' => ':count mhoino|:count mhoine',\n    'm' => ':countmh',\n    'week' => ':count satolleacho|:count satolleache',\n    'w' => ':countsa|:countsa',\n    'day' => ':count dis',\n    'd' => ':countd',\n    'hour' => ':count hor|:count horam',\n    'h' => ':counth',\n    'minute' => ':count minute|:count mintam',\n    'min' => ':countm',\n    'second' => ':count second',\n    's' => ':counts',\n\n    'diff_today' => 'Aiz',\n    'diff_yesterday' => 'Kal',\n    'diff_tomorrow' => 'Faleam',\n    'formats' => [\n        'LT' => 'A h:mm [vazta]',\n        'LTS' => 'A h:mm:ss [vazta]',\n        'L' => 'DD-MM-YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY A h:mm [vazta]',\n        'LLLL' => 'dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]',\n        'llll' => 'ddd, D MMM YYYY, A h:mm [vazta]',\n    ],\n\n    'calendar' => [\n        'sameDay' => '[Aiz] LT',\n        'nextDay' => '[Faleam] LT',\n        'nextWeek' => '[Ieta to] dddd[,] LT',\n        'lastDay' => '[Kal] LT',\n        'lastWeek' => '[Fatlo] dddd[,] LT',\n        'sameElse' => 'L',\n    ],\n\n    'months' => ['Janer', 'Febrer', 'Mars', 'Abril', 'Mai', 'Jun', 'Julai', 'Agost', 'Setembr', 'Otubr', 'Novembr', 'Dezembr'],\n    'months_short' => ['Jan.', 'Feb.', 'Mars', 'Abr.', 'Mai', 'Jun', 'Jul.', 'Ago.', 'Set.', 'Otu.', 'Nov.', 'Dez.'],\n    'weekdays' => ['Aitar', 'Somar', 'Mongllar', 'Budvar', 'Brestar', 'Sukrar', 'Son\\'var'],\n    'weekdays_short' => ['Ait.', 'Som.', 'Mon.', 'Bud.', 'Bre.', 'Suk.', 'Son.'],\n    'weekdays_min' => ['Ai', 'Sm', 'Mo', 'Bu', 'Br', 'Su', 'Sn'],\n\n    'ordinal' => static fn ($number, $period) => $number.($period === 'D' ? 'er' : ''),\n\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'rati';\n        }\n        if ($hour < 12) {\n            return 'sokalli';\n        }\n        if ($hour < 16) {\n            return 'donparam';\n        }\n        if ($hour < 20) {\n            return 'sanje';\n        }\n\n        return 'rati';\n    },\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' ani '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/gsw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Christopher Dell\n * - Akira Matsuda\n * - Enrique Vidal\n * - Simone Carletti\n * - Henning Kiel\n * - Aaron Patterson\n * - Florian Hanke\n */\nreturn [\n    'year' => ':count Johr',\n    'month' => ':count Monet',\n    'week' => ':count Woche',\n    'day' => ':count Tag',\n    'hour' => ':count Schtund',\n    'minute' => ':count Minute',\n    'second' => ':count Sekunde',\n    'weekdays' => ['Sunntig', 'Mäntig', 'Ziischtig', 'Mittwuch', 'Dunschtig', 'Friitig', 'Samschtig'],\n    'weekdays_short' => ['Su', 'Mä', 'Zi', 'Mi', 'Du', 'Fr', 'Sa'],\n    'weekdays_min' => ['Su', 'Mä', 'Zi', 'Mi', 'Du', 'Fr', 'Sa'],\n    'months' => ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'September', 'Oktober', 'November', 'Dezember'],\n    'months_short' => ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],\n    'meridiem' => ['am Vormittag', 'am Namittag'],\n    'ordinal' => ':number.',\n    'list' => [', ', ' und '],\n    'diff_now' => 'now',\n    'diff_yesterday' => 'geschter',\n    'diff_tomorrow' => 'moorn',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'Do MMMM YYYY',\n        'LLL' => 'Do MMMM, HH:mm [Uhr]',\n        'LLLL' => 'dddd, Do MMMM YYYY, HH:mm [Uhr]',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/gsw_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/gsw.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gsw_FR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/gsw.php', [\n    'meridiem' => ['vorm.', 'nam.'],\n    'months' => ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'Septämber', 'Oktoober', 'Novämber', 'Dezämber'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LLL' => 'Do MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, Do MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/gsw_LI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/gsw.php', [\n    'meridiem' => ['vorm.', 'nam.'],\n    'months' => ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'Septämber', 'Oktoober', 'Novämber', 'Dezämber'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LLL' => 'Do MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, Do MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/gu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - Kaushik Thanki\n * - Josh Soref\n */\nreturn [\n    'year' => 'એક વર્ષ|:count વર્ષ',\n    'y' => ':countવર્ષ|:countવર્ષો',\n    'month' => 'એક મહિનો|:count મહિના',\n    'm' => ':countમહિનો|:countમહિના',\n    'week' => ':count અઠવાડિયું|:count અઠવાડિયા',\n    'w' => ':countઅઠ.|:countઅઠ.',\n    'day' => 'એક દિવસ|:count દિવસ',\n    'd' => ':countદિ.|:countદિ.',\n    'hour' => 'એક કલાક|:count કલાક',\n    'h' => ':countક.|:countક.',\n    'minute' => 'એક મિનિટ|:count મિનિટ',\n    'min' => ':countમિ.|:countમિ.',\n    'second' => 'અમુક પળો|:count સેકંડ',\n    's' => ':countસે.|:countસે.',\n    'ago' => ':time પેહલા',\n    'from_now' => ':time મા',\n    'after' => ':time પછી',\n    'before' => ':time પહેલા',\n    'diff_now' => 'હમણાં',\n    'diff_today' => 'આજ',\n    'diff_yesterday' => 'ગઇકાલે',\n    'diff_tomorrow' => 'કાલે',\n    'formats' => [\n        'LT' => 'A h:mm વાગ્યે',\n        'LTS' => 'A h:mm:ss વાગ્યે',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm વાગ્યે',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm વાગ્યે',\n    ],\n    'calendar' => [\n        'sameDay' => '[આજ] LT',\n        'nextDay' => '[કાલે] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[ગઇકાલે] LT',\n        'lastWeek' => '[પાછલા] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'રાત';\n        }\n        if ($hour < 10) {\n            return 'સવાર';\n        }\n        if ($hour < 17) {\n            return 'બપોર';\n        }\n        if ($hour < 20) {\n            return 'સાંજ';\n        }\n\n        return 'રાત';\n    },\n    'months' => ['જાન્યુઆરી', 'ફેબ્રુઆરી', 'માર્ચ', 'એપ્રિલ', 'મે', 'જૂન', 'જુલાઈ', 'ઑગસ્ટ', 'સપ્ટેમ્બર', 'ઑક્ટ્બર', 'નવેમ્બર', 'ડિસેમ્બર'],\n    'months_short' => ['જાન્યુ.', 'ફેબ્રુ.', 'માર્ચ', 'એપ્રિ.', 'મે', 'જૂન', 'જુલા.', 'ઑગ.', 'સપ્ટે.', 'ઑક્ટ્.', 'નવે.', 'ડિસે.'],\n    'weekdays' => ['રવિવાર', 'સોમવાર', 'મંગળવાર', 'બુધ્વાર', 'ગુરુવાર', 'શુક્રવાર', 'શનિવાર'],\n    'weekdays_short' => ['રવિ', 'સોમ', 'મંગળ', 'બુધ્', 'ગુરુ', 'શુક્ર', 'શનિ'],\n    'weekdays_min' => ['ર', 'સો', 'મં', 'બુ', 'ગુ', 'શુ', 'શ'],\n    'list' => [', ', ' અને '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/gu_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/gu.php';\n"
  },
  {
    "path": "src/Carbon/Lang/guz.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['Ma', 'Mo'],\n    'weekdays' => ['Chumapiri', 'Chumatato', 'Chumaine', 'Chumatano', 'Aramisi', 'Ichuma', 'Esabato'],\n    'weekdays_short' => ['Cpr', 'Ctt', 'Cmn', 'Cmt', 'Ars', 'Icm', 'Est'],\n    'weekdays_min' => ['Cpr', 'Ctt', 'Cmn', 'Cmt', 'Ars', 'Icm', 'Est'],\n    'months' => ['Chanuari', 'Feburari', 'Machi', 'Apiriri', 'Mei', 'Juni', 'Chulai', 'Agosti', 'Septemba', 'Okitoba', 'Nobemba', 'Disemba'],\n    'months_short' => ['Can', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Cul', 'Agt', 'Sep', 'Okt', 'Nob', 'Dis'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'month' => ':count omotunyi', // less reliable\n    'm' => ':count omotunyi', // less reliable\n    'a_month' => ':count omotunyi', // less reliable\n\n    'week' => ':count isano naibere', // less reliable\n    'w' => ':count isano naibere', // less reliable\n    'a_week' => ':count isano naibere', // less reliable\n\n    'second' => ':count ibere', // less reliable\n    's' => ':count ibere', // less reliable\n    'a_second' => ':count ibere', // less reliable\n\n    'year' => ':count omwaka',\n    'y' => ':count omwaka',\n    'a_year' => ':count omwaka',\n\n    'day' => ':count rituko',\n    'd' => ':count rituko',\n    'a_day' => ':count rituko',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/gv.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/gv_GB.php';\n"
  },
  {
    "path": "src/Carbon/Lang/gv_GB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Alastair McKinstry    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Jerrey-geuree', 'Toshiaght-arree', 'Mayrnt', 'Averil', 'Boaldyn', 'Mean-souree', 'Jerrey-souree', 'Luanistyn', 'Mean-fouyir', 'Jerrey-fouyir', 'Mee Houney', 'Mee ny Nollick'],\n    'months_short' => ['J-guer', 'T-arree', 'Mayrnt', 'Avrril', 'Boaldyn', 'M-souree', 'J-souree', 'Luanistyn', 'M-fouyir', 'J-fouyir', 'M.Houney', 'M.Nollick'],\n    'weekdays' => ['Jedoonee', 'Jelhein', 'Jemayrt', 'Jercean', 'Jerdein', 'Jeheiney', 'Jesarn'],\n    'weekdays_short' => ['Jed', 'Jel', 'Jem', 'Jerc', 'Jerd', 'Jeh', 'Jes'],\n    'weekdays_min' => ['Jed', 'Jel', 'Jem', 'Jerc', 'Jerd', 'Jeh', 'Jes'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count blein',\n    'y' => ':count blein',\n    'a_year' => ':count blein',\n\n    'month' => ':count mee',\n    'm' => ':count mee',\n    'a_month' => ':count mee',\n\n    'week' => ':count shiaghtin',\n    'w' => ':count shiaghtin',\n    'a_week' => ':count shiaghtin',\n\n    'day' => ':count laa',\n    'd' => ':count laa',\n    'a_day' => ':count laa',\n\n    'hour' => ':count oor',\n    'h' => ':count oor',\n    'a_hour' => ':count oor',\n\n    'minute' => ':count feer veg',\n    'min' => ':count feer veg',\n    'a_minute' => ':count feer veg',\n\n    'second' => ':count derrey',\n    's' => ':count derrey',\n    'a_second' => ':count derrey',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ha.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - pablo@mandriva.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM, YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM, YYYY HH:mm',\n    ],\n    'months' => ['Janairu', 'Faburairu', 'Maris', 'Afirilu', 'Mayu', 'Yuni', 'Yuli', 'Agusta', 'Satumba', 'Oktoba', 'Nuwamba', 'Disamba'],\n    'months_short' => ['Jan', 'Fab', 'Mar', 'Afi', 'May', 'Yun', 'Yul', 'Agu', 'Sat', 'Okt', 'Nuw', 'Dis'],\n    'weekdays' => ['Lahadi', 'Litini', 'Talata', 'Laraba', 'Alhamis', 'Jumaʼa', 'Asabar'],\n    'weekdays_short' => ['Lah', 'Lit', 'Tal', 'Lar', 'Alh', 'Jum', 'Asa'],\n    'weekdays_min' => ['Lh', 'Li', 'Ta', 'Lr', 'Al', 'Ju', 'As'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => 'shekara :count',\n    'y' => 'shekara :count',\n    'a_year' => 'shekara :count',\n\n    'month' => ':count wátàa',\n    'm' => ':count wátàa',\n    'a_month' => ':count wátàa',\n\n    'week' => ':count mako',\n    'w' => ':count mako',\n    'a_week' => ':count mako',\n\n    'day' => ':count rana',\n    'd' => ':count rana',\n    'a_day' => ':count rana',\n\n    'hour' => ':count áwàa',\n    'h' => ':count áwàa',\n    'a_hour' => ':count áwàa',\n\n    'minute' => 'minti :count',\n    'min' => 'minti :count',\n    'a_minute' => 'minti :count',\n\n    'second' => ':count ná bíyú',\n    's' => ':count ná bíyú',\n    'a_second' => ':count ná bíyú',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ha_GH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ha.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ha_NE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ha.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ha_NG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ha.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hak.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/hak_TW.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hak_TW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY年MM月DD日',\n    ],\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'],\n    'weekdays' => ['禮拜日', '禮拜一', '禮拜二', '禮拜三', '禮拜四', '禮拜五', '禮拜六'],\n    'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['上晝', '下晝'],\n\n    'year' => ':count ngien11',\n    'y' => ':count ngien11',\n    'a_year' => ':count ngien11',\n\n    'month' => ':count ngie̍t',\n    'm' => ':count ngie̍t',\n    'a_month' => ':count ngie̍t',\n\n    'week' => ':count lî-pai',\n    'w' => ':count lî-pai',\n    'a_week' => ':count lî-pai',\n\n    'day' => ':count ngit',\n    'd' => ':count ngit',\n    'a_day' => ':count ngit',\n\n    'hour' => ':count sṳ̀',\n    'h' => ':count sṳ̀',\n    'a_hour' => ':count sṳ̀',\n\n    'minute' => ':count fûn',\n    'min' => ':count fûn',\n    'a_minute' => ':count fûn',\n\n    'second' => ':count miéu',\n    's' => ':count miéu',\n    'a_second' => ':count miéu',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/haw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'months' => ['Ianuali', 'Pepeluali', 'Malaki', 'ʻApelila', 'Mei', 'Iune', 'Iulai', 'ʻAukake', 'Kepakemapa', 'ʻOkakopa', 'Nowemapa', 'Kekemapa'],\n    'months_short' => ['Ian.', 'Pep.', 'Mal.', 'ʻAp.', 'Mei', 'Iun.', 'Iul.', 'ʻAu.', 'Kep.', 'ʻOk.', 'Now.', 'Kek.'],\n    'weekdays' => ['Lāpule', 'Poʻakahi', 'Poʻalua', 'Poʻakolu', 'Poʻahā', 'Poʻalima', 'Poʻaono'],\n    'weekdays_short' => ['LP', 'P1', 'P2', 'P3', 'P4', 'P5', 'P6'],\n    'weekdays_min' => ['S', 'M', 'T', 'W', 'T', 'F', 'S'],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm a',\n    ],\n\n    'year' => ':count makahiki',\n    'y' => ':count makahiki',\n    'a_year' => ':count makahiki',\n\n    'month' => ':count mahina',\n    'm' => ':count mahina',\n    'a_month' => ':count mahina',\n\n    'week' => ':count pule',\n    'w' => ':count pule',\n    'a_week' => ':count pule',\n\n    'day' => ':count lā',\n    'd' => ':count lā',\n    'a_day' => ':count lā',\n\n    'hour' => ':count hola',\n    'h' => ':count hola',\n    'a_hour' => ':count hola',\n\n    'minute' => ':count minuke',\n    'min' => ':count minuke',\n    'a_minute' => ':count minuke',\n\n    'second' => ':count lua',\n    's' => ':count lua',\n    'a_second' => ':count lua',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/he.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Daniel Cohen Gindi\n * - JD Isaacks\n * - Itai Nathaniel\n * - GabMic\n * - Yaakov Dahan (yakidahan)\n */\nreturn [\n    'year' => 'שנה|{2}שנתיים|:count שנים',\n    'y' => 'שנה|:count שנ׳',\n    'month' => 'חודש|{2}חודשיים|:count חודשים',\n    'm' => 'חודש|:count חו׳',\n    'week' => 'שבוע|{2}שבועיים|:count שבועות',\n    'w' => 'שבוע|:count שב׳',\n    'day' => 'יום|{2}יומיים|:count ימים',\n    'd' => 'יום|:count ימ׳',\n    'hour' => 'שעה|{2}שעתיים|:count שעות',\n    'h' => 'שעה|:count שע׳',\n    'minute' => 'דקה|{2}שתי דקות|:count דקות',\n    'min' => 'דקה|:count דק׳',\n    'second' => 'שנייה|:count שניות',\n    'a_second' => 'כמה שניות|:count שניות',\n    's' => 'שניה|:count שנ׳',\n    'ago' => 'לפני :time',\n    'from_now' => 'בעוד :time מעכשיו',\n    'after' => 'אחרי :time',\n    'before' => 'לפני :time',\n    'diff_now' => 'עכשיו',\n    'diff_today' => 'היום',\n    'diff_today_regexp' => 'היום(?:\\\\s+ב־)?',\n    'diff_yesterday' => 'אתמול',\n    'diff_yesterday_regexp' => 'אתמול(?:\\\\s+ב־)?',\n    'diff_tomorrow' => 'מחר',\n    'diff_tomorrow_regexp' => 'מחר(?:\\\\s+ב־)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D [ב]MMMM YYYY',\n        'LLL' => 'D [ב]MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D [ב]MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[היום ב־]LT',\n        'nextDay' => '[מחר ב־]LT',\n        'nextWeek' => 'dddd [בשעה] LT',\n        'lastDay' => '[אתמול ב־]LT',\n        'lastWeek' => '[ביום] dddd [האחרון בשעה] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour, $minute, $isLower) {\n        if ($hour < 5) {\n            return 'לפנות בוקר';\n        }\n        if ($hour < 10) {\n            return 'בבוקר';\n        }\n        if ($hour < 12) {\n            return $isLower ? 'לפנה\"צ' : 'לפני הצהריים';\n        }\n        if ($hour < 18) {\n            return $isLower ? 'אחה\"צ' : 'אחרי הצהריים';\n        }\n\n        return 'בערב';\n    },\n    'months' => ['ינואר', 'פברואר', 'מרץ', 'אפריל', 'מאי', 'יוני', 'יולי', 'אוגוסט', 'ספטמבר', 'אוקטובר', 'נובמבר', 'דצמבר'],\n    'months_short' => ['ינו׳', 'פבר׳', 'מרץ', 'אפר׳', 'מאי', 'יוני', 'יולי', 'אוג׳', 'ספט׳', 'אוק׳', 'נוב׳', 'דצמ׳'],\n    'weekdays' => ['ראשון', 'שני', 'שלישי', 'רביעי', 'חמישי', 'שישי', 'שבת'],\n    'weekdays_short' => ['א׳', 'ב׳', 'ג׳', 'ד׳', 'ה׳', 'ו׳', 'ש׳'],\n    'weekdays_min' => ['א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ש'],\n    'list' => [', ', ' ו -'],\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/he_IL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/he.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - abhimanyu003\n * - Josh Soref\n * - JD Isaacks\n */\nreturn [\n    'year' => 'एक वर्ष|:count वर्ष',\n    'y' => '1 वर्ष|:count वर्षों',\n    'month' => 'एक महीने|:count महीने',\n    'm' => '1 माह|:count महीने',\n    'week' => '1 सप्ताह|:count सप्ताह',\n    'w' => '1 सप्ताह|:count सप्ताह',\n    'day' => 'एक दिन|:count दिन',\n    'd' => '1 दिन|:count दिनों',\n    'hour' => 'एक घंटा|:count घंटे',\n    'h' => '1 घंटा|:count घंटे',\n    'minute' => 'एक मिनट|:count मिनट',\n    'min' => '1 मिनट|:count मिनटों',\n    'second' => 'कुछ ही क्षण|:count सेकंड',\n    's' => '1 सेकंड|:count सेकंड',\n    'ago' => ':time पहले',\n    'from_now' => ':time में',\n    'after' => ':time के बाद',\n    'before' => ':time के पहले',\n    'diff_now' => 'अब',\n    'diff_today' => 'आज',\n    'diff_yesterday' => 'कल',\n    'diff_tomorrow' => 'कल',\n    'formats' => [\n        'LT' => 'A h:mm बजे',\n        'LTS' => 'A h:mm:ss बजे',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm बजे',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm बजे',\n    ],\n    'calendar' => [\n        'sameDay' => '[आज] LT',\n        'nextDay' => '[कल] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[कल] LT',\n        'lastWeek' => '[पिछले] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'रात';\n        }\n        if ($hour < 10) {\n            return 'सुबह';\n        }\n        if ($hour < 17) {\n            return 'दोपहर';\n        }\n        if ($hour < 20) {\n            return 'शाम';\n        }\n\n        return 'रात';\n    },\n    'months' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'months_short' => ['जन.', 'फ़र.', 'मार्च', 'अप्रै.', 'मई', 'जून', 'जुल.', 'अग.', 'सित.', 'अक्टू.', 'नव.', 'दिस.'],\n    'weekdays' => ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरूवार', 'शुक्रवार', 'शनिवार'],\n    'weekdays_short' => ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरू', 'शुक्र', 'शनि'],\n    'weekdays_min' => ['र', 'सो', 'मं', 'बु', 'गु', 'शु', 'श'],\n    'list' => [', ', ' और '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/hi_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/hi.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hif.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/hif_FJ.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hif_FJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Samsung Electronics Co., Ltd.    akhilesh.k@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'dddd DD MMM YYYY',\n    ],\n    'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],\n    'weekdays' => ['Ravivar', 'Somvar', 'Mangalvar', 'Budhvar', 'Guruvar', 'Shukravar', 'Shanivar'],\n    'weekdays_short' => ['Ravi', 'Som', 'Mangal', 'Budh', 'Guru', 'Shukra', 'Shani'],\n    'weekdays_min' => ['Ravi', 'Som', 'Mangal', 'Budh', 'Guru', 'Shukra', 'Shani'],\n    'meridiem' => ['Purvahan', 'Aparaahna'],\n\n    'hour' => ':count minit', // less reliable\n    'h' => ':count minit', // less reliable\n    'a_hour' => ':count minit', // less reliable\n\n    'year' => ':count saal',\n    'y' => ':count saal',\n    'a_year' => ':count saal',\n\n    'month' => ':count Mahina',\n    'm' => ':count Mahina',\n    'a_month' => ':count Mahina',\n\n    'week' => ':count Hafta',\n    'w' => ':count Hafta',\n    'a_week' => ':count Hafta',\n\n    'day' => ':count Din',\n    'd' => ':count Din',\n    'a_day' => ':count Din',\n\n    'minute' => ':count Minit',\n    'min' => ':count Minit',\n    'a_minute' => ':count Minit',\n\n    'second' => ':count Second',\n    's' => ':count Second',\n    'a_second' => ':count Second',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/hne.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/hne_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hne_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat, Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फरवरी', 'मार्च', 'अपरेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितमबर', 'अकटूबर', 'नवमबर', 'दिसमबर'],\n    'months_short' => ['जन', 'फर', 'मार्च', 'अप', 'मई', 'जून', 'जुला', 'अग', 'सित', 'अकटू', 'नव', 'दिस'],\n    'weekdays' => ['इतवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'बिरसपत', 'सुकरवार', 'सनिवार'],\n    'weekdays_short' => ['इत', 'सोम', 'मंग', 'बुध', 'बिर', 'सुक', 'सनि'],\n    'weekdays_min' => ['इत', 'सोम', 'मंग', 'बुध', 'बिर', 'सुक', 'सनि'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['बिहिनियाँ', 'मंझनियाँ'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/hr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - Tim Fish\n * - shaishavgandhi05\n * - Serhan Apaydın\n * - JD Isaacks\n * - tomhorvat\n * - Josh Soref\n * - François B\n * - shaishavgandhi05\n * - Serhan Apaydın\n * - JD Isaacks\n * - tomhorvat\n * - Stjepan Majdak\n * - Vanja Retkovac (vr00)\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count godinu|:count godine|:count godina',\n    'y' => ':count god.|:count god.|:count god.',\n    'month' => ':count mjesec|:count mjeseca|:count mjeseci',\n    'm' => ':count mj.|:count mj.|:count mj.',\n    'week' => ':count tjedan|:count tjedna|:count tjedana',\n    'w' => ':count tj.|:count tj.|:count tj.',\n    'day' => ':count dan|:count dana|:count dana',\n    'd' => ':count d.|:count d.|:count d.',\n    'hour' => ':count sat|:count sata|:count sati',\n    'h' => ':count sat|:count sata|:count sati',\n    'minute' => ':count minutu|:count minute|:count minuta',\n    'min' => ':count min.|:count min.|:count min.',\n    'second' => ':count sekundu|:count sekunde|:count sekundi',\n    'a_second' => 'nekoliko sekundi|:count sekunde|:count sekundi',\n    's' => ':count sek.|:count sek.|:count sek.',\n    'ago' => 'prije :time',\n    'from_now' => 'za :time',\n    'after' => ':time poslije',\n    'before' => ':time prije',\n    'diff_now' => 'sad',\n    'diff_today' => 'danas',\n    'diff_today_regexp' => 'danas(?:\\\\s+u)?',\n    'diff_yesterday' => 'jučer',\n    'diff_yesterday_regexp' => 'jučer(?:\\\\s+u)?',\n    'diff_tomorrow' => 'sutra',\n    'diff_tomorrow_regexp' => 'sutra(?:\\\\s+u)?',\n    'diff_before_yesterday' => 'prekjučer',\n    'diff_after_tomorrow' => 'prekosutra',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'D. M. YYYY.',\n        'LL' => 'D. MMMM YYYY.',\n        'LLL' => 'D. MMMM YYYY. H:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY. H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[danas u] LT',\n        'nextDay' => '[sutra u] LT',\n        'nextWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[u] [nedjelju] [u] LT',\n            3 => '[u] [srijedu] [u] LT',\n            6 => '[u] [subotu] [u] LT',\n            default => '[u] dddd [u] LT',\n        },\n        'lastDay' => '[jučer u] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0, 3 => '[prošlu] dddd [u] LT',\n            6 => '[prošle] [subote] [u] LT',\n            default => '[prošli] dddd [u] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['siječnja', 'veljače', 'ožujka', 'travnja', 'svibnja', 'lipnja', 'srpnja', 'kolovoza', 'rujna', 'listopada', 'studenoga', 'prosinca'],\n    'months_standalone' => ['siječanj', 'veljača', 'ožujak', 'travanj', 'svibanj', 'lipanj', 'srpanj', 'kolovoz', 'rujan', 'listopad', 'studeni', 'prosinac'],\n    'months_short' => ['sij.', 'velj.', 'ožu.', 'tra.', 'svi.', 'lip.', 'srp.', 'kol.', 'ruj.', 'lis.', 'stu.', 'pro.'],\n    'months_regexp' => '/(D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['nedjelju', 'ponedjeljak', 'utorak', 'srijedu', 'četvrtak', 'petak', 'subotu'],\n    'weekdays_standalone' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],\n    'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'],\n    'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' i '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/hr_BA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - DarkoDevelop\n */\nreturn array_replace_recursive(require __DIR__.'/hr.php', [\n    'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],\n    'weekdays_short' => ['ned', 'pon', 'uto', 'sri', 'čet', 'pet', 'sub'],\n    'weekdays_min' => ['ned', 'pon', 'uto', 'sri', 'čet', 'pet', 'sub'],\n    'months' => ['siječnja', 'veljače', 'ožujka', 'travnja', 'svibnja', 'lipnja', 'srpnja', 'kolovoza', 'rujna', 'listopada', 'studenoga', 'prosinca'],\n    'months_short' => ['sij', 'velj', 'ožu', 'tra', 'svi', 'lip', 'srp', 'kol', 'ruj', 'lis', 'stu', 'pro'],\n    'months_standalone' => ['siječanj', 'veljača', 'ožujak', 'travanj', 'svibanj', 'lipanj', 'srpanj', 'kolovoz', 'rujan', 'listopad', 'studeni', 'prosinac'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D. M. yy.',\n        'LL' => 'D. MMM YYYY.',\n        'LLL' => 'D. MMMM YYYY. HH:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY. HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/hr_HR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/hr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hsb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/hsb_DE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hsb_DE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Information from Michael Wolf Andrzej Krzysztofowicz ankry@mif.pg.gda.pl\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'DD. MMMM YYYY',\n        'LLL' => 'DD. MMMM, HH:mm [hodź.]',\n        'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [hodź.]',\n    ],\n    'months' => ['januara', 'februara', 'měrca', 'apryla', 'meje', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'],\n    'months_short' => ['Jan', 'Feb', 'Měr', 'Apr', 'Mej', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'],\n    'weekdays' => ['Njedźela', 'Póndźela', 'Wutora', 'Srjeda', 'Štvórtk', 'Pjatk', 'Sobota'],\n    'weekdays_short' => ['Nj', 'Pó', 'Wu', 'Sr', 'Št', 'Pj', 'So'],\n    'weekdays_min' => ['Nj', 'Pó', 'Wu', 'Sr', 'Št', 'Pj', 'So'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count lěto',\n    'y' => ':count lěto',\n    'a_year' => ':count lěto',\n\n    'month' => ':count měsac',\n    'm' => ':count měsac',\n    'a_month' => ':count měsac',\n\n    'week' => ':count tydźeń',\n    'w' => ':count tydźeń',\n    'a_week' => ':count tydźeń',\n\n    'day' => ':count dźeń',\n    'd' => ':count dźeń',\n    'a_day' => ':count dźeń',\n\n    'hour' => ':count hodźina',\n    'h' => ':count hodźina',\n    'a_hour' => ':count hodźina',\n\n    'minute' => ':count chwila',\n    'min' => ':count chwila',\n    'a_minute' => ':count chwila',\n\n    'second' => ':count druhi',\n    's' => ':count druhi',\n    'a_second' => ':count druhi',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ht.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ht_HT.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ht_HT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['janvye', 'fevriye', 'mas', 'avril', 'me', 'jen', 'jiyè', 'out', 'septanm', 'oktòb', 'novanm', 'desanm'],\n    'months_short' => ['jan', 'fev', 'mas', 'avr', 'me', 'jen', 'jiy', 'out', 'sep', 'okt', 'nov', 'des'],\n    'weekdays' => ['dimanch', 'lendi', 'madi', 'mèkredi', 'jedi', 'vandredi', 'samdi'],\n    'weekdays_short' => ['dim', 'len', 'mad', 'mèk', 'jed', 'van', 'sam'],\n    'weekdays_min' => ['dim', 'len', 'mad', 'mèk', 'jed', 'van', 'sam'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count lane',\n    'y' => ':count lane',\n    'a_year' => ':count lane',\n\n    'month' => 'mwa :count',\n    'm' => 'mwa :count',\n    'a_month' => 'mwa :count',\n\n    'week' => 'semèn :count',\n    'w' => 'semèn :count',\n    'a_week' => 'semèn :count',\n\n    'day' => ':count jou',\n    'd' => ':count jou',\n    'a_day' => ':count jou',\n\n    'hour' => ':count lè',\n    'h' => ':count lè',\n    'a_hour' => ':count lè',\n\n    'minute' => ':count minit',\n    'min' => ':count minit',\n    'a_minute' => ':count minit',\n\n    'second' => ':count segonn',\n    's' => ':count segonn',\n    'a_second' => ':count segonn',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/hu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Adam Brunner\n * - Brett Johnson\n * - balping\n */\n\nuse Carbon\\CarbonInterface;\n\n$huWeekEndings = ['vasárnap', 'hétfőn', 'kedden', 'szerdán', 'csütörtökön', 'pénteken', 'szombaton'];\n\nreturn [\n    'year' => ':count év',\n    'y' => ':count év',\n    'month' => ':count hónap',\n    'm' => ':count hónap',\n    'week' => ':count hét',\n    'w' => ':count hét',\n    'day' => ':count nap',\n    'd' => ':count nap',\n    'hour' => ':count óra',\n    'h' => ':count óra',\n    'minute' => ':count perc',\n    'min' => ':count perc',\n    'second' => ':count másodperc',\n    's' => ':count másodperc',\n    'ago' => ':time',\n    'from_now' => ':time múlva',\n    'after' => ':time később',\n    'before' => ':time korábban',\n    'year_ago' => ':count éve',\n    'y_ago' => ':count éve',\n    'month_ago' => ':count hónapja',\n    'm_ago' => ':count hónapja',\n    'week_ago' => ':count hete',\n    'w_ago' => ':count hete',\n    'day_ago' => ':count napja',\n    'd_ago' => ':count napja',\n    'hour_ago' => ':count órája',\n    'h_ago' => ':count órája',\n    'minute_ago' => ':count perce',\n    'min_ago' => ':count perce',\n    'second_ago' => ':count másodperce',\n    's_ago' => ':count másodperce',\n    'year_after' => ':count évvel',\n    'y_after' => ':count évvel',\n    'month_after' => ':count hónappal',\n    'm_after' => ':count hónappal',\n    'week_after' => ':count héttel',\n    'w_after' => ':count héttel',\n    'day_after' => ':count nappal',\n    'd_after' => ':count nappal',\n    'hour_after' => ':count órával',\n    'h_after' => ':count órával',\n    'minute_after' => ':count perccel',\n    'min_after' => ':count perccel',\n    'second_after' => ':count másodperccel',\n    's_after' => ':count másodperccel',\n    'year_before' => ':count évvel',\n    'y_before' => ':count évvel',\n    'month_before' => ':count hónappal',\n    'm_before' => ':count hónappal',\n    'week_before' => ':count héttel',\n    'w_before' => ':count héttel',\n    'day_before' => ':count nappal',\n    'd_before' => ':count nappal',\n    'hour_before' => ':count órával',\n    'h_before' => ':count órával',\n    'minute_before' => ':count perccel',\n    'min_before' => ':count perccel',\n    'second_before' => ':count másodperccel',\n    's_before' => ':count másodperccel',\n    'months' => ['január', 'február', 'március', 'április', 'május', 'június', 'július', 'augusztus', 'szeptember', 'október', 'november', 'december'],\n    'months_short' => ['jan.', 'febr.', 'márc.', 'ápr.', 'máj.', 'jún.', 'júl.', 'aug.', 'szept.', 'okt.', 'nov.', 'dec.'],\n    'weekdays' => ['vasárnap', 'hétfő', 'kedd', 'szerda', 'csütörtök', 'péntek', 'szombat'],\n    'weekdays_short' => ['vas', 'hét', 'kedd', 'sze', 'csüt', 'pén', 'szo'],\n    'weekdays_min' => ['v', 'h', 'k', 'sze', 'cs', 'p', 'sz'],\n    'ordinal' => ':number.',\n    'diff_now' => 'most',\n    'diff_today' => 'ma',\n    'diff_yesterday' => 'tegnap',\n    'diff_tomorrow' => 'holnap',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'YYYY.MM.DD.',\n        'LL' => 'YYYY. MMMM D.',\n        'LLL' => 'YYYY. MMMM D. H:mm',\n        'LLLL' => 'YYYY. MMMM D., dddd H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ma] LT[-kor]',\n        'nextDay' => '[holnap] LT[-kor]',\n        'nextWeek' => static function (CarbonInterface $date) use ($huWeekEndings) {\n            return '['.$huWeekEndings[$date->dayOfWeek].'] LT[-kor]';\n        },\n        'lastDay' => '[tegnap] LT[-kor]',\n        'lastWeek' => static function (CarbonInterface $date) use ($huWeekEndings) {\n            return '[múlt '.$huWeekEndings[$date->dayOfWeek].'] LT[-kor]';\n        },\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['DE', 'DU'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' és '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/hu_HU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/hu.php';\n"
  },
  {
    "path": "src/Carbon/Lang/hy.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - mhamlet\n */\nreturn [\n    'year' => ':count տարի',\n    'a_year' => 'տարի|:count տարի',\n    'y' => ':countտ',\n    'month' => ':count ամիս',\n    'a_month' => 'ամիս|:count ամիս',\n    'm' => ':countամ',\n    'week' => ':count շաբաթ',\n    'a_week' => 'շաբաթ|:count շաբաթ',\n    'w' => ':countշ',\n    'day' => ':count օր',\n    'a_day' => 'օր|:count օր',\n    'd' => ':countօր',\n    'hour' => ':count ժամ',\n    'a_hour' => 'ժամ|:count ժամ',\n    'h' => ':countժ',\n    'minute' => ':count րոպե',\n    'a_minute' => 'րոպե|:count րոպե',\n    'min' => ':countր',\n    'second' => ':count վայրկյան',\n    'a_second' => 'մի քանի վայրկյան|:count վայրկյան',\n    's' => ':countվրկ',\n    'ago' => ':time առաջ',\n    'from_now' => ':timeից',\n    'after' => ':time հետո',\n    'before' => ':time առաջ',\n    'diff_now' => 'հիմա',\n    'diff_today' => 'այսօր',\n    'diff_yesterday' => 'երեկ',\n    'diff_tomorrow' => 'վաղը',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY թ.',\n        'LLL' => 'D MMMM YYYY թ., HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY թ., HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[այսօր] LT',\n        'nextDay' => '[վաղը] LT',\n        'nextWeek' => 'dddd [օրը ժամը] LT',\n        'lastDay' => '[երեկ] LT',\n        'lastWeek' => '[անցած] dddd [օրը ժամը] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'DDD', 'w', 'W', 'DDDo' => $number.($number === 1 ? '-ին' : '-րդ'),\n            default => $number,\n        };\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'գիշերվա';\n        }\n        if ($hour < 12) {\n            return 'առավոտվա';\n        }\n        if ($hour < 17) {\n            return 'ցերեկվա';\n        }\n\n        return 'երեկոյան';\n    },\n    'months' => ['հունվարի', 'փետրվարի', 'մարտի', 'ապրիլի', 'մայիսի', 'հունիսի', 'հուլիսի', 'օգոստոսի', 'սեպտեմբերի', 'հոկտեմբերի', 'նոյեմբերի', 'դեկտեմբերի'],\n    'months_standalone' => ['հունվար', 'փետրվար', 'մարտ', 'ապրիլ', 'մայիս', 'հունիս', 'հուլիս', 'օգոստոս', 'սեպտեմբեր', 'հոկտեմբեր', 'նոյեմբեր', 'դեկտեմբեր'],\n    'months_short' => ['հնվ', 'փտր', 'մրտ', 'ապր', 'մյս', 'հնս', 'հլս', 'օգս', 'սպտ', 'հկտ', 'նմբ', 'դկտ'],\n    'months_regexp' => '/(D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['կիրակի', 'երկուշաբթի', 'երեքշաբթի', 'չորեքշաբթի', 'հինգշաբթի', 'ուրբաթ', 'շաբաթ'],\n    'weekdays_short' => ['կրկ', 'երկ', 'երք', 'չրք', 'հնգ', 'ուրբ', 'շբթ'],\n    'weekdays_min' => ['կրկ', 'երկ', 'երք', 'չրք', 'հնգ', 'ուրբ', 'շբթ'],\n    'list' => [', ', ' եւ '],\n    'first_day_of_week' => 1,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/hy_AM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - Tim Fish\n * - Serhan Apaydın\n * - JD Isaacks\n */\nreturn array_replace_recursive(require __DIR__.'/hy.php', [\n    'from_now' => ':time հետո',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/i18n.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n    'months' => ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],\n    'months_short' => ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],\n    'weekdays' => ['1', '2', '3', '4', '5', '6', '7'],\n    'weekdays_short' => ['1', '2', '3', '4', '5', '6', '7'],\n    'weekdays_min' => ['1', '2', '3', '4', '5', '6', '7'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ia.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ia_FR.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ia_FR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Fedora Project Nik Kalach nikka@fedoraproject.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['januario', 'februario', 'martio', 'april', 'maio', 'junio', 'julio', 'augusto', 'septembre', 'octobre', 'novembre', 'decembre'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'],\n    'weekdays' => ['dominica', 'lunedi', 'martedi', 'mercuridi', 'jovedi', 'venerdi', 'sabbato'],\n    'weekdays_short' => ['dom', 'lun', 'mar', 'mer', 'jov', 'ven', 'sab'],\n    'weekdays_min' => ['dom', 'lun', 'mar', 'mer', 'jov', 'ven', 'sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => 'anno :count',\n    'y' => 'anno :count',\n    'a_year' => 'anno :count',\n\n    'month' => ':count mense',\n    'm' => ':count mense',\n    'a_month' => ':count mense',\n\n    'week' => ':count septimana',\n    'w' => ':count septimana',\n    'a_week' => ':count septimana',\n\n    'day' => ':count die',\n    'd' => ':count die',\n    'a_day' => ':count die',\n\n    'hour' => ':count hora',\n    'h' => ':count hora',\n    'a_hour' => ':count hora',\n\n    'minute' => ':count minuscule',\n    'min' => ':count minuscule',\n    'a_minute' => ':count minuscule',\n\n    'second' => ':count secunda',\n    's' => ':count secunda',\n    'a_second' => ':count secunda',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/id.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - du\n * - JD Isaacks\n * - Nafies Luthfi\n * - Raymundus Jati Primanda (mundusjp)\n * - diankur313\n * - a-wip0\n */\nreturn [\n    'year' => ':count tahun',\n    'a_year' => '{1}setahun|[-Inf,Inf]:count tahun',\n    'y' => ':countthn',\n    'month' => ':count bulan',\n    'a_month' => '{1}sebulan|[-Inf,Inf]:count bulan',\n    'm' => ':countbln',\n    'week' => ':count minggu',\n    'a_week' => '{1}seminggu|[-Inf,Inf]:count minggu',\n    'w' => ':countmgg',\n    'day' => ':count hari',\n    'a_day' => '{1}sehari|[-Inf,Inf]:count hari',\n    'd' => ':counthr',\n    'hour' => ':count jam',\n    'a_hour' => '{1}sejam|[-Inf,Inf]:count jam',\n    'h' => ':countj',\n    'minute' => ':count menit',\n    'a_minute' => '{1}semenit|[-Inf,Inf]:count menit',\n    'min' => ':countmnt',\n    'second' => ':count detik',\n    'a_second' => '{1}beberapa detik|[-Inf,Inf]:count detik',\n    's' => ':countdt',\n    'ago' => ':time yang lalu',\n    'from_now' => ':time dari sekarang',\n    'after' => ':time setelahnya',\n    'before' => ':time sebelumnya',\n    'diff_now' => 'sekarang',\n    'diff_today' => 'Hari',\n    'diff_today_regexp' => 'Hari(?:\\\\s+ini)?(?:\\\\s+pukul)?',\n    'diff_yesterday' => 'kemarin',\n    'diff_yesterday_regexp' => 'Kemarin(?:\\\\s+pukul)?',\n    'diff_tomorrow' => 'besok',\n    'diff_tomorrow_regexp' => 'Besok(?:\\\\s+pukul)?',\n    'formats' => [\n        'LT' => 'HH.mm',\n        'LTS' => 'HH.mm.ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY [pukul] HH.mm',\n        'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Hari ini pukul] LT',\n        'nextDay' => '[Besok pukul] LT',\n        'nextWeek' => 'dddd [pukul] LT',\n        'lastDay' => '[Kemarin pukul] LT',\n        'lastWeek' => 'dddd [lalu pukul] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 11) {\n            return 'pagi';\n        }\n        if ($hour < 15) {\n            return 'siang';\n        }\n        if ($hour < 19) {\n            return 'sore';\n        }\n\n        return 'malam';\n    },\n    'months' => ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Agt', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jumat', 'Sabtu'],\n    'weekdays_short' => ['Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab'],\n    'weekdays_min' => ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sb'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' dan '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/id_ID.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/id.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ig.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ig_NG.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ig_NG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - pablo@mandriva.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Jenụwarị', 'Febrụwarị', 'Maachị', 'Eprel', 'Mee', 'Juun', 'Julaị', 'Ọgọọst', 'Septemba', 'Ọktoba', 'Novemba', 'Disemba'],\n    'months_short' => ['Jen', 'Feb', 'Maa', 'Epr', 'Mee', 'Juu', 'Jul', 'Ọgọ', 'Sep', 'Ọkt', 'Nov', 'Dis'],\n    'weekdays' => ['sọnde', 'mọnde', 'tuzde', 'wenzde', 'tọsde', 'fraịde', 'satọde'],\n    'weekdays_short' => ['sọn', 'mọn', 'tuz', 'wen', 'tọs', 'fra', 'sat'],\n    'weekdays_min' => ['sọn', 'mọn', 'tuz', 'wen', 'tọs', 'fra', 'sat'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => 'afo :count',\n    'y' => 'afo :count',\n    'a_year' => 'afo :count',\n\n    'month' => 'önwa :count',\n    'm' => 'önwa :count',\n    'a_month' => 'önwa :count',\n\n    'week' => 'izu :count',\n    'w' => 'izu :count',\n    'a_week' => 'izu :count',\n\n    'day' => 'ụbọchị :count',\n    'd' => 'ụbọchị :count',\n    'a_day' => 'ụbọchị :count',\n\n    'hour' => 'awa :count',\n    'h' => 'awa :count',\n    'a_hour' => 'awa :count',\n\n    'minute' => 'minit :count',\n    'min' => 'minit :count',\n    'a_minute' => 'minit :count',\n\n    'second' => 'sekọnd :count',\n    's' => 'sekọnd :count',\n    'a_second' => 'sekọnd :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ii.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['ꎸꄑ', 'ꁯꋒ'],\n    'weekdays' => ['ꑭꆏꑍ', 'ꆏꊂꋍ', 'ꆏꊂꑍ', 'ꆏꊂꌕ', 'ꆏꊂꇖ', 'ꆏꊂꉬ', 'ꆏꊂꃘ'],\n    'weekdays_short' => ['ꑭꆏ', 'ꆏꋍ', 'ꆏꑍ', 'ꆏꌕ', 'ꆏꇖ', 'ꆏꉬ', 'ꆏꃘ'],\n    'weekdays_min' => ['ꑭꆏ', 'ꆏꋍ', 'ꆏꑍ', 'ꆏꌕ', 'ꆏꇖ', 'ꆏꉬ', 'ꆏꃘ'],\n    'months' => null,\n    'months_short' => ['ꋍꆪ', 'ꑍꆪ', 'ꌕꆪ', 'ꇖꆪ', 'ꉬꆪ', 'ꃘꆪ', 'ꏃꆪ', 'ꉆꆪ', 'ꈬꆪ', 'ꊰꆪ', 'ꊰꊪꆪ', 'ꊰꑋꆪ'],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D h:mm a',\n        'LLLL' => 'YYYY MMMM D, dddd h:mm a',\n    ],\n\n    'year' => ':count ꒉ', // less reliable\n    'y' => ':count ꒉ', // less reliable\n    'a_year' => ':count ꒉ', // less reliable\n\n    'month' => ':count ꆪ',\n    'm' => ':count ꆪ',\n    'a_month' => ':count ꆪ',\n\n    'week' => ':count ꏃ', // less reliable\n    'w' => ':count ꏃ', // less reliable\n    'a_week' => ':count ꏃ', // less reliable\n\n    'day' => ':count ꏜ', // less reliable\n    'd' => ':count ꏜ', // less reliable\n    'a_day' => ':count ꏜ', // less reliable\n\n    'hour' => ':count ꄮꈉ',\n    'h' => ':count ꄮꈉ',\n    'a_hour' => ':count ꄮꈉ',\n\n    'minute' => ':count ꀄꊭ', // less reliable\n    'min' => ':count ꀄꊭ', // less reliable\n    'a_minute' => ':count ꀄꊭ', // less reliable\n\n    'second' => ':count ꇅ', // less reliable\n    's' => ':count ꇅ', // less reliable\n    'a_second' => ':count ꇅ', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ik.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ik_CA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ik_CA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - pablo@mandriva.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Siqiññaatchiaq', 'Siqiññaasrugruk', 'Paniqsiqsiivik', 'Qilġich Tatqiat', 'Suppivik', 'Iġñivik', 'Itchavik', 'Tiññivik', 'Amiġaiqsivik', 'Sikkuvik', 'Nippivik', 'Siqiñġiḷaq'],\n    'months_short' => ['Sñt', 'Sñs', 'Pan', 'Qil', 'Sup', 'Iġñ', 'Itc', 'Tiñ', 'Ami', 'Sik', 'Nip', 'Siq'],\n    'weekdays' => ['Minġuiqsioiq', 'Savałłiq', 'Ilaqtchiioiq', 'Qitchiioiq', 'Sisamiioiq', 'Tallimmiioiq', 'Maqinġuoiq'],\n    'weekdays_short' => ['Min', 'Sav', 'Ila', 'Qit', 'Sis', 'Tal', 'Maq'],\n    'weekdays_min' => ['Min', 'Sav', 'Ila', 'Qit', 'Sis', 'Tal', 'Maq'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count ukiuq',\n    'y' => ':count ukiuq',\n    'a_year' => ':count ukiuq',\n\n    'month' => ':count Tatqiat',\n    'm' => ':count Tatqiat',\n    'a_month' => ':count Tatqiat',\n\n    'week' => ':count tatqiat', // less reliable\n    'w' => ':count tatqiat', // less reliable\n    'a_week' => ':count tatqiat', // less reliable\n\n    'day' => ':count siqiñiq', // less reliable\n    'd' => ':count siqiñiq', // less reliable\n    'a_day' => ':count siqiñiq', // less reliable\n\n    'hour' => ':count Siḷa', // less reliable\n    'h' => ':count Siḷa', // less reliable\n    'a_hour' => ':count Siḷa', // less reliable\n\n    'second' => ':count iġñiq', // less reliable\n    's' => ':count iġñiq', // less reliable\n    'a_second' => ':count iġñiq', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/in.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/id.php';\n"
  },
  {
    "path": "src/Carbon/Lang/is.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kristján Ingi Geirsson\n */\nreturn [\n    'year' => '1 ár|:count ár',\n    'y' => '1 ár|:count ár',\n    'month' => '1 mánuður|:count mánuðir',\n    'm' => '1 mánuður|:count mánuðir',\n    'week' => '1 vika|:count vikur',\n    'w' => '1 vika|:count vikur',\n    'day' => '1 dagur|:count dagar',\n    'd' => '1 dagur|:count dagar',\n    'hour' => '1 klukkutími|:count klukkutímar',\n    'h' => '1 klukkutími|:count klukkutímar',\n    'minute' => '1 mínúta|:count mínútur',\n    'min' => '1 mínúta|:count mínútur',\n    'second' => '1 sekúnda|:count sekúndur',\n    's' => '1 sekúnda|:count sekúndur',\n    'ago' => ':time síðan',\n    'from_now' => ':time síðan',\n    'after' => ':time eftir',\n    'before' => ':time fyrir',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' og '],\n    'meridiem' => ['fh', 'eh'],\n    'diff_now' => 'núna',\n    'diff_yesterday' => 'í gær',\n    'diff_tomorrow' => 'á morgun',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM [kl.] HH:mm',\n        'LLLL' => 'dddd D. MMMM YYYY [kl.] HH:mm',\n    ],\n    'weekdays' => ['sunnudaginn', 'mánudaginn', 'þriðjudaginn', 'miðvikudaginn', 'fimmtudaginn', 'föstudaginn', 'laugardaginn'],\n    'weekdays_short' => ['sun', 'mán', 'þri', 'mið', 'fim', 'fös', 'lau'],\n    'weekdays_min' => ['sun', 'mán', 'þri', 'mið', 'fim', 'fös', 'lau'],\n    'months' => ['janúar', 'febrúar', 'mars', 'apríl', 'maí', 'júní', 'júlí', 'ágúst', 'september', 'október', 'nóvember', 'desember'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'maí', 'jún', 'júl', 'ágú', 'sep', 'okt', 'nóv', 'des'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/is_IS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/is.php';\n"
  },
  {
    "path": "src/Carbon/Lang/it.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ash\n * - François B\n * - Marco Perrando\n * - Massimiliano Caniparoli\n * - JD Isaacks\n * - Andrea Martini\n * - Francesco Marasco\n * - Tizianoz93\n * - Davide Casiraghi (davide-casiraghi)\n * - Pete Scopes (pdscopes)\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count anno|:count anni',\n    'a_year' => 'un anno|:count anni',\n    'y' => ':count anno|:count anni',\n    'month' => ':count mese|:count mesi',\n    'a_month' => 'un mese|:count mesi',\n    'm' => ':count mese|:count mesi',\n    'week' => ':count settimana|:count settimane',\n    'a_week' => 'una settimana|:count settimane',\n    'w' => ':count set.',\n    'day' => ':count giorno|:count giorni',\n    'a_day' => 'un giorno|:count giorni',\n    'd' => ':count g|:count gg',\n    'hour' => ':count ora|:count ore',\n    'a_hour' => 'un\\'ora|:count ore',\n    'h' => ':count h',\n    'minute' => ':count minuto|:count minuti',\n    'a_minute' => 'un minuto|:count minuti',\n    'min' => ':count min.',\n    'second' => ':count secondo|:count secondi',\n    'a_second' => 'alcuni secondi|:count secondi',\n    's' => ':count sec.',\n    'millisecond' => ':count millisecondo|:count millisecondi',\n    'a_millisecond' => 'un millisecondo|:count millisecondi',\n    'ms' => ':countms',\n    'microsecond' => ':count microsecondo|:count microsecondi',\n    'a_microsecond' => 'un microsecondo|:count microsecondi',\n    'µs' => ':countµs',\n    'ago' => ':time fa',\n    'from_now' => static function ($time) {\n        return (preg_match('/^\\d.+$/', $time) ? 'tra' : 'in').\" $time\";\n    },\n    'after' => ':time dopo',\n    'before' => ':time prima',\n    'diff_now' => 'proprio ora',\n    'diff_today' => 'Oggi',\n    'diff_today_regexp' => 'Oggi(?:\\\\s+alle)?',\n    'diff_yesterday' => 'ieri',\n    'diff_yesterday_regexp' => 'Ieri(?:\\\\s+alle)?',\n    'diff_tomorrow' => 'domani',\n    'diff_tomorrow_regexp' => 'Domani(?:\\\\s+alle)?',\n    'diff_before_yesterday' => 'l\\'altro ieri',\n    'diff_after_tomorrow' => 'dopodomani',\n    'period_interval' => 'ogni :interval',\n    'period_start_date' => 'dal :date',\n    'period_end_date' => 'al :date',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Oggi alle] LT',\n        'nextDay' => '[Domani alle] LT',\n        'nextWeek' => 'dddd [alle] LT',\n        'lastDay' => '[Ieri alle] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[la scorsa] dddd [alle] LT',\n            default => '[lo scorso] dddd [alle] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberº',\n    'months' => ['gennaio', 'febbraio', 'marzo', 'aprile', 'maggio', 'giugno', 'luglio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dicembre'],\n    'months_short' => ['gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic'],\n    'weekdays' => ['domenica', 'lunedì', 'martedì', 'mercoledì', 'giovedì', 'venerdì', 'sabato'],\n    'weekdays_short' => ['dom', 'lun', 'mar', 'mer', 'gio', 'ven', 'sab'],\n    'weekdays_min' => ['do', 'lu', 'ma', 'me', 'gi', 've', 'sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' e '],\n    'ordinal_words' => [\n        'of' => 'di',\n        'first' => 'primo',\n        'second' => 'secondo',\n        'third' => 'terzo',\n        'fourth' => 'quarto',\n        'fifth' => 'quinto',\n        'last' => 'ultimo',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/it_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Propaganistas\n */\nreturn array_replace_recursive(require __DIR__.'/it.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/it_IT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn require __DIR__.'/it.php';\n"
  },
  {
    "path": "src/Carbon/Lang/it_SM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/it.php';\n"
  },
  {
    "path": "src/Carbon/Lang/it_VA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/it.php';\n"
  },
  {
    "path": "src/Carbon/Lang/iu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/iu_CA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/iu_CA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Pablo Saratxaga pablo@mandriva.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'MM/DD/YY',\n    ],\n    'months' => ['ᔮᓄᐊᓕ', 'ᕕᕗᐊᓕ', 'ᒪᔅᓯ', 'ᐃᐳᓗ', 'ᒪᐃ', 'ᔪᓂ', 'ᔪᓚᐃ', 'ᐊᒋᓯ', 'ᓯᑎᕙ', 'ᐊᑦᑐᕙ', 'ᓄᕕᕙ', 'ᑎᓯᕝᕙ'],\n    'months_short' => ['ᔮᓄ', 'ᕕᕗ', 'ᒪᔅ', 'ᐃᐳ', 'ᒪᐃ', 'ᔪᓂ', 'ᔪᓚ', 'ᐊᒋ', 'ᓯᑎ', 'ᐊᑦ', 'ᓄᕕ', 'ᑎᓯ'],\n    'weekdays' => ['ᓈᑦᑎᖑᔭᕐᕕᒃ', 'ᓇᒡᒐᔾᔭᐅ', 'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ', 'ᐱᖓᓲᓕᖅᓯᐅᑦ', 'ᕿᑎᖅᑰᑦ', 'ᐅᓪᓗᕈᓘᑐᐃᓇᖅ', 'ᓯᕙᑖᕕᒃ'],\n    'weekdays_short' => ['ᓈ', 'ᓇ', 'ᓕ', 'ᐱ', 'ᕿ', 'ᐅ', 'ᓯ'],\n    'weekdays_min' => ['ᓈ', 'ᓇ', 'ᓕ', 'ᐱ', 'ᕿ', 'ᐅ', 'ᓯ'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count ᐅᑭᐅᖅ',\n    'y' => ':count ᐅᑭᐅᖅ',\n    'a_year' => ':count ᐅᑭᐅᖅ',\n\n    'month' => ':count qaammat',\n    'm' => ':count qaammat',\n    'a_month' => ':count qaammat',\n\n    'week' => ':count sapaatip akunnera',\n    'w' => ':count sapaatip akunnera',\n    'a_week' => ':count sapaatip akunnera',\n\n    'day' => ':count ulloq',\n    'd' => ':count ulloq',\n    'a_day' => ':count ulloq',\n\n    'hour' => ':count ikarraq',\n    'h' => ':count ikarraq',\n    'a_hour' => ':count ikarraq',\n\n    'minute' => ':count titiqqaralaaq', // less reliable\n    'min' => ':count titiqqaralaaq', // less reliable\n    'a_minute' => ':count titiqqaralaaq', // less reliable\n\n    'second' => ':count marluk', // less reliable\n    's' => ':count marluk', // less reliable\n    'a_second' => ':count marluk', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/iw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'months' => ['ינואר', 'פברואר', 'מרץ', 'אפריל', 'מאי', 'יוני', 'יולי', 'אוגוסט', 'ספטמבר', 'אוקטובר', 'נובמבר', 'דצמבר'],\n    'months_short' => ['ינו׳', 'פבר׳', 'מרץ', 'אפר׳', 'מאי', 'יוני', 'יולי', 'אוג׳', 'ספט׳', 'אוק׳', 'נוב׳', 'דצמ׳'],\n    'weekdays' => ['יום ראשון', 'יום שני', 'יום שלישי', 'יום רביעי', 'יום חמישי', 'יום שישי', 'יום שבת'],\n    'weekdays_short' => ['יום א׳', 'יום ב׳', 'יום ג׳', 'יום ד׳', 'יום ה׳', 'יום ו׳', 'שבת'],\n    'weekdays_min' => ['א׳', 'ב׳', 'ג׳', 'ד׳', 'ה׳', 'ו׳', 'ש׳'],\n    'meridiem' => ['לפנה״צ', 'אחה״צ'],\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'D.M.YYYY',\n        'LL' => 'D בMMM YYYY',\n        'LLL' => 'D בMMMM YYYY H:mm',\n        'LLLL' => 'dddd, D בMMMM YYYY H:mm',\n    ],\n\n    'year' => ':count שנה',\n    'y' => ':count שנה',\n    'a_year' => ':count שנה',\n\n    'month' => ':count חודש',\n    'm' => ':count חודש',\n    'a_month' => ':count חודש',\n\n    'week' => ':count שבוע',\n    'w' => ':count שבוע',\n    'a_week' => ':count שבוע',\n\n    'day' => ':count יום',\n    'd' => ':count יום',\n    'a_day' => ':count יום',\n\n    'hour' => ':count שעה',\n    'h' => ':count שעה',\n    'a_hour' => ':count שעה',\n\n    'minute' => ':count דקה',\n    'min' => ':count דקה',\n    'a_minute' => ':count דקה',\n\n    'second' => ':count שניה',\n    's' => ':count שניה',\n    'a_second' => ':count שניה',\n\n    'ago' => 'לפני :time',\n    'from_now' => 'בעוד :time',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ja.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Takuya Sawada\n * - Atsushi Tanaka\n * - François B\n * - Jason Katz-Brown\n * - Serhan Apaydın\n * - XueWei\n * - JD Isaacks\n * - toyama satoshi\n * - atakigawa\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count年',\n    'y' => ':count年',\n    'month' => ':countヶ月',\n    'm' => ':countヶ月',\n    'week' => ':count週間',\n    'w' => ':count週間',\n    'day' => ':count日',\n    'd' => ':count日',\n    'hour' => ':count時間',\n    'h' => ':count時間',\n    'minute' => ':count分',\n    'min' => ':count分',\n    'second' => ':count秒',\n    'a_second' => '{1}数秒|[-Inf,Inf]:count秒',\n    's' => ':count秒',\n    'ago' => ':time前',\n    'from_now' => ':time後',\n    'after' => ':time後',\n    'before' => ':time前',\n    'diff_now' => '今',\n    'diff_today' => '今日',\n    'diff_yesterday' => '昨日',\n    'diff_tomorrow' => '明日',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY/MM/DD',\n        'LL' => 'YYYY年M月D日',\n        'LLL' => 'YYYY年M月D日 HH:mm',\n        'LLLL' => 'YYYY年M月D日 dddd HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[今日] LT',\n        'nextDay' => '[明日] LT',\n        'nextWeek' => static function (CarbonInterface $current, \\Carbon\\CarbonInterface $other) {\n            if ($other->week !== $current->week) {\n                return '[来週]dddd LT';\n            }\n\n            return 'dddd LT';\n        },\n        'lastDay' => '[昨日] LT',\n        'lastWeek' => static function (CarbonInterface $current, \\Carbon\\CarbonInterface $other) {\n            if ($other->week !== $current->week) {\n                return '[先週]dddd LT';\n            }\n\n            return 'dddd LT';\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'd', 'D', 'DDD' => $number.'日',\n            default => $number,\n        };\n    },\n    'meridiem' => ['午前', '午後'],\n    'months' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],\n    'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],\n    'weekdays' => ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'],\n    'weekdays_short' => ['日', '月', '火', '水', '木', '金', '土'],\n    'weekdays_min' => ['日', '月', '火', '水', '木', '金', '土'],\n    'list' => '、',\n    'alt_numbers' => ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二', '十三', '十四', '十五', '十六', '十七', '十八', '十九', '二十', '二十一', '二十二', '二十三', '二十四', '二十五', '二十六', '二十七', '二十八', '二十九', '三十', '三十一', '三十二', '三十三', '三十四', '三十五', '三十六', '三十七', '三十八', '三十九', '四十', '四十一', '四十二', '四十三', '四十四', '四十五', '四十六', '四十七', '四十八', '四十九', '五十', '五十一', '五十二', '五十三', '五十四', '五十五', '五十六', '五十七', '五十八', '五十九', '六十', '六十一', '六十二', '六十三', '六十四', '六十五', '六十六', '六十七', '六十八', '六十九', '七十', '七十一', '七十二', '七十三', '七十四', '七十五', '七十六', '七十七', '七十八', '七十九', '八十', '八十一', '八十二', '八十三', '八十四', '八十五', '八十六', '八十七', '八十八', '八十九', '九十', '九十一', '九十二', '九十三', '九十四', '九十五', '九十六', '九十七', '九十八', '九十九'],\n    'alt_numbers_pow' => [\n        10000 => '万',\n        1000 => '千',\n        100 => '百',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ja_JP.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ja.php';\n"
  },
  {
    "path": "src/Carbon/Lang/jgo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/jmc.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['utuko', 'kyiukonyi'],\n    'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/jv.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - tgfjt\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count taun',\n    'a_year' => '{1}setaun|[-Inf,Inf]:count taun',\n    'month' => ':count wulan',\n    'a_month' => '{1}sewulan|[-Inf,Inf]:count wulan',\n    'week' => ':count minggu',\n    'a_week' => '{1}sakminggu|[-Inf,Inf]:count minggu',\n    'day' => ':count dina',\n    'a_day' => '{1}sedina|[-Inf,Inf]:count dina',\n    'hour' => ':count jam',\n    'a_hour' => '{1}setunggal jam|[-Inf,Inf]:count jam',\n    'minute' => ':count menit',\n    'a_minute' => '{1}setunggal menit|[-Inf,Inf]:count menit',\n    'second' => ':count detik',\n    'a_second' => '{0,1}sawetawis detik|[-Inf,Inf]:count detik',\n    'ago' => ':time ingkang kepengker',\n    'from_now' => 'wonten ing :time',\n    'diff_today' => 'Dinten',\n    'diff_yesterday' => 'Kala',\n    'diff_yesterday_regexp' => 'Kala(?:\\\\s+wingi)?(?:\\\\s+pukul)?',\n    'diff_tomorrow' => 'Mbenjang',\n    'diff_tomorrow_regexp' => 'Mbenjang(?:\\\\s+pukul)?',\n    'diff_today_regexp' => 'Dinten(?:\\\\s+puniko)?(?:\\\\s+pukul)?',\n    'formats' => [\n        'LT' => 'HH.mm',\n        'LTS' => 'HH.mm.ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY [pukul] HH.mm',\n        'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Dinten puniko pukul] LT',\n        'nextDay' => '[Mbenjang pukul] LT',\n        'nextWeek' => 'dddd [pukul] LT',\n        'lastDay' => '[Kala wingi pukul] LT',\n        'lastWeek' => 'dddd [kepengker pukul] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 11) {\n            return 'enjing';\n        }\n        if ($hour < 15) {\n            return 'siyang';\n        }\n        if ($hour < 19) {\n            return 'sonten';\n        }\n\n        return 'ndalu';\n    },\n    'months' => ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'Nopember', 'Desember'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ags', 'Sep', 'Okt', 'Nop', 'Des'],\n    'weekdays' => ['Minggu', 'Senen', 'Seloso', 'Rebu', 'Kemis', 'Jemuwah', 'Septu'],\n    'weekdays_short' => ['Min', 'Sen', 'Sel', 'Reb', 'Kem', 'Jem', 'Sep'],\n    'weekdays_min' => ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sp'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' lan '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ka.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Tornike Razmadze\n * - François B\n * - Lasha Dolidze\n * - Tim Fish\n * - JD Isaacks\n * - Tornike Razmadze\n * - François B\n * - Lasha Dolidze\n * - JD Isaacks\n * - LONGMAN\n * - Avtandil Kikabidze (akalongman)\n * - Levan Velijanashvili (Stichoza)\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count წელი',\n    'y' => ':count წელი',\n    'a_year' => '{1}წელი|[-Inf,Inf]:count წელი',\n    'month' => ':count თვე',\n    'm' => ':count თვე',\n    'a_month' => '{1}თვე|[-Inf,Inf]:count თვე',\n    'week' => ':count კვირა',\n    'w' => ':count კვირა',\n    'a_week' => '{1}კვირა|[-Inf,Inf]:count კვირა',\n    'day' => ':count დღე',\n    'd' => ':count დღე',\n    'a_day' => '{1}დღე|[-Inf,Inf]:count დღე',\n    'hour' => ':count საათი',\n    'h' => ':count საათი',\n    'a_hour' => '{1}საათი|[-Inf,Inf]:count საათი',\n    'minute' => ':count წუთი',\n    'min' => ':count წუთი',\n    'a_minute' => '{1}წუთი|[-Inf,Inf]:count წუთი',\n    'second' => ':count წამი',\n    's' => ':count წამი',\n    'a_second' => '{1}რამდენიმე წამი|[-Inf,Inf]:count წამი',\n    'ago' => static function ($time) {\n        $replacements = [\n            // year\n            'წელი' => 'წლის',\n            // month\n            'თვე' => 'თვის',\n            // week\n            'კვირა' => 'კვირის',\n            // day\n            'დღე' => 'დღის',\n            // hour\n            'საათი' => 'საათის',\n            // minute\n            'წუთი' => 'წუთის',\n            // second\n            'წამი' => 'წამის',\n        ];\n        $time = strtr($time, array_flip($replacements));\n        $time = strtr($time, $replacements);\n\n        return \"$time წინ\";\n    },\n    'from_now' => static function ($time) {\n        $replacements = [\n            // year\n            'წელი' => 'წელიწადში',\n            // week\n            'კვირა' => 'კვირაში',\n            // day\n            'დღე' => 'დღეში',\n            // month\n            'თვე' => 'თვეში',\n            // hour\n            'საათი' => 'საათში',\n            // minute\n            'წუთი' => 'წუთში',\n            // second\n            'წამი' => 'წამში',\n        ];\n        $time = strtr($time, array_flip($replacements));\n        $time = strtr($time, $replacements);\n\n        return $time;\n    },\n    'after' => static function ($time) {\n        $replacements = [\n            // year\n            'წელი' => 'წლის',\n            // month\n            'თვე' => 'თვის',\n            // week\n            'კვირა' => 'კვირის',\n            // day\n            'დღე' => 'დღის',\n            // hour\n            'საათი' => 'საათის',\n            // minute\n            'წუთი' => 'წუთის',\n            // second\n            'წამი' => 'წამის',\n        ];\n        $time = strtr($time, array_flip($replacements));\n        $time = strtr($time, $replacements);\n\n        return \"$time შემდეგ\";\n    },\n    'before' => static function ($time) {\n        $replacements = [\n            // year\n            'წელი' => 'წლით',\n            // month\n            'თვე' => 'თვით',\n            // week\n            'კვირა' => 'კვირით',\n            // day\n            'დღე' => 'დღით',\n            // hour\n            'საათი' => 'საათით',\n            // minute\n            'წუთი' => 'წუთით',\n            // second\n            'წამი' => 'წამით',\n        ];\n        $time = strtr($time, array_flip($replacements));\n        $time = strtr($time, $replacements);\n\n        return \"$time ადრე\";\n    },\n    'diff_now' => 'ახლა',\n    'diff_today' => 'დღეს',\n    'diff_yesterday' => 'გუშინ',\n    'diff_tomorrow' => 'ხვალ',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[დღეს], LT[-ზე]',\n        'nextDay' => '[ხვალ], LT[-ზე]',\n        'nextWeek' => static function (CarbonInterface $current, \\Carbon\\CarbonInterface $other) {\n            return ($current->isSameWeek($other) ? '' : '[შემდეგ] ').'dddd, LT[-ზე]';\n        },\n        'lastDay' => '[გუშინ], LT[-ზე]',\n        'lastWeek' => '[წინა] dddd, LT-ზე',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        if ($number === 0) {\n            return $number;\n        }\n        if ($number === 1) {\n            return $number.'-ლი';\n        }\n        if (($number < 20) || ($number <= 100 && ($number % 20 === 0)) || ($number % 100 === 0)) {\n            return 'მე-'.$number;\n        }\n\n        return $number.'-ე';\n    },\n    'months' => ['იანვარი', 'თებერვალი', 'მარტი', 'აპრილი', 'მაისი', 'ივნისი', 'ივლისი', 'აგვისტო', 'სექტემბერი', 'ოქტომბერი', 'ნოემბერი', 'დეკემბერი'],\n    'months_standalone' => ['იანვარს', 'თებერვალს', 'მარტს', 'აპრილს', 'მაისს', 'ივნისს', 'ივლისს', 'აგვისტოს', 'სექტემბერს', 'ოქტომბერს', 'ნოემბერს', 'დეკემბერს'],\n    'months_short' => ['იან', 'თებ', 'მარ', 'აპრ', 'მაი', 'ივნ', 'ივლ', 'აგვ', 'სექ', 'ოქტ', 'ნოე', 'დეკ'],\n    'months_regexp' => '/(D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['კვირას', 'ორშაბათს', 'სამშაბათს', 'ოთხშაბათს', 'ხუთშაბათს', 'პარასკევს', 'შაბათს'],\n    'weekdays_standalone' => ['კვირა', 'ორშაბათი', 'სამშაბათი', 'ოთხშაბათი', 'ხუთშაბათი', 'პარასკევი', 'შაბათი'],\n    'weekdays_short' => ['კვი', 'ორშ', 'სამ', 'ოთხ', 'ხუთ', 'პარ', 'შაბ'],\n    'weekdays_min' => ['კვ', 'ორ', 'სა', 'ოთ', 'ხუ', 'პა', 'შა'],\n    'weekdays_regexp' => '/^([^d].*|.*[^d])$/',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' და '],\n    'meridiem' => static function ($hour) {\n        if ($hour >= 4) {\n            if ($hour < 11) {\n                return 'დილის';\n            }\n\n            if ($hour < 16) {\n                return 'შუადღის';\n            }\n\n            if ($hour < 22) {\n                return 'საღამოს';\n            }\n        }\n\n        return 'ღამის';\n    },\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ka_GE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ka.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kab.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/kab_DZ.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kab_DZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - belkacem77@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Yennayer', 'Fuṛar', 'Meɣres', 'Yebrir', 'Mayyu', 'Yunyu', 'Yulyu', 'ɣuct', 'Ctembeṛ', 'Tubeṛ', 'Wambeṛ', 'Dujembeṛ'],\n    'months_short' => ['Yen', 'Fur', 'Meɣ', 'Yeb', 'May', 'Yun', 'Yul', 'ɣuc', 'Cte', 'Tub', 'Wam', 'Duj'],\n    'weekdays' => ['Acer', 'Arim', 'Aram', 'Ahad', 'Amhad', 'Sem', 'Sed'],\n    'weekdays_short' => ['Ace', 'Ari', 'Ara', 'Aha', 'Amh', 'Sem', 'Sed'],\n    'weekdays_min' => ['Ace', 'Ari', 'Ara', 'Aha', 'Amh', 'Sem', 'Sed'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['FT', 'MD'],\n\n    'year' => ':count n yiseggasen',\n    'y' => ':count n yiseggasen',\n    'a_year' => ':count n yiseggasen',\n\n    'month' => ':count n wayyuren',\n    'm' => ':count n wayyuren',\n    'a_month' => ':count n wayyuren',\n\n    'week' => ':count n ledwaṛ', // less reliable\n    'w' => ':count n ledwaṛ', // less reliable\n    'a_week' => ':count n ledwaṛ', // less reliable\n\n    'day' => ':count n wussan',\n    'd' => ':count n wussan',\n    'a_day' => ':count n wussan',\n\n    'hour' => ':count n tsaɛtin',\n    'h' => ':count n tsaɛtin',\n    'a_hour' => ':count n tsaɛtin',\n\n    'minute' => ':count n tedqiqin',\n    'min' => ':count n tedqiqin',\n    'a_minute' => ':count n tedqiqin',\n\n    'second' => ':count tasdidt', // less reliable\n    's' => ':count tasdidt', // less reliable\n    'a_second' => ':count tasdidt', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/kam.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['Ĩyakwakya', 'Ĩyawĩoo'],\n    'weekdays' => ['Wa kyumwa', 'Wa kwambĩlĩlya', 'Wa kelĩ', 'Wa katatũ', 'Wa kana', 'Wa katano', 'Wa thanthatũ'],\n    'weekdays_short' => ['Wky', 'Wkw', 'Wkl', 'Wtũ', 'Wkn', 'Wtn', 'Wth'],\n    'weekdays_min' => ['Wky', 'Wkw', 'Wkl', 'Wtũ', 'Wkn', 'Wtn', 'Wth'],\n    'months' => ['Mwai wa mbee', 'Mwai wa kelĩ', 'Mwai wa katatũ', 'Mwai wa kana', 'Mwai wa katano', 'Mwai wa thanthatũ', 'Mwai wa muonza', 'Mwai wa nyaanya', 'Mwai wa kenda', 'Mwai wa ĩkumi', 'Mwai wa ĩkumi na ĩmwe', 'Mwai wa ĩkumi na ilĩ'],\n    'months_short' => ['Mbe', 'Kel', 'Ktũ', 'Kan', 'Ktn', 'Tha', 'Moo', 'Nya', 'Knd', 'Ĩku', 'Ĩkm', 'Ĩkl'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    // Too unreliable\n    /*\n    'year' => ':count mbua', // less reliable\n    'y' => ':count mbua', // less reliable\n    'a_year' => ':count mbua', // less reliable\n\n    'month' => ':count ndakitali', // less reliable\n    'm' => ':count ndakitali', // less reliable\n    'a_month' => ':count ndakitali', // less reliable\n\n    'day' => ':count wia', // less reliable\n    'd' => ':count wia', // less reliable\n    'a_day' => ':count wia', // less reliable\n\n    'hour' => ':count orasan', // less reliable\n    'h' => ':count orasan', // less reliable\n    'a_hour' => ':count orasan', // less reliable\n\n    'minute' => ':count orasan', // less reliable\n    'min' => ':count orasan', // less reliable\n    'a_minute' => ':count orasan', // less reliable\n    */\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/kde.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Muhi', 'Chilo'],\n    'weekdays' => ['Liduva lyapili', 'Liduva lyatatu', 'Liduva lyanchechi', 'Liduva lyannyano', 'Liduva lyannyano na linji', 'Liduva lyannyano na mavili', 'Liduva litandi'],\n    'weekdays_short' => ['Ll2', 'Ll3', 'Ll4', 'Ll5', 'Ll6', 'Ll7', 'Ll1'],\n    'weekdays_min' => ['Ll2', 'Ll3', 'Ll4', 'Ll5', 'Ll6', 'Ll7', 'Ll1'],\n    'months' => ['Mwedi Ntandi', 'Mwedi wa Pili', 'Mwedi wa Tatu', 'Mwedi wa Nchechi', 'Mwedi wa Nnyano', 'Mwedi wa Nnyano na Umo', 'Mwedi wa Nnyano na Mivili', 'Mwedi wa Nnyano na Mitatu', 'Mwedi wa Nnyano na Nchechi', 'Mwedi wa Nnyano na Nnyano', 'Mwedi wa Nnyano na Nnyano na U', 'Mwedi wa Nnyano na Nnyano na M'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/kea.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['a', 'p'],\n    'weekdays' => ['dumingu', 'sigunda-fera', 'tersa-fera', 'kuarta-fera', 'kinta-fera', 'sesta-fera', 'sabadu'],\n    'weekdays_short' => ['dum', 'sig', 'ter', 'kua', 'kin', 'ses', 'sab'],\n    'weekdays_min' => ['du', 'si', 'te', 'ku', 'ki', 'se', 'sa'],\n    'weekdays_standalone' => ['dumingu', 'sigunda-fera', 'tersa-fera', 'kuarta-fera', 'kinta-fera', 'sesta-fera', 'sábadu'],\n    'months' => ['Janeru', 'Febreru', 'Marsu', 'Abril', 'Maiu', 'Junhu', 'Julhu', 'Agostu', 'Setenbru', 'Otubru', 'Nuvenbru', 'Dizenbru'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Otu', 'Nuv', 'Diz'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D [di] MMMM [di] YYYY HH:mm',\n        'LLLL' => 'dddd, D [di] MMMM [di] YYYY HH:mm',\n    ],\n\n    'year' => ':count otunu', // less reliable\n    'y' => ':count otunu', // less reliable\n    'a_year' => ':count otunu', // less reliable\n\n    'week' => ':count día dumingu', // less reliable\n    'w' => ':count día dumingu', // less reliable\n    'a_week' => ':count día dumingu', // less reliable\n\n    'day' => ':count diâ', // less reliable\n    'd' => ':count diâ', // less reliable\n    'a_day' => ':count diâ', // less reliable\n\n    'minute' => ':count sugundu', // less reliable\n    'min' => ':count sugundu', // less reliable\n    'a_minute' => ':count sugundu', // less reliable\n\n    'second' => ':count dós', // less reliable\n    's' => ':count dós', // less reliable\n    'a_second' => ':count dós', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/khq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Adduha', 'Aluula'],\n    'weekdays' => ['Alhadi', 'Atini', 'Atalata', 'Alarba', 'Alhamiisa', 'Aljuma', 'Assabdu'],\n    'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alj', 'Ass'],\n    'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alj', 'Ass'],\n    'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'],\n    'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ki.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['Kiroko', 'Hwaĩ-inĩ'],\n    'weekdays' => ['Kiumia', 'Njumatatũ', 'Njumaine', 'Njumatana', 'Aramithi', 'Njumaa', 'Njumamothi'],\n    'weekdays_short' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'],\n    'weekdays_min' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'],\n    'months' => ['Njenuarĩ', 'Mwere wa kerĩ', 'Mwere wa gatatũ', 'Mwere wa kana', 'Mwere wa gatano', 'Mwere wa gatandatũ', 'Mwere wa mũgwanja', 'Mwere wa kanana', 'Mwere wa kenda', 'Mwere wa ikũmi', 'Mwere wa ikũmi na ũmwe', 'Ndithemba'],\n    'months_short' => ['JEN', 'WKR', 'WGT', 'WKN', 'WTN', 'WTD', 'WMJ', 'WNN', 'WKD', 'WIK', 'WMW', 'DIT'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count mĩaka', // less reliable\n    'y' => ':count mĩaka', // less reliable\n    'a_year' => ':count mĩaka', // less reliable\n\n    'month' => ':count mweri', // less reliable\n    'm' => ':count mweri', // less reliable\n    'a_month' => ':count mweri', // less reliable\n\n    'week' => ':count kiumia', // less reliable\n    'w' => ':count kiumia', // less reliable\n    'a_week' => ':count kiumia', // less reliable\n\n    'day' => ':count mũthenya', // less reliable\n    'd' => ':count mũthenya', // less reliable\n    'a_day' => ':count mũthenya', // less reliable\n\n    'hour' => ':count thaa', // less reliable\n    'h' => ':count thaa', // less reliable\n    'a_hour' => ':count thaa', // less reliable\n\n    'minute' => ':count mundu', // less reliable\n    'min' => ':count mundu', // less reliable\n    'a_minute' => ':count mundu', // less reliable\n\n    'second' => ':count igego', // less reliable\n    's' => ':count igego', // less reliable\n    'a_second' => ':count igego', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/kk.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - Talat Uspanov\n * - Нурлан Рахимжанов\n * - Toleugazy Kali\n */\nreturn [\n    'year' => ':count жыл',\n    'a_year' => '{1}бір жыл|:count жыл',\n    'y' => ':count ж.',\n    'month' => ':count ай',\n    'a_month' => '{1}бір ай|:count ай',\n    'm' => ':count ай',\n    'week' => ':count апта',\n    'a_week' => '{1}бір апта',\n    'w' => ':count ап.',\n    'day' => ':count күн',\n    'a_day' => '{1}бір күн|:count күн',\n    'd' => ':count к.',\n    'hour' => ':count сағат',\n    'a_hour' => '{1}бір сағат|:count сағат',\n    'h' => ':count са.',\n    'minute' => ':count минут',\n    'a_minute' => '{1}бір минут|:count минут',\n    'min' => ':count м.',\n    'second' => ':count секунд',\n    'a_second' => '{1}бірнеше секунд|:count секунд',\n    's' => ':count се.',\n    'ago' => ':time бұрын',\n    'from_now' => ':time ішінде',\n    'after' => ':time кейін',\n    'before' => ':time бұрын',\n    'diff_now' => 'қазір',\n    'diff_today' => 'Бүгін',\n    'diff_today_regexp' => 'Бүгін(?:\\\\s+сағат)?',\n    'diff_yesterday' => 'кеше',\n    'diff_yesterday_regexp' => 'Кеше(?:\\\\s+сағат)?',\n    'diff_tomorrow' => 'ертең',\n    'diff_tomorrow_regexp' => 'Ертең(?:\\\\s+сағат)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Бүгін сағат] LT',\n        'nextDay' => '[Ертең сағат] LT',\n        'nextWeek' => 'dddd [сағат] LT',\n        'lastDay' => '[Кеше сағат] LT',\n        'lastWeek' => '[Өткен аптаның] dddd [сағат] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        static $suffixes = [\n            0 => '-ші',\n            1 => '-ші',\n            2 => '-ші',\n            3 => '-ші',\n            4 => '-ші',\n            5 => '-ші',\n            6 => '-шы',\n            7 => '-ші',\n            8 => '-ші',\n            9 => '-шы',\n            10 => '-шы',\n            20 => '-шы',\n            30 => '-шы',\n            40 => '-шы',\n            50 => '-ші',\n            60 => '-шы',\n            70 => '-ші',\n            80 => '-ші',\n            90 => '-шы',\n            100 => '-ші',\n        ];\n\n        return $number.($suffixes[$number] ?? $suffixes[$number % 10] ?? $suffixes[$number >= 100 ? 100 : -1] ?? '');\n    },\n    'months' => ['қаңтар', 'ақпан', 'наурыз', 'сәуір', 'мамыр', 'маусым', 'шілде', 'тамыз', 'қыркүйек', 'қазан', 'қараша', 'желтоқсан'],\n    'months_short' => ['қаң', 'ақп', 'нау', 'сәу', 'мам', 'мау', 'шіл', 'там', 'қыр', 'қаз', 'қар', 'жел'],\n    'weekdays' => ['жексенбі', 'дүйсенбі', 'сейсенбі', 'сәрсенбі', 'бейсенбі', 'жұма', 'сенбі'],\n    'weekdays_short' => ['жек', 'дүй', 'сей', 'сәр', 'бей', 'жұм', 'сен'],\n    'weekdays_min' => ['жк', 'дй', 'сй', 'ср', 'бй', 'жм', 'сн'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' және '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/kk_KZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/kk.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kkj.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/kl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/kl_GL.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kl_GL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Danish Standards Association    bug-glibc-locales@gnu.org\n * - John Eyðstein Johannesen (mashema)\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',\n    ],\n    'months' => ['januaarip', 'februaarip', 'marsip', 'apriilip', 'maajip', 'juunip', 'juulip', 'aggustip', 'septembarip', 'oktobarip', 'novembarip', 'decembarip'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],\n    'weekdays' => ['sapaat', 'ataasinngorneq', 'marlunngorneq', 'pingasunngorneq', 'sisamanngorneq', 'tallimanngorneq', 'arfininngorneq'],\n    'weekdays_short' => ['sap', 'ata', 'mar', 'pin', 'sis', 'tal', 'arf'],\n    'weekdays_min' => ['sap', 'ata', 'mar', 'pin', 'sis', 'tal', 'arf'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => '{1}ukioq :count|{0}:count ukiut|[-Inf,Inf]ukiut :count',\n    'a_year' => '{1}ukioq|{0}:count ukiut|[-Inf,Inf]ukiut :count',\n    'y' => '{1}:countyr|{0}:countyrs|[-Inf,Inf]:countyrs',\n\n    'month' => '{1}qaammat :count|{0}:count qaammatit|[-Inf,Inf]qaammatit :count',\n    'a_month' => '{1}qaammat|{0}:count qaammatit|[-Inf,Inf]qaammatit :count',\n    'm' => '{1}:countmo|{0}:countmos|[-Inf,Inf]:countmos',\n\n    'week' => '{1}:count sap. ak.|{0}:count sap. ak.|[-Inf,Inf]:count sap. ak.',\n    'a_week' => '{1}a sap. ak.|{0}:count sap. ak.|[-Inf,Inf]:count sap. ak.',\n    'w' => ':countw',\n\n    'day' => '{1}:count ulloq|{0}:count ullut|[-Inf,Inf]:count ullut',\n    'a_day' => '{1}a ulloq|{0}:count ullut|[-Inf,Inf]:count ullut',\n    'd' => ':countd',\n\n    'hour' => '{1}:count tiimi|{0}:count tiimit|[-Inf,Inf]:count tiimit',\n    'a_hour' => '{1}tiimi|{0}:count tiimit|[-Inf,Inf]:count tiimit',\n    'h' => ':counth',\n\n    'minute' => '{1}:count minutsi|{0}:count minutsit|[-Inf,Inf]:count minutsit',\n    'a_minute' => '{1}a minutsi|{0}:count minutsit|[-Inf,Inf]:count minutsit',\n    'min' => ':countm',\n\n    'second' => '{1}:count sikunti|{0}:count sikuntit|[-Inf,Inf]:count sikuntit',\n    'a_second' => '{1}sikunti|{0}:count sikuntit|[-Inf,Inf]:count sikuntit',\n    's' => ':counts',\n\n    'ago' => ':time matuma siorna',\n\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/kln.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['krn', 'koosk'],\n    'weekdays' => ['Kotisap', 'Kotaai', 'Koaeng’', 'Kosomok', 'Koang’wan', 'Komuut', 'Kolo'],\n    'weekdays_short' => ['Kts', 'Kot', 'Koo', 'Kos', 'Koa', 'Kom', 'Kol'],\n    'weekdays_min' => ['Kts', 'Kot', 'Koo', 'Kos', 'Koa', 'Kom', 'Kol'],\n    'months' => ['Mulgul', 'Ng’atyaato', 'Kiptaamo', 'Iwootkuut', 'Mamuut', 'Paagi', 'Ng’eiyeet', 'Rooptui', 'Bureet', 'Epeeso', 'Kipsuunde ne taai', 'Kipsuunde nebo aeng’'],\n    'months_short' => ['Mul', 'Ngat', 'Taa', 'Iwo', 'Mam', 'Paa', 'Nge', 'Roo', 'Bur', 'Epe', 'Kpt', 'Kpa'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count maghatiat', // less reliable\n    'y' => ':count maghatiat', // less reliable\n    'a_year' => ':count maghatiat', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/km.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kruy Vanna\n * - Sereysethy Touch\n * - JD Isaacks\n * - Sovichet Tep\n */\nreturn [\n    'year' => ':count ឆ្នាំ',\n    'a_year' => '{1}មួយឆ្នាំ|[-Inf,Inf]:count ឆ្នាំ',\n    'y' => ':count ឆ្នាំ',\n    'month' => ':count ខែ',\n    'a_month' => '{1}មួយខែ|[-Inf,Inf]:count ខែ',\n    'm' => ':count ខែ',\n    'week' => ':count សប្តាហ៍',\n    'w' => ':count សប្តាហ៍',\n    'day' => ':count ថ្ងៃ',\n    'a_day' => '{1}មួយថ្ងៃ|[-Inf,Inf]:count ថ្ងៃ',\n    'd' => ':count ថ្ងៃ',\n    'hour' => ':count ម៉ោង',\n    'a_hour' => '{1}មួយម៉ោង|[-Inf,Inf]:count ម៉ោង',\n    'h' => ':count ម៉ោង',\n    'minute' => ':count នាទី',\n    'a_minute' => '{1}មួយនាទី|[-Inf,Inf]:count នាទី',\n    'min' => ':count នាទី',\n    'second' => ':count វិនាទី',\n    'a_second' => '{0,1}ប៉ុន្មានវិនាទី|[-Inf,Inf]:count វិនាទី',\n    's' => ':count វិនាទី',\n    'ago' => ':timeមុន',\n    'from_now' => ':timeទៀត',\n    'after' => 'នៅ​ក្រោយ :time',\n    'before' => 'នៅ​មុន :time',\n    'diff_now' => 'ឥឡូវ',\n    'diff_today' => 'ថ្ងៃនេះ',\n    'diff_today_regexp' => 'ថ្ងៃនេះ(?:\\\\s+ម៉ោង)?',\n    'diff_yesterday' => 'ម្សិលមិញ',\n    'diff_yesterday_regexp' => 'ម្សិលមិញ(?:\\\\s+ម៉ោង)?',\n    'diff_tomorrow' => 'ថ្ងៃ​ស្អែក',\n    'diff_tomorrow_regexp' => 'ស្អែក(?:\\\\s+ម៉ោង)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ថ្ងៃនេះ ម៉ោង] LT',\n        'nextDay' => '[ស្អែក ម៉ោង] LT',\n        'nextWeek' => 'dddd [ម៉ោង] LT',\n        'lastDay' => '[ម្សិលមិញ ម៉ោង] LT',\n        'lastWeek' => 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => 'ទី:number',\n    'meridiem' => ['ព្រឹក', 'ល្ងាច'],\n    'months' => ['មករា', 'កុម្ភៈ', 'មីនា', 'មេសា', 'ឧសភា', 'មិថុនា', 'កក្កដា', 'សីហា', 'កញ្ញា', 'តុលា', 'វិច្ឆិកា', 'ធ្នូ'],\n    'months_short' => ['មករា', 'កុម្ភៈ', 'មីនា', 'មេសា', 'ឧសភា', 'មិថុនា', 'កក្កដា', 'សីហា', 'កញ្ញា', 'តុលា', 'វិច្ឆិកា', 'ធ្នូ'],\n    'weekdays' => ['អាទិត្យ', 'ច័ន្ទ', 'អង្គារ', 'ពុធ', 'ព្រហស្បតិ៍', 'សុក្រ', 'សៅរ៍'],\n    'weekdays_short' => ['អា', 'ច', 'អ', 'ព', 'ព្រ', 'សុ', 'ស'],\n    'weekdays_min' => ['អា', 'ច', 'អ', 'ព', 'ព្រ', 'សុ', 'ស'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', 'និង '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/km_KH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/km.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - MOHAN M U\n * - François B\n * - rajeevnaikte\n */\nreturn [\n    'year' => '{1}:count ವರ್ಷ|[-Inf,Inf]:count ವರ್ಷಗಳು',\n    'a_year' => '{1}ಒಂದು ವರ್ಷ|[-Inf,Inf]:count ವರ್ಷಗಳು',\n    'month' => ':count ತಿಂಗಳು',\n    'a_month' => '{1}ಒಂದು ತಿಂಗಳು|[-Inf,Inf]:count ತಿಂಗಳು',\n    'week' => '{1}:count ವಾರ|[-Inf,Inf]:count ವಾರಗಳು',\n    'a_week' => '{1}ಒಂದು ವಾರ|[-Inf,Inf]:count ವಾರಗಳು',\n    'day' => '{1}:count ದಿನ|[-Inf,Inf]:count ದಿನಗಳು',\n    'a_day' => '{1}ಒಂದು ದಿನ|[-Inf,Inf]:count ದಿನಗಳು',\n    'hour' => '{1}:count ಗಂಟೆ|[-Inf,Inf]:count ಗಂಟೆಗಳು',\n    'a_hour' => '{1}ಒಂದು ಗಂಟೆ|[-Inf,Inf]:count ಗಂಟೆಗಳು',\n    'minute' => '{1}:count ನಿಮಿಷ|[-Inf,Inf]:count ನಿಮಿಷಗಳು',\n    'a_minute' => '{1}ಒಂದು ನಿಮಿಷ|[-Inf,Inf]:count ನಿಮಿಷಗಳು',\n    'second' => '{0,1}:count ಸೆಕೆಂಡ್|[-Inf,Inf]:count ಸೆಕೆಂಡುಗಳು',\n    'a_second' => '{0,1}ಕೆಲವು ಕ್ಷಣಗಳು|[-Inf,Inf]:count ಸೆಕೆಂಡುಗಳು',\n    'ago' => ':time ಹಿಂದೆ',\n    'from_now' => ':time ನಂತರ',\n    'diff_now' => 'ಈಗ',\n    'diff_today' => 'ಇಂದು',\n    'diff_yesterday' => 'ನಿನ್ನೆ',\n    'diff_tomorrow' => 'ನಾಳೆ',\n    'formats' => [\n        'LT' => 'A h:mm',\n        'LTS' => 'A h:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ಇಂದು] LT',\n        'nextDay' => '[ನಾಳೆ] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[ನಿನ್ನೆ] LT',\n        'lastWeek' => '[ಕೊನೆಯ] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberನೇ',\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'ರಾತ್ರಿ';\n        }\n        if ($hour < 10) {\n            return 'ಬೆಳಿಗ್ಗೆ';\n        }\n        if ($hour < 17) {\n            return 'ಮಧ್ಯಾಹ್ನ';\n        }\n        if ($hour < 20) {\n            return 'ಸಂಜೆ';\n        }\n\n        return 'ರಾತ್ರಿ';\n    },\n    'months' => ['ಜನವರಿ', 'ಫೆಬ್ರವರಿ', 'ಮಾರ್ಚ್', 'ಏಪ್ರಿಲ್', 'ಮೇ', 'ಜೂನ್', 'ಜುಲೈ', 'ಆಗಸ್ಟ್', 'ಸೆಪ್ಟೆಂಬರ್', 'ಅಕ್ಟೋಬರ್', 'ನವೆಂಬರ್', 'ಡಿಸೆಂಬರ್'],\n    'months_short' => ['ಜನ', 'ಫೆಬ್ರ', 'ಮಾರ್ಚ್', 'ಏಪ್ರಿಲ್', 'ಮೇ', 'ಜೂನ್', 'ಜುಲೈ', 'ಆಗಸ್ಟ್', 'ಸೆಪ್ಟೆಂ', 'ಅಕ್ಟೋ', 'ನವೆಂ', 'ಡಿಸೆಂ'],\n    'weekdays' => ['ಭಾನುವಾರ', 'ಸೋಮವಾರ', 'ಮಂಗಳವಾರ', 'ಬುಧವಾರ', 'ಗುರುವಾರ', 'ಶುಕ್ರವಾರ', 'ಶನಿವಾರ'],\n    'weekdays_short' => ['ಭಾನು', 'ಸೋಮ', 'ಮಂಗಳ', 'ಬುಧ', 'ಗುರು', 'ಶುಕ್ರ', 'ಶನಿ'],\n    'weekdays_min' => ['ಭಾ', 'ಸೋ', 'ಮಂ', 'ಬು', 'ಗು', 'ಶು', 'ಶ'],\n    'list' => ', ',\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/kn_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/kn.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ko.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - FourwingsY\n * - François B\n * - Jason Katz-Brown\n * - Seokjun Kim\n * - Junho Kim\n * - JD Isaacks\n * - Juwon Kim\n */\nreturn [\n    'year' => ':count년',\n    'a_year' => '{1}일년|[-Inf,Inf]:count년',\n    'y' => ':count년',\n    'month' => ':count개월',\n    'a_month' => '{1}한달|[-Inf,Inf]:count개월',\n    'm' => ':count개월',\n    'week' => ':count주',\n    'a_week' => '{1}일주일|[-Inf,Inf]:count 주',\n    'w' => ':count주일',\n    'day' => ':count일',\n    'a_day' => '{1}하루|[-Inf,Inf]:count일',\n    'd' => ':count일',\n    'hour' => ':count시간',\n    'a_hour' => '{1}한시간|[-Inf,Inf]:count시간',\n    'h' => ':count시간',\n    'minute' => ':count분',\n    'a_minute' => '{1}일분|[-Inf,Inf]:count분',\n    'min' => ':count분',\n    'second' => ':count초',\n    'a_second' => '{1}몇초|[-Inf,Inf]:count초',\n    's' => ':count초',\n    'ago' => ':time 전',\n    'from_now' => ':time 후',\n    'after' => ':time 후',\n    'before' => ':time 전',\n    'diff_now' => '지금',\n    'diff_today' => '오늘',\n    'diff_yesterday' => '어제',\n    'diff_tomorrow' => '내일',\n    'formats' => [\n        'LT' => 'A h:mm',\n        'LTS' => 'A h:mm:ss',\n        'L' => 'YYYY.MM.DD.',\n        'LL' => 'YYYY년 MMMM D일',\n        'LLL' => 'YYYY년 MMMM D일 A h:mm',\n        'LLLL' => 'YYYY년 MMMM D일 dddd A h:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '오늘 LT',\n        'nextDay' => '내일 LT',\n        'nextWeek' => 'dddd LT',\n        'lastDay' => '어제 LT',\n        'lastWeek' => '지난주 dddd LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'd', 'D', 'DDD' => $number.'일',\n            'M' => $number.'월',\n            'w', 'W' => $number.'주',\n            default => $number,\n        };\n    },\n    'meridiem' => ['오전', '오후'],\n    'months' => ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],\n    'months_short' => ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],\n    'weekdays' => ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'],\n    'weekdays_short' => ['일', '월', '화', '수', '목', '금', '토'],\n    'weekdays_min' => ['일', '월', '화', '수', '목', '금', '토'],\n    'list' => ' ',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ko_KP.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ko.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ko_KR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ko.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kok.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/kok_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kok_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat, Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D-M-YY',\n    ],\n    'months' => ['जानेवारी', 'फेब्रुवारी', 'मार्च', 'एप्रिल', 'मे', 'जून', 'जुलै', 'ओगस्ट', 'सेप्टेंबर', 'ओक्टोबर', 'नोव्हेंबर', 'डिसेंबर'],\n    'months_short' => ['जानेवारी', 'फेब्रुवारी', 'मार्च', 'एप्रिल', 'मे', 'जून', 'जुलै', 'ओगस्ट', 'सेप्टेंबर', 'ओक्टोबर', 'नोव्हेंबर', 'डिसेंबर'],\n    'weekdays' => ['आयतार', 'सोमार', 'मंगळवार', 'बुधवार', 'बेरेसतार', 'शुकरार', 'शेनवार'],\n    'weekdays_short' => ['आयतार', 'सोमार', 'मंगळवार', 'बुधवार', 'बेरेसतार', 'शुकरार', 'शेनवार'],\n    'weekdays_min' => ['आयतार', 'सोमार', 'मंगळवार', 'बुधवार', 'बेरेसतार', 'शुकरार', 'शेनवार'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['म.पू.', 'म.नं.'],\n\n    'year' => ':count वैशाकु', // less reliable\n    'y' => ':count वैशाकु', // less reliable\n    'a_year' => ':count वैशाकु', // less reliable\n\n    'week' => ':count आदित्यवार', // less reliable\n    'w' => ':count आदित्यवार', // less reliable\n    'a_week' => ':count आदित्यवार', // less reliable\n\n    'minute' => ':count नोंद', // less reliable\n    'min' => ':count नोंद', // less reliable\n    'a_minute' => ':count नोंद', // less reliable\n\n    'second' => ':count तेंको', // less reliable\n    's' => ':count तेंको', // less reliable\n    'a_second' => ':count तेंको', // less reliable\n\n    'month' => ':count मैनो',\n    'm' => ':count मैनो',\n    'a_month' => ':count मैनो',\n\n    'day' => ':count दिवसु',\n    'd' => ':count दिवसु',\n    'a_day' => ':count दिवसु',\n\n    'hour' => ':count घंते',\n    'h' => ':count घंते',\n    'a_hour' => ':count घंते',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ks.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ks_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ks_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat, Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'M/D/YY',\n    ],\n    'months' => ['جنؤری', 'فرؤری', 'مارٕچ', 'اپریل', 'میٔ', 'جوٗن', 'جوٗلایی', 'اگست', 'ستمبر', 'اکتوٗبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنؤری', 'فرؤری', 'مارٕچ', 'اپریل', 'میٔ', 'جوٗن', 'جوٗلایی', 'اگست', 'ستمبر', 'اکتوٗبر', 'نومبر', 'دسمبر'],\n    'weekdays' => ['آتهوار', 'ژءندروار', 'بوءںوار', 'بودهوار', 'برىسوار', 'جمع', 'بٹوار'],\n    'weekdays_short' => ['آتهوار', 'ژءنتروار', 'بوءںوار', 'بودهوار', 'برىسوار', 'جمع', 'بٹوار'],\n    'weekdays_min' => ['آتهوار', 'ژءنتروار', 'بوءںوار', 'بودهوار', 'برىسوار', 'جمع', 'بٹوار'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['دوپھربرونھ', 'دوپھرپتھ'],\n\n    'year' => ':count آب', // less reliable\n    'y' => ':count آب', // less reliable\n    'a_year' => ':count آب', // less reliable\n\n    'month' => ':count रान्', // less reliable\n    'm' => ':count रान्', // less reliable\n    'a_month' => ':count रान्', // less reliable\n\n    'week' => ':count آتھٕوار', // less reliable\n    'w' => ':count آتھٕوار', // less reliable\n    'a_week' => ':count آتھٕوار', // less reliable\n\n    'hour' => ':count سۄن', // less reliable\n    'h' => ':count سۄن', // less reliable\n    'a_hour' => ':count سۄن', // less reliable\n\n    'minute' => ':count فَن', // less reliable\n    'min' => ':count فَن', // less reliable\n    'a_minute' => ':count فَن', // less reliable\n\n    'second' => ':count दोʼयुम', // less reliable\n    's' => ':count दोʼयुम', // less reliable\n    'a_second' => ':count दोʼयुम', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ks_IN@devanagari.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - ks-gnome-trans-commits@lists.code.indlinux.net\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'M/D/YY',\n    ],\n    'months' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'months_short' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'weekdays' => ['आथवार', 'चॅ़दुरवार', 'बोमवार', 'ब्वदवार', 'ब्रसवार', 'शोकुरवार', 'बटुवार'],\n    'weekdays_short' => ['आथ ', 'चॅ़दुर', 'बोम', 'ब्वद', 'ब्रस', 'शोकुर', 'बटु'],\n    'weekdays_min' => ['आथ ', 'चॅ़दुर', 'बोम', 'ब्वद', 'ब्रस', 'शोकुर', 'बटु'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ksb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['makeo', 'nyiaghuo'],\n    'weekdays' => ['Jumaapii', 'Jumaatatu', 'Jumaane', 'Jumaatano', 'Alhamisi', 'Ijumaa', 'Jumaamosi'],\n    'weekdays_short' => ['Jpi', 'Jtt', 'Jmn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Jpi', 'Jtt', 'Jmn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'months' => ['Januali', 'Febluali', 'Machi', 'Aplili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ksf.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['sárúwá', 'cɛɛ́nko'],\n    'weekdays' => ['sɔ́ndǝ', 'lǝndí', 'maadí', 'mɛkrɛdí', 'jǝǝdí', 'júmbá', 'samdí'],\n    'weekdays_short' => ['sɔ́n', 'lǝn', 'maa', 'mɛk', 'jǝǝ', 'júm', 'sam'],\n    'weekdays_min' => ['sɔ́n', 'lǝn', 'maa', 'mɛk', 'jǝǝ', 'júm', 'sam'],\n    'months' => ['ŋwíí a ntɔ́ntɔ', 'ŋwíí akǝ bɛ́ɛ', 'ŋwíí akǝ ráá', 'ŋwíí akǝ nin', 'ŋwíí akǝ táan', 'ŋwíí akǝ táafɔk', 'ŋwíí akǝ táabɛɛ', 'ŋwíí akǝ táaraa', 'ŋwíí akǝ táanin', 'ŋwíí akǝ ntɛk', 'ŋwíí akǝ ntɛk di bɔ́k', 'ŋwíí akǝ ntɛk di bɛ́ɛ'],\n    'months_short' => ['ŋ1', 'ŋ2', 'ŋ3', 'ŋ4', 'ŋ5', 'ŋ6', 'ŋ7', 'ŋ8', 'ŋ9', 'ŋ10', 'ŋ11', 'ŋ12'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ksh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['v.M.', 'n.M.'],\n    'weekdays' => ['Sunndaach', 'Mohndaach', 'Dinnsdaach', 'Metwoch', 'Dunnersdaach', 'Friidaach', 'Samsdaach'],\n    'weekdays_short' => ['Su.', 'Mo.', 'Di.', 'Me.', 'Du.', 'Fr.', 'Sa.'],\n    'weekdays_min' => ['Su', 'Mo', 'Di', 'Me', 'Du', 'Fr', 'Sa'],\n    'months' => ['Jannewa', 'Fäbrowa', 'Määz', 'Aprell', 'Mai', 'Juuni', 'Juuli', 'Oujoß', 'Septämber', 'Oktohber', 'Novämber', 'Dezämber'],\n    'months_short' => ['Jan', 'Fäb', 'Mäz', 'Apr', 'Mai', 'Jun', 'Jul', 'Ouj', 'Säp', 'Okt', 'Nov', 'Dez'],\n    'months_short_standalone' => ['Jan.', 'Fäb.', 'Mäz.', 'Apr.', 'Mai', 'Jun.', 'Jul.', 'Ouj.', 'Säp.', 'Okt.', 'Nov.', 'Dez.'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D. M. YYYY',\n        'LL' => 'D. MMM. YYYY',\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, [dä] D. MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count Johr',\n    'y' => ':count Johr',\n    'a_year' => ':count Johr',\n\n    'month' => ':count Moohnd',\n    'm' => ':count Moohnd',\n    'a_month' => ':count Moohnd',\n\n    'week' => ':count woch',\n    'w' => ':count woch',\n    'a_week' => ':count woch',\n\n    'day' => ':count Daach',\n    'd' => ':count Daach',\n    'a_day' => ':count Daach',\n\n    'hour' => ':count Uhr',\n    'h' => ':count Uhr',\n    'a_hour' => ':count Uhr',\n\n    'minute' => ':count Menutt',\n    'min' => ':count Menutt',\n    'a_minute' => ':count Menutt',\n\n    'second' => ':count Sekůndt',\n    's' => ':count Sekůndt',\n    'a_second' => ':count Sekůndt',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ku.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Unicode, Inc.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'ago' => 'berî :time',\n    'from_now' => 'di :time de',\n    'after' => ':time piştî',\n    'before' => ':time berê',\n    'year' => ':count sal',\n    'a_year' => ':count sal',\n    'y' => ':count sal',\n    'year_ago' => ':count salê|:count salan',\n    'y_ago' => ':count salê|:count salan',\n    'year_from_now' => 'salekê|:count salan',\n    'y_from_now' => 'salekê|:count salan',\n    'month' => ':count meh',\n    'a_month' => ':count meh',\n    'm' => ':count meh',\n    'week' => ':count hefte',\n    'a_week' => ':count hefte',\n    'w' => ':count hefte',\n    'day' => ':count roj',\n    'a_day' => ':count roj',\n    'd' => ':count roj',\n    'hour' => ':count saet',\n    'a_hour' => ':count saet',\n    'h' => ':count saet',\n    'minute' => ':count deqîqe',\n    'a_minute' => ':count deqîqe',\n    'min' => ':count deqîqe',\n    'second' => ':count saniye',\n    'a_second' => ':count saniye',\n    's' => ':count saniye',\n    'months' => ['rêbendanê', 'reşemiyê', 'adarê', 'avrêlê', 'gulanê', 'pûşperê', 'tîrmehê', 'gelawêjê', 'rezberê', 'kewçêrê', 'sermawezê', 'berfanbarê'],\n    'months_standalone' => ['rêbendan', 'reşemî', 'adar', 'avrêl', 'gulan', 'pûşper', 'tîrmeh', 'gelawêj', 'rezber', 'kewçêr', 'sermawez', 'berfanbar'],\n    'months_short' => ['rêb', 'reş', 'ada', 'avr', 'gul', 'pûş', 'tîr', 'gel', 'rez', 'kew', 'ser', 'ber'],\n    'weekdays' => ['yekşem', 'duşem', 'sêşem', 'çarşem', 'pêncşem', 'în', 'şemî'],\n    'weekdays_short' => ['yş', 'dş', 'sş', 'çş', 'pş', 'în', 'ş'],\n    'weekdays_min' => ['Y', 'D', 'S', 'Ç', 'P', 'Î', 'Ş'],\n    'list' => [', ', ' û '],\n    'ordinal' => ':number',\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ku_TR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ku.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/kw_GB.php';\n"
  },
  {
    "path": "src/Carbon/Lang/kw_GB.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Alastair McKinstry    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['mis Genver', 'mis Hwevrer', 'mis Meurth', 'mis Ebrel', 'mis Me', 'mis Metheven', 'mis Gortheren', 'mis Est', 'mis Gwynngala', 'mis Hedra', 'mis Du', 'mis Kevardhu'],\n    'months_short' => ['Gen', 'Hwe', 'Meu', 'Ebr', 'Me', 'Met', 'Gor', 'Est', 'Gwn', 'Hed', 'Du', 'Kev'],\n    'weekdays' => ['De Sul', 'De Lun', 'De Merth', 'De Merher', 'De Yow', 'De Gwener', 'De Sadorn'],\n    'weekdays_short' => ['Sul', 'Lun', 'Mth', 'Mhr', 'Yow', 'Gwe', 'Sad'],\n    'weekdays_min' => ['Sul', 'Lun', 'Mth', 'Mhr', 'Yow', 'Gwe', 'Sad'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count bledhen',\n    'y' => ':count bledhen',\n    'a_year' => ':count bledhen',\n\n    'month' => ':count mis',\n    'm' => ':count mis',\n    'a_month' => ':count mis',\n\n    'week' => ':count seythen',\n    'w' => ':count seythen',\n    'a_week' => ':count seythen',\n\n    'day' => ':count dydh',\n    'd' => ':count dydh',\n    'a_day' => ':count dydh',\n\n    'hour' => ':count eur',\n    'h' => ':count eur',\n    'a_hour' => ':count eur',\n\n    'minute' => ':count mynysen',\n    'min' => ':count mynysen',\n    'a_minute' => ':count mynysen',\n\n    'second' => ':count pryjwyth',\n    's' => ':count pryjwyth',\n    'a_second' => ':count pryjwyth',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ky.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - acutexyz\n * - Josh Soref\n * - François B\n * - Chyngyz Arystan uulu\n * - Chyngyz\n * - acutexyz\n * - Josh Soref\n * - François B\n * - Chyngyz Arystan uulu\n */\nreturn [\n    'year' => ':count жыл',\n    'a_year' => '{1}бир жыл|:count жыл',\n    'y' => ':count жыл',\n    'month' => ':count ай',\n    'a_month' => '{1}бир ай|:count ай',\n    'm' => ':count ай',\n    'week' => ':count апта',\n    'a_week' => '{1}бир апта|:count апта',\n    'w' => ':count апт.',\n    'day' => ':count күн',\n    'a_day' => '{1}бир күн|:count күн',\n    'd' => ':count күн',\n    'hour' => ':count саат',\n    'a_hour' => '{1}бир саат|:count саат',\n    'h' => ':count саат.',\n    'minute' => ':count мүнөт',\n    'a_minute' => '{1}бир мүнөт|:count мүнөт',\n    'min' => ':count мүн.',\n    'second' => ':count секунд',\n    'a_second' => '{1}бирнече секунд|:count секунд',\n    's' => ':count сек.',\n    'ago' => ':time мурун',\n    'from_now' => ':time ичинде',\n    'diff_now' => 'азыр',\n    'diff_today' => 'Бүгүн',\n    'diff_today_regexp' => 'Бүгүн(?:\\\\s+саат)?',\n    'diff_yesterday' => 'кечээ',\n    'diff_yesterday_regexp' => 'Кече(?:\\\\s+саат)?',\n    'diff_tomorrow' => 'эртең',\n    'diff_tomorrow_regexp' => 'Эртең(?:\\\\s+саат)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Бүгүн саат] LT',\n        'nextDay' => '[Эртең саат] LT',\n        'nextWeek' => 'dddd [саат] LT',\n        'lastDay' => '[Кече саат] LT',\n        'lastWeek' => '[Өткен аптанын] dddd [күнү] [саат] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        static $suffixes = [\n            0 => '-чү',\n            1 => '-чи',\n            2 => '-чи',\n            3 => '-чү',\n            4 => '-чү',\n            5 => '-чи',\n            6 => '-чы',\n            7 => '-чи',\n            8 => '-чи',\n            9 => '-чу',\n            10 => '-чу',\n            20 => '-чы',\n            30 => '-чу',\n            40 => '-чы',\n            50 => '-чү',\n            60 => '-чы',\n            70 => '-чи',\n            80 => '-чи',\n            90 => '-чу',\n            100 => '-чү',\n        ];\n\n        return $number.($suffixes[$number] ?? $suffixes[$number % 10] ?? $suffixes[$number >= 100 ? 100 : -1] ?? '');\n    },\n    'months' => ['январь', 'февраль', 'март', 'апрель', 'май', 'июнь', 'июль', 'август', 'сентябрь', 'октябрь', 'ноябрь', 'декабрь'],\n    'months_short' => ['янв', 'фев', 'март', 'апр', 'май', 'июнь', 'июль', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'weekdays' => ['Жекшемби', 'Дүйшөмбү', 'Шейшемби', 'Шаршемби', 'Бейшемби', 'Жума', 'Ишемби'],\n    'weekdays_short' => ['Жек', 'Дүй', 'Шей', 'Шар', 'Бей', 'Жум', 'Ише'],\n    'weekdays_min' => ['Жк', 'Дй', 'Шй', 'Шр', 'Бй', 'Жм', 'Иш'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => ' ',\n    'meridiem' => ['таңкы', 'түштөн кийинки'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ky_KG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ky.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lag.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['TOO', 'MUU'],\n    'weekdays' => ['Jumapíiri', 'Jumatátu', 'Jumaíne', 'Jumatáano', 'Alamíisi', 'Ijumáa', 'Jumamóosi'],\n    'weekdays_short' => ['Píili', 'Táatu', 'Íne', 'Táano', 'Alh', 'Ijm', 'Móosi'],\n    'weekdays_min' => ['Píili', 'Táatu', 'Íne', 'Táano', 'Alh', 'Ijm', 'Móosi'],\n    'months' => ['Kʉfúngatɨ', 'Kʉnaanɨ', 'Kʉkeenda', 'Kwiikumi', 'Kwiinyambála', 'Kwiidwaata', 'Kʉmʉʉnchɨ', 'Kʉvɨɨrɨ', 'Kʉsaatʉ', 'Kwiinyi', 'Kʉsaano', 'Kʉsasatʉ'],\n    'months_short' => ['Fúngatɨ', 'Naanɨ', 'Keenda', 'Ikúmi', 'Inyambala', 'Idwaata', 'Mʉʉnchɨ', 'Vɨɨrɨ', 'Saatʉ', 'Inyi', 'Saano', 'Sasatʉ'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/lb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - dan-nl\n * - Simon Lelorrain (slelorrain)\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count Joer',\n    'y' => ':countJ',\n    'month' => ':count Mount|:count Méint',\n    'm' => ':countMo',\n    'week' => ':count Woch|:count Wochen',\n    'w' => ':countWo|:countWo',\n    'day' => ':count Dag|:count Deeg',\n    'd' => ':countD',\n    'hour' => ':count Stonn|:count Stonnen',\n    'h' => ':countSto',\n    'minute' => ':count Minutt|:count Minutten',\n    'min' => ':countM',\n    'second' => ':count Sekonn|:count Sekonnen',\n    's' => ':countSek',\n\n    'ago' => 'virun :time',\n    'from_now' => 'an :time',\n    'before' => ':time virdrun',\n    'after' => ':time duerno',\n\n    'diff_today' => 'Haut',\n    'diff_yesterday' => 'Gëschter',\n    'diff_yesterday_regexp' => 'Gëschter(?:\\\\s+um)?',\n    'diff_tomorrow' => 'Muer',\n    'diff_tomorrow_regexp' => 'Muer(?:\\\\s+um)?',\n    'diff_today_regexp' => 'Haut(?:\\\\s+um)?',\n    'formats' => [\n        'LT' => 'H:mm [Auer]',\n        'LTS' => 'H:mm:ss [Auer]',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY H:mm [Auer]',\n        'LLLL' => 'dddd, D. MMMM YYYY H:mm [Auer]',\n    ],\n\n    'calendar' => [\n        'sameDay' => '[Haut um] LT',\n        'nextDay' => '[Muer um] LT',\n        'nextWeek' => 'dddd [um] LT',\n        'lastDay' => '[Gëschter um] LT',\n        'lastWeek' => static function (CarbonInterface $date) {\n            // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule\n            return match ($date->dayOfWeek) {\n                2, 4 => '[Leschten] dddd [um] LT',\n                default => '[Leschte] dddd [um] LT',\n            };\n        },\n        'sameElse' => 'L',\n    ],\n\n    'months' => ['Januar', 'Februar', 'Mäerz', 'Abrëll', 'Mee', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],\n    'months_short' => ['Jan.', 'Febr.', 'Mrz.', 'Abr.', 'Mee', 'Jun.', 'Jul.', 'Aug.', 'Sept.', 'Okt.', 'Nov.', 'Dez.'],\n    'weekdays' => ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'],\n    'weekdays_short' => ['So.', 'Mé.', 'Dë.', 'Më.', 'Do.', 'Fr.', 'Sa.'],\n    'weekdays_min' => ['So', 'Mé', 'Dë', 'Më', 'Do', 'Fr', 'Sa'],\n    'ordinal' => ':number.',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' an '],\n    'meridiem' => ['moies', 'mëttes'],\n    'weekdays_short_standalone' => ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'],\n    'months_short_standalone' => ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/lb_LU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/lb.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/lg_UG.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lg_UG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Akademe ya Luganda Kizito Birabwa kompyuta@kizito.uklinux.net\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Janwaliyo', 'Febwaliyo', 'Marisi', 'Apuli', 'Maayi', 'Juuni', 'Julaayi', 'Agusito', 'Sebuttemba', 'Okitobba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apu', 'Maa', 'Juu', 'Jul', 'Agu', 'Seb', 'Oki', 'Nov', 'Des'],\n    'weekdays' => ['Sabiiti', 'Balaza', 'Lwakubiri', 'Lwakusatu', 'Lwakuna', 'Lwakutaano', 'Lwamukaaga'],\n    'weekdays_short' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'],\n    'weekdays_min' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'month' => ':count njuba', // less reliable\n    'm' => ':count njuba', // less reliable\n    'a_month' => ':count njuba', // less reliable\n\n    'year' => ':count mwaaka',\n    'y' => ':count mwaaka',\n    'a_year' => ':count mwaaka',\n\n    'week' => ':count sabbiiti',\n    'w' => ':count sabbiiti',\n    'a_week' => ':count sabbiiti',\n\n    'day' => ':count lunaku',\n    'd' => ':count lunaku',\n    'a_day' => ':count lunaku',\n\n    'hour' => 'saawa :count',\n    'h' => 'saawa :count',\n    'a_hour' => 'saawa :count',\n\n    'minute' => 'ddakiika :count',\n    'min' => 'ddakiika :count',\n    'a_minute' => 'ddakiika :count',\n\n    'second' => ':count kyʼokubiri',\n    's' => ':count kyʼokubiri',\n    'a_second' => ':count kyʼokubiri',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/li.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/li_NL.php';\n"
  },
  {
    "path": "src/Carbon/Lang/li_NL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandriva.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['jannewarie', 'fibberwarie', 'miert', 'eprèl', 'meij', 'junie', 'julie', 'augustus', 'september', 'oktober', 'november', 'desember'],\n    'months_short' => ['jan', 'fib', 'mie', 'epr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],\n    'weekdays' => ['zóndig', 'maondig', 'daensdig', 'goonsdig', 'dónderdig', 'vriedig', 'zaoterdig'],\n    'weekdays_short' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'],\n    'weekdays_min' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'minute' => ':count momênt', // less reliable\n    'min' => ':count momênt', // less reliable\n    'a_minute' => ':count momênt', // less reliable\n\n    'year' => ':count jaor',\n    'y' => ':count jaor',\n    'a_year' => ':count jaor',\n\n    'month' => ':count maond',\n    'm' => ':count maond',\n    'a_month' => ':count maond',\n\n    'week' => ':count waek',\n    'w' => ':count waek',\n    'a_week' => ':count waek',\n\n    'day' => ':count daag',\n    'd' => ':count daag',\n    'a_day' => ':count daag',\n\n    'hour' => ':count oer',\n    'h' => ':count oer',\n    'a_hour' => ':count oer',\n\n    'second' => ':count Secónd',\n    's' => ':count Secónd',\n    'a_second' => ':count Secónd',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/lij.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/lij_IT.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lij_IT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Gastaldi    alessio.gastaldi@libero.it\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['zenâ', 'fevrâ', 'marzo', 'avrî', 'mazzo', 'zûgno', 'lûggio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dixembre'],\n    'months_short' => ['zen', 'fev', 'mar', 'arv', 'maz', 'zûg', 'lûg', 'ago', 'set', 'ött', 'nov', 'dix'],\n    'weekdays' => ['domenega', 'lûnedì', 'martedì', 'mercUrdì', 'zêggia', 'venardì', 'sabbo'],\n    'weekdays_short' => ['dom', 'lûn', 'mar', 'mer', 'zêu', 'ven', 'sab'],\n    'weekdays_min' => ['dom', 'lûn', 'mar', 'mer', 'zêu', 'ven', 'sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count etæ', // less reliable\n    'y' => ':count etæ', // less reliable\n    'a_year' => ':count etæ', // less reliable\n\n    'month' => ':count meize',\n    'm' => ':count meize',\n    'a_month' => ':count meize',\n\n    'week' => ':count settemannha',\n    'w' => ':count settemannha',\n    'a_week' => ':count settemannha',\n\n    'day' => ':count giorno',\n    'd' => ':count giorno',\n    'a_day' => ':count giorno',\n\n    'hour' => ':count reléuio', // less reliable\n    'h' => ':count reléuio', // less reliable\n    'a_hour' => ':count reléuio', // less reliable\n\n    'minute' => ':count menûo',\n    'min' => ':count menûo',\n    'a_minute' => ':count menûo',\n\n    'second' => ':count segondo',\n    's' => ':count segondo',\n    'a_second' => ':count segondo',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/lkt.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n\n    'month' => ':count haŋwí', // less reliable\n    'm' => ':count haŋwí', // less reliable\n    'a_month' => ':count haŋwí', // less reliable\n\n    'week' => ':count šakówiŋ', // less reliable\n    'w' => ':count šakówiŋ', // less reliable\n    'a_week' => ':count šakówiŋ', // less reliable\n\n    'hour' => ':count maza škaŋškaŋ', // less reliable\n    'h' => ':count maza škaŋškaŋ', // less reliable\n    'a_hour' => ':count maza škaŋškaŋ', // less reliable\n\n    'minute' => ':count číkʼala', // less reliable\n    'min' => ':count číkʼala', // less reliable\n    'a_minute' => ':count číkʼala', // less reliable\n\n    'year' => ':count waníyetu',\n    'y' => ':count waníyetu',\n    'a_year' => ':count waníyetu',\n\n    'day' => ':count aŋpétu',\n    'd' => ':count aŋpétu',\n    'a_day' => ':count aŋpétu',\n\n    'second' => ':count icinuŋpa',\n    's' => ':count icinuŋpa',\n    'a_second' => ':count icinuŋpa',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ln.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ubuntu René Manassé GALEKWA renemanasse@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'months' => ['sánzá ya yambo', 'sánzá ya míbalé', 'sánzá ya mísáto', 'sánzá ya mínei', 'sánzá ya mítáno', 'sánzá ya motóbá', 'sánzá ya nsambo', 'sánzá ya mwambe', 'sánzá ya libwa', 'sánzá ya zómi', 'sánzá ya zómi na mɔ̌kɔ́', 'sánzá ya zómi na míbalé'],\n    'months_short' => ['yan', 'fbl', 'msi', 'apl', 'mai', 'yun', 'yul', 'agt', 'stb', 'ɔtb', 'nvb', 'dsb'],\n    'weekdays' => ['Lomíngo', 'Mosálá mɔ̌kɔ́', 'Misálá míbalé', 'Misálá mísáto', 'Misálá mínei', 'Misálá mítáno', 'Mpɔ́sɔ'],\n    'weekdays_short' => ['m1.', 'm2.', 'm3.', 'm4.', 'm5.', 'm6.', 'm7.'],\n    'weekdays_min' => ['m1.', 'm2.', 'm3.', 'm4.', 'm5.', 'm6.', 'm7.'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => 'mbula :count',\n    'y' => 'mbula :count',\n    'a_year' => 'mbula :count',\n\n    'month' => 'sánzá :count',\n    'm' => 'sánzá :count',\n    'a_month' => 'sánzá :count',\n\n    'week' => 'mpɔ́sɔ :count',\n    'w' => 'mpɔ́sɔ :count',\n    'a_week' => 'mpɔ́sɔ :count',\n\n    'day' => 'mokɔlɔ :count',\n    'd' => 'mokɔlɔ :count',\n    'a_day' => 'mokɔlɔ :count',\n\n    'hour' => 'ngonga :count',\n    'h' => 'ngonga :count',\n    'a_hour' => 'ngonga :count',\n\n    'minute' => 'miniti :count',\n    'min' => 'miniti :count',\n    'a_minute' => 'miniti :count',\n\n    'second' => 'segɔnde :count',\n    's' => 'segɔnde :count',\n    'a_second' => 'segɔnde :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ln_AO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ln.php', [\n    'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa míbalé', 'mokɔlɔ mwa mísáto', 'mokɔlɔ ya mínéi', 'mokɔlɔ ya mítáno', 'mpɔ́sɔ'],\n    'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],\n    'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],\n    'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ln_CD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ubuntu René Manassé GALEKWA renemanasse@gmail.com\n */\nreturn require __DIR__.'/ln.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ln_CF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ln.php', [\n    'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa míbalé', 'mokɔlɔ mwa mísáto', 'mokɔlɔ ya mínéi', 'mokɔlɔ ya mítáno', 'mpɔ́sɔ'],\n    'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],\n    'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],\n    'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ln_CG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ln.php', [\n    'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa míbalé', 'mokɔlɔ mwa mísáto', 'mokɔlɔ ya mínéi', 'mokɔlɔ ya mítáno', 'mpɔ́sɔ'],\n    'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],\n    'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],\n    'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/lo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - ryanhart2\n */\nreturn [\n    'year' => ':count ປີ',\n    'y' => ':count ປີ',\n    'month' => ':count ເດືອນ',\n    'm' => ':count ດ. ',\n    'week' => ':count ອາທິດ',\n    'w' => ':count ອທ. ',\n    'day' => ':count ມື້',\n    'd' => ':count ມື້',\n    'hour' => ':count ຊົ່ວໂມງ',\n    'h' => ':count ຊມ. ',\n    'minute' => ':count ນາທີ',\n    'min' => ':count ນທ. ',\n    'second' => ':count ວິນາທີ',\n    'a_second' => '{0,1}ບໍ່ເທົ່າໃດວິນາທີ|[-Inf,Inf]:count ວິນາທີ',\n    's' => ':count ວິ. ',\n    'ago' => ':timeຜ່ານມາ',\n    'from_now' => 'ອີກ :time',\n    'diff_now' => 'ຕອນນີ້',\n    'diff_today' => 'ມື້ນີ້ເວລາ',\n    'diff_yesterday' => 'ມື້ວານນີ້ເວລາ',\n    'diff_tomorrow' => 'ມື້ອື່ນເວລາ',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'ວັນdddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ມື້ນີ້ເວລາ] LT',\n        'nextDay' => '[ມື້ອື່ນເວລາ] LT',\n        'nextWeek' => '[ວັນ]dddd[ໜ້າເວລາ] LT',\n        'lastDay' => '[ມື້ວານນີ້ເວລາ] LT',\n        'lastWeek' => '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => 'ທີ່:number',\n    'meridiem' => ['ຕອນເຊົ້າ', 'ຕອນແລງ'],\n    'months' => ['ມັງກອນ', 'ກຸມພາ', 'ມີນາ', 'ເມສາ', 'ພຶດສະພາ', 'ມິຖຸນາ', 'ກໍລະກົດ', 'ສິງຫາ', 'ກັນຍາ', 'ຕຸລາ', 'ພະຈິກ', 'ທັນວາ'],\n    'months_short' => ['ມັງກອນ', 'ກຸມພາ', 'ມີນາ', 'ເມສາ', 'ພຶດສະພາ', 'ມິຖຸນາ', 'ກໍລະກົດ', 'ສິງຫາ', 'ກັນຍາ', 'ຕຸລາ', 'ພະຈິກ', 'ທັນວາ'],\n    'weekdays' => ['ອາທິດ', 'ຈັນ', 'ອັງຄານ', 'ພຸດ', 'ພະຫັດ', 'ສຸກ', 'ເສົາ'],\n    'weekdays_short' => ['ທິດ', 'ຈັນ', 'ອັງຄານ', 'ພຸດ', 'ພະຫັດ', 'ສຸກ', 'ເສົາ'],\n    'weekdays_min' => ['ທ', 'ຈ', 'ອຄ', 'ພ', 'ພຫ', 'ສກ', 'ສ'],\n    'list' => [', ', 'ແລະ '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/lo_LA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/lo.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lrc.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n\n    'minute' => ':count هنر', // less reliable\n    'min' => ':count هنر', // less reliable\n    'a_minute' => ':count هنر', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/lrc_IQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/lrc.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lt.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - tjku\n * - valdas406\n * - Justas Palumickas\n * - Max Melentiev\n * - Andrius Janauskas\n * - Juanito Fatas\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Nicolás Hock Isaza\n * - Laurynas Butkus\n * - Sven Fuchs\n * - Dominykas Tijūnaitis\n * - Justinas Bolys\n * - Ričardas\n * - Kirill Chalkin\n * - Rolandas\n * - Justinas (Gamesh)\n * - Sam Axe\n */\nreturn [\n    'year' => ':count metai|:count metai|:count metų',\n    'y' => ':count m.',\n    'month' => ':count mėnuo|:count mėnesiai|:count mėnesį',\n    'm' => ':count mėn.',\n    'week' => ':count savaitė|:count savaitės|:count savaitę',\n    'w' => ':count sav.',\n    'day' => ':count diena|:count dienos|:count dienų',\n    'd' => ':count d.',\n    'hour' => ':count valanda|:count valandos|:count valandų',\n    'h' => ':count val.',\n    'minute' => ':count minutė|:count minutės|:count minutę',\n    'min' => ':count min.',\n    'second' => ':count sekundė|:count sekundės|:count sekundžių',\n    's' => ':count sek.',\n\n    'year_ago' => ':count metus|:count metus|:count metų',\n    'month_ago' => ':count mėnesį|:count mėnesius|:count mėnesių',\n    'week_ago' => ':count savaitę|:count savaites|:count savaičių',\n    'day_ago' => ':count dieną|:count dienas|:count dienų',\n    'hour_ago' => ':count valandą|:count valandas|:count valandų',\n    'minute_ago' => ':count minutę|:count minutes|:count minučių',\n    'second_ago' => ':count sekundę|:count sekundes|:count sekundžių',\n\n    'year_from_now' => ':count metai|:count metai|:count metų',\n    'month_from_now' => ':count mėnuo|:count mėnesiai|:count mėnesių',\n    'week_from_now' => ':count savaitė|:count savaitės|:count savaičių',\n    'day_from_now' => ':count diena|:count dienos|:count dienų',\n    'hour_from_now' => ':count valanda|:count valandos|:count valandų',\n    'minute_from_now' => ':count minutė|:count minutės|:count minučių',\n    'second_from_now' => ':count sekundė|:count sekundės|:count sekundžių',\n\n    'year_after' => ':count metai|:count metai|:count metų',\n    'month_after' => ':count mėnuo|:count mėnesiai|:count mėnesių',\n    'week_after' => ':count savaitė|:count savaitės|:count savaičių',\n    'day_after' => ':count diena|:count dienos|:count dienų',\n    'hour_after' => ':count valanda|:count valandos|:count valandų',\n    'minute_after' => ':count minutė|:count minutės|:count minučių',\n    'second_after' => ':count sekundė|:count sekundės|:count sekundžių',\n\n    'year_before' => ':count metų',\n    'month_before' => ':count mėnesio|:count mėnesių|:count mėnesių',\n    'week_before' => ':count savaitės|:count savaičių|:count savaičių',\n    'day_before' => ':count dienos|:count dienų|:count dienų',\n    'hour_before' => ':count valandos|:count valandų|:count valandų',\n    'minute_before' => ':count minutės|:count minučių|:count minučių',\n    'second_before' => ':count sekundės|:count sekundžių|:count sekundžių',\n\n    'ago' => 'prieš :time',\n    'from_now' => ':time nuo dabar',\n    'after' => 'po :time',\n    'before' => 'už :time',\n\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'diff_now' => 'ką tik',\n    'diff_today' => 'Šiandien',\n    'diff_yesterday' => 'vakar',\n    'diff_yesterday_regexp' => 'Vakar',\n    'diff_tomorrow' => 'rytoj',\n    'diff_tomorrow_regexp' => 'Rytoj',\n    'diff_before_yesterday' => 'užvakar',\n    'diff_after_tomorrow' => 'poryt',\n\n    'period_recurrences' => 'kartą|:count kartų',\n    'period_interval' => 'kiekvieną :interval',\n    'period_start_date' => 'nuo :date',\n    'period_end_date' => 'iki :date',\n\n    'months' => ['sausio', 'vasario', 'kovo', 'balandžio', 'gegužės', 'birželio', 'liepos', 'rugpjūčio', 'rugsėjo', 'spalio', 'lapkričio', 'gruodžio'],\n    'months_standalone' => ['sausis', 'vasaris', 'kovas', 'balandis', 'gegužė', 'birželis', 'liepa', 'rugpjūtis', 'rugsėjis', 'spalis', 'lapkritis', 'gruodis'],\n    'months_regexp' => '/(L{2,4}|D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?)/',\n    'months_short' => ['sau', 'vas', 'kov', 'bal', 'geg', 'bir', 'lie', 'rgp', 'rgs', 'spa', 'lap', 'gru'],\n    'weekdays' => ['sekmadienį', 'pirmadienį', 'antradienį', 'trečiadienį', 'ketvirtadienį', 'penktadienį', 'šeštadienį'],\n    'weekdays_standalone' => ['sekmadienis', 'pirmadienis', 'antradienis', 'trečiadienis', 'ketvirtadienis', 'penktadienis', 'šeštadienis'],\n    'weekdays_short' => ['sek', 'pir', 'ant', 'tre', 'ket', 'pen', 'šeš'],\n    'weekdays_min' => ['se', 'pi', 'an', 'tr', 'ke', 'pe', 'še'],\n    'list' => [', ', ' ir '],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'MMMM DD, YYYY',\n        'LLL' => 'DD MMM HH:mm',\n        'LLLL' => 'MMMM DD, YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Šiandien] LT',\n        'nextDay' => '[Rytoj] LT',\n        'nextWeek' => 'dddd LT',\n        'lastDay' => '[Vakar] LT',\n        'lastWeek' => '[Paskutinį] dddd LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        return match ($number) {\n            0 => '0-is',\n            3 => '3-ias',\n            default => \"$number-as\",\n        };\n    },\n    'meridiem' => ['priešpiet', 'popiet'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/lt_LT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/lt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Dinda', 'Dilolo'],\n    'weekdays' => ['Lumingu', 'Nkodya', 'Ndàayà', 'Ndangù', 'Njòwa', 'Ngòvya', 'Lubingu'],\n    'weekdays_short' => ['Lum', 'Nko', 'Ndy', 'Ndg', 'Njw', 'Ngv', 'Lub'],\n    'weekdays_min' => ['Lum', 'Nko', 'Ndy', 'Ndg', 'Njw', 'Ngv', 'Lub'],\n    'months' => ['Ciongo', 'Lùishi', 'Lusòlo', 'Mùuyà', 'Lumùngùlù', 'Lufuimi', 'Kabàlàshìpù', 'Lùshìkà', 'Lutongolo', 'Lungùdi', 'Kaswèkèsè', 'Ciswà'],\n    'months_short' => ['Cio', 'Lui', 'Lus', 'Muu', 'Lum', 'Luf', 'Kab', 'Lush', 'Lut', 'Lun', 'Kas', 'Cis'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/luo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['OD', 'OT'],\n    'weekdays' => ['Jumapil', 'Wuok Tich', 'Tich Ariyo', 'Tich Adek', 'Tich Ang’wen', 'Tich Abich', 'Ngeso'],\n    'weekdays_short' => ['JMP', 'WUT', 'TAR', 'TAD', 'TAN', 'TAB', 'NGS'],\n    'weekdays_min' => ['JMP', 'WUT', 'TAR', 'TAD', 'TAN', 'TAB', 'NGS'],\n    'months' => ['Dwe mar Achiel', 'Dwe mar Ariyo', 'Dwe mar Adek', 'Dwe mar Ang’wen', 'Dwe mar Abich', 'Dwe mar Auchiel', 'Dwe mar Abiriyo', 'Dwe mar Aboro', 'Dwe mar Ochiko', 'Dwe mar Apar', 'Dwe mar gi achiel', 'Dwe mar Apar gi ariyo'],\n    'months_short' => ['DAC', 'DAR', 'DAD', 'DAN', 'DAH', 'DAU', 'DAO', 'DAB', 'DOC', 'DAP', 'DGI', 'DAG'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'year' => 'higni :count',\n    'y' => 'higni :count',\n    'a_year' => ':higni :count',\n\n    'month' => 'dweche :count',\n    'm' => 'dweche :count',\n    'a_month' => 'dweche :count',\n\n    'week' => 'jumbe :count',\n    'w' => 'jumbe :count',\n    'a_week' => 'jumbe :count',\n\n    'day' => 'ndalo :count',\n    'd' => 'ndalo :count',\n    'a_day' => 'ndalo :count',\n\n    'hour' => 'seche :count',\n    'h' => 'seche :count',\n    'a_hour' => 'seche :count',\n\n    'minute' => 'dakika :count',\n    'min' => 'dakika :count',\n    'a_minute' => 'dakika :count',\n\n    'second' => 'nus dakika :count',\n    's' => 'nus dakika :count',\n    'a_second' => 'nus dakika :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/luy.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'weekdays' => ['Jumapiri', 'Jumatatu', 'Jumanne', 'Jumatano', 'Murwa wa Kanne', 'Murwa wa Katano', 'Jumamosi'],\n    'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],\n    'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    // Too unreliable\n    /*\n    'year' => ':count liliino', // less reliable\n    'y' => ':count liliino', // less reliable\n    'a_year' => ':count liliino', // less reliable\n\n    'month' => ':count kumwesi', // less reliable\n    'm' => ':count kumwesi', // less reliable\n    'a_month' => ':count kumwesi', // less reliable\n\n    'week' => ':count olutambi', // less reliable\n    'w' => ':count olutambi', // less reliable\n    'a_week' => ':count olutambi', // less reliable\n\n    'day' => ':count luno', // less reliable\n    'd' => ':count luno', // less reliable\n    'a_day' => ':count luno', // less reliable\n\n    'hour' => ':count ekengele', // less reliable\n    'h' => ':count ekengele', // less reliable\n    'a_hour' => ':count ekengele', // less reliable\n\n    'minute' => ':count omundu', // less reliable\n    'min' => ':count omundu', // less reliable\n    'a_minute' => ':count omundu', // less reliable\n\n    'second' => ':count liliino', // less reliable\n    's' => ':count liliino', // less reliable\n    'a_second' => ':count liliino', // less reliable\n    */\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/lv.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonInterface;\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - pirminis\n * - Tsutomu Kuroda\n * - tjku\n * - Andris Zāģeris\n * - Max Melentiev\n * - Edgars Beigarts\n * - Juanito Fatas\n * - Vitauts Stočka\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Kaspars Bankovskis\n * - Nicolás Hock Isaza\n * - Viesturs Kavacs (Kavacky)\n * - zakse\n * - Janis Eglitis (janiseglitis)\n * - Guntars\n * - Juris Sudmalis\n */\n$daysOfWeek = ['svētdiena', 'pirmdiena', 'otrdiena', 'trešdiena', 'ceturtdiena', 'piektdiena', 'sestdiena'];\n$daysOfWeekLocativum = ['svētdien', 'pirmdien', 'otrdien', 'trešdien', 'ceturtdien', 'piektdien', 'sestdien'];\n\n$transformDiff = static fn (string $input) => strtr($input, [\n    // Nominative => \"pirms/pēc\" Dative\n    'gads' => 'gada',\n    'gadi' => 'gadiem',\n    'gadu' => 'gadiem',\n    'mēnesis' => 'mēneša',\n    'mēneši' => 'mēnešiem',\n    'mēnešu' => 'mēnešiem',\n    'nedēļa' => 'nedēļas',\n    'nedēļas' => 'nedēļām',\n    'nedēļu' => 'nedēļām',\n    'diena' => 'dienas',\n    'dienas' => 'dienām',\n    'dienu' => 'dienām',\n    'stunda' => 'stundas',\n    'stundas' => 'stundām',\n    'stundu' => 'stundām',\n    'minūte' => 'minūtes',\n    'minūtes' => 'minūtēm',\n    'minūšu' => 'minūtēm',\n    'sekunde' => 'sekundes',\n    'sekundes' => 'sekundēm',\n    'sekunžu' => 'sekundēm',\n]);\n\nreturn [\n    'ago' => static fn (string $time) => 'pirms '.$transformDiff($time),\n    'from_now' => static fn (string $time) => 'pēc '.$transformDiff($time),\n\n    'year' => '0 gadu|:count gads|:count gadi',\n    'y' => ':count g.',\n    'a_year' => '{1}gads|0 gadu|:count gads|:count gadi',\n    'month' => '0 mēnešu|:count mēnesis|:count mēneši',\n    'm' => ':count mēn.',\n    'a_month' => '{1}mēnesis|0 mēnešu|:count mēnesis|:count mēneši',\n    'week' => '0 nedēļu|:count nedēļa|:count nedēļas',\n    'w' => ':count ned.',\n    'a_week' => '{1}nedēļa|0 nedēļu|:count nedēļa|:count nedēļas',\n    'day' => '0 dienu|:count diena|:count dienas',\n    'd' => ':count d.',\n    'a_day' => '{1}diena|0 dienu|:count diena|:count dienas',\n    'hour' => '0 stundu|:count stunda|:count stundas',\n    'h' => ':count st.',\n    'a_hour' => '{1}stunda|0 stundu|:count stunda|:count stundas',\n    'minute' => '0 minūšu|:count minūte|:count minūtes',\n    'min' => ':count min.',\n    'a_minute' => '{1}minūte|0 minūšu|:count minūte|:count minūtes',\n    'second' => '0 sekunžu|:count sekunde|:count sekundes',\n    's' => ':count sek.',\n    'a_second' => '{1}sekunde|0 sekunžu|:count sekunde|:count sekundes',\n\n    'after' => ':time vēlāk',\n    'year_after' => '0 gadus|:count gadu|:count gadus',\n    'a_year_after' => '{1}gadu|0 gadus|:count gadu|:count gadus',\n    'month_after' => '0 mēnešus|:count mēnesi|:count mēnešus',\n    'a_month_after' => '{1}mēnesi|0 mēnešus|:count mēnesi|:count mēnešus',\n    'week_after' => '0 nedēļas|:count nedēļu|:count nedēļas',\n    'a_week_after' => '{1}nedēļu|0 nedēļas|:count nedēļu|:count nedēļas',\n    'day_after' => '0 dienas|:count dienu|:count dienas',\n    'a_day_after' => '{1}dienu|0 dienas|:count dienu|:count dienas',\n    'hour_after' => '0 stundas|:count stundu|:count stundas',\n    'a_hour_after' => '{1}stundu|0 stundas|:count stundu|:count stundas',\n    'minute_after' => '0 minūtes|:count minūti|:count minūtes',\n    'a_minute_after' => '{1}minūti|0 minūtes|:count minūti|:count minūtes',\n    'second_after' => '0 sekundes|:count sekundi|:count sekundes',\n    'a_second_after' => '{1}sekundi|0 sekundes|:count sekundi|:count sekundes',\n\n    'before' => ':time agrāk',\n    'year_before' => '0 gadus|:count gadu|:count gadus',\n    'a_year_before' => '{1}gadu|0 gadus|:count gadu|:count gadus',\n    'month_before' => '0 mēnešus|:count mēnesi|:count mēnešus',\n    'a_month_before' => '{1}mēnesi|0 mēnešus|:count mēnesi|:count mēnešus',\n    'week_before' => '0 nedēļas|:count nedēļu|:count nedēļas',\n    'a_week_before' => '{1}nedēļu|0 nedēļas|:count nedēļu|:count nedēļas',\n    'day_before' => '0 dienas|:count dienu|:count dienas',\n    'a_day_before' => '{1}dienu|0 dienas|:count dienu|:count dienas',\n    'hour_before' => '0 stundas|:count stundu|:count stundas',\n    'a_hour_before' => '{1}stundu|0 stundas|:count stundu|:count stundas',\n    'minute_before' => '0 minūtes|:count minūti|:count minūtes',\n    'a_minute_before' => '{1}minūti|0 minūtes|:count minūti|:count minūtes',\n    'second_before' => '0 sekundes|:count sekundi|:count sekundes',\n    'a_second_before' => '{1}sekundi|0 sekundes|:count sekundi|:count sekundes',\n\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' un '],\n\n    'diff_now' => 'tagad',\n    'diff_today' => 'šodien',\n    'diff_yesterday' => 'vakar',\n    'diff_before_yesterday' => 'aizvakar',\n    'diff_tomorrow' => 'rīt',\n    'diff_after_tomorrow' => 'parīt',\n\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY.',\n        'LL' => 'YYYY. [gada] D. MMMM',\n        'LLL' => 'DD.MM.YYYY., HH:mm',\n        'LLLL' => 'YYYY. [gada] D. MMMM, HH:mm',\n    ],\n\n    'calendar' => [\n        'sameDay' => '[šodien] [plkst.] LT',\n        'nextDay' => '[rīt] [plkst.] LT',\n        'nextWeek' => static function (CarbonInterface $current, CarbonInterface $other) use ($daysOfWeekLocativum) {\n            if ($current->week !== $other->week) {\n                return '[nākošo] ['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT';\n            }\n\n            return '['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT';\n        },\n        'lastDay' => '[vakar] [plkst.] LT',\n        'lastWeek' => static function (CarbonInterface $current) use ($daysOfWeekLocativum) {\n            return '[pagājušo] ['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT';\n        },\n        'sameElse' => 'L',\n    ],\n\n    'weekdays' => $daysOfWeek,\n    'weekdays_short' => ['Sv.', 'P.', 'O.', 'T.', 'C.', 'Pk.', 'S.'],\n    'weekdays_min' => ['Sv.', 'P.', 'O.', 'T.', 'C.', 'Pk.', 'S.'],\n    'months' => ['janvāris', 'februāris', 'marts', 'aprīlis', 'maijs', 'jūnijs', 'jūlijs', 'augusts', 'septembris', 'oktobris', 'novembris', 'decembris'],\n    'months_standalone' => ['janvārī', 'februārī', 'martā', 'aprīlī', 'maijā', 'jūnijā', 'jūlijā', 'augustā', 'septembrī', 'oktobrī', 'novembrī', 'decembrī'],\n    'months_short' => ['janv.', 'febr.', 'martā', 'apr.', 'maijā', 'jūn.', 'jūl.', 'aug.', 'sept.', 'okt.', 'nov.', 'dec.'],\n    'meridiem' => ['priekšpusdiena', 'pēcpusdiena'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/lv_LV.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/lv.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lzh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/lzh_TW.php';\n"
  },
  {
    "path": "src/Carbon/Lang/lzh_TW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'OY[年]MMMMOD[日]',\n    ],\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => [' 一 ', ' 二 ', ' 三 ', ' 四 ', ' 五 ', ' 六 ', ' 七 ', ' 八 ', ' 九 ', ' 十 ', '十一', '十二'],\n    'weekdays' => ['週日', '週一', '週二', '週三', '週四', '週五', '週六'],\n    'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二', '十三', '十四', '十五', '十六', '十七', '十八', '十九', '廿', '廿一', '廿二', '廿三', '廿四', '廿五', '廿六', '廿七', '廿八', '廿九', '卅', '卅一'],\n    'meridiem' => ['朝', '暮'],\n\n    'year' => ':count 夏', // less reliable\n    'y' => ':count 夏', // less reliable\n    'a_year' => ':count 夏', // less reliable\n\n    'month' => ':count 月', // less reliable\n    'm' => ':count 月', // less reliable\n    'a_month' => ':count 月', // less reliable\n\n    'hour' => ':count 氧', // less reliable\n    'h' => ':count 氧', // less reliable\n    'a_hour' => ':count 氧', // less reliable\n\n    'minute' => ':count 點', // less reliable\n    'min' => ':count 點', // less reliable\n    'a_minute' => ':count 點', // less reliable\n\n    'second' => ':count 楚', // less reliable\n    's' => ':count 楚', // less reliable\n    'a_second' => ':count 楚', // less reliable\n\n    'week' => ':count 星期',\n    'w' => ':count 星期',\n    'a_week' => ':count 星期',\n\n    'day' => ':count 日(曆法)',\n    'd' => ':count 日(曆法)',\n    'a_day' => ':count 日(曆法)',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mag.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mag_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mag_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bhashaghar@googlegroups.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'months_short' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'weekdays' => ['एतवार', 'सोमार', 'मंगर', 'बुध', 'बिफे', 'सूक', 'सनिचर'],\n    'weekdays_short' => ['एतवार', 'सोमार', 'मंगर', 'बुध', 'बिफे', 'सूक', 'सनिचर'],\n    'weekdays_min' => ['एतवार', 'सोमार', 'मंगर', 'बुध', 'बिफे', 'सूक', 'सनिचर'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mai.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mai_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mai_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Maithili Computing Research Center, Pune, India    rajeshkajha@yahoo.com,akhilesh.k@samusng.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['बैसाख', 'जेठ', 'अषाढ़', 'सावोन', 'भादो', 'आसिन', 'कातिक', 'अगहन', 'पूस', 'माघ', 'फागुन', 'चैति'],\n    'months_short' => ['बैसाख', 'जेठ', 'अषाढ़', 'सावोन', 'भादो', 'आसिन', 'कातिक', 'अगहन', 'पूस', 'माघ', 'फागुन', 'चैति'],\n    'weekdays' => ['रविदिन', 'सोमदिन', 'मंगलदिन', 'बुधदिन', 'बृहस्पतीदिन', 'शुक्रदिन', 'शनीदिन'],\n    'weekdays_short' => ['रवि', 'सोम', 'मंगल', 'बुध', 'बृहस्पती', 'शुक्र', 'शनी'],\n    'weekdays_min' => ['रवि', 'सोम', 'मंगल', 'बुध', 'बृहस्पती', 'शुक्र', 'शनी'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n\n    'year' => ':count ऋतु', // less reliable\n    'y' => ':count ऋतु', // less reliable\n    'a_year' => ':count ऋतु', // less reliable\n\n    'month' => ':count महिना',\n    'm' => ':count महिना',\n    'a_month' => ':count महिना',\n\n    'week' => ':count श्रेणी:क्यालेन्डर', // less reliable\n    'w' => ':count श्रेणी:क्यालेन्डर', // less reliable\n    'a_week' => ':count श्रेणी:क्यालेन्डर', // less reliable\n\n    'day' => ':count दिन',\n    'd' => ':count दिन',\n    'a_day' => ':count दिन',\n\n    'hour' => ':count घण्टा',\n    'h' => ':count घण्टा',\n    'a_hour' => ':count घण्टा',\n\n    'minute' => ':count समय', // less reliable\n    'min' => ':count समय', // less reliable\n    'a_minute' => ':count समय', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mas.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['Ɛnkakɛnyá', 'Ɛndámâ'],\n    'weekdays' => ['Jumapílí', 'Jumatátu', 'Jumane', 'Jumatánɔ', 'Alaámisi', 'Jumáa', 'Jumamósi'],\n    'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'months' => ['Oladalʉ́', 'Arát', 'Ɔɛnɨ́ɔɨŋɔk', 'Olodoyíóríê inkókúâ', 'Oloilépūnyīē inkókúâ', 'Kújúɔrɔk', 'Mórusásin', 'Ɔlɔ́ɨ́bɔ́rárɛ', 'Kúshîn', 'Olgísan', 'Pʉshʉ́ka', 'Ntʉ́ŋʉ́s'],\n    'months_short' => ['Dal', 'Ará', 'Ɔɛn', 'Doy', 'Lép', 'Rok', 'Sás', 'Bɔ́r', 'Kús', 'Gís', 'Shʉ́', 'Ntʉ́'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count olameyu', // less reliable\n    'y' => ':count olameyu', // less reliable\n    'a_year' => ':count olameyu', // less reliable\n\n    'week' => ':count engolongeare orwiki', // less reliable\n    'w' => ':count engolongeare orwiki', // less reliable\n    'a_week' => ':count engolongeare orwiki', // less reliable\n\n    'hour' => ':count esahabu', // less reliable\n    'h' => ':count esahabu', // less reliable\n    'a_hour' => ':count esahabu', // less reliable\n\n    'second' => ':count are', // less reliable\n    's' => ':count are', // less reliable\n    'a_second' => ':count are', // less reliable\n\n    'month' => ':count olapa',\n    'm' => ':count olapa',\n    'a_month' => ':count olapa',\n\n    'day' => ':count enkolongʼ',\n    'd' => ':count enkolongʼ',\n    'a_day' => ':count enkolongʼ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mas_TZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/mas.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mer.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['RŨ', 'ŨG'],\n    'weekdays' => ['Kiumia', 'Muramuko', 'Wairi', 'Wethatu', 'Wena', 'Wetano', 'Jumamosi'],\n    'weekdays_short' => ['KIU', 'MRA', 'WAI', 'WET', 'WEN', 'WTN', 'JUM'],\n    'weekdays_min' => ['KIU', 'MRA', 'WAI', 'WET', 'WEN', 'WTN', 'JUM'],\n    'months' => ['Januarĩ', 'Feburuarĩ', 'Machi', 'Ĩpurũ', 'Mĩĩ', 'Njuni', 'Njuraĩ', 'Agasti', 'Septemba', 'Oktũba', 'Novemba', 'Dicemba'],\n    'months_short' => ['JAN', 'FEB', 'MAC', 'ĨPU', 'MĨĨ', 'NJU', 'NJR', 'AGA', 'SPT', 'OKT', 'NOV', 'DEC'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count murume', // less reliable\n    'y' => ':count murume', // less reliable\n    'a_year' => ':count murume', // less reliable\n\n    'month' => ':count muchaara', // less reliable\n    'm' => ':count muchaara', // less reliable\n    'a_month' => ':count muchaara', // less reliable\n\n    'minute' => ':count monto', // less reliable\n    'min' => ':count monto', // less reliable\n    'a_minute' => ':count monto', // less reliable\n\n    'second' => ':count gikeno', // less reliable\n    's' => ':count gikeno', // less reliable\n    'a_second' => ':count gikeno', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mfe.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mfe_MU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mfe_MU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Samsung Electronics Co., Ltd.    akhilesh.k@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['zanvie', 'fevriye', 'mars', 'avril', 'me', 'zin', 'zilye', 'out', 'septam', 'oktob', 'novam', 'desam'],\n    'months_short' => ['zan', 'fev', 'mar', 'avr', 'me', 'zin', 'zil', 'out', 'sep', 'okt', 'nov', 'des'],\n    'weekdays' => ['dimans', 'lindi', 'mardi', 'merkredi', 'zedi', 'vandredi', 'samdi'],\n    'weekdays_short' => ['dim', 'lin', 'mar', 'mer', 'ze', 'van', 'sam'],\n    'weekdays_min' => ['dim', 'lin', 'mar', 'mer', 'ze', 'van', 'sam'],\n\n    'year' => ':count banané',\n    'y' => ':count banané',\n    'a_year' => ':count banané',\n\n    'month' => ':count mwa',\n    'm' => ':count mwa',\n    'a_month' => ':count mwa',\n\n    'week' => ':count sémenn',\n    'w' => ':count sémenn',\n    'a_week' => ':count sémenn',\n\n    'day' => ':count zour',\n    'd' => ':count zour',\n    'a_day' => ':count zour',\n\n    'hour' => ':count -er-tan',\n    'h' => ':count -er-tan',\n    'a_hour' => ':count -er-tan',\n\n    'minute' => ':count minitt',\n    'min' => ':count minitt',\n    'a_minute' => ':count minitt',\n\n    'second' => ':count déziém',\n    's' => ':count déziém',\n    'a_second' => ':count déziém',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mg_MG.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mg_MG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - The Debian Project modified by GNU//Linux Malagasy Rado Ramarotafika,Do-Risika RAFIEFERANTSIARONJY rado@linuxmg.org,dourix@free.fr\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Janoary', 'Febroary', 'Martsa', 'Aprily', 'Mey', 'Jona', 'Jolay', 'Aogositra', 'Septambra', 'Oktobra', 'Novambra', 'Desambra'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mey', 'Jon', 'Jol', 'Aog', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['alahady', 'alatsinainy', 'talata', 'alarobia', 'alakamisy', 'zoma', 'sabotsy'],\n    'weekdays_short' => ['lhd', 'lts', 'tlt', 'lrb', 'lkm', 'zom', 'sab'],\n    'weekdays_min' => ['lhd', 'lts', 'tlt', 'lrb', 'lkm', 'zom', 'sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'minute' => ':count minitra', // less reliable\n    'min' => ':count minitra', // less reliable\n    'a_minute' => ':count minitra', // less reliable\n\n    'year' => ':count taona',\n    'y' => ':count taona',\n    'a_year' => ':count taona',\n\n    'month' => ':count volana',\n    'm' => ':count volana',\n    'a_month' => ':count volana',\n\n    'week' => ':count herinandro',\n    'w' => ':count herinandro',\n    'a_week' => ':count herinandro',\n\n    'day' => ':count andro',\n    'd' => ':count andro',\n    'a_day' => ':count andro',\n\n    'hour' => ':count ora',\n    'h' => ':count ora',\n    'a_hour' => ':count ora',\n\n    'second' => ':count segondra',\n    's' => ':count segondra',\n    'a_second' => ':count segondra',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mgh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['wichishu', 'mchochil’l'],\n    'weekdays' => ['Sabato', 'Jumatatu', 'Jumanne', 'Jumatano', 'Arahamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Sab', 'Jtt', 'Jnn', 'Jtn', 'Ara', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Sab', 'Jtt', 'Jnn', 'Jtn', 'Ara', 'Iju', 'Jmo'],\n    'months' => ['Mweri wo kwanza', 'Mweri wo unayeli', 'Mweri wo uneraru', 'Mweri wo unecheshe', 'Mweri wo unethanu', 'Mweri wo thanu na mocha', 'Mweri wo saba', 'Mweri wo nane', 'Mweri wo tisa', 'Mweri wo kumi', 'Mweri wo kumi na moja', 'Mweri wo kumi na yel’li'],\n    'months_short' => ['Kwa', 'Una', 'Rar', 'Che', 'Tha', 'Moc', 'Sab', 'Nan', 'Tis', 'Kum', 'Moj', 'Yel'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mgo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['Aneg 1', 'Aneg 2', 'Aneg 3', 'Aneg 4', 'Aneg 5', 'Aneg 6', 'Aneg 7'],\n    'weekdays_short' => ['Aneg 1', 'Aneg 2', 'Aneg 3', 'Aneg 4', 'Aneg 5', 'Aneg 6', 'Aneg 7'],\n    'weekdays_min' => ['1', '2', '3', '4', '5', '6', '7'],\n    'months' => ['iməg mbegtug', 'imeg àbùbì', 'imeg mbəŋchubi', 'iməg ngwə̀t', 'iməg fog', 'iməg ichiibɔd', 'iməg àdùmbə̀ŋ', 'iməg ichika', 'iməg kud', 'iməg tèsiʼe', 'iməg zò', 'iməg krizmed'],\n    'months_short' => ['mbegtug', 'imeg àbùbì', 'imeg mbəŋchubi', 'iməg ngwə̀t', 'iməg fog', 'iməg ichiibɔd', 'iməg àdùmbə̀ŋ', 'iməg ichika', 'iməg kud', 'iməg tèsiʼe', 'iməg zò', 'iməg krizmed'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'dddd, YYYY MMMM DD HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mhr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mhr_RU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mhr_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - PeshSajSoft Ltd. Vyacheslav Kileev slavakileev@yandex.ru\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY.MM.DD',\n    ],\n    'months' => ['Шорыкйол', 'Пургыж', 'Ӱярня', 'Вӱдшор', 'Ага', 'Пеледыш', 'Сӱрем', 'Сорла', 'Идым', 'Шыжа', 'Кылме', 'Теле'],\n    'months_short' => ['Шрк', 'Пгж', 'Ӱрн', 'Вшр', 'Ага', 'Пдш', 'Срм', 'Срл', 'Идм', 'Шыж', 'Клм', 'Тел'],\n    'weekdays' => ['Рушарня', 'Шочмо', 'Кушкыжмо', 'Вӱргече', 'Изарня', 'Кугарня', 'Шуматкече'],\n    'weekdays_short' => ['Ршр', 'Шчм', 'Кжм', 'Вгч', 'Изр', 'Кгр', 'Шмт'],\n    'weekdays_min' => ['Ршр', 'Шчм', 'Кжм', 'Вгч', 'Изр', 'Кгр', 'Шмт'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count идалык',\n    'y' => ':count идалык',\n    'a_year' => ':count идалык',\n\n    'month' => ':count Тылзе',\n    'm' => ':count Тылзе',\n    'a_month' => ':count Тылзе',\n\n    'week' => ':count арня',\n    'w' => ':count арня',\n    'a_week' => ':count арня',\n\n    'day' => ':count кече',\n    'd' => ':count кече',\n    'a_day' => ':count кече',\n\n    'hour' => ':count час',\n    'h' => ':count час',\n    'a_hour' => ':count час',\n\n    'minute' => ':count минут',\n    'min' => ':count минут',\n    'a_minute' => ':count минут',\n\n    'second' => ':count кокымшан',\n    's' => ':count кокымшан',\n    'a_second' => ':count кокымшан',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - John Corrigan\n * - François B\n */\nreturn [\n    'year' => ':count tau',\n    'a_year' => '{1}he tau|:count tau',\n    'month' => ':count marama',\n    'a_month' => '{1}he marama|:count marama',\n    'week' => ':count wiki',\n    'a_week' => '{1}he wiki|:count wiki',\n    'day' => ':count ra',\n    'a_day' => '{1}he ra|:count ra',\n    'hour' => ':count haora',\n    'a_hour' => '{1}te haora|:count haora',\n    'minute' => ':count meneti',\n    'a_minute' => '{1}he meneti|:count meneti',\n    'second' => ':count hēkona',\n    'a_second' => '{1}te hēkona ruarua|:count hēkona',\n    'ago' => ':time i mua',\n    'from_now' => 'i roto i :time',\n    'diff_yesterday' => 'inanahi',\n    'diff_yesterday_regexp' => 'inanahi(?:\\\\s+i)?',\n    'diff_today' => 'i teie',\n    'diff_today_regexp' => 'i teie(?:\\\\s+mahana,)?(?:\\\\s+i)?',\n    'diff_tomorrow' => 'apopo',\n    'diff_tomorrow_regexp' => 'apopo(?:\\\\s+i)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY [i] HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY [i] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[i teie mahana, i] LT',\n        'nextDay' => '[apopo i] LT',\n        'nextWeek' => 'dddd [i] LT',\n        'lastDay' => '[inanahi i] LT',\n        'lastWeek' => 'dddd [whakamutunga i] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberº',\n    'months' => ['Kohi-tāte', 'Hui-tanguru', 'Poutū-te-rangi', 'Paenga-whāwhā', 'Haratua', 'Pipiri', 'Hōngoingoi', 'Here-turi-kōkā', 'Mahuru', 'Whiringa-ā-nuku', 'Whiringa-ā-rangi', 'Hakihea'],\n    'months_short' => ['Kohi', 'Hui', 'Pou', 'Pae', 'Hara', 'Pipi', 'Hōngoi', 'Here', 'Mahu', 'Whi-nu', 'Whi-ra', 'Haki'],\n    'weekdays' => ['Rātapu', 'Mane', 'Tūrei', 'Wenerei', 'Tāite', 'Paraire', 'Hātarei'],\n    'weekdays_short' => ['Ta', 'Ma', 'Tū', 'We', 'Tāi', 'Pa', 'Hā'],\n    'weekdays_min' => ['Ta', 'Ma', 'Tū', 'We', 'Tāi', 'Pa', 'Hā'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' me te '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/mi_NZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/mi.php';\n"
  },
  {
    "path": "src/Carbon/Lang/miq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/miq_NI.php';\n"
  },
  {
    "path": "src/Carbon/Lang/miq_NI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['siakwa kati', 'kuswa kati', 'kakamuk kati', 'lî wainhka kati', 'lih mairin kati', 'lî kati', 'pastara kati', 'sikla kati', 'wîs kati', 'waupasa kati', 'yahbra kati', 'trisu kati'],\n    'months_short' => ['siakwa kati', 'kuswa kati', 'kakamuk kati', 'lî wainhka kati', 'lih mairin kati', 'lî kati', 'pastara kati', 'sikla kati', 'wîs kati', 'waupasa kati', 'yahbra kati', 'trisu kati'],\n    'weekdays' => ['sandi', 'mundi', 'tiusdi', 'wensde', 'tausde', 'praidi', 'satadi'],\n    'weekdays_short' => ['san', 'mun', 'tius', 'wens', 'taus', 'prai', 'sat'],\n    'weekdays_min' => ['san', 'mun', 'tius', 'wens', 'taus', 'prai', 'sat'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 7,\n    'meridiem' => ['VM', 'NM'],\n\n    'month' => ':count kati', // less reliable\n    'm' => ':count kati', // less reliable\n    'a_month' => ':count kati', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mjw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mjw_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mjw_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Jor Teron    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['Arkoi', 'Thangthang', 'There', 'Jangmi', 'Aru', 'Vosik', 'Jakhong', 'Paipai', 'Chiti', 'Phere', 'Phaikuni', 'Matijong'],\n    'months_short' => ['Ark', 'Thang', 'The', 'Jang', 'Aru', 'Vos', 'Jak', 'Pai', 'Chi', 'Phe', 'Phai', 'Mati'],\n    'weekdays' => ['Bhomkuru', 'Urmi', 'Durmi', 'Thelang', 'Theman', 'Bhomta', 'Bhomti'],\n    'weekdays_short' => ['Bhom', 'Ur', 'Dur', 'Tkel', 'Tkem', 'Bhta', 'Bhti'],\n    'weekdays_min' => ['Bhom', 'Ur', 'Dur', 'Tkel', 'Tkem', 'Bhta', 'Bhti'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mk.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Sashko Todorov\n * - Josh Soref\n * - François B\n * - Serhan Apaydın\n * - Borislav Mickov\n * - JD Isaacks\n * - Tomi Atanasoski\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count година|:count години',\n    'a_year' => 'година|:count години',\n    'y' => ':count год.',\n    'month' => ':count месец|:count месеци',\n    'a_month' => 'месец|:count месеци',\n    'm' => ':count месец|:count месеци',\n    'week' => ':count седмица|:count седмици',\n    'a_week' => 'седмица|:count седмици',\n    'w' => ':count седмица|:count седмици',\n    'day' => ':count ден|:count дена',\n    'a_day' => 'ден|:count дена',\n    'd' => ':count ден|:count дена',\n    'hour' => ':count час|:count часа',\n    'a_hour' => 'час|:count часа',\n    'h' => ':count час|:count часа',\n    'minute' => ':count минута|:count минути',\n    'a_minute' => 'минута|:count минути',\n    'min' => ':count мин.',\n    'second' => ':count секунда|:count секунди',\n    'a_second' => 'неколку секунди|:count секунди',\n    's' => ':count сек.',\n    'ago' => 'пред :time',\n    'from_now' => 'после :time',\n    'after' => 'по :time',\n    'before' => 'пред :time',\n    'diff_now' => 'сега',\n    'diff_today' => 'Денес',\n    'diff_today_regexp' => 'Денес(?:\\\\s+во)?',\n    'diff_yesterday' => 'вчера',\n    'diff_yesterday_regexp' => 'Вчера(?:\\\\s+во)?',\n    'diff_tomorrow' => 'утре',\n    'diff_tomorrow_regexp' => 'Утре(?:\\\\s+во)?',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'D.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Денес во] LT',\n        'nextDay' => '[Утре во] LT',\n        'nextWeek' => '[Во] dddd [во] LT',\n        'lastDay' => '[Вчера во] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0, 3, 6 => '[Изминатата] dddd [во] LT',\n            default => '[Изминатиот] dddd [во] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        $lastDigit = $number % 10;\n        $last2Digits = $number % 100;\n        if ($number === 0) {\n            return $number.'-ев';\n        }\n        if ($last2Digits === 0) {\n            return $number.'-ен';\n        }\n        if ($last2Digits > 10 && $last2Digits < 20) {\n            return $number.'-ти';\n        }\n        if ($lastDigit === 1) {\n            return $number.'-ви';\n        }\n        if ($lastDigit === 2) {\n            return $number.'-ри';\n        }\n        if ($lastDigit === 7 || $lastDigit === 8) {\n            return $number.'-ми';\n        }\n\n        return $number.'-ти';\n    },\n    'months' => ['јануари', 'февруари', 'март', 'април', 'мај', 'јуни', 'јули', 'август', 'септември', 'октомври', 'ноември', 'декември'],\n    'months_short' => ['јан', 'фев', 'мар', 'апр', 'мај', 'јун', 'јул', 'авг', 'сеп', 'окт', 'ное', 'дек'],\n    'weekdays' => ['недела', 'понеделник', 'вторник', 'среда', 'четврток', 'петок', 'сабота'],\n    'weekdays_short' => ['нед', 'пон', 'вто', 'сре', 'чет', 'пет', 'саб'],\n    'weekdays_min' => ['нe', 'пo', 'вт', 'ср', 'че', 'пе', 'сa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' и '],\n    'meridiem' => ['АМ', 'ПМ'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/mk_MK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/mk.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ml.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count വർഷം',\n    'a_year' => 'ഒരു വർഷം|:count വർഷം',\n    'month' => ':count മാസം',\n    'a_month' => 'ഒരു മാസം|:count മാസം',\n    'week' => ':count ആഴ്ച',\n    'a_week' => 'ഒരാഴ്ച|:count ആഴ്ച',\n    'day' => ':count ദിവസം',\n    'a_day' => 'ഒരു ദിവസം|:count ദിവസം',\n    'hour' => ':count മണിക്കൂർ',\n    'a_hour' => 'ഒരു മണിക്കൂർ|:count മണിക്കൂർ',\n    'minute' => ':count മിനിറ്റ്',\n    'a_minute' => 'ഒരു മിനിറ്റ്|:count മിനിറ്റ്',\n    'second' => ':count സെക്കൻഡ്',\n    'a_second' => 'അൽപ നിമിഷങ്ങൾ|:count സെക്കൻഡ്',\n    'ago' => ':time മുൻപ്',\n    'from_now' => ':time കഴിഞ്ഞ്',\n    'diff_now' => 'ഇപ്പോൾ',\n    'diff_today' => 'ഇന്ന്',\n    'diff_yesterday' => 'ഇന്നലെ',\n    'diff_tomorrow' => 'നാളെ',\n    'formats' => [\n        'LT' => 'A h:mm -നു',\n        'LTS' => 'A h:mm:ss -നു',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm -നു',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm -നു',\n    ],\n    'calendar' => [\n        'sameDay' => '[ഇന്ന്] LT',\n        'nextDay' => '[നാളെ] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[ഇന്നലെ] LT',\n        'lastWeek' => '[കഴിഞ്ഞ] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'രാത്രി';\n        }\n        if ($hour < 12) {\n            return 'രാവിലെ';\n        }\n        if ($hour < 17) {\n            return 'ഉച്ച കഴിഞ്ഞ്';\n        }\n        if ($hour < 20) {\n            return 'വൈകുന്നേരം';\n        }\n\n        return 'രാത്രി';\n    },\n    'months' => ['ജനുവരി', 'ഫെബ്രുവരി', 'മാർച്ച്', 'ഏപ്രിൽ', 'മേയ്', 'ജൂൺ', 'ജൂലൈ', 'ഓഗസ്റ്റ്', 'സെപ്റ്റംബർ', 'ഒക്ടോബർ', 'നവംബർ', 'ഡിസംബർ'],\n    'months_short' => ['ജനു.', 'ഫെബ്രു.', 'മാർ.', 'ഏപ്രി.', 'മേയ്', 'ജൂൺ', 'ജൂലൈ.', 'ഓഗ.', 'സെപ്റ്റ.', 'ഒക്ടോ.', 'നവം.', 'ഡിസം.'],\n    'weekdays' => ['ഞായറാഴ്ച', 'തിങ്കളാഴ്ച', 'ചൊവ്വാഴ്ച', 'ബുധനാഴ്ച', 'വ്യാഴാഴ്ച', 'വെള്ളിയാഴ്ച', 'ശനിയാഴ്ച'],\n    'weekdays_short' => ['ഞായർ', 'തിങ്കൾ', 'ചൊവ്വ', 'ബുധൻ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'],\n    'weekdays_min' => ['ഞാ', 'തി', 'ചൊ', 'ബു', 'വ്യാ', 'വെ', 'ശ'],\n    'list' => ', ',\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ml_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ml.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - tjku\n * - Max Melentiev\n * - Zolzaya Erdenebaatar\n * - Tom Hughes\n * - Akira Matsuda\n * - Christopher Dell\n * - Michael Kessler\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Nicolás Hock Isaza\n * - Ochirkhuyag\n * - Batmandakh\n * - lucifer-crybaby\n */\nreturn [\n    'year' => ':count жил',\n    'y' => ':count жил',\n    'month' => ':count сар',\n    'm' => ':count сар',\n    'week' => ':count долоо хоног',\n    'w' => ':count долоо хоног',\n    'day' => ':count өдөр',\n    'd' => ':count өдөр',\n    'hour' => ':count цаг',\n    'h' => ':countц',\n    'minute' => ':count минут',\n    'min' => ':countм',\n    'second' => ':count секунд',\n    's' => ':countс',\n\n    'ago_mode' => 'last',\n    'ago' => ':time өмнө',\n    'year_ago' => ':count жилийн',\n    'y_ago' => ':count жилийн',\n    'month_ago' => ':count сарын',\n    'm_ago' => ':count сарын',\n    'day_ago' => ':count хоногийн',\n    'd_ago' => ':count хоногийн',\n    'week_ago' => ':count долоо хоногийн',\n    'w_ago' => ':count долоо хоногийн',\n    'hour_ago' => ':count цагийн',\n    'minute_ago' => ':count минутын',\n    'second_ago' => ':count секундын',\n\n    'from_now_mode' => 'last',\n    'from_now' => 'одоогоос :time',\n    'year_from_now' => ':count жилийн дараа',\n    'y_from_now' => ':count жилийн дараа',\n    'month_from_now' => ':count сарын дараа',\n    'm_from_now' => ':count сарын дараа',\n    'day_from_now' => ':count хоногийн дараа',\n    'd_from_now' => ':count хоногийн дараа',\n    'hour_from_now' => ':count цагийн дараа',\n    'minute_from_now' => ':count минутын дараа',\n    'second_from_now' => ':count секундын дараа',\n\n    'after_mode' => 'last',\n    'after' => ':time дараа',\n    'year_after' => ':count жилийн',\n    'y_after' => ':count жилийн',\n    'month_after' => ':count сарын',\n    'm_after' => ':count сарын',\n    'day_after' => ':count хоногийн',\n    'd_after' => ':count хоногийн',\n    'hour_after' => ':count цагийн',\n    'minute_after' => ':count минутын',\n    'second_after' => ':count секундын',\n\n    'before_mode' => 'last',\n    'before' => ':time өмнө',\n    'year_before' => ':count жилийн',\n    'y_before' => ':count жилийн',\n    'month_before' => ':count сарын',\n    'm_before' => ':count сарын',\n    'day_before' => ':count хоногийн',\n    'd_before' => ':count хоногийн',\n    'hour_before' => ':count цагийн',\n    'minute_before' => ':count минутын',\n    'second_before' => ':count секундын',\n\n    'list' => ', ',\n    'diff_now' => 'одоо',\n    'diff_yesterday' => 'өчигдөр',\n    'diff_tomorrow' => 'маргааш',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'YYYY MMMM DD',\n        'LLL' => 'YY-MM-DD, HH:mm',\n        'LLLL' => 'YYYY MMMM DD, HH:mm',\n    ],\n    'weekdays' => ['Ням', 'Даваа', 'Мягмар', 'Лхагва', 'Пүрэв', 'Баасан', 'Бямба'],\n    'weekdays_short' => ['Ня', 'Да', 'Мя', 'Лх', 'Пү', 'Ба', 'Бя'],\n    'weekdays_min' => ['Ня', 'Да', 'Мя', 'Лх', 'Пү', 'Ба', 'Бя'],\n    'months' => ['1 сар', '2 сар', '3 сар', '4 сар', '5 сар', '6 сар', '7 сар', '8 сар', '9 сар', '10 сар', '11 сар', '12 сар'],\n    'months_short' => ['1 сар', '2 сар', '3 сар', '4 сар', '5 сар', '6 сар', '7 сар', '8 сар', '9 сар', '10 сар', '11 сар', '12 сар'],\n    'meridiem' => ['өглөө', 'орой'],\n    'first_day_of_week' => 1,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/mn_MN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/mn.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mni.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/mni_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mni_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat Pune    libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['জানুৱারি', 'ফেব্রুৱারি', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগষ্ট', 'সেপ্তেম্বর', 'ওক্তোবর', 'নবেম্বর', 'ডিসেম্বর'],\n    'months_short' => ['জান', 'ফেব', 'মার', 'এপ্রি', 'মে', 'জুন', 'জুল', 'আগ', 'সেপ', 'ওক্ত', 'নবে', 'ডিস'],\n    'weekdays' => ['নোংমাইজিং', 'নিংথৌকাবা', 'লৈবাকপোকপা', 'য়ুমশকৈশা', 'শগোলশেন', 'ইরাই', 'থাংজ'],\n    'weekdays_short' => ['নোং', 'নিং', 'লৈবাক', 'য়ুম', 'শগোল', 'ইরা', 'থাং'],\n    'weekdays_min' => ['নোং', 'নিং', 'লৈবাক', 'য়ুম', 'শগোল', 'ইরা', 'থাং'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['এ.ম.', 'প.ম.'],\n\n    'year' => ':count ইসিং', // less reliable\n    'y' => ':count ইসিং', // less reliable\n    'a_year' => ':count ইসিং', // less reliable\n\n    'second' => ':count ꯅꯤꯡꯊꯧꯀꯥꯕ', // less reliable\n    's' => ':count ꯅꯤꯡꯊꯧꯀꯥꯕ', // less reliable\n    'a_second' => ':count ꯅꯤꯡꯊꯧꯀꯥꯕ', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ro.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Vikram-enyota\n */\nreturn [\n    'year' => ':count वर्ष',\n    'y' => ':count वर्ष',\n    'month' => ':count महिना|:count महिने',\n    'm' => ':count महिना|:count महिने',\n    'week' => ':count आठवडा|:count आठवडे',\n    'w' => ':count आठवडा|:count आठवडे',\n    'day' => ':count दिवस',\n    'd' => ':count दिवस',\n    'hour' => ':count तास',\n    'h' => ':count तास',\n    'minute' => ':count मिनिटे',\n    'min' => ':count मिनिटे',\n    'second' => ':count सेकंद',\n    's' => ':count सेकंद',\n\n    'ago' => ':timeपूर्वी',\n    'from_now' => ':timeमध्ये',\n    'before' => ':timeपूर्वी',\n    'after' => ':timeनंतर',\n\n    'diff_now' => 'आत्ता',\n    'diff_today' => 'आज',\n    'diff_yesterday' => 'काल',\n    'diff_tomorrow' => 'उद्या',\n\n    'formats' => [\n        'LT' => 'A h:mm वाजता',\n        'LTS' => 'A h:mm:ss वाजता',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm वाजता',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm वाजता',\n    ],\n\n    'calendar' => [\n        'sameDay' => '[आज] LT',\n        'nextDay' => '[उद्या] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[काल] LT',\n        'lastWeek' => '[मागील] dddd, LT',\n        'sameElse' => 'L',\n    ],\n\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'रात्री';\n        }\n        if ($hour < 10) {\n            return 'सकाळी';\n        }\n        if ($hour < 17) {\n            return 'दुपारी';\n        }\n        if ($hour < 20) {\n            return 'सायंकाळी';\n        }\n\n        return 'रात्री';\n    },\n\n    'months' => ['जानेवारी', 'फेब्रुवारी', 'मार्च', 'एप्रिल', 'मे', 'जून', 'जुलै', 'ऑगस्ट', 'सप्टेंबर', 'ऑक्टोबर', 'नोव्हेंबर', 'डिसेंबर'],\n    'months_short' => ['जाने.', 'फेब्रु.', 'मार्च.', 'एप्रि.', 'मे.', 'जून.', 'जुलै.', 'ऑग.', 'सप्टें.', 'ऑक्टो.', 'नोव्हें.', 'डिसें.'],\n    'weekdays' => ['रविवार', 'सोमवार', 'मंगळवार', 'बुधवार', 'गुरूवार', 'शुक्रवार', 'शनिवार'],\n    'weekdays_short' => ['रवि', 'सोम', 'मंगळ', 'बुध', 'गुरू', 'शुक्र', 'शनि'],\n    'weekdays_min' => ['र', 'सो', 'मं', 'बु', 'गु', 'शु', 'श'],\n    'list' => [', ', ' आणि '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/mr_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/mr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ms.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - Azri Jamil\n * - JD Isaacks\n * - Josh Soref\n * - Azri Jamil\n * - Hariadi Hinta\n * - Ashraf Kamarudin\n */\nreturn [\n    'year' => ':count tahun',\n    'a_year' => '{1}setahun|[-Inf,Inf]:count tahun',\n    'y' => ':count tahun',\n    'month' => ':count bulan',\n    'a_month' => '{1}sebulan|[-Inf,Inf]:count bulan',\n    'm' => ':count bulan',\n    'week' => ':count minggu',\n    'a_week' => '{1}seminggu|[-Inf,Inf]:count minggu',\n    'w' => ':count minggu',\n    'day' => ':count hari',\n    'a_day' => '{1}sehari|[-Inf,Inf]:count hari',\n    'd' => ':count hari',\n    'hour' => ':count jam',\n    'a_hour' => '{1}sejam|[-Inf,Inf]:count jam',\n    'h' => ':count jam',\n    'minute' => ':count minit',\n    'a_minute' => '{1}seminit|[-Inf,Inf]:count minit',\n    'min' => ':count minit',\n    'second' => ':count saat',\n    'a_second' => '{1}beberapa saat|[-Inf,Inf]:count saat',\n    'millisecond' => ':count milisaat',\n    'a_millisecond' => '{1}semilisaat|[-Inf,Inf]:count milliseconds',\n    'microsecond' => ':count mikrodetik',\n    'a_microsecond' => '{1}semikrodetik|[-Inf,Inf]:count mikrodetik',\n    's' => ':count saat',\n    'ago' => ':time yang lepas',\n    'from_now' => ':time dari sekarang',\n    'after' => ':time kemudian',\n    'before' => ':time sebelum',\n    'diff_now' => 'sekarang',\n    'diff_today' => 'Hari',\n    'diff_today_regexp' => 'Hari(?:\\\\s+ini)?(?:\\\\s+pukul)?',\n    'diff_yesterday' => 'semalam',\n    'diff_yesterday_regexp' => 'Semalam(?:\\\\s+pukul)?',\n    'diff_tomorrow' => 'esok',\n    'diff_tomorrow_regexp' => 'Esok(?:\\\\s+pukul)?',\n    'diff_before_yesterday' => 'kelmarin',\n    'diff_after_tomorrow' => 'lusa',\n    'formats' => [\n        'LT' => 'HH.mm',\n        'LTS' => 'HH.mm.ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY [pukul] HH.mm',\n        'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Hari ini pukul] LT',\n        'nextDay' => '[Esok pukul] LT',\n        'nextWeek' => 'dddd [pukul] LT',\n        'lastDay' => '[Kelmarin pukul] LT',\n        'lastWeek' => 'dddd [lepas pukul] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 1) {\n            return 'tengah malam';\n        }\n\n        if ($hour < 12) {\n            return 'pagi';\n        }\n\n        if ($hour < 13) {\n            return 'tengah hari';\n        }\n\n        if ($hour < 19) {\n            return 'petang';\n        }\n\n        return 'malam';\n    },\n    'months' => ['Januari', 'Februari', 'Mac', 'April', 'Mei', 'Jun', 'Julai', 'Ogos', 'September', 'Oktober', 'November', 'Disember'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ogs', 'Sep', 'Okt', 'Nov', 'Dis'],\n    'weekdays' => ['Ahad', 'Isnin', 'Selasa', 'Rabu', 'Khamis', 'Jumaat', 'Sabtu'],\n    'weekdays_short' => ['Ahd', 'Isn', 'Sel', 'Rab', 'Kha', 'Jum', 'Sab'],\n    'weekdays_min' => ['Ah', 'Is', 'Sl', 'Rb', 'Km', 'Jm', 'Sb'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' dan '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ms_BN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ms.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/MM/yy',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY, h:mm a',\n        'LLLL' => 'dd MMMM YYYY, h:mm a',\n    ],\n    'meridiem' => ['a', 'p'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ms_MY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - Azri Jamil\n * - JD Isaacks\n */\nreturn require __DIR__.'/ms.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ms_SG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ms.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/MM/yy',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY, h:mm a',\n        'LLLL' => 'dddd, D MMMM YYYY, h:mm a',\n    ],\n    'meridiem' => ['a', 'p'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/mt.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Alessandro Maruccia\n */\nreturn [\n    'year' => 'sena|:count sni|:count sni|:count sni',\n    'y' => 'sa sena|:count snin|:count snin|:count snin',\n    'month' => 'xahar|:count xhur|:count xhur|:count xhur',\n    'm' => ':count xahar|:count xhur|:count xhur|:count xhur',\n    'week' => 'gimgħa|:count ġimgħat|:count ġimgħat|:count ġimgħat',\n    'w' => 'ġimgħa|:count ġimgħat|:count ġimgħat|:count ġimgħat',\n    'day' => 'ġurnata|:count ġranet|:count ġranet|:count ġranet',\n    'd' => 'ġurnata|:count ġranet|:count ġranet|:count ġranet',\n    'hour' => 'siegħa|:count siegħat|:count siegħat|:count siegħat',\n    'h' => 'siegħa|:count sigħat|:count sigħat|:count sigħat',\n    'minute' => 'minuta|:count minuti|:count minuti|:count minuti',\n    'min' => 'min.|:count min.|:count min.|:count min.',\n    'second' => 'ftit sekondi|:count sekondi|:count sekondi|:count sekondi',\n    's' => 'sek.|:count sek.|:count sek.|:count sek.',\n    'ago' => ':time ilu',\n    'from_now' => 'f’ :time',\n    'diff_now' => 'issa',\n    'diff_today' => 'Illum',\n    'diff_today_regexp' => 'Illum(?:\\\\s+fil-)?',\n    'diff_yesterday' => 'lbieraħ',\n    'diff_yesterday_regexp' => 'Il-bieraħ(?:\\\\s+fil-)?',\n    'diff_tomorrow' => 'għada',\n    'diff_tomorrow_regexp' => 'Għada(?:\\\\s+fil-)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Illum fil-]LT',\n        'nextDay' => '[Għada fil-]LT',\n        'nextWeek' => 'dddd [fil-]LT',\n        'lastDay' => '[Il-bieraħ fil-]LT',\n        'lastWeek' => 'dddd [li għadda] [fil-]LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberº',\n    'months' => ['Jannar', 'Frar', 'Marzu', 'April', 'Mejju', 'Ġunju', 'Lulju', 'Awwissu', 'Settembru', 'Ottubru', 'Novembru', 'Diċembru'],\n    'months_short' => ['Jan', 'Fra', 'Mar', 'Apr', 'Mej', 'Ġun', 'Lul', 'Aww', 'Set', 'Ott', 'Nov', 'Diċ'],\n    'weekdays' => ['Il-Ħadd', 'It-Tnejn', 'It-Tlieta', 'L-Erbgħa', 'Il-Ħamis', 'Il-Ġimgħa', 'Is-Sibt'],\n    'weekdays_short' => ['Ħad', 'Tne', 'Tli', 'Erb', 'Ħam', 'Ġim', 'Sib'],\n    'weekdays_min' => ['Ħa', 'Tn', 'Tl', 'Er', 'Ħa', 'Ġi', 'Si'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' u '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/mt_MT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/mt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mua.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['comme', 'lilli'],\n    'weekdays' => ['Com’yakke', 'Comlaaɗii', 'Comzyiiɗii', 'Comkolle', 'Comkaldǝɓlii', 'Comgaisuu', 'Comzyeɓsuu'],\n    'weekdays_short' => ['Cya', 'Cla', 'Czi', 'Cko', 'Cka', 'Cga', 'Cze'],\n    'weekdays_min' => ['Cya', 'Cla', 'Czi', 'Cko', 'Cka', 'Cga', 'Cze'],\n    'months' => ['Fĩi Loo', 'Cokcwaklaŋne', 'Cokcwaklii', 'Fĩi Marfoo', 'Madǝǝuutǝbijaŋ', 'Mamǝŋgwãafahbii', 'Mamǝŋgwãalii', 'Madǝmbii', 'Fĩi Dǝɓlii', 'Fĩi Mundaŋ', 'Fĩi Gwahlle', 'Fĩi Yuru'],\n    'months_short' => ['FLO', 'CLA', 'CKI', 'FMF', 'MAD', 'MBI', 'MLI', 'MAM', 'FDE', 'FMU', 'FGW', 'FYU'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/my.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n * - Nay Lin Aung\n */\nreturn [\n    'year' => ':count နှစ်',\n    'a_year' => '{1}တစ်နှစ်|[-Inf,Inf]:count နှစ်',\n    'y' => ':count နှစ်',\n    'month' => ':count လ',\n    'a_month' => '{1}တစ်လ|[-Inf,Inf]:count လ',\n    'm' => ':count လ',\n    'week' => ':count ပတ်',\n    'w' => ':count ပတ်',\n    'day' => ':count ရက်',\n    'a_day' => '{1}တစ်ရက်|[-Inf,Inf]:count ရက်',\n    'd' => ':count ရက်',\n    'hour' => ':count နာရီ',\n    'a_hour' => '{1}တစ်နာရီ|[-Inf,Inf]:count နာရီ',\n    'h' => ':count နာရီ',\n    'minute' => ':count မိနစ်',\n    'a_minute' => '{1}တစ်မိနစ်|[-Inf,Inf]:count မိနစ်',\n    'min' => ':count မိနစ်',\n    'second' => ':count စက္ကန့်',\n    'a_second' => '{0,1}စက္ကန်.အနည်းငယ်|[-Inf,Inf]:count စက္ကန့်',\n    's' => ':count စက္ကန့်',\n    'ago' => 'လွန်ခဲ့သော :time က',\n    'from_now' => 'လာမည့် :time မှာ',\n    'after' => ':time ကြာပြီးနောက်',\n    'before' => ':time မတိုင်ခင်',\n    'diff_now' => 'အခုလေးတင်',\n    'diff_today' => 'ယနေ.',\n    'diff_yesterday' => 'မနေ့က',\n    'diff_yesterday_regexp' => 'မနေ.က',\n    'diff_tomorrow' => 'မနက်ဖြန်',\n    'diff_before_yesterday' => 'တမြန်နေ့က',\n    'diff_after_tomorrow' => 'တဘက်ခါ',\n    'period_recurrences' => ':count ကြိမ်',\n    'formats' => [\n        'LT' => 'Oh:Om A',\n        'LTS' => 'Oh:Om:Os A',\n        'L' => 'OD/OM/OY',\n        'LL' => 'OD MMMM OY',\n        'LLL' => 'OD MMMM OY Oh:Om A',\n        'LLLL' => 'dddd OD MMMM OY Oh:Om A',\n    ],\n    'calendar' => [\n        'sameDay' => '[ယနေ.] LT [မှာ]',\n        'nextDay' => '[မနက်ဖြန်] LT [မှာ]',\n        'nextWeek' => 'dddd LT [မှာ]',\n        'lastDay' => '[မနေ.က] LT [မှာ]',\n        'lastWeek' => '[ပြီးခဲ့သော] dddd LT [မှာ]',\n        'sameElse' => 'L',\n    ],\n    'months' => ['ဇန်နဝါရီ', 'ဖေဖော်ဝါရီ', 'မတ်', 'ဧပြီ', 'မေ', 'ဇွန်', 'ဇူလိုင်', 'သြဂုတ်', 'စက်တင်ဘာ', 'အောက်တိုဘာ', 'နိုဝင်ဘာ', 'ဒီဇင်ဘာ'],\n    'months_short' => ['ဇန်', 'ဖေ', 'မတ်', 'ပြီ', 'မေ', 'ဇွန်', 'လိုင်', 'သြ', 'စက်', 'အောက်', 'နို', 'ဒီ'],\n    'weekdays' => ['တနင်္ဂနွေ', 'တနင်္လာ', 'အင်္ဂါ', 'ဗုဒ္ဓဟူး', 'ကြာသပတေး', 'သောကြာ', 'စနေ'],\n    'weekdays_short' => ['နွေ', 'လာ', 'ဂါ', 'ဟူး', 'ကြာ', 'သော', 'နေ'],\n    'weekdays_min' => ['နွေ', 'လာ', 'ဂါ', 'ဟူး', 'ကြာ', 'သော', 'နေ'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'alt_numbers' => ['၀၀', '၀၁', '၀၂', '၀၃', '၀၄', '၀၅', '၀၆', '၀၇', '၀၈', '၀၉', '၁၀', '၁၁', '၁၂', '၁၃', '၁၄', '၁၅', '၁၆', '၁၇', '၁၈', '၁၉', '၂၀', '၂၁', '၂၂', '၂၃', '၂၄', '၂၅', '၂၆', '၂၇', '၂၈', '၂၉', '၃၀', '၃၁', '၃၂', '၃၃', '၃၄', '၃၅', '၃၆', '၃၇', '၃၈', '၃၉', '၄၀', '၄၁', '၄၂', '၄၃', '၄၄', '၄၅', '၄၆', '၄၇', '၄၈', '၄၉', '၅၀', '၅၁', '၅၂', '၅၃', '၅၄', '၅၅', '၅၆', '၅၇', '၅၈', '၅၉', '၆၀', '၆၁', '၆၂', '၆၃', '၆၄', '၆၅', '၆၆', '၆၇', '၆၈', '၆၉', '၇၀', '၇၁', '၇၂', '၇၃', '၇၄', '၇၅', '၇၆', '၇၇', '၇၈', '၇၉', '၈၀', '၈၁', '၈၂', '၈၃', '၈၄', '၈၅', '၈၆', '၈၇', '၈၈', '၈၉', '၉၀', '၉၁', '၉၂', '၉၃', '၉၄', '၉၅', '၉၆', '၉၇', '၉၈', '၉၉'],\n    'meridiem' => ['နံနက်', 'ညနေ'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/my_MM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/my.php';\n"
  },
  {
    "path": "src/Carbon/Lang/mzn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fa.php', [\n    'months' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],\n    'months_short' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],\n    'first_day_of_week' => 6,\n    'weekend' => [5, 5],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'YYYY MMMM D, dddd HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nan.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/nan_TW.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nan_TW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY年MM月DD日',\n    ],\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'],\n    'weekdays' => ['禮拜日', '禮拜一', '禮拜二', '禮拜三', '禮拜四', '禮拜五', '禮拜六'],\n    'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['頂晡', '下晡'],\n\n    'year' => ':count 年',\n    'y' => ':count 年',\n    'a_year' => ':count 年',\n\n    'month' => ':count goe̍h',\n    'm' => ':count goe̍h',\n    'a_month' => ':count goe̍h',\n\n    'week' => ':count lé-pài',\n    'w' => ':count lé-pài',\n    'a_week' => ':count lé-pài',\n\n    'day' => ':count 日',\n    'd' => ':count 日',\n    'a_day' => ':count 日',\n\n    'hour' => ':count tiám-cheng',\n    'h' => ':count tiám-cheng',\n    'a_hour' => ':count tiám-cheng',\n\n    'minute' => ':count Hun-cheng',\n    'min' => ':count Hun-cheng',\n    'a_minute' => ':count Hun-cheng',\n\n    'second' => ':count Bió',\n    's' => ':count Bió',\n    'a_second' => ':count Bió',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nan_TW@latin.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Arne Goetje arne@canonical.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n    'months' => ['1goe̍h', '2goe̍h', '3goe̍h', '4goe̍h', '5goe̍h', '6goe̍h', '7goe̍h', '8goe̍h', '9goe̍h', '10goe̍h', '11goe̍h', '12goe̍h'],\n    'months_short' => ['1g', '2g', '3g', '4g', '5g', '6g', '7g', '8g', '9g', '10g', '11g', '12g'],\n    'weekdays' => ['lé-pài-ji̍t', 'pài-it', 'pài-jī', 'pài-saⁿ', 'pài-sì', 'pài-gō͘', 'pài-la̍k'],\n    'weekdays_short' => ['lp', 'p1', 'p2', 'p3', 'p4', 'p5', 'p6'],\n    'weekdays_min' => ['lp', 'p1', 'p2', 'p3', 'p4', 'p5', 'p6'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['téng-po͘', 'ē-po͘'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/naq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['ǁgoagas', 'ǃuias'],\n    'weekdays' => ['Sontaxtsees', 'Mantaxtsees', 'Denstaxtsees', 'Wunstaxtsees', 'Dondertaxtsees', 'Fraitaxtsees', 'Satertaxtsees'],\n    'weekdays_short' => ['Son', 'Ma', 'De', 'Wu', 'Do', 'Fr', 'Sat'],\n    'weekdays_min' => ['Son', 'Ma', 'De', 'Wu', 'Do', 'Fr', 'Sat'],\n    'months' => ['ǃKhanni', 'ǃKhanǀgôab', 'ǀKhuuǁkhâb', 'ǃHôaǂkhaib', 'ǃKhaitsâb', 'Gamaǀaeb', 'ǂKhoesaob', 'Aoǁkhuumûǁkhâb', 'Taraǀkhuumûǁkhâb', 'ǂNûǁnâiseb', 'ǀHooǂgaeb', 'Hôasoreǁkhâb'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm a',\n    ],\n\n    'year' => ':count kurigu',\n    'y' => ':count kurigu',\n    'a_year' => ':count kurigu',\n\n    'month' => ':count ǁaub', // less reliable\n    'm' => ':count ǁaub', // less reliable\n    'a_month' => ':count ǁaub', // less reliable\n\n    'week' => ':count hû', // less reliable\n    'w' => ':count hû', // less reliable\n    'a_week' => ':count hû', // less reliable\n\n    'day' => ':count ǀhobas', // less reliable\n    'd' => ':count ǀhobas', // less reliable\n    'a_day' => ':count ǀhobas', // less reliable\n\n    'hour' => ':count ǂgaes', // less reliable\n    'h' => ':count ǂgaes', // less reliable\n    'a_hour' => ':count ǂgaes', // less reliable\n\n    'minute' => ':count minutga', // less reliable\n    'min' => ':count minutga', // less reliable\n    'a_minute' => ':count minutga', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nb.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Alexander Tømmerås\n * - Sigurd Gartmann\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count år|:count år',\n    'a_year' => 'ett år|:count år',\n    'y' => ':count år|:count år',\n    'month' => ':count måned|:count måneder',\n    'a_month' => 'en måned|:count måneder',\n    'm' => ':count md.',\n    'week' => ':count uke|:count uker',\n    'a_week' => 'en uke|:count uker',\n    'w' => ':count u.',\n    'day' => ':count dag|:count dager',\n    'a_day' => 'en dag|:count dager',\n    'd' => ':count d.',\n    'hour' => ':count time|:count timer',\n    'a_hour' => 'en time|:count timer',\n    'h' => ':count t',\n    'minute' => ':count minutt|:count minutter',\n    'a_minute' => 'ett minutt|:count minutter',\n    'min' => ':count min',\n    'second' => ':count sekund|:count sekunder',\n    'a_second' => 'noen sekunder|:count sekunder',\n    's' => ':count sek',\n    'ago' => ':time siden',\n    'from_now' => 'om :time',\n    'after' => ':time etter',\n    'before' => ':time før',\n    'diff_now' => 'akkurat nå',\n    'diff_today' => 'i dag',\n    'diff_today_regexp' => 'i dag(?:\\\\s+kl.)?',\n    'diff_yesterday' => 'i går',\n    'diff_yesterday_regexp' => 'i går(?:\\\\s+kl.)?',\n    'diff_tomorrow' => 'i morgen',\n    'diff_tomorrow_regexp' => 'i morgen(?:\\\\s+kl.)?',\n    'diff_before_yesterday' => 'i forgårs',\n    'diff_after_tomorrow' => 'i overmorgen',\n    'period_recurrences' => 'en gang|:count ganger',\n    'period_interval' => 'hver :interval',\n    'period_start_date' => 'fra :date',\n    'period_end_date' => 'til :date',\n    'months' => ['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],\n    'weekdays' => ['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag'],\n    'weekdays_short' => ['søn', 'man', 'tir', 'ons', 'tor', 'fre', 'lør'],\n    'weekdays_min' => ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'],\n    'ordinal' => ':number.',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY [kl.] HH:mm',\n        'LLLL' => 'dddd D. MMMM YYYY [kl.] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[i dag kl.] LT',\n        'nextDay' => '[i morgen kl.] LT',\n        'nextWeek' => 'dddd [kl.] LT',\n        'lastDay' => '[i går kl.] LT',\n        'lastWeek' => '[forrige] dddd [kl.] LT',\n        'sameElse' => 'L',\n    ],\n    'list' => [', ', ' og '],\n    'meridiem' => ['a.m.', 'p.m.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/nb_NO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/nb.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nb_SJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/nb.php', [\n    'formats' => [\n        'LL' => 'D. MMM YYYY',\n        'LLL' => 'D. MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd D. MMMM YYYY, HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nd.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'weekdays' => ['Sonto', 'Mvulo', 'Sibili', 'Sithathu', 'Sine', 'Sihlanu', 'Mgqibelo'],\n    'weekdays_short' => ['Son', 'Mvu', 'Sib', 'Sit', 'Sin', 'Sih', 'Mgq'],\n    'weekdays_min' => ['Son', 'Mvu', 'Sib', 'Sit', 'Sin', 'Sih', 'Mgq'],\n    'months' => ['Zibandlela', 'Nhlolanja', 'Mbimbitho', 'Mabasa', 'Nkwenkwezi', 'Nhlangula', 'Ntulikazi', 'Ncwabakazi', 'Mpandula', 'Mfumfu', 'Lwezi', 'Mpalakazi'],\n    'months_short' => ['Zib', 'Nhlo', 'Mbi', 'Mab', 'Nkw', 'Nhla', 'Ntu', 'Ncw', 'Mpan', 'Mfu', 'Lwe', 'Mpal'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n\n    'year' => 'okweminyaka engu-:count', // less reliable\n    'y' => 'okweminyaka engu-:count', // less reliable\n    'a_year' => 'okweminyaka engu-:count', // less reliable\n\n    'month' => 'inyanga ezingu-:count',\n    'm' => 'inyanga ezingu-:count',\n    'a_month' => 'inyanga ezingu-:count',\n\n    'week' => 'amaviki angu-:count',\n    'w' => 'amaviki angu-:count',\n    'a_week' => 'amaviki angu-:count',\n\n    'day' => 'kwamalanga angu-:count',\n    'd' => 'kwamalanga angu-:count',\n    'a_day' => 'kwamalanga angu-:count',\n\n    'hour' => 'amahola angu-:count',\n    'h' => 'amahola angu-:count',\n    'a_hour' => 'amahola angu-:count',\n\n    'minute' => 'imizuzu engu-:count',\n    'min' => 'imizuzu engu-:count',\n    'a_minute' => 'imizuzu engu-:count',\n\n    'second' => 'imizuzwana engu-:count',\n    's' => 'imizuzwana engu-:count',\n    'a_second' => 'imizuzwana engu-:count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nds.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/nds_DE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nds_DE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Jannuaar', 'Feberwaar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],\n    'months_short' => ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],\n    'weekdays' => ['Sünndag', 'Maandag', 'Dingsdag', 'Middeweek', 'Dunnersdag', 'Freedag', 'Sünnavend'],\n    'weekdays_short' => ['Sdag', 'Maan', 'Ding', 'Midd', 'Dunn', 'Free', 'Svd.'],\n    'weekdays_min' => ['Sd', 'Ma', 'Di', 'Mi', 'Du', 'Fr', 'Sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count Johr',\n    'y' => ':countJ',\n    'a_year' => '{1}een Johr|:count Johr',\n\n    'month' => ':count Maand',\n    'm' => ':countM',\n    'a_month' => '{1}een Maand|:count Maand',\n\n    'week' => ':count Week|:count Weken',\n    'w' => ':countW',\n    'a_week' => '{1}een Week|:count Week|:count Weken',\n\n    'day' => ':count Dag|:count Daag',\n    'd' => ':countD',\n    'a_day' => '{1}een Dag|:count Dag|:count Daag',\n\n    'hour' => ':count Stünn|:count Stünnen',\n    'h' => ':countSt',\n    'a_hour' => '{1}een Stünn|:count Stünn|:count Stünnen',\n\n    'minute' => ':count Minuut|:count Minuten',\n    'min' => ':countm',\n    'a_minute' => '{1}een Minuut|:count Minuut|:count Minuten',\n\n    'second' => ':count Sekunn|:count Sekunnen',\n    's' => ':counts',\n    'a_second' => 'en poor Sekunnen|:count Sekunn|:count Sekunnen',\n\n    'ago' => 'vör :time',\n    'from_now' => 'in :time',\n    'before' => ':time vörher',\n    'after' => ':time later',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nds_NL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Jaunuwoa', 'Februwoa', 'Moaz', 'Aprell', 'Mai', 'Juni', 'Juli', 'August', 'Septamba', 'Oktoba', 'Nowamba', 'Dezamba'],\n    'months_short' => ['Jan', 'Feb', 'Moz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Now', 'Dez'],\n    'weekdays' => ['Sinndag', 'Mondag', 'Dingsdag', 'Meddwäakj', 'Donnadag', 'Friedag', 'Sinnowend'],\n    'weekdays_short' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'],\n    'weekdays_min' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ne.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - nootanghimire\n * - Josh Soref\n * - Nj Subedi\n * - JD Isaacks\n */\nreturn [\n    'year' => 'एक बर्ष|:count बर्ष',\n    'y' => ':count वर्ष',\n    'month' => 'एक महिना|:count महिना',\n    'm' => ':count महिना',\n    'week' => ':count हप्ता',\n    'w' => ':count हप्ता',\n    'day' => 'एक दिन|:count दिन',\n    'd' => ':count दिन',\n    'hour' => 'एक घण्टा|:count घण्टा',\n    'h' => ':count घण्टा',\n    'minute' => 'एक मिनेट|:count मिनेट',\n    'min' => ':count मिनेट',\n    'second' => 'केही क्षण|:count सेकेण्ड',\n    's' => ':count सेकेण्ड',\n    'ago' => ':time अगाडि',\n    'from_now' => ':timeमा',\n    'after' => ':time पछि',\n    'before' => ':time अघि',\n    'diff_now' => 'अहिले',\n    'diff_today' => 'आज',\n    'diff_yesterday' => 'हिजो',\n    'diff_tomorrow' => 'भोलि',\n    'formats' => [\n        'LT' => 'Aको h:mm बजे',\n        'LTS' => 'Aको h:mm:ss बजे',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, Aको h:mm बजे',\n        'LLLL' => 'dddd, D MMMM YYYY, Aको h:mm बजे',\n    ],\n    'calendar' => [\n        'sameDay' => '[आज] LT',\n        'nextDay' => '[भोलि] LT',\n        'nextWeek' => '[आउँदो] dddd[,] LT',\n        'lastDay' => '[हिजो] LT',\n        'lastWeek' => '[गएको] dddd[,] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 3) {\n            return 'राति';\n        }\n        if ($hour < 12) {\n            return 'बिहान';\n        }\n        if ($hour < 16) {\n            return 'दिउँसो';\n        }\n        if ($hour < 20) {\n            return 'साँझ';\n        }\n\n        return 'राति';\n    },\n    'months' => ['जनवरी', 'फेब्रुवरी', 'मार्च', 'अप्रिल', 'मई', 'जुन', 'जुलाई', 'अगष्ट', 'सेप्टेम्बर', 'अक्टोबर', 'नोभेम्बर', 'डिसेम्बर'],\n    'months_short' => ['जन.', 'फेब्रु.', 'मार्च', 'अप्रि.', 'मई', 'जुन', 'जुलाई.', 'अग.', 'सेप्ट.', 'अक्टो.', 'नोभे.', 'डिसे.'],\n    'weekdays' => ['आइतबार', 'सोमबार', 'मङ्गलबार', 'बुधबार', 'बिहिबार', 'शुक्रबार', 'शनिबार'],\n    'weekdays_short' => ['आइत.', 'सोम.', 'मङ्गल.', 'बुध.', 'बिहि.', 'शुक्र.', 'शनि.'],\n    'weekdays_min' => ['आ.', 'सो.', 'मं.', 'बु.', 'बि.', 'शु.', 'श.'],\n    'list' => [', ', ' र '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ne_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ne.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'yy/M/d',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D, h:mm a',\n        'LLLL' => 'YYYY MMMM D, dddd, h:mm a',\n    ],\n    'months' => ['जनवरी', 'फेब्रुअरी', 'मार्च', 'अप्रिल', 'मे', 'जुन', 'जुलाई', 'अगस्ट', 'सेप्टेम्बर', 'अक्टोबर', 'नोभेम्बर', 'डिसेम्बर'],\n    'months_short' => ['जनवरी', 'फेब्रुअरी', 'मार्च', 'अप्रिल', 'मे', 'जुन', 'जुलाई', 'अगस्ट', 'सेप्टेम्बर', 'अक्टोबर', 'नोभेम्बर', 'डिसेम्बर'],\n    'weekend' => [0, 0],\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ne_NP.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ne.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nhn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/nhn_MX.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nhn_MX.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'],\n    'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'],\n    'weekdays' => ['teoilhuitl', 'ceilhuitl', 'omeilhuitl', 'yeilhuitl', 'nahuilhuitl', 'macuililhuitl', 'chicuaceilhuitl'],\n    'weekdays_short' => ['teo', 'cei', 'ome', 'yei', 'nau', 'mac', 'chi'],\n    'weekdays_min' => ['teo', 'cei', 'ome', 'yei', 'nau', 'mac', 'chi'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'month' => ':count metztli', // less reliable\n    'm' => ':count metztli', // less reliable\n    'a_month' => ':count metztli', // less reliable\n\n    'week' => ':count tonalli', // less reliable\n    'w' => ':count tonalli', // less reliable\n    'a_week' => ':count tonalli', // less reliable\n\n    'day' => ':count tonatih', // less reliable\n    'd' => ':count tonatih', // less reliable\n    'a_day' => ':count tonatih', // less reliable\n\n    'minute' => ':count toltecayotl', // less reliable\n    'min' => ':count toltecayotl', // less reliable\n    'a_minute' => ':count toltecayotl', // less reliable\n\n    'second' => ':count ome', // less reliable\n    's' => ':count ome', // less reliable\n    'a_second' => ':count ome', // less reliable\n\n    'year' => ':count xihuitl',\n    'y' => ':count xihuitl',\n    'a_year' => ':count xihuitl',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/niu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/niu_NU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/niu_NU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RockET Systems Emani Fakaotimanava-Lui emani@niue.nu\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Ianuali', 'Fepuali', 'Masi', 'Apelila', 'Me', 'Iuni', 'Iulai', 'Aokuso', 'Sepetema', 'Oketopa', 'Novema', 'Tesemo'],\n    'months_short' => ['Ian', 'Fep', 'Mas', 'Ape', 'Me', 'Iun', 'Iul', 'Aok', 'Sep', 'Oke', 'Nov', 'Tes'],\n    'weekdays' => ['Aho Tapu', 'Aho Gofua', 'Aho Ua', 'Aho Lotu', 'Aho Tuloto', 'Aho Falaile', 'Aho Faiumu'],\n    'weekdays_short' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'],\n    'weekdays_min' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count tau',\n    'y' => ':count tau',\n    'a_year' => ':count tau',\n\n    'month' => ':count mahina',\n    'm' => ':count mahina',\n    'a_month' => ':count mahina',\n\n    'week' => ':count faahi tapu',\n    'w' => ':count faahi tapu',\n    'a_week' => ':count faahi tapu',\n\n    'day' => ':count aho',\n    'd' => ':count aho',\n    'a_day' => ':count aho',\n\n    'hour' => ':count e tulā',\n    'h' => ':count e tulā',\n    'a_hour' => ':count e tulā',\n\n    'minute' => ':count minuti',\n    'min' => ':count minuti',\n    'a_minute' => ':count minuti',\n\n    'second' => ':count sekone',\n    's' => ':count sekone',\n    'a_second' => ':count sekone',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Roy\n * - Stephan\n * - François B\n * - Tim Fish\n * - Kevin Huang\n * - Jacob Middag\n * - JD Isaacks\n * - Roy\n * - Stephan\n * - François B\n * - Tim Fish\n * - Jacob Middag\n * - JD Isaacks\n * - Propaganistas\n * - MegaXLR\n * - adriaanzon\n * - MonkeyPhysics\n * - JeroenG\n * - RikSomers\n * - proclame\n * - Rik de Groot (hwdegroot)\n */\nreturn [\n    'year' => ':count jaar|:count jaar',\n    'a_year' => 'een jaar|:count jaar',\n    'y' => ':countj',\n    'month' => ':count maand|:count maanden',\n    'a_month' => 'een maand|:count maanden',\n    'm' => ':countmnd',\n    'week' => ':count week|:count weken',\n    'a_week' => 'een week|:count weken',\n    'w' => ':countw',\n    'day' => ':count dag|:count dagen',\n    'a_day' => 'een dag|:count dagen',\n    'd' => ':countd',\n    'hour' => ':count uur|:count uur',\n    'a_hour' => 'een uur|:count uur',\n    'h' => ':countu',\n    'minute' => ':count minuut|:count minuten',\n    'a_minute' => 'een minuut|:count minuten',\n    'min' => ':countmin',\n    'second' => ':count seconde|:count seconden',\n    'a_second' => 'een paar seconden|:count seconden',\n    's' => ':counts',\n    'ago' => ':time geleden',\n    'from_now' => 'over :time',\n    'after' => ':time later',\n    'before' => ':time eerder',\n    'diff_now' => 'nu',\n    'diff_today' => 'vandaag',\n    'diff_today_regexp' => 'vandaag(?:\\\\s+om)?',\n    'diff_yesterday' => 'gisteren',\n    'diff_yesterday_regexp' => 'gisteren(?:\\\\s+om)?',\n    'diff_tomorrow' => 'morgen',\n    'diff_tomorrow_regexp' => 'morgen(?:\\\\s+om)?',\n    'diff_after_tomorrow' => 'overmorgen',\n    'diff_before_yesterday' => 'eergisteren',\n    'period_recurrences' => ':count keer',\n    'period_interval' => static function (string $interval = '') {\n        /** @var string $output */\n        $output = preg_replace('/^(een|één|1)\\s+/u', '', $interval);\n\n        if (preg_match('/^(een|één|1)( jaar|j| uur|u)/u', $interval)) {\n            return \"elk $output\";\n        }\n\n        return \"elke $output\";\n    },\n    'period_start_date' => 'van :date',\n    'period_end_date' => 'tot :date',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD-MM-YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[vandaag om] LT',\n        'nextDay' => '[morgen om] LT',\n        'nextWeek' => 'dddd [om] LT',\n        'lastDay' => '[gisteren om] LT',\n        'lastWeek' => '[afgelopen] dddd [om] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de');\n    },\n    'months' => ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'],\n    'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],\n    'mmm_suffix' => '.',\n    'weekdays' => ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],\n    'weekdays_short' => ['zo.', 'ma.', 'di.', 'wo.', 'do.', 'vr.', 'za.'],\n    'weekdays_min' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' en '],\n    'meridiem' => ['\\'s ochtends', '\\'s middags'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/nl_AW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Free Software Foundation, Inc.    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/nl.php', [\n    'formats' => [\n        'L' => 'DD-MM-YY',\n    ],\n    'months' => ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'],\n    'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],\n    'weekdays' => ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],\n    'weekdays_short' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],\n    'weekdays_min' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nl_BE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Roy\n * - Stephan\n * - François B\n * - Tim Fish\n * - Kevin Huang\n * - Jacob Middag\n * - JD Isaacks\n * - Propaganistas\n */\nreturn array_replace_recursive(require __DIR__.'/nl.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nl_BQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/nl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nl_CW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/nl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nl_NL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/nl.php', [\n    'months' => ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'],\n    'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],\n    'weekdays' => ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],\n    'weekdays_short' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],\n    'weekdays_min' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nl_SR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/nl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nl_SX.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/nl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nmg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['maná', 'kugú'],\n    'weekdays' => ['sɔ́ndɔ', 'mɔ́ndɔ', 'sɔ́ndɔ mafú mába', 'sɔ́ndɔ mafú málal', 'sɔ́ndɔ mafú mána', 'mabágá má sukul', 'sásadi'],\n    'weekdays_short' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'mbs', 'sas'],\n    'weekdays_min' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'mbs', 'sas'],\n    'months' => ['ngwɛn matáhra', 'ngwɛn ńmba', 'ngwɛn ńlal', 'ngwɛn ńna', 'ngwɛn ńtan', 'ngwɛn ńtuó', 'ngwɛn hɛmbuɛrí', 'ngwɛn lɔmbi', 'ngwɛn rɛbvuâ', 'ngwɛn wum', 'ngwɛn wum navǔr', 'krísimin'],\n    'months_short' => ['ng1', 'ng2', 'ng3', 'ng4', 'ng5', 'ng6', 'ng7', 'ng8', 'ng9', 'ng10', 'ng11', 'kris'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Alexander Tømmerås\n * - Øystein\n * - JD Isaacks\n * - Gaute Hvoslef Kvalnes (gaute)\n */\nreturn [\n    'year' => ':count år',\n    'a_year' => 'eit år|:count år',\n    'y' => ':count år',\n    'month' => ':count månad|:count månader',\n    'a_month' => 'ein månad|:count månader',\n    'm' => ':count md',\n    'week' => ':count veke|:count veker',\n    'a_week' => 'ei veke|:count veker',\n    'w' => ':countv',\n    'day' => ':count dag|:count dagar',\n    'a_day' => 'ein dag|:count dagar',\n    'd' => ':countd',\n    'hour' => ':count time|:count timar',\n    'a_hour' => 'ein time|:count timar',\n    'h' => ':countt',\n    'minute' => ':count minutt',\n    'a_minute' => 'eit minutt|:count minutt',\n    'min' => ':countm',\n    'second' => ':count sekund',\n    'a_second' => 'nokre sekund|:count sekund',\n    's' => ':counts',\n    'ago' => ':time sidan',\n    'from_now' => 'om :time',\n    'after' => ':time etter',\n    'before' => ':time før',\n    'diff_today' => 'I dag',\n    'diff_yesterday' => 'I går',\n    'diff_yesterday_regexp' => 'I går(?:\\\\s+klokka)?',\n    'diff_tomorrow' => 'I morgon',\n    'diff_tomorrow_regexp' => 'I morgon(?:\\\\s+klokka)?',\n    'diff_today_regexp' => 'I dag(?:\\\\s+klokka)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY [kl.] H:mm',\n        'LLLL' => 'dddd D. MMMM YYYY [kl.] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[I dag klokka] LT',\n        'nextDay' => '[I morgon klokka] LT',\n        'nextWeek' => 'dddd [klokka] LT',\n        'lastDay' => '[I går klokka] LT',\n        'lastWeek' => '[Føregåande] dddd [klokka] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],\n    'weekdays' => ['sundag', 'måndag', 'tysdag', 'onsdag', 'torsdag', 'fredag', 'laurdag'],\n    'weekdays_short' => ['sun', 'mån', 'tys', 'ons', 'tor', 'fre', 'lau'],\n    'weekdays_min' => ['su', 'må', 'ty', 'on', 'to', 'fr', 'la'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' og '],\n    'meridiem' => ['f.m.', 'e.m.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/nn_NO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/nn.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nnh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['mbaʼámbaʼ', 'ncwònzém'],\n    'weekdays' => null,\n    'weekdays_short' => ['lyɛʼɛ́ sẅíŋtè', 'mvfò lyɛ̌ʼ', 'mbɔ́ɔntè mvfò lyɛ̌ʼ', 'tsètsɛ̀ɛ lyɛ̌ʼ', 'mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ', 'mvfò màga lyɛ̌ʼ', 'màga lyɛ̌ʼ'],\n    'weekdays_min' => null,\n    'months' => null,\n    'months_short' => ['saŋ tsetsɛ̀ɛ lùm', 'saŋ kàg ngwóŋ', 'saŋ lepyè shúm', 'saŋ cÿó', 'saŋ tsɛ̀ɛ cÿó', 'saŋ njÿoláʼ', 'saŋ tyɛ̀b tyɛ̀b mbʉ̀ŋ', 'saŋ mbʉ̀ŋ', 'saŋ ngwɔ̀ʼ mbÿɛ', 'saŋ tàŋa tsetsáʼ', 'saŋ mejwoŋó', 'saŋ lùm'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/yy',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => '[lyɛ]̌ʼ d [na] MMMM, YYYY HH:mm',\n        'LLLL' => 'dddd , [lyɛ]̌ʼ d [na] MMMM, YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/no.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Daniel S. Billing\n * - Paul\n * - Jimmie Johansson\n * - Jens Herlevsen\n */\nreturn array_replace_recursive(require __DIR__.'/nb.php', [\n    'formats' => [\n        'LLL' => 'D. MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY [kl.] HH:mm',\n    ],\n    'calendar' => [\n        'nextWeek' => 'på dddd [kl.] LT',\n        'lastWeek' => '[i] dddd[s kl.] LT',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/nr_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nr_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Janabari', 'uFeberbari', 'uMatjhi', 'u-Apreli', 'Meyi', 'Juni', 'Julayi', 'Arhostosi', 'Septemba', 'Oktoba', 'Usinyikhaba', 'Disemba'],\n    'months_short' => ['Jan', 'Feb', 'Mat', 'Apr', 'Mey', 'Jun', 'Jul', 'Arh', 'Sep', 'Okt', 'Usi', 'Dis'],\n    'weekdays' => ['uSonto', 'uMvulo', 'uLesibili', 'lesithathu', 'uLesine', 'ngoLesihlanu', 'umGqibelo'],\n    'weekdays_short' => ['Son', 'Mvu', 'Bil', 'Tha', 'Ne', 'Hla', 'Gqi'],\n    'weekdays_min' => ['Son', 'Mvu', 'Bil', 'Tha', 'Ne', 'Hla', 'Gqi'],\n    'day_of_first_week_of_year' => 1,\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nso.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/nso_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/nso_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Janaware', 'Febereware', 'Matšhe', 'Aprele', 'Mei', 'June', 'Julae', 'Agostose', 'Setemere', 'Oktobere', 'Nofemere', 'Disemere'],\n    'months_short' => ['Jan', 'Feb', 'Mat', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Set', 'Okt', 'Nof', 'Dis'],\n    'weekdays' => ['LaMorena', 'Mošupologo', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Mokibelo'],\n    'weekdays_short' => ['Son', 'Moš', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'],\n    'weekdays_min' => ['Son', 'Moš', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count ngwaga',\n    'y' => ':count ngwaga',\n    'a_year' => ':count ngwaga',\n\n    'month' => ':count Kgwedi',\n    'm' => ':count Kgwedi',\n    'a_month' => ':count Kgwedi',\n\n    'week' => ':count Beke',\n    'w' => ':count Beke',\n    'a_week' => ':count Beke',\n\n    'day' => ':count Letšatši',\n    'd' => ':count Letšatši',\n    'a_day' => ':count Letšatši',\n\n    'hour' => ':count Iri',\n    'h' => ':count Iri',\n    'a_hour' => ':count Iri',\n\n    'minute' => ':count Motsotso',\n    'min' => ':count Motsotso',\n    'a_minute' => ':count Motsotso',\n\n    'second' => ':count motsotswana',\n    's' => ':count motsotswana',\n    'a_second' => ':count motsotswana',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nus.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['RW', 'TŊ'],\n    'weekdays' => ['Cäŋ kuɔth', 'Jiec la̱t', 'Rɛw lätni', 'Diɔ̱k lätni', 'Ŋuaan lätni', 'Dhieec lätni', 'Bäkɛl lätni'],\n    'weekdays_short' => ['Cäŋ', 'Jiec', 'Rɛw', 'Diɔ̱k', 'Ŋuaan', 'Dhieec', 'Bäkɛl'],\n    'weekdays_min' => ['Cäŋ', 'Jiec', 'Rɛw', 'Diɔ̱k', 'Ŋuaan', 'Dhieec', 'Bäkɛl'],\n    'months' => ['Tiop thar pɛt', 'Pɛt', 'Duɔ̱ɔ̱ŋ', 'Guak', 'Duät', 'Kornyoot', 'Pay yie̱tni', 'Tho̱o̱r', 'Tɛɛr', 'Laath', 'Kur', 'Tio̱p in di̱i̱t'],\n    'months_short' => ['Tiop', 'Pɛt', 'Duɔ̱ɔ̱', 'Guak', 'Duä', 'Kor', 'Pay', 'Thoo', 'Tɛɛ', 'Laa', 'Kur', 'Tid'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd D MMMM YYYY h:mm a',\n    ],\n\n    'year' => ':count jiök', // less reliable\n    'y' => ':count jiök', // less reliable\n    'a_year' => ':count jiök', // less reliable\n\n    'month' => ':count pay', // less reliable\n    'm' => ':count pay', // less reliable\n    'a_month' => ':count pay', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/nyn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['Sande', 'Orwokubanza', 'Orwakabiri', 'Orwakashatu', 'Orwakana', 'Orwakataano', 'Orwamukaaga'],\n    'weekdays_short' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'],\n    'weekdays_min' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'],\n    'months' => ['Okwokubanza', 'Okwakabiri', 'Okwakashatu', 'Okwakana', 'Okwakataana', 'Okwamukaaga', 'Okwamushanju', 'Okwamunaana', 'Okwamwenda', 'Okwaikumi', 'Okwaikumi na kumwe', 'Okwaikumi na ibiri'],\n    'months_short' => ['KBZ', 'KBR', 'KST', 'KKN', 'KTN', 'KMK', 'KMS', 'KMN', 'KMW', 'KKM', 'KNK', 'KNB'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/oc.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Quentí\n * - Quentin PAGÈS\n */\n// @codeCoverageIgnoreStart\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\nif (class_exists('Symfony\\\\Component\\\\Translation\\\\PluralizationRules')) {\n    PluralizationRules::set(static function ($number) {\n        return $number == 1 ? 0 : 1;\n    }, 'oc');\n}\n// @codeCoverageIgnoreEnd\n\nreturn [\n    'year' => ':count an|:count ans',\n    'a_year' => 'un an|:count ans',\n    'y' => ':count an|:count ans',\n    'month' => ':count mes|:count meses',\n    'a_month' => 'un mes|:count meses',\n    'm' => ':count mes|:count meses',\n    'week' => ':count setmana|:count setmanas',\n    'a_week' => 'una setmana|:count setmanas',\n    'w' => ':count setmana|:count setmanas',\n    'day' => ':count jorn|:count jorns',\n    'a_day' => 'un jorn|:count jorns',\n    'd' => ':count jorn|:count jorns',\n    'hour' => ':count ora|:count oras',\n    'a_hour' => 'una ora|:count oras',\n    'h' => ':count ora|:count oras',\n    'minute' => ':count minuta|:count minutas',\n    'a_minute' => 'una minuta|:count minutas',\n    'min' => ':count minuta|:count minutas',\n    'second' => ':count segonda|:count segondas',\n    'a_second' => 'una segonda|:count segondas',\n    's' => ':count segonda|:count segondas',\n    'ago' => 'fa :time',\n    'from_now' => 'd\\'aquí :time',\n    'after' => ':time aprèp',\n    'before' => ':time abans',\n    'diff_now' => 'ara meteis',\n    'diff_today' => 'Uèi',\n    'diff_today_regexp' => 'Uèi(?:\\\\s+a)?',\n    'diff_yesterday' => 'ièr',\n    'diff_yesterday_regexp' => 'Ièr(?:\\\\s+a)?',\n    'diff_tomorrow' => 'deman',\n    'diff_tomorrow_regexp' => 'Deman(?:\\\\s+a)?',\n    'diff_before_yesterday' => 'ièr delà',\n    'diff_after_tomorrow' => 'deman passat',\n    'period_recurrences' => ':count còp|:count còps',\n    'period_interval' => 'cada :interval',\n    'period_start_date' => 'de :date',\n    'period_end_date' => 'fins a :date',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM [de] YYYY',\n        'LLL' => 'D MMMM [de] YYYY [a] H:mm',\n        'LLLL' => 'dddd D MMMM [de] YYYY [a] H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Uèi a] LT',\n        'nextDay' => '[Deman a] LT',\n        'nextWeek' => 'dddd [a] LT',\n        'lastDay' => '[Ièr a] LT',\n        'lastWeek' => 'dddd [passat a] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['de genièr', 'de febrièr', 'de març', 'd\\'abrial', 'de mai', 'de junh', 'de julhet', 'd\\'agost', 'de setembre', 'd’octòbre', 'de novembre', 'de decembre'],\n    'months_standalone' => ['genièr', 'febrièr', 'març', 'abrial', 'mai', 'junh', 'julh', 'agost', 'setembre', 'octòbre', 'novembre', 'decembre'],\n    'months_short' => ['gen.', 'feb.', 'març', 'abr.', 'mai', 'junh', 'julh', 'ago.', 'sep.', 'oct.', 'nov.', 'dec.'],\n    'weekdays' => ['dimenge', 'diluns', 'dimars', 'dimècres', 'dijòus', 'divendres', 'dissabte'],\n    'weekdays_short' => ['dg', 'dl', 'dm', 'dc', 'dj', 'dv', 'ds'],\n    'weekdays_min' => ['dg', 'dl', 'dm', 'dc', 'dj', 'dv', 'ds'],\n    'ordinal' => static function ($number, string $period = '') {\n        $ordinal = [1 => 'èr', 2 => 'nd'][(int) $number] ?? 'en';\n\n        // feminine for week, hour, minute, second\n        if (preg_match('/^[wWhHgGis]$/', $period)) {\n            $ordinal .= 'a';\n        }\n\n        return $number.$ordinal;\n    },\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' e '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/oc_FR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/oc.php';\n"
  },
  {
    "path": "src/Carbon/Lang/om.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation & Sagalee Oromoo Publishing Co. Inc.    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'dd-MMM-YYYY',\n        'LLL' => 'dd MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, MMMM D, YYYY HH:mm',\n    ],\n    'months' => ['Amajjii', 'Guraandhala', 'Bitooteessa', 'Elba', 'Caamsa', 'Waxabajjii', 'Adooleessa', 'Hagayya', 'Fuulbana', 'Onkololeessa', 'Sadaasa', 'Muddee'],\n    'months_short' => ['Ama', 'Gur', 'Bit', 'Elb', 'Cam', 'Wax', 'Ado', 'Hag', 'Ful', 'Onk', 'Sad', 'Mud'],\n    'weekdays' => ['Dilbata', 'Wiixata', 'Qibxata', 'Roobii', 'Kamiisa', 'Jimaata', 'Sanbata'],\n    'weekdays_short' => ['Dil', 'Wix', 'Qib', 'Rob', 'Kam', 'Jim', 'San'],\n    'weekdays_min' => ['Dil', 'Wix', 'Qib', 'Rob', 'Kam', 'Jim', 'San'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['WD', 'WB'],\n\n    'year' => 'wggoota :count',\n    'y' => 'wggoota :count',\n    'a_year' => 'wggoota :count',\n\n    'month' => 'ji’a :count',\n    'm' => 'ji’a :count',\n    'a_month' => 'ji’a :count',\n\n    'week' => 'torban :count',\n    'w' => 'torban :count',\n    'a_week' => 'torban :count',\n\n    'day' => 'guyyaa :count',\n    'd' => 'guyyaa :count',\n    'a_day' => 'guyyaa :count',\n\n    'hour' => 'saʼaatii :count',\n    'h' => 'saʼaatii :count',\n    'a_hour' => 'saʼaatii :count',\n\n    'minute' => 'daqiiqaa :count',\n    'min' => 'daqiiqaa :count',\n    'a_minute' => 'daqiiqaa :count',\n\n    'second' => 'sekoondii :count',\n    's' => 'sekoondii :count',\n    'a_second' => 'sekoondii :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/om_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/om.php';\n"
  },
  {
    "path": "src/Carbon/Lang/om_KE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/om.php', [\n    'day_of_first_week_of_year' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/or.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/or_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/or_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM AP Linux Technology Center, Yamato Software Laboratory    bug-glibc@gnu.org\n */\nreturn [\n    'diff_now' => 'ବର୍ତ୍ତମାନ',\n    'diff_yesterday' => 'ଗତକାଲି',\n    'diff_tomorrow' => 'ଆସନ୍ତାକାଲି',\n    'formats' => [\n        'LT' => 'Oh:Om A',\n        'LTS' => 'Oh:Om:Os A',\n        'L' => 'OD-OM-OY',\n        'LL' => 'OD MMMM OY',\n        'LLL' => 'OD MMMM OY Oh:Om A',\n        'LLLL' => 'dddd OD MMMM OY Oh:Om A',\n    ],\n    'months' => ['ଜାନୁଆରୀ', 'ଫେବୃଆରୀ', 'ମାର୍ଚ୍ଚ', 'ଅପ୍ରେଲ', 'ମଇ', 'ଜୁନ', 'ଜୁଲାଇ', 'ଅଗଷ୍ଟ', 'ସେପ୍ଟେମ୍ବର', 'ଅକ୍ଟୋବର', 'ନଭେମ୍ବର', 'ଡିସେମ୍ବର'],\n    'months_short' => ['ଜାନୁଆରୀ', 'ଫେବୃଆରୀ', 'ମାର୍ଚ୍ଚ', 'ଅପ୍ରେଲ', 'ମଇ', 'ଜୁନ', 'ଜୁଲାଇ', 'ଅଗଷ୍ଟ', 'ସେପ୍ଟେମ୍ବର', 'ଅକ୍ଟୋବର', 'ନଭେମ୍ବର', 'ଡିସେମ୍ବର'],\n    'weekdays' => ['ରବିବାର', 'ସୋମବାର', 'ମଙ୍ଗଳବାର', 'ବୁଧବାର', 'ଗୁରୁବାର', 'ଶୁକ୍ରବାର', 'ଶନିବାର'],\n    'weekdays_short' => ['ରବି', 'ସୋମ', 'ମଙ୍ଗଳ', 'ବୁଧ', 'ଗୁରୁ', 'ଶୁକ୍ର', 'ଶନି'],\n    'weekdays_min' => ['ରବି', 'ସୋମ', 'ମଙ୍ଗଳ', 'ବୁଧ', 'ଗୁରୁ', 'ଶୁକ୍ର', 'ଶନି'],\n    'day_of_first_week_of_year' => 1,\n    'alt_numbers' => ['୦', '୧', '୨', '୩', '୪', '୫', '୬', '୭', '୮', '୯', '୧୦', '୧୧', '୧୨', '୧୩', '୧୪', '୧୫', '୧୬', '୧୭', '୧୮', '୧୯', '୨୦', '୨୧', '୨୨', '୨୩', '୨୪', '୨୫', '୨୬', '୨୭', '୨୮', '୨୯', '୩୦', '୩୧', '୩୨', '୩୩', '୩୪', '୩୫', '୩୬', '୩୭', '୩୮', '୩୯', '୪୦', '୪୧', '୪୨', '୪୩', '୪୪', '୪୫', '୪୬', '୪୭', '୪୮', '୪୯', '୫୦', '୫୧', '୫୨', '୫୩', '୫୪', '୫୫', '୫୬', '୫୭', '୫୮', '୫୯', '୬୦', '୬୧', '୬୨', '୬୩', '୬୪', '୬୫', '୬୬', '୬୭', '୬୮', '୬୯', '୭୦', '୭୧', '୭୨', '୭୩', '୭୪', '୭୫', '୭୬', '୭୭', '୭୮', '୭୯', '୮୦', '୮୧', '୮୨', '୮୩', '୮୪', '୮୫', '୮୬', '୮୭', '୮୮', '୮୯', '୯୦', '୯୧', '୯୨', '୯୩', '୯୪', '୯୫', '୯୬', '୯୭', '୯୮', '୯୯'],\n    'year' => ':count ବର୍ଷ',\n    'y' => ':count ବ.',\n    'month' => ':count ମାସ',\n    'm' => ':count ମା.',\n    'week' => ':count ସପ୍ତାହ',\n    'w' => ':count ସପ୍ତା.',\n    'day' => ':count ଦିନ',\n    'd' => ':count ଦିନ',\n    'hour' => ':count ଘଣ୍ତ',\n    'h' => ':count ଘ.',\n    'minute' => ':count ମିନଟ',\n    'min' => ':count ମି.',\n    'second' => ':count ସେକଣ୍ଢ',\n    's' => ':count ସେ.',\n    'ago' => ':time ପୂର୍ବେ',\n    'from_now' => ':timeରେ',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/os.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/os_RU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/os_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['январы', 'февралы', 'мартъийы', 'апрелы', 'майы', 'июны', 'июлы', 'августы', 'сентябры', 'октябры', 'ноябры', 'декабры'],\n    'months_short' => ['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'],\n    'weekdays' => ['Хуыцаубон', 'Къуырисæр', 'Дыццæг', 'Æртыццæг', 'Цыппæрæм', 'Майрæмбон', 'Сабат'],\n    'weekdays_short' => ['Хцб', 'Крс', 'Дцг', 'Æрт', 'Цпр', 'Мрб', 'Сбт'],\n    'weekdays_min' => ['Хцб', 'Крс', 'Дцг', 'Æрт', 'Цпр', 'Мрб', 'Сбт'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'minute' => ':count гыццыл', // less reliable\n    'min' => ':count гыццыл', // less reliable\n    'a_minute' => ':count гыццыл', // less reliable\n\n    'second' => ':count æндæр', // less reliable\n    's' => ':count æндæр', // less reliable\n    'a_second' => ':count æндæр', // less reliable\n\n    'year' => ':count аз',\n    'y' => ':count аз',\n    'a_year' => ':count аз',\n\n    'month' => ':count мӕй',\n    'm' => ':count мӕй',\n    'a_month' => ':count мӕй',\n\n    'week' => ':count къуыри',\n    'w' => ':count къуыри',\n    'a_week' => ':count къуыри',\n\n    'day' => ':count бон',\n    'd' => ':count бон',\n    'a_day' => ':count бон',\n\n    'hour' => ':count сахат',\n    'h' => ':count сахат',\n    'a_hour' => ':count сахат',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pa.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - Punjab\n */\nreturn [\n    'year' => 'ਇੱਕ ਸਾਲ|:count ਸਾਲ',\n    'month' => 'ਇੱਕ ਮਹੀਨਾ|:count ਮਹੀਨੇ',\n    'week' => 'ਹਫਤਾ|:count ਹਫ਼ਤੇ',\n    'day' => 'ਇੱਕ ਦਿਨ|:count ਦਿਨ',\n    'hour' => 'ਇੱਕ ਘੰਟਾ|:count ਘੰਟੇ',\n    'minute' => 'ਇਕ ਮਿੰਟ|:count ਮਿੰਟ',\n    'second' => 'ਕੁਝ ਸਕਿੰਟ|:count ਸਕਿੰਟ',\n    'ago' => ':time ਪਹਿਲਾਂ',\n    'from_now' => ':time ਵਿੱਚ',\n    'before' => ':time ਤੋਂ ਪਹਿਲਾਂ',\n    'after' => ':time ਤੋਂ ਬਾਅਦ',\n    'diff_now' => 'ਹੁਣ',\n    'diff_today' => 'ਅਜ',\n    'diff_yesterday' => 'ਕਲ',\n    'diff_tomorrow' => 'ਕਲ',\n    'formats' => [\n        'LT' => 'A h:mm ਵਜੇ',\n        'LTS' => 'A h:mm:ss ਵਜੇ',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm ਵਜੇ',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm ਵਜੇ',\n    ],\n    'calendar' => [\n        'sameDay' => '[ਅਜ] LT',\n        'nextDay' => '[ਕਲ] LT',\n        'nextWeek' => '[ਅਗਲਾ] dddd, LT',\n        'lastDay' => '[ਕਲ] LT',\n        'lastWeek' => '[ਪਿਛਲੇ] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'ਰਾਤ';\n        }\n        if ($hour < 10) {\n            return 'ਸਵੇਰ';\n        }\n        if ($hour < 17) {\n            return 'ਦੁਪਹਿਰ';\n        }\n        if ($hour < 20) {\n            return 'ਸ਼ਾਮ';\n        }\n\n        return 'ਰਾਤ';\n    },\n    'months' => ['ਜਨਵਰੀ', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ਅਪ੍ਰੈਲ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'],\n    'months_short' => ['ਜਨਵਰੀ', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ਅਪ੍ਰੈਲ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'],\n    'weekdays' => ['ਐਤਵਾਰ', 'ਸੋਮਵਾਰ', 'ਮੰਗਲਵਾਰ', 'ਬੁਧਵਾਰ', 'ਵੀਰਵਾਰ', 'ਸ਼ੁੱਕਰਵਾਰ', 'ਸ਼ਨੀਚਰਵਾਰ'],\n    'weekdays_short' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁਧ', 'ਵੀਰ', 'ਸ਼ੁਕਰ', 'ਸ਼ਨੀ'],\n    'weekdays_min' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁਧ', 'ਵੀਰ', 'ਸ਼ੁਕਰ', 'ਸ਼ਨੀ'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' ਅਤੇ '],\n    'weekend' => [0, 0],\n    'alt_numbers' => ['੦', '੧', '੨', '੩', '੪', '੫', '੬', '੭', '੮', '੯'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/pa_Arab.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ur.php', [\n    'weekdays' => ['اتوار', 'پیر', 'منگل', 'بُدھ', 'جمعرات', 'جمعہ', 'ہفتہ'],\n    'weekdays_short' => ['اتوار', 'پیر', 'منگل', 'بُدھ', 'جمعرات', 'جمعہ', 'ہفتہ'],\n    'weekdays_min' => ['اتوار', 'پیر', 'منگل', 'بُدھ', 'جمعرات', 'جمعہ', 'ہفتہ'],\n    'months' => ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئ', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئ', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd, DD MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pa_Guru.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/pa.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D/M/yy',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY, h:mm a',\n        'LLLL' => 'dddd, D MMMM YYYY, h:mm a',\n    ],\n    'months' => ['ਜਨਵਰੀ', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ਅਪ੍ਰੈਲ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'],\n    'months_short' => ['ਜਨ', 'ਫ਼ਰ', 'ਮਾਰਚ', 'ਅਪ੍ਰੈ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾ', 'ਅਗ', 'ਸਤੰ', 'ਅਕਤੂ', 'ਨਵੰ', 'ਦਸੰ'],\n    'weekdays' => ['ਐਤਵਾਰ', 'ਸੋਮਵਾਰ', 'ਮੰਗਲਵਾਰ', 'ਬੁੱਧਵਾਰ', 'ਵੀਰਵਾਰ', 'ਸ਼ੁੱਕਰਵਾਰ', 'ਸ਼ਨਿੱਚਰਵਾਰ'],\n    'weekdays_short' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁੱਧ', 'ਵੀਰ', 'ਸ਼ੁੱਕਰ', 'ਸ਼ਨਿੱਚਰ'],\n    'weekdays_min' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗ', 'ਬੁੱਧ', 'ਵੀਰ', 'ਸ਼ੁੱਕ', 'ਸ਼ਨਿੱ'],\n    'weekend' => [0, 0],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pa_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Guo Xiang Tan\n * - Josh Soref\n * - Ash\n * - harpreetkhalsagtbit\n */\nreturn require __DIR__.'/pa.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pa_PK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/pa_Arab.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['جنوري', 'فروري', 'مارچ', 'اپريل', 'مٓی', 'جون', 'جولاي', 'اگست', 'ستمبر', 'اكتوبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنوري', 'فروري', 'مارچ', 'اپريل', 'مٓی', 'جون', 'جولاي', 'اگست', 'ستمبر', 'اكتوبر', 'نومبر', 'دسمبر'],\n    'weekdays' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'],\n    'weekdays_short' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'],\n    'weekdays_min' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ص', 'ش'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pap.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn [\n    'formats' => [\n        'LT' => 'HH.mm',\n        'LTS' => 'HH.mm:ss',\n        'L' => 'DD-MM-YY',\n        'LL' => 'MMMM [di] DD, YYYY',\n        'LLL' => 'DD MMM HH.mm',\n        'LLLL' => 'MMMM DD, YYYY HH.mm',\n    ],\n    'months' => ['yanüari', 'febrüari', 'mart', 'aprel', 'mei', 'yüni', 'yüli', 'ougùstùs', 'sèptèmber', 'oktober', 'novèmber', 'desèmber'],\n    'months_short' => ['yan', 'feb', 'mar', 'apr', 'mei', 'yün', 'yül', 'oug', 'sèp', 'okt', 'nov', 'des'],\n    'weekdays' => ['djadomingo', 'djaluna', 'djamars', 'djawebs', 'djarason', 'djabierne', 'djasabra'],\n    'weekdays_short' => ['do', 'lu', 'ma', 'we', 'ra', 'bi', 'sa'],\n    'weekdays_min' => ['do', 'lu', 'ma', 'we', 'ra', 'bi', 'sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'year' => ':count aña',\n    'month' => ':count luna',\n    'week' => ':count siman',\n    'day' => ':count dia',\n    'hour' => ':count ora',\n    'minute' => ':count minüt',\n    'second' => ':count sekònde',\n    'list' => [', ', ' i '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/pap_AW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - information from native speaker Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn require __DIR__.'/pap.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pap_CW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - information from native speaker Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn require __DIR__.'/pap.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Wacław Jacek\n * - François B\n * - Tim Fish\n * - Serhan Apaydın\n * - Massimiliano Caniparoli\n * - JD Isaacks\n * - Jakub Szwacz\n * - Jan\n * - Paul\n * - damlys\n * - Marek (marast78)\n * - Peter (UnrulyNatives)\n * - Qrzysio\n * - Jan (aso824)\n * - diverpl\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count rok|:count lata|:count lat',\n    'a_year' => 'rok|:count lata|:count lat',\n    'y' => ':count r|:count l|:count l',\n    'month' => ':count miesiąc|:count miesiące|:count miesięcy',\n    'a_month' => 'miesiąc|:count miesiące|:count miesięcy',\n    'm' => ':count mies.',\n    'week' => ':count tydzień|:count tygodnie|:count tygodni',\n    'a_week' => 'tydzień|:count tygodnie|:count tygodni',\n    'w' => ':count tyg.',\n    'day' => ':count dzień|:count dni|:count dni',\n    'a_day' => 'dzień|:count dni|:count dni',\n    'd' => ':count d',\n    'hour' => ':count godzina|:count godziny|:count godzin',\n    'a_hour' => 'godzina|:count godziny|:count godzin',\n    'h' => ':count godz.',\n    'minute' => ':count minuta|:count minuty|:count minut',\n    'a_minute' => 'minuta|:count minuty|:count minut',\n    'min' => ':count min',\n    'second' => ':count sekunda|:count sekundy|:count sekund',\n    'a_second' => '{1}kilka sekund|:count sekunda|:count sekundy|:count sekund',\n    's' => ':count sek.',\n    'ago' => ':time temu',\n    'from_now' => static function ($time) {\n        return 'za '.strtr($time, [\n            'godzina' => 'godzinę',\n            'minuta' => 'minutę',\n            'sekunda' => 'sekundę',\n        ]);\n    },\n    'after' => ':time po',\n    'before' => ':time przed',\n    'diff_now' => 'teraz',\n    'diff_today' => 'Dziś',\n    'diff_today_regexp' => 'Dziś(?:\\\\s+o)?',\n    'diff_yesterday' => 'wczoraj',\n    'diff_yesterday_regexp' => 'Wczoraj(?:\\\\s+o)?',\n    'diff_tomorrow' => 'jutro',\n    'diff_tomorrow_regexp' => 'Jutro(?:\\\\s+o)?',\n    'diff_before_yesterday' => 'przedwczoraj',\n    'diff_after_tomorrow' => 'pojutrze',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Dziś o] LT',\n        'nextDay' => '[Jutro o] LT',\n        'nextWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[W niedzielę o] LT',\n            2 => '[We wtorek o] LT',\n            3 => '[W środę o] LT',\n            6 => '[W sobotę o] LT',\n            default => '[W] dddd [o] LT',\n        },\n        'lastDay' => '[Wczoraj o] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[W zeszłą niedzielę o] LT',\n            3 => '[W zeszłą środę o] LT',\n            6 => '[W zeszłą sobotę o] LT',\n            default => '[W zeszły] dddd [o] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca', 'lipca', 'sierpnia', 'września', 'października', 'listopada', 'grudnia'],\n    'months_standalone' => ['styczeń', 'luty', 'marzec', 'kwiecień', 'maj', 'czerwiec', 'lipiec', 'sierpień', 'wrzesień', 'październik', 'listopad', 'grudzień'],\n    'months_short' => ['sty', 'lut', 'mar', 'kwi', 'maj', 'cze', 'lip', 'sie', 'wrz', 'paź', 'lis', 'gru'],\n    'months_regexp' => '/(DD?o?\\.?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['niedziela', 'poniedziałek', 'wtorek', 'środa', 'czwartek', 'piątek', 'sobota'],\n    'weekdays_short' => ['ndz', 'pon', 'wt', 'śr', 'czw', 'pt', 'sob'],\n    'weekdays_min' => ['Nd', 'Pn', 'Wt', 'Śr', 'Cz', 'Pt', 'So'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' i '],\n    'meridiem' => ['przed południem', 'po południu'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/pl_PL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/prg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],\n    'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'YYYY MMMM D, dddd HH:mm',\n    ],\n\n    'year' => ':count meta',\n    'y' => ':count meta',\n    'a_year' => ':count meta',\n\n    'month' => ':count mēniks', // less reliable\n    'm' => ':count mēniks', // less reliable\n    'a_month' => ':count mēniks', // less reliable\n\n    'week' => ':count sawaītin', // less reliable\n    'w' => ':count sawaītin', // less reliable\n    'a_week' => ':count sawaītin', // less reliable\n\n    'day' => ':count di',\n    'd' => ':count di',\n    'a_day' => ':count di',\n\n    'hour' => ':count bruktēt', // less reliable\n    'h' => ':count bruktēt', // less reliable\n    'a_hour' => ':count bruktēt', // less reliable\n\n    'minute' => ':count līkuts', // less reliable\n    'min' => ':count līkuts', // less reliable\n    'a_minute' => ':count līkuts', // less reliable\n\n    'second' => ':count kitan', // less reliable\n    's' => ':count kitan', // less reliable\n    'a_second' => ':count kitan', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ps.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Muhammad Nasir Rahimi\n * - Nassim Nasibullah (spinzar)\n */\nreturn [\n    'year' => ':count کال|:count کاله',\n    'y' => ':countکال|:countکاله',\n    'month' => ':count مياشت|:count مياشتي',\n    'm' => ':countمياشت|:countمياشتي',\n    'week' => ':count اونۍ|:count اونۍ',\n    'w' => ':countاونۍ|:countاونۍ',\n    'day' => ':count ورځ|:count ورځي',\n    'd' => ':countورځ|:countورځي',\n    'hour' => ':count ساعت|:count ساعته',\n    'h' => ':countساعت|:countساعته',\n    'minute' => ':count دقيقه|:count دقيقې',\n    'min' => ':countدقيقه|:countدقيقې',\n    'second' => ':count ثانيه|:count ثانيې',\n    's' => ':countثانيه|:countثانيې',\n    'ago' => ':time دمخه',\n    'from_now' => ':time له اوس څخه',\n    'after' => ':time وروسته',\n    'before' => ':time دمخه',\n    'list' => ['، ', ' او '],\n    'meridiem' => ['غ.م.', 'غ.و.'],\n    'weekdays' => ['اتوار', 'ګل', 'نهه', 'شورو', 'زيارت', 'جمعه', 'خالي'],\n    'weekdays_short' => ['ا', 'ګ', 'ن', 'ش', 'ز', 'ج', 'خ'],\n    'weekdays_min' => ['ا', 'ګ', 'ن', 'ش', 'ز', 'ج', 'خ'],\n    'months' => ['جنوري', 'فبروري', 'مارچ', 'اپریل', 'مۍ', 'جون', 'جولای', 'اگست', 'سېپتمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنوري', 'فبروري', 'مارچ', 'اپریل', 'مۍ', 'جون', 'جولای', 'اگست', 'سېپتمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_standalone' => ['جنوري', 'فېبروري', 'مارچ', 'اپریل', 'مۍ', 'جون', 'جولای', 'اگست', 'سپتمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_short_standalone' => ['جنوري', 'فبروري', 'مارچ', 'اپریل', 'مۍ', 'جون', 'جولای', 'اگست', 'سپتمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'first_day_of_week' => 6,\n    'weekend' => [4, 5],\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'YYYY/M/d',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'د YYYY د MMMM D H:mm',\n        'LLLL' => 'dddd د YYYY د MMMM D H:mm',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ps_AF.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ps.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Cassiano Montanari\n * - Matt Pope\n * - François B\n * - Prodis\n * - JD Isaacks\n * - Raphael Amorim\n * - João Magalhães\n * - victortobias\n * - Paulo Freitas\n * - Sebastian Thierer\n * - Claudson Martins (claudsonm)\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count ano|:count anos',\n    'a_year' => 'um ano|:count anos',\n    'y' => ':counta',\n    'month' => ':count mês|:count meses',\n    'a_month' => 'um mês|:count meses',\n    'm' => ':countm',\n    'week' => ':count semana|:count semanas',\n    'a_week' => 'uma semana|:count semanas',\n    'w' => ':countsem',\n    'day' => ':count dia|:count dias',\n    'a_day' => 'um dia|:count dias',\n    'd' => ':countd',\n    'hour' => ':count hora|:count horas',\n    'a_hour' => 'uma hora|:count horas',\n    'h' => ':counth',\n    'minute' => ':count minuto|:count minutos',\n    'a_minute' => 'um minuto|:count minutos',\n    'min' => ':countmin',\n    'second' => ':count segundo|:count segundos',\n    'a_second' => 'alguns segundos|:count segundos',\n    's' => ':counts',\n    'millisecond' => ':count milissegundo|:count milissegundos',\n    'a_millisecond' => 'um milissegundo|:count milissegundos',\n    'ms' => ':countms',\n    'microsecond' => ':count microssegundo|:count microssegundos',\n    'a_microsecond' => 'um microssegundo|:count microssegundos',\n    'µs' => ':countµs',\n    'ago' => 'há :time',\n    'from_now' => 'em :time',\n    'after' => ':time depois',\n    'before' => ':time antes',\n    'diff_now' => 'agora',\n    'diff_today' => 'Hoje',\n    'diff_today_regexp' => 'Hoje(?:\\\\s+às)?',\n    'diff_yesterday' => 'ontem',\n    'diff_yesterday_regexp' => 'Ontem(?:\\\\s+às)?',\n    'diff_tomorrow' => 'amanhã',\n    'diff_tomorrow_regexp' => 'Amanhã(?:\\\\s+às)?',\n    'diff_before_yesterday' => 'anteontem',\n    'diff_after_tomorrow' => 'depois de amanhã',\n    'period_recurrences' => 'uma vez|:count vezes',\n    'period_interval' => 'cada :interval',\n    'period_start_date' => 'de :date',\n    'period_end_date' => 'até :date',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D [de] MMMM [de] YYYY',\n        'LLL' => 'D [de] MMMM [de] YYYY HH:mm',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Hoje às] LT',\n        'nextDay' => '[Amanhã às] LT',\n        'nextWeek' => 'dddd [às] LT',\n        'lastDay' => '[Ontem às] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0, 6 => '[Último] dddd [às] LT',\n            default => '[Última] dddd [às] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberº',\n    'months' => ['janeiro', 'fevereiro', 'março', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro'],\n    'months_short' => ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'],\n    'weekdays' => ['domingo', 'segunda-feira', 'terça-feira', 'quarta-feira', 'quinta-feira', 'sexta-feira', 'sábado'],\n    'weekdays_short' => ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sáb'],\n    'weekdays_min' => ['Do', '2ª', '3ª', '4ª', '5ª', '6ª', 'Sá'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' e '],\n    'ordinal_words' => [\n        'of' => 'de',\n        'first' => 'primeira',\n        'second' => 'segunda',\n        'third' => 'terceira',\n        'fourth' => 'quarta',\n        'fifth' => 'quinta',\n        'last' => 'última',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/pt_AO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_BR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Cassiano Montanari\n * - Eduardo Dalla Vecchia\n * - David Rodrigues\n * - Matt Pope\n * - François B\n * - Prodis\n * - Marlon Maxwel\n * - JD Isaacks\n * - Raphael Amorim\n * - Rafael Raupp\n * - felipeleite1\n * - swalker\n * - Lucas Macedo\n * - Paulo Freitas\n * - Sebastian Thierer\n */\nreturn array_replace_recursive(require __DIR__.'/pt.php', [\n    'period_recurrences' => 'uma|:count vez',\n    'period_interval' => 'toda :interval',\n    'formats' => [\n        'LLL' => 'D [de] MMMM [de] YYYY [às] HH:mm',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY [às] HH:mm',\n    ],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pt_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_CV.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_GQ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_GW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_LU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_MO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/pt.php', [\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'LLL' => 'D [de] MMMM [de] YYYY, h:mm a',\n        'LLLL' => 'dddd, D [de] MMMM [de] YYYY, h:mm a',\n    ],\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pt_MZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/pt.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pt_PT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RAP    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/pt.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['janeiro', 'fevereiro', 'março', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro'],\n    'months_short' => ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'],\n    'weekdays' => ['domingo', 'segunda', 'terça', 'quarta', 'quinta', 'sexta', 'sábado'],\n    'weekdays_short' => ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sáb'],\n    'weekdays_min' => ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sáb'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/pt_ST.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/pt_TL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/pt.php';\n"
  },
  {
    "path": "src/Carbon/Lang/qu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/es_UY.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM, YYYY HH:mm',\n    ],\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/qu_BO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/qu.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/qu_EC.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/qu.php', [\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/quz.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/quz_PE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/quz_PE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['iniru', 'phiwriru', 'marsu', 'awril', 'mayu', 'huniyu', 'huliyu', 'agustu', 'siptiyimri', 'uktuwri', 'nuwiyimri', 'tisiyimri'],\n    'months_short' => ['ini', 'phi', 'mar', 'awr', 'may', 'hun', 'hul', 'agu', 'sip', 'ukt', 'nuw', 'tis'],\n    'weekdays' => ['tuminku', 'lunis', 'martis', 'miyirkulis', 'juywis', 'wiyirnis', 'sawatu'],\n    'weekdays_short' => ['tum', 'lun', 'mar', 'miy', 'juy', 'wiy', 'saw'],\n    'weekdays_min' => ['tum', 'lun', 'mar', 'miy', 'juy', 'wiy', 'saw'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'minute' => ':count uchuy', // less reliable\n    'min' => ':count uchuy', // less reliable\n    'a_minute' => ':count uchuy', // less reliable\n\n    'year' => ':count wata',\n    'y' => ':count wata',\n    'a_year' => ':count wata',\n\n    'month' => ':count killa',\n    'm' => ':count killa',\n    'a_month' => ':count killa',\n\n    'week' => ':count simana',\n    'w' => ':count simana',\n    'a_week' => ':count simana',\n\n    'day' => ':count pʼunchaw',\n    'd' => ':count pʼunchaw',\n    'a_day' => ':count pʼunchaw',\n\n    'hour' => ':count ura',\n    'h' => ':count ura',\n    'a_hour' => ':count ura',\n\n    'second' => ':count iskay ñiqin',\n    's' => ':count iskay ñiqin',\n    'a_second' => ':count iskay ñiqin',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/raj.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/raj_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/raj_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - meghrajsuthar03@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितंबर', 'अक्टूबर', 'नवंबर', 'दिसंबर'],\n    'months_short' => ['जन', 'फर', 'मार्च', 'अप्रै', 'मई', 'जून', 'जुल', 'अग', 'सित', 'अक्टू', 'नव', 'दिस'],\n    'weekdays' => ['रविवार', 'सोमवार', 'मंगल्लवार', 'बुधवार', 'बृहस्पतिवार', 'शुक्रवार', 'शनिवार'],\n    'weekdays_short' => ['रवि', 'सोम', 'मंगल', 'बुध', 'बृहस्पति', 'शुक्र', 'शनि'],\n    'weekdays_min' => ['रवि', 'सोम', 'मंगल', 'बुध', 'बृहस्पति', 'शुक्र', 'शनि'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n\n    'year' => ':count आंहू', // less reliable\n    'y' => ':count आंहू', // less reliable\n    'a_year' => ':count आंहू', // less reliable\n\n    'month' => ':count सूरज', // less reliable\n    'm' => ':count सूरज', // less reliable\n    'a_month' => ':count सूरज', // less reliable\n\n    'week' => ':count निवाज', // less reliable\n    'w' => ':count निवाज', // less reliable\n    'a_week' => ':count निवाज', // less reliable\n\n    'day' => ':count अेक', // less reliable\n    'd' => ':count अेक', // less reliable\n    'a_day' => ':count अेक', // less reliable\n\n    'hour' => ':count दुनियांण', // less reliable\n    'h' => ':count दुनियांण', // less reliable\n    'a_hour' => ':count दुनियांण', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/rm.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - tjku\n * - Max Melentiev\n * - Juanito Fatas\n * - Tsutomu Kuroda\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Nicolás Hock Isaza\n * - sebastian de castelberg\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'Do MMMM YYYY',\n        'LLL' => 'Do MMMM, HH:mm [Uhr]',\n        'LLLL' => 'dddd, Do MMMM YYYY, HH:mm [Uhr]',\n    ],\n    'year' => ':count onn|:count onns',\n    'month' => ':count mais',\n    'week' => ':count emna|:count emnas',\n    'day' => ':count di|:count dis',\n    'hour' => ':count oura|:count ouras',\n    'minute' => ':count minuta|:count minutas',\n    'second' => ':count secunda|:count secundas',\n    'weekdays' => ['dumengia', 'glindesdi', 'mardi', 'mesemna', 'gievgia', 'venderdi', 'sonda'],\n    'weekdays_short' => ['du', 'gli', 'ma', 'me', 'gie', 've', 'so'],\n    'weekdays_min' => ['du', 'gli', 'ma', 'me', 'gie', 've', 'so'],\n    'months' => ['schaner', 'favrer', 'mars', 'avrigl', 'matg', 'zercladur', 'fanadur', 'avust', 'settember', 'october', 'november', 'december'],\n    'months_short' => ['schan', 'favr', 'mars', 'avr', 'matg', 'zercl', 'fan', 'avust', 'sett', 'oct', 'nov', 'dec'],\n    'meridiem' => ['avantmezdi', 'suentermezdi'],\n    'list' => [', ', ' e '],\n    'first_day_of_week' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/rn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Z.MU.', 'Z.MW.'],\n    'weekdays' => ['Ku w’indwi', 'Ku wa mbere', 'Ku wa kabiri', 'Ku wa gatatu', 'Ku wa kane', 'Ku wa gatanu', 'Ku wa gatandatu'],\n    'weekdays_short' => ['cu.', 'mbe.', 'kab.', 'gtu.', 'kan.', 'gnu.', 'gnd.'],\n    'weekdays_min' => ['cu.', 'mbe.', 'kab.', 'gtu.', 'kan.', 'gnu.', 'gnd.'],\n    'months' => ['Nzero', 'Ruhuhuma', 'Ntwarante', 'Ndamukiza', 'Rusama', 'Ruheshi', 'Mukakaro', 'Nyandagaro', 'Nyakanga', 'Gitugutu', 'Munyonyo', 'Kigarama'],\n    'months_short' => ['Mut.', 'Gas.', 'Wer.', 'Mat.', 'Gic.', 'Kam.', 'Nya.', 'Kan.', 'Nze.', 'Ukw.', 'Ugu.', 'Uku.'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'year' => 'imyaka :count',\n    'y' => 'imyaka :count',\n    'a_year' => 'imyaka :count',\n\n    'month' => 'amezi :count',\n    'm' => 'amezi :count',\n    'a_month' => 'amezi :count',\n\n    'week' => 'indwi :count',\n    'w' => 'indwi :count',\n    'a_week' => 'indwi :count',\n\n    'day' => 'imisi :count',\n    'd' => 'imisi :count',\n    'a_day' => 'imisi :count',\n\n    'hour' => 'amasaha :count',\n    'h' => 'amasaha :count',\n    'a_hour' => 'amasaha :count',\n\n    'minute' => 'iminuta :count',\n    'min' => 'iminuta :count',\n    'a_minute' => 'iminuta :count',\n\n    'second' => 'inguvu :count', // less reliable\n    's' => 'inguvu :count', // less reliable\n    'a_second' => 'inguvu :count', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ro.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n * - Cătălin Georgescu\n * - Valentin Ivaşcu (oriceon)\n */\nreturn [\n    'year' => ':count an|:count ani|:count ani',\n    'a_year' => 'un an|:count ani|:count ani',\n    'y' => ':count a.',\n    'month' => ':count lună|:count luni|:count luni',\n    'a_month' => 'o lună|:count luni|:count luni',\n    'm' => ':count l.',\n    'week' => ':count săptămână|:count săptămâni|:count săptămâni',\n    'a_week' => 'o săptămână|:count săptămâni|:count săptămâni',\n    'w' => ':count săp.',\n    'day' => ':count zi|:count zile|:count zile',\n    'a_day' => 'o zi|:count zile|:count zile',\n    'd' => ':count z.',\n    'hour' => ':count oră|:count ore|:count ore',\n    'a_hour' => 'o oră|:count ore|:count ore',\n    'h' => ':count o.',\n    'minute' => ':count minut|:count minute|:count minute',\n    'a_minute' => 'un minut|:count minute|:count minute',\n    'min' => ':count m.',\n    'second' => ':count secundă|:count secunde|:count secunde',\n    'a_second' => 'câteva secunde|:count secunde|:count secunde',\n    's' => ':count sec.',\n    'ago' => ':time în urmă',\n    'from_now' => 'peste :time',\n    'after' => 'peste :time',\n    'before' => 'acum :time',\n    'diff_now' => 'acum',\n    'diff_today' => 'azi',\n    'diff_today_regexp' => 'azi(?:\\\\s+la)?',\n    'diff_yesterday' => 'ieri',\n    'diff_yesterday_regexp' => 'ieri(?:\\\\s+la)?',\n    'diff_tomorrow' => 'mâine',\n    'diff_tomorrow_regexp' => 'mâine(?:\\\\s+la)?',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[azi la] LT',\n        'nextDay' => '[mâine la] LT',\n        'nextWeek' => 'dddd [la] LT',\n        'lastDay' => '[ieri la] LT',\n        'lastWeek' => '[fosta] dddd [la] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie', 'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'],\n    'months_short' => ['ian.', 'feb.', 'mar.', 'apr.', 'mai', 'iun.', 'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'],\n    'weekdays' => ['duminică', 'luni', 'marți', 'miercuri', 'joi', 'vineri', 'sâmbătă'],\n    'weekdays_short' => ['dum', 'lun', 'mar', 'mie', 'joi', 'vin', 'sâm'],\n    'weekdays_min' => ['du', 'lu', 'ma', 'mi', 'jo', 'vi', 'sâ'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' și '],\n    'meridiem' => ['a.m.', 'p.m.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ro_MD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ro.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ro_RO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ro.php';\n"
  },
  {
    "path": "src/Carbon/Lang/rof.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['kang’ama', 'kingoto'],\n    'weekdays' => ['Ijumapili', 'Ijumatatu', 'Ijumanne', 'Ijumatano', 'Alhamisi', 'Ijumaa', 'Ijumamosi'],\n    'weekdays_short' => ['Ijp', 'Ijt', 'Ijn', 'Ijtn', 'Alh', 'Iju', 'Ijm'],\n    'weekdays_min' => ['Ijp', 'Ijt', 'Ijn', 'Ijtn', 'Alh', 'Iju', 'Ijm'],\n    'months' => ['Mweri wa kwanza', 'Mweri wa kaili', 'Mweri wa katatu', 'Mweri wa kaana', 'Mweri wa tanu', 'Mweri wa sita', 'Mweri wa saba', 'Mweri wa nane', 'Mweri wa tisa', 'Mweri wa ikumi', 'Mweri wa ikumi na moja', 'Mweri wa ikumi na mbili'],\n    'months_short' => ['M1', 'M2', 'M3', 'M4', 'M5', 'M6', 'M7', 'M8', 'M9', 'M10', 'M11', 'M12'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ru.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Bari Badamshin\n * - Jørn Ølmheim\n * - François B\n * - Tim Fish\n * - Коренберг Марк (imac)\n * - Serhan Apaydın\n * - RomeroMsk\n * - vsn4ik\n * - JD Isaacks\n * - Bari Badamshin\n * - Jørn Ølmheim\n * - François B\n * - Коренберг Марк (imac)\n * - Serhan Apaydın\n * - RomeroMsk\n * - vsn4ik\n * - JD Isaacks\n * - Fellzo\n * - andrey-helldar\n * - Pavel Skripkin (psxx)\n * - AlexWalkerson\n * - Vladislav UnsealedOne\n * - dima-bzz\n * - Sergey Danilchenko\n */\n\nuse Carbon\\CarbonInterface;\n\n$transformDiff = static fn (string $input) => strtr($input, [\n    'неделя' => 'неделю',\n    'секунда' => 'секунду',\n    'минута' => 'минуту',\n]);\n\nreturn [\n    'year' => ':count год|:count года|:count лет',\n    'y' => ':count г.|:count г.|:count л.',\n    'a_year' => '{1}год|:count год|:count года|:count лет',\n    'month' => ':count месяц|:count месяца|:count месяцев',\n    'm' => ':count мес.',\n    'a_month' => '{1}месяц|:count месяц|:count месяца|:count месяцев',\n    'week' => ':count неделя|:count недели|:count недель',\n    'w' => ':count нед.',\n    'a_week' => '{1}неделя|:count неделю|:count недели|:count недель',\n    'day' => ':count день|:count дня|:count дней',\n    'd' => ':count д.',\n    'a_day' => '{1}день|:count день|:count дня|:count дней',\n    'hour' => ':count час|:count часа|:count часов',\n    'h' => ':count ч.',\n    'a_hour' => '{1}час|:count час|:count часа|:count часов',\n    'minute' => ':count минута|:count минуты|:count минут',\n    'min' => ':count мин.',\n    'a_minute' => '{1}минута|:count минута|:count минуты|:count минут',\n    'second' => ':count секунда|:count секунды|:count секунд',\n    's' => ':count сек.',\n    'a_second' => '{1}несколько секунд|:count секунду|:count секунды|:count секунд',\n    'millisecond' => '{1}:count миллисекунда|:count миллисекунды|:count миллисекунд',\n    'a_millisecond' => '{1}миллисекунда|:count миллисекунда|:count миллисекунды|:count миллисекунд',\n    'ms' => ':count мс',\n    'microsecond' => '{1}:count микросекунда|:count микросекунды|:count микросекунд',\n    'a_microsecond' => '{1}микросекунда|:count микросекунда|:count микросекунды|:count микросекунд',\n    'ago' => static fn (string $time) => $transformDiff($time).' назад',\n    'from_now' => static fn (string $time) => 'через '.$transformDiff($time),\n    'after' => static fn (string $time) => $transformDiff($time).' после',\n    'before' => static fn (string $time) => $transformDiff($time).' до',\n    'diff_now' => 'только что',\n    'diff_today' => 'Сегодня,',\n    'diff_today_regexp' => 'Сегодня,?(?:\\\\s+в)?',\n    'diff_yesterday' => 'вчера',\n    'diff_yesterday_regexp' => 'Вчера,?(?:\\\\s+в)?',\n    'diff_tomorrow' => 'завтра',\n    'diff_tomorrow_regexp' => 'Завтра,?(?:\\\\s+в)?',\n    'diff_before_yesterday' => 'позавчера',\n    'diff_after_tomorrow' => 'послезавтра',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY г.',\n        'LLL' => 'D MMMM YYYY г., H:mm',\n        'LLLL' => 'dddd, D MMMM YYYY г., H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Сегодня, в] LT',\n        'nextDay' => '[Завтра, в] LT',\n        'nextWeek' => static function (CarbonInterface $current, \\Carbon\\CarbonInterface $other) {\n            if ($current->week !== $other->week) {\n                switch ($current->dayOfWeek) {\n                    case 0:\n                        return '[В следующее] dddd, [в] LT';\n                    case 1:\n                    case 2:\n                    case 4:\n                        return '[В следующий] dddd, [в] LT';\n                    case 3:\n                    case 5:\n                    case 6:\n                        return '[В следующую] dddd, [в] LT';\n                }\n            }\n\n            if ($current->dayOfWeek === 2) {\n                return '[Во] dddd, [в] LT';\n            }\n\n            return '[В] dddd, [в] LT';\n        },\n        'lastDay' => '[Вчера, в] LT',\n        'lastWeek' => static function (CarbonInterface $current, \\Carbon\\CarbonInterface $other) {\n            if ($current->week !== $other->week) {\n                switch ($current->dayOfWeek) {\n                    case 0:\n                        return '[В прошлое] dddd, [в] LT';\n                    case 1:\n                    case 2:\n                    case 4:\n                        return '[В прошлый] dddd, [в] LT';\n                    case 3:\n                    case 5:\n                    case 6:\n                        return '[В прошлую] dddd, [в] LT';\n                }\n            }\n\n            if ($current->dayOfWeek === 2) {\n                return '[Во] dddd, [в] LT';\n            }\n\n            return '[В] dddd, [в] LT';\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'M', 'd', 'DDD' => $number.'-й',\n            'D' => $number.'-го',\n            'w', 'W' => $number.'-я',\n            default => $number,\n        };\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'ночи';\n        }\n        if ($hour < 12) {\n            return 'утра';\n        }\n        if ($hour < 17) {\n            return 'дня';\n        }\n\n        return 'вечера';\n    },\n    'months' => ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря'],\n    'months_standalone' => ['январь', 'февраль', 'март', 'апрель', 'май', 'июнь', 'июль', 'август', 'сентябрь', 'октябрь', 'ноябрь', 'декабрь'],\n    'months_short' => ['янв', 'фев', 'мар', 'апр', 'мая', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'months_short_standalone' => ['янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'months_regexp' => '/(DD?o?\\.?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['воскресенье', 'понедельник', 'вторник', 'среду', 'четверг', 'пятницу', 'субботу'],\n    'weekdays_standalone' => ['воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота'],\n    'weekdays_short' => ['вск', 'пнд', 'втр', 'срд', 'чтв', 'птн', 'сбт'],\n    'weekdays_min' => ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'],\n    'weekdays_regexp' => '/\\[\\s*(В|в)\\s*((?:прошлую|следующую|эту)\\s*)?\\]\\s*dddd/',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' и '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ru_BY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ru.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ru_KG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ru.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ru_KZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ru.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ru_MD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ru.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ru_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ru.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ru_UA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - RFC 2319    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/ru.php', [\n    'weekdays' => ['воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота'],\n    'weekdays_short' => ['вск', 'пнд', 'вто', 'срд', 'чтв', 'птн', 'суб'],\n    'weekdays_min' => ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'су'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/rw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/rw_RW.php';\n"
  },
  {
    "path": "src/Carbon/Lang/rw_RW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Rwanda Steve Murphy murf@e-tools.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Mutarama', 'Gashyantare', 'Werurwe', 'Mata', 'Gicuransi', 'Kamena', 'Nyakanga', 'Kanama', 'Nzeli', 'Ukwakira', 'Ugushyingo', 'Ukuboza'],\n    'months_short' => ['Mut', 'Gas', 'Wer', 'Mat', 'Gic', 'Kam', 'Nya', 'Kan', 'Nze', 'Ukw', 'Ugu', 'Uku'],\n    'weekdays' => ['Ku cyumweru', 'Kuwa mbere', 'Kuwa kabiri', 'Kuwa gatatu', 'Kuwa kane', 'Kuwa gatanu', 'Kuwa gatandatu'],\n    'weekdays_short' => ['Mwe', 'Mbe', 'Kab', 'Gtu', 'Kan', 'Gnu', 'Gnd'],\n    'weekdays_min' => ['Mwe', 'Mbe', 'Kab', 'Gtu', 'Kan', 'Gnu', 'Gnd'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'second' => ':count vuna', // less reliable\n    's' => ':count vuna', // less reliable\n    'a_second' => ':count vuna', // less reliable\n\n    'year' => 'aka :count',\n    'y' => 'aka :count',\n    'a_year' => 'aka :count',\n\n    'month' => 'ezi :count',\n    'm' => 'ezi :count',\n    'a_month' => 'ezi :count',\n\n    'week' => ':count icyumweru',\n    'w' => ':count icyumweru',\n    'a_week' => ':count icyumweru',\n\n    'day' => ':count nsi',\n    'd' => ':count nsi',\n    'a_day' => ':count nsi',\n\n    'hour' => 'saha :count',\n    'h' => 'saha :count',\n    'a_hour' => 'saha :count',\n\n    'minute' => ':count -nzinya',\n    'min' => ':count -nzinya',\n    'a_minute' => ':count -nzinya',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/rwk.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['utuko', 'kyiukonyi'],\n    'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sa.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sa_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sa_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - The Debian project Christian Perrier bubulle@debian.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D-MM-YY',\n    ],\n    'months' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'months_short' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'weekdays' => ['रविवासर:', 'सोमवासर:', 'मंगलवासर:', 'बुधवासर:', 'बृहस्पतिवासरः', 'शुक्रवासर', 'शनिवासर:'],\n    'weekdays_short' => ['रविः', 'सोम:', 'मंगल:', 'बुध:', 'बृहस्पतिः', 'शुक्र', 'शनि:'],\n    'weekdays_min' => ['रविः', 'सोम:', 'मंगल:', 'बुध:', 'बृहस्पतिः', 'शुक्र', 'शनि:'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n\n    'minute' => ':count होरा', // less reliable\n    'min' => ':count होरा', // less reliable\n    'a_minute' => ':count होरा', // less reliable\n\n    'year' => ':count वर्ष',\n    'y' => ':count वर्ष',\n    'a_year' => ':count वर्ष',\n\n    'month' => ':count मास',\n    'm' => ':count मास',\n    'a_month' => ':count मास',\n\n    'week' => ':count सप्ताहः saptahaĥ',\n    'w' => ':count सप्ताहः saptahaĥ',\n    'a_week' => ':count सप्ताहः saptahaĥ',\n\n    'day' => ':count दिन',\n    'd' => ':count दिन',\n    'a_day' => ':count दिन',\n\n    'hour' => ':count घण्टा',\n    'h' => ':count घण्टा',\n    'a_hour' => ':count घण्टा',\n\n    'second' => ':count द्वितीयः',\n    's' => ':count द्वितीयः',\n    'a_second' => ':count द्वितीयः',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sah.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sah_RU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sah_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Valery Timiriliyev Valery Timiriliyev timiriliyev@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/ru.php', [\n    'formats' => [\n        'L' => 'YYYY.MM.DD',\n    ],\n    'months' => ['тохсунньу', 'олунньу', 'кулун тутар', 'муус устар', 'ыам ыйын', 'бэс ыйын', 'от ыйын', 'атырдьах ыйын', 'балаҕан ыйын', 'алтынньы', 'сэтинньи', 'ахсынньы'],\n    'months_short' => ['тохс', 'олун', 'кул', 'муус', 'ыам', 'бэс', 'от', 'атыр', 'бал', 'алт', 'сэт', 'ахс'],\n    'weekdays' => ['баскыһыанньа', 'бэнидиэнньик', 'оптуорунньук', 'сэрэдэ', 'чэппиэр', 'бээтинсэ', 'субуота'],\n    'weekdays_short' => ['бс', 'бн', 'оп', 'ср', 'чп', 'бт', 'сб'],\n    'weekdays_min' => ['бс', 'бн', 'оп', 'ср', 'чп', 'бт', 'сб'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/saq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['Tesiran', 'Teipa'],\n    'weekdays' => ['Mderot ee are', 'Mderot ee kuni', 'Mderot ee ong’wan', 'Mderot ee inet', 'Mderot ee ile', 'Mderot ee sapa', 'Mderot ee kwe'],\n    'weekdays_short' => ['Are', 'Kun', 'Ong', 'Ine', 'Ile', 'Sap', 'Kwe'],\n    'weekdays_min' => ['Are', 'Kun', 'Ong', 'Ine', 'Ile', 'Sap', 'Kwe'],\n    'months' => ['Lapa le obo', 'Lapa le waare', 'Lapa le okuni', 'Lapa le ong’wan', 'Lapa le imet', 'Lapa le ile', 'Lapa le sapa', 'Lapa le isiet', 'Lapa le saal', 'Lapa le tomon', 'Lapa le tomon obo', 'Lapa le tomon waare'],\n    'months_short' => ['Obo', 'Waa', 'Oku', 'Ong', 'Ime', 'Ile', 'Sap', 'Isi', 'Saa', 'Tom', 'Tob', 'Tow'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sat.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sat_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sat_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat Pune    libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रेल', 'मई', 'जुन', 'जुलाई', 'अगस्त', 'सितम्बर', 'अखथबर', 'नवम्बर', 'दिसम्बर'],\n    'months_short' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रेल', 'मई', 'जुन', 'जुलाई', 'अगस्त', 'सितम्बर', 'अखथबर', 'नवम्बर', 'दिसम्बर'],\n    'weekdays' => ['सिंगेमाँहाँ', 'ओतेमाँहाँ', 'बालेमाँहाँ', 'सागुनमाँहाँ', 'सारदीमाँहाँ', 'जारुममाँहाँ', 'ञुहुममाँहाँ'],\n    'weekdays_short' => ['सिंगे', 'ओते', 'बाले', 'सागुन', 'सारदी', 'जारुम', 'ञुहुम'],\n    'weekdays_min' => ['सिंगे', 'ओते', 'बाले', 'सागुन', 'सारदी', 'जारुम', 'ञुहुम'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'month' => ':count ńindạ cando', // less reliable\n    'm' => ':count ńindạ cando', // less reliable\n    'a_month' => ':count ńindạ cando', // less reliable\n\n    'week' => ':count mãhã', // less reliable\n    'w' => ':count mãhã', // less reliable\n    'a_week' => ':count mãhã', // less reliable\n\n    'hour' => ':count ᱥᱳᱱᱚ', // less reliable\n    'h' => ':count ᱥᱳᱱᱚ', // less reliable\n    'a_hour' => ':count ᱥᱳᱱᱚ', // less reliable\n\n    'minute' => ':count ᱯᱤᱞᱪᱩ', // less reliable\n    'min' => ':count ᱯᱤᱞᱪᱩ', // less reliable\n    'a_minute' => ':count ᱯᱤᱞᱪᱩ', // less reliable\n\n    'second' => ':count ar', // less reliable\n    's' => ':count ar', // less reliable\n    'a_second' => ':count ar', // less reliable\n\n    'year' => ':count ne̲s',\n    'y' => ':count ne̲s',\n    'a_year' => ':count ne̲s',\n\n    'day' => ':count ᱫᱤᱱ',\n    'd' => ':count ᱫᱤᱱ',\n    'a_day' => ':count ᱫᱤᱱ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sbp.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Lwamilawu', 'Pashamihe'],\n    'weekdays' => ['Mulungu', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alahamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Mul', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Mul', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'months' => ['Mupalangulwa', 'Mwitope', 'Mushende', 'Munyi', 'Mushende Magali', 'Mujimbi', 'Mushipepo', 'Mupuguto', 'Munyense', 'Mokhu', 'Musongandembwe', 'Muhaano'],\n    'months_short' => ['Mup', 'Mwi', 'Msh', 'Mun', 'Mag', 'Muj', 'Msp', 'Mpg', 'Mye', 'Mok', 'Mus', 'Muh'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sc.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sc_IT.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sc_IT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Sardinian Translators Team Massimeddu Cireddu massimeddu@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD. MM. YY',\n    ],\n    'months' => ['Ghennàrgiu', 'Freàrgiu', 'Martzu', 'Abrile', 'Maju', 'Làmpadas', 'Argiolas//Trìulas', 'Austu', 'Cabudanni', 'Santugaine//Ladàmine', 'Onniasantu//Santandria', 'Nadale//Idas'],\n    'months_short' => ['Ghe', 'Fre', 'Mar', 'Abr', 'Maj', 'Làm', 'Arg', 'Aus', 'Cab', 'Lad', 'Onn', 'Nad'],\n    'weekdays' => ['Domìnigu', 'Lunis', 'Martis', 'Mèrcuris', 'Giòbia', 'Chenàbura', 'Sàbadu'],\n    'weekdays_short' => ['Dom', 'Lun', 'Mar', 'Mèr', 'Giò', 'Che', 'Sàb'],\n    'weekdays_min' => ['Dom', 'Lun', 'Mar', 'Mèr', 'Giò', 'Che', 'Sàb'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'minute' => ':count mementu', // less reliable\n    'min' => ':count mementu', // less reliable\n    'a_minute' => ':count mementu', // less reliable\n\n    'year' => ':count annu',\n    'y' => ':count annu',\n    'a_year' => ':count annu',\n\n    'month' => ':count mese',\n    'm' => ':count mese',\n    'a_month' => ':count mese',\n\n    'week' => ':count chida',\n    'w' => ':count chida',\n    'a_week' => ':count chida',\n\n    'day' => ':count dí',\n    'd' => ':count dí',\n    'a_day' => ':count dí',\n\n    'hour' => ':count ora',\n    'h' => ':count ora',\n    'a_hour' => ':count ora',\n\n    'second' => ':count secundu',\n    's' => ':count secundu',\n    'a_second' => ':count secundu',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sd.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n$months = [\n    'جنوري',\n    'فيبروري',\n    'مارچ',\n    'اپريل',\n    'مئي',\n    'جون',\n    'جولاءِ',\n    'آگسٽ',\n    'سيپٽمبر',\n    'آڪٽوبر',\n    'نومبر',\n    'ڊسمبر',\n];\n\n$weekdays = [\n    'آچر',\n    'سومر',\n    'اڱارو',\n    'اربع',\n    'خميس',\n    'جمع',\n    'ڇنڇر',\n];\n\n/*\n * Authors:\n * - Narain Sagar\n * - Sawood Alam\n */\nreturn [\n    'year' => ':count '.'سال',\n    'a_year' => '{1}'.'هڪ سال'.'|:count '.'سال',\n    'month' => ':count '.'مهينا',\n    'a_month' => '{1}'.'هڪ مهينو'.'|:count '.'مهينا',\n    'week' => ':count '.'هفتا',\n    'a_week' => '{1}'.'ھڪ ھفتو'.'|:count '.'هفتا',\n    'day' => ':count '.'ڏينهن',\n    'a_day' => '{1}'.'هڪ ڏينهن'.'|:count '.'ڏينهن',\n    'hour' => ':count '.'ڪلاڪ',\n    'a_hour' => '{1}'.'هڪ ڪلاڪ'.'|:count '.'ڪلاڪ',\n    'minute' => ':count '.'منٽ',\n    'a_minute' => '{1}'.'هڪ منٽ'.'|:count '.'منٽ',\n    'second' => ':count '.'سيڪنڊ',\n    'a_second' => '{1}'.'چند سيڪنڊ'.'|:count '.'سيڪنڊ',\n    'ago' => ':time اڳ',\n    'from_now' => ':time پوء',\n    'diff_yesterday' => 'ڪالهه',\n    'diff_today' => 'اڄ',\n    'diff_tomorrow' => 'سڀاڻي',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd، D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[اڄ] LT',\n        'nextDay' => '[سڀاڻي] LT',\n        'nextWeek' => 'dddd [اڳين هفتي تي] LT',\n        'lastDay' => '[ڪالهه] LT',\n        'lastWeek' => '[گزريل هفتي] dddd [تي] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['صبح', 'شام'],\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => $weekdays,\n    'weekdays_short' => $weekdays,\n    'weekdays_min' => $weekdays,\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => ['، ', ' ۽ '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sd_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat, Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/sd.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['جنوري', 'فبروري', 'مارچ', 'اپريل', 'مي', 'جون', 'جولاءِ', 'آگسٽ', 'سيپٽيمبر', 'آڪٽوبر', 'نومبر', 'ڊسمبر'],\n    'months_short' => ['جنوري', 'فبروري', 'مارچ', 'اپريل', 'مي', 'جون', 'جولاءِ', 'آگسٽ', 'سيپٽيمبر', 'آڪٽوبر', 'نومبر', 'ڊسمبر'],\n    'weekdays' => ['آرتوارُ', 'سومرُ', 'منگلُ', 'ٻُڌرُ', 'وسپت', 'جُمو', 'ڇنڇر'],\n    'weekdays_short' => ['آرتوارُ', 'سومرُ', 'منگلُ', 'ٻُڌرُ', 'وسپت', 'جُمو', 'ڇنڇر'],\n    'weekdays_min' => ['آرتوارُ', 'سومرُ', 'منگلُ', 'ٻُڌرُ', 'وسپت', 'جُمو', 'ڇنڇر'],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sd_IN@devanagari.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat, Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/sd.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['जनवरी', 'फबरवरी', 'मार्चि', 'अप्रेल', 'मे', 'जूनि', 'जूलाइ', 'आगस्टु', 'सेप्टेंबरू', 'आक्टूबरू', 'नवंबरू', 'ॾिसंबरू'],\n    'months_short' => ['जनवरी', 'फबरवरी', 'मार्चि', 'अप्रेल', 'मे', 'जूनि', 'जूलाइ', 'आगस्टु', 'सेप्टेंबरू', 'आक्टूबरू', 'नवंबरू', 'ॾिसंबरू'],\n    'weekdays' => ['आर्तवारू', 'सूमरू', 'मंगलू', 'ॿुधरू', 'विस्पति', 'जुमो', 'छंछस'],\n    'weekdays_short' => ['आर्तवारू', 'सूमरू', 'मंगलू', 'ॿुधरू', 'विस्पति', 'जुमो', 'छंछस'],\n    'weekdays_min' => ['आर्तवारू', 'सूमरू', 'मंगलू', 'ॿुधरू', 'विस्पति', 'जुमो', 'छंछस'],\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['म.पू.', 'म.नं.'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/se.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Karamell\n */\nreturn [\n    'year' => '{1}:count jahki|:count jagit',\n    'a_year' => '{1}okta jahki|:count jagit',\n    'y' => ':count j.',\n    'month' => '{1}:count mánnu|:count mánut',\n    'a_month' => '{1}okta mánnu|:count mánut',\n    'm' => ':count mán.',\n    'week' => '{1}:count vahkku|:count vahkku',\n    'a_week' => '{1}okta vahkku|:count vahkku',\n    'w' => ':count v.',\n    'day' => '{1}:count beaivi|:count beaivvit',\n    'a_day' => '{1}okta beaivi|:count beaivvit',\n    'd' => ':count b.',\n    'hour' => '{1}:count diimmu|:count diimmut',\n    'a_hour' => '{1}okta diimmu|:count diimmut',\n    'h' => ':count d.',\n    'minute' => '{1}:count minuhta|:count minuhtat',\n    'a_minute' => '{1}okta minuhta|:count minuhtat',\n    'min' => ':count min.',\n    'second' => '{1}:count sekunddat|:count sekunddat',\n    'a_second' => '{1}moadde sekunddat|:count sekunddat',\n    's' => ':count s.',\n    'ago' => 'maŋit :time',\n    'from_now' => ':time geažes',\n    'diff_yesterday' => 'ikte',\n    'diff_yesterday_regexp' => 'ikte(?:\\\\s+ti)?',\n    'diff_today' => 'otne',\n    'diff_today_regexp' => 'otne(?:\\\\s+ti)?',\n    'diff_tomorrow' => 'ihttin',\n    'diff_tomorrow_regexp' => 'ihttin(?:\\\\s+ti)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'MMMM D. [b.] YYYY',\n        'LLL' => 'MMMM D. [b.] YYYY [ti.] HH:mm',\n        'LLLL' => 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[otne ti] LT',\n        'nextDay' => '[ihttin ti] LT',\n        'nextWeek' => 'dddd [ti] LT',\n        'lastDay' => '[ikte ti] LT',\n        'lastWeek' => '[ovddit] dddd [ti] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['ođđajagemánnu', 'guovvamánnu', 'njukčamánnu', 'cuoŋománnu', 'miessemánnu', 'geassemánnu', 'suoidnemánnu', 'borgemánnu', 'čakčamánnu', 'golggotmánnu', 'skábmamánnu', 'juovlamánnu'],\n    'months_short' => ['ođđj', 'guov', 'njuk', 'cuo', 'mies', 'geas', 'suoi', 'borg', 'čakč', 'golg', 'skáb', 'juov'],\n    'weekdays' => ['sotnabeaivi', 'vuossárga', 'maŋŋebárga', 'gaskavahkku', 'duorastat', 'bearjadat', 'lávvardat'],\n    'weekdays_short' => ['sotn', 'vuos', 'maŋ', 'gask', 'duor', 'bear', 'láv'],\n    'weekdays_min' => ['s', 'v', 'm', 'g', 'd', 'b', 'L'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' ja '],\n    'meridiem' => ['i.b.', 'e.b.'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/se_FI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/se.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'months' => ['ođđajagemánnu', 'guovvamánnu', 'njukčamánnu', 'cuoŋománnu', 'miessemánnu', 'geassemánnu', 'suoidnemánnu', 'borgemánnu', 'čakčamánnu', 'golggotmánnu', 'skábmamánnu', 'juovlamánnu'],\n    'months_short' => ['ođđj', 'guov', 'njuk', 'cuoŋ', 'mies', 'geas', 'suoi', 'borg', 'čakč', 'golg', 'skáb', 'juov'],\n    'weekdays' => ['sotnabeaivi', 'mánnodat', 'disdat', 'gaskavahkku', 'duorastat', 'bearjadat', 'lávvordat'],\n    'weekdays_short' => ['so', 'má', 'di', 'ga', 'du', 'be', 'lá'],\n    'weekdays_min' => ['so', 'má', 'di', 'ga', 'du', 'be', 'lá'],\n    'meridiem' => ['i', 'e'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/se_NO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/se.php';\n"
  },
  {
    "path": "src/Carbon/Lang/se_SE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/se.php';\n"
  },
  {
    "path": "src/Carbon/Lang/seh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'weekdays' => ['Dimingu', 'Chiposi', 'Chipiri', 'Chitatu', 'Chinai', 'Chishanu', 'Sabudu'],\n    'weekdays_short' => ['Dim', 'Pos', 'Pir', 'Tat', 'Nai', 'Sha', 'Sab'],\n    'weekdays_min' => ['Dim', 'Pos', 'Pir', 'Tat', 'Nai', 'Sha', 'Sab'],\n    'months' => ['Janeiro', 'Fevreiro', 'Marco', 'Abril', 'Maio', 'Junho', 'Julho', 'Augusto', 'Setembro', 'Otubro', 'Novembro', 'Decembro'],\n    'months_short' => ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Aug', 'Set', 'Otu', 'Nov', 'Dec'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'd [de] MMM [de] YYYY',\n        'LLL' => 'd [de] MMMM [de] YYYY HH:mm',\n        'LLLL' => 'dddd, d [de] MMMM [de] YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ses.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Adduha', 'Aluula'],\n    'weekdays' => ['Alhadi', 'Atinni', 'Atalaata', 'Alarba', 'Alhamiisa', 'Alzuma', 'Asibti'],\n    'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'],\n    'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'],\n    'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'],\n    'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'month' => ':count alaada', // less reliable\n    'm' => ':count alaada', // less reliable\n    'a_month' => ':count alaada', // less reliable\n\n    'hour' => ':count ɲaajin', // less reliable\n    'h' => ':count ɲaajin', // less reliable\n    'a_hour' => ':count ɲaajin', // less reliable\n\n    'minute' => ':count zarbu', // less reliable\n    'min' => ':count zarbu', // less reliable\n    'a_minute' => ':count zarbu', // less reliable\n\n    'year' => ':count jiiri',\n    'y' => ':count jiiri',\n    'a_year' => ':count jiiri',\n\n    'week' => ':count jirbiiyye',\n    'w' => ':count jirbiiyye',\n    'a_week' => ':count jirbiiyye',\n\n    'day' => ':count zaari',\n    'd' => ':count zaari',\n    'a_day' => ':count zaari',\n\n    'second' => ':count ihinkante',\n    's' => ':count ihinkante',\n    'a_second' => ':count ihinkante',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['ND', 'LK'],\n    'weekdays' => ['Bikua-ôko', 'Bïkua-ûse', 'Bïkua-ptâ', 'Bïkua-usïö', 'Bïkua-okü', 'Lâpôsö', 'Lâyenga'],\n    'weekdays_short' => ['Bk1', 'Bk2', 'Bk3', 'Bk4', 'Bk5', 'Lâp', 'Lây'],\n    'weekdays_min' => ['Bk1', 'Bk2', 'Bk3', 'Bk4', 'Bk5', 'Lâp', 'Lây'],\n    'months' => ['Nyenye', 'Fulundïgi', 'Mbängü', 'Ngubùe', 'Bêläwü', 'Föndo', 'Lengua', 'Kükürü', 'Mvuka', 'Ngberere', 'Nabändüru', 'Kakauka'],\n    'months_short' => ['Nye', 'Ful', 'Mbä', 'Ngu', 'Bêl', 'Fön', 'Len', 'Kük', 'Mvu', 'Ngb', 'Nab', 'Kak'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count dā', // less reliable\n    'y' => ':count dā', // less reliable\n    'a_year' => ':count dā', // less reliable\n\n    'week' => ':count bïkua-okü', // less reliable\n    'w' => ':count bïkua-okü', // less reliable\n    'a_week' => ':count bïkua-okü', // less reliable\n\n    'day' => ':count ziggawâ', // less reliable\n    'd' => ':count ziggawâ', // less reliable\n    'a_day' => ':count ziggawâ', // less reliable\n\n    'hour' => ':count yângâködörö', // less reliable\n    'h' => ':count yângâködörö', // less reliable\n    'a_hour' => ':count yângâködörö', // less reliable\n\n    'second' => ':count bïkua-ôko', // less reliable\n    's' => ':count bïkua-ôko', // less reliable\n    'a_second' => ':count bïkua-ôko', // less reliable\n\n    'month' => ':count Nze tî ngu',\n    'm' => ':count Nze tî ngu',\n    'a_month' => ':count Nze tî ngu',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sgs.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sgs_LT.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sgs_LT.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Arnas Udovičius bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY.MM.DD',\n    ],\n    'months' => ['sausė', 'vasarė', 'kuova', 'balondė', 'gegožės', 'bėrželė', 'lëpas', 'rogpjūtė', 'siejės', 'spalė', 'lapkrėstė', 'grůdė'],\n    'months_short' => ['Sau', 'Vas', 'Kuo', 'Bal', 'Geg', 'Bėr', 'Lëp', 'Rgp', 'Sie', 'Spa', 'Lap', 'Grd'],\n    'weekdays' => ['nedielės dëna', 'panedielis', 'oterninks', 'sereda', 'četvergs', 'petnīčė', 'sobata'],\n    'weekdays_short' => ['Nd', 'Pn', 'Ot', 'Sr', 'Čt', 'Pt', 'Sb'],\n    'weekdays_min' => ['Nd', 'Pn', 'Ot', 'Sr', 'Čt', 'Pt', 'Sb'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'minute' => ':count mažos', // less reliable\n    'min' => ':count mažos', // less reliable\n    'a_minute' => ':count mažos', // less reliable\n\n    'year' => ':count metā',\n    'y' => ':count metā',\n    'a_year' => ':count metā',\n\n    'month' => ':count mienou',\n    'm' => ':count mienou',\n    'a_month' => ':count mienou',\n\n    'week' => ':count nedielė',\n    'w' => ':count nedielė',\n    'a_week' => ':count nedielė',\n\n    'day' => ':count dīna',\n    'd' => ':count dīna',\n    'a_day' => ':count dīna',\n\n    'hour' => ':count adīna',\n    'h' => ':count adīna',\n    'a_hour' => ':count adīna',\n\n    'second' => ':count Sekondė',\n    's' => ':count Sekondė',\n    'a_second' => ':count Sekondė',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Томица Кораћ\n * - Enrique Vidal\n * - Christopher Dell\n * - dmilisic\n * - danijel\n * - Miroslav Matkovic (mikki021)\n */\nreturn [\n    'diff_now' => 'sada',\n    'diff_yesterday' => 'juče',\n    'diff_tomorrow' => 'sutra',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'MMMM D, YYYY',\n        'LLL' => 'DD MMM HH:mm',\n        'LLLL' => 'MMMM DD, YYYY HH:mm',\n    ],\n    'year' => ':count godina|:count godine|:count godina',\n    'y' => ':count g.',\n    'month' => ':count mesec|:count meseca|:count meseci',\n    'm' => ':count m.',\n    'week' => ':count nedelja|:count nedelje|:count nedelja',\n    'w' => ':count n.',\n    'day' => ':count dan|:count dana|:count dana',\n    'd' => ':count d.',\n    'hour' => ':count sat|:count sata|:count sati',\n    'h' => ':count č.',\n    'minute' => ':count minut|:count minuta|:count minuta',\n    'min' => ':count min.',\n    'second' => ':count sekund|:count sekunde|:count sekundi',\n    's' => ':count s.',\n    'ago' => 'pre :time',\n    'from_now' => 'za :time',\n    'after' => 'nakon :time',\n    'before' => ':time raniјe',\n    'weekdays' => ['Nedelja', 'Ponedeljak', 'Utorak', 'Sreda', 'Četvrtak', 'Petak', 'Subota'],\n    'weekdays_short' => ['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'],\n    'weekdays_min' => ['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'],\n    'months' => ['Januar', 'Februar', 'Mart', 'April', 'Maj', 'Jun', 'Jul', 'Avgust', 'Septembar', 'Oktobar', 'Novembar', 'Decembar'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'],\n    'list' => [', ', ' i '],\n    'meridiem' => ['pre podne', 'po podne'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/shi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['ⵜⵉⴼⴰⵡⵜ', 'ⵜⴰⴷⴳⴳⵯⴰⵜ'],\n    'weekdays' => ['ⴰⵙⴰⵎⴰⵙ', 'ⴰⵢⵏⴰⵙ', 'ⴰⵙⵉⵏⴰⵙ', 'ⴰⴽⵕⴰⵙ', 'ⴰⴽⵡⴰⵙ', 'ⵙⵉⵎⵡⴰⵙ', 'ⴰⵙⵉⴹⵢⴰⵙ'],\n    'weekdays_short' => ['ⴰⵙⴰ', 'ⴰⵢⵏ', 'ⴰⵙⵉ', 'ⴰⴽⵕ', 'ⴰⴽⵡ', 'ⴰⵙⵉⵎ', 'ⴰⵙⵉⴹ'],\n    'weekdays_min' => ['ⴰⵙⴰ', 'ⴰⵢⵏ', 'ⴰⵙⵉ', 'ⴰⴽⵕ', 'ⴰⴽⵡ', 'ⴰⵙⵉⵎ', 'ⴰⵙⵉⴹ'],\n    'months' => ['ⵉⵏⵏⴰⵢⵔ', 'ⴱⵕⴰⵢⵕ', 'ⵎⴰⵕⵚ', 'ⵉⴱⵔⵉⵔ', 'ⵎⴰⵢⵢⵓ', 'ⵢⵓⵏⵢⵓ', 'ⵢⵓⵍⵢⵓⵣ', 'ⵖⵓⵛⵜ', 'ⵛⵓⵜⴰⵏⴱⵉⵔ', 'ⴽⵜⵓⴱⵔ', 'ⵏⵓⵡⴰⵏⴱⵉⵔ', 'ⴷⵓⵊⴰⵏⴱⵉⵔ'],\n    'months_short' => ['ⵉⵏⵏ', 'ⴱⵕⴰ', 'ⵎⴰⵕ', 'ⵉⴱⵔ', 'ⵎⴰⵢ', 'ⵢⵓⵏ', 'ⵢⵓⵍ', 'ⵖⵓⵛ', 'ⵛⵓⵜ', 'ⴽⵜⵓ', 'ⵏⵓⵡ', 'ⴷⵓⵊ'],\n    'first_day_of_week' => 6,\n    'weekend' => [5, 6],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'year' => ':count aseggwas',\n    'y' => ':count aseggwas',\n    'a_year' => ':count aseggwas',\n\n    'month' => ':count ayyur',\n    'm' => ':count ayyur',\n    'a_month' => ':count ayyur',\n\n    'week' => ':count imalass',\n    'w' => ':count imalass',\n    'a_week' => ':count imalass',\n\n    'day' => ':count ass',\n    'd' => ':count ass',\n    'a_day' => ':count ass',\n\n    'hour' => ':count urɣ', // less reliable\n    'h' => ':count urɣ', // less reliable\n    'a_hour' => ':count urɣ', // less reliable\n\n    'minute' => ':count ⴰⵎⵥⵉ', // less reliable\n    'min' => ':count ⴰⵎⵥⵉ', // less reliable\n    'a_minute' => ':count ⴰⵎⵥⵉ', // less reliable\n\n    'second' => ':count sin', // less reliable\n    's' => ':count sin', // less reliable\n    'a_second' => ':count sin', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/shi_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/shi.php', [\n    'meridiem' => ['tifawt', 'tadggʷat'],\n    'weekdays' => ['asamas', 'aynas', 'asinas', 'akṛas', 'akwas', 'asimwas', 'asiḍyas'],\n    'weekdays_short' => ['asa', 'ayn', 'asi', 'akṛ', 'akw', 'asim', 'asiḍ'],\n    'weekdays_min' => ['asa', 'ayn', 'asi', 'akṛ', 'akw', 'asim', 'asiḍ'],\n    'months' => ['innayr', 'bṛayṛ', 'maṛṣ', 'ibrir', 'mayyu', 'yunyu', 'yulyuz', 'ɣuct', 'cutanbir', 'ktubr', 'nuwanbir', 'dujanbir'],\n    'months_short' => ['inn', 'bṛa', 'maṛ', 'ibr', 'may', 'yun', 'yul', 'ɣuc', 'cut', 'ktu', 'nuw', 'duj'],\n    'first_day_of_week' => 6,\n    'weekend' => [5, 6],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n\n    'minute' => ':count agur', // less reliable\n    'min' => ':count agur', // less reliable\n    'a_minute' => ':count agur', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/shi_Tfng.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/shi.php';\n"
  },
  {
    "path": "src/Carbon/Lang/shn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/shn_MM.php';\n"
  },
  {
    "path": "src/Carbon/Lang/shn_MM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - ubuntu Myanmar LoCo Team https://ubuntu-mm.net Bone Pyae Sone bone.burma@mail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'OY MMM OD dddd',\n    ],\n    'months' => ['လိူၼ်ၵမ်', 'လိူၼ်သၢမ်', 'လိူၼ်သီ', 'လိူၼ်ႁႃႈ', 'လိူၼ်ႁူၵ်း', 'လိူၼ်ၸဵတ်း', 'လိူၼ်ပႅတ်ႇ', 'လိူၼ်ၵဝ်ႈ', 'လိူၼ်သိပ်း', 'လိူၼ်သိပ်းဢိတ်း', 'လိူၼ်သိပ်းဢိတ်းသွင်', 'လိူၼ်ၸဵင်'],\n    'months_short' => ['လိူၼ်ၵမ်', 'လိူၼ်သၢမ်', 'လိူၼ်သီ', 'လိူၼ်ႁႃႈ', 'လိူၼ်ႁူၵ်း', 'လိူၼ်ၸဵတ်း', 'လိူၼ်ပႅတ်ႇ', 'လိူၼ်ၵဝ်ႈ', 'လိူၼ်သိပ်း', 'လိူၼ်သိပ်းဢိတ်း', 'လိူၼ်သိပ်းဢိတ်းသွင်', 'လိူၼ်ၸဵင်'],\n    'weekdays' => ['ဝၼ်းဢႃးတိတ်ႉ', 'ဝၼ်းၸၼ်', 'ဝၼ်း​ဢၢင်း​ၵၢၼ်း', 'ဝၼ်းပူတ်ႉ', 'ဝၼ်းၽတ်း', 'ဝၼ်းသုၵ်း', 'ဝၼ်းသဝ်'],\n    'weekdays_short' => ['တိတ့်', 'ၸၼ်', 'ၵၢၼ်း', 'ပုတ့်', 'ၽတ်း', 'သုၵ်း', 'သဝ်'],\n    'weekdays_min' => ['တိတ့်', 'ၸၼ်', 'ၵၢၼ်း', 'ပုတ့်', 'ၽတ်း', 'သုၵ်း', 'သဝ်'],\n    'alt_numbers' => ['႐႐', '႐႑', '႐႒', '႐႓', '႐႔', '႐႕', '႐႖', '႐႗', '႐႘', '႐႙', '႑႐', '႑႑', '႑႒', '႑႓', '႑႔', '႑႕', '႑႖', '႑႗', '႑႘', '႑႙', '႒႐', '႒႑', '႒႒', '႒႓', '႒႔', '႒႕', '႒႖', '႒႗', '႒႘', '႒႙', '႓႐', '႓႑', '႓႒', '႓႓', '႓႔', '႓႕', '႓႖', '႓႗', '႓႘', '႓႙', '႔႐', '႔႑', '႔႒', '႔႓', '႔႔', '႔႕', '႔႖', '႔႗', '႔႘', '႔႙', '႕႐', '႕႑', '႕႒', '႕႓', '႕႔', '႕႕', '႕႖', '႕႗', '႕႘', '႕႙', '႖႐', '႖႑', '႖႒', '႖႓', '႖႔', '႖႕', '႖႖', '႖႗', '႖႘', '႖႙', '႗႐', '႗႑', '႗႒', '႗႓', '႗႔', '႗႕', '႗႖', '႗႗', '႗႘', '႗႙', '႘႐', '႘႑', '႘႒', '႘႓', '႘႔', '႘႕', '႘႖', '႘႗', '႘႘', '႘႙', '႙႐', '႙႑', '႙႒', '႙႓', '႙႔', '႙႕', '႙႖', '႙႗', '႙႘', '႙႙'],\n    'meridiem' => ['ၵၢင်ၼႂ်', 'တၢမ်းၶမ်ႈ'],\n\n    'month' => ':count လိူၼ်', // less reliable\n    'm' => ':count လိူၼ်', // less reliable\n    'a_month' => ':count လိူၼ်', // less reliable\n\n    'week' => ':count ဝၼ်း', // less reliable\n    'w' => ':count ဝၼ်း', // less reliable\n    'a_week' => ':count ဝၼ်း', // less reliable\n\n    'hour' => ':count ຕີ', // less reliable\n    'h' => ':count ຕີ', // less reliable\n    'a_hour' => ':count ຕີ', // less reliable\n\n    'minute' => ':count ເດັກ', // less reliable\n    'min' => ':count ເດັກ', // less reliable\n    'a_minute' => ':count ເດັກ', // less reliable\n\n    'second' => ':count ဢိုၼ်ႇ', // less reliable\n    's' => ':count ဢိုၼ်ႇ', // less reliable\n    'a_second' => ':count ဢိုၼ်ႇ', // less reliable\n\n    'year' => ':count ပီ',\n    'y' => ':count ပီ',\n    'a_year' => ':count ပီ',\n\n    'day' => ':count ກາງວັນ',\n    'd' => ':count ກາງວັນ',\n    'a_day' => ':count ກາງວັນ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/shs.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/shs_CA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/shs_CA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Neskie Manuel    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Pellkwet̓min', 'Pelctsipwen̓ten', 'Pellsqépts', 'Peslléwten', 'Pell7ell7é7llqten', 'Pelltspéntsk', 'Pelltqwelq̓wél̓t', 'Pellct̓éxel̓cten', 'Pesqelqlélten', 'Pesllwélsten', 'Pellc7ell7é7llcwten̓', 'Pelltetétq̓em'],\n    'months_short' => ['Kwe', 'Tsi', 'Sqe', 'Éwt', 'Ell', 'Tsp', 'Tqw', 'Ct̓é', 'Qel', 'Wél', 'U7l', 'Tet'],\n    'weekdays' => ['Sxetspesq̓t', 'Spetkesq̓t', 'Selesq̓t', 'Skellesq̓t', 'Smesesq̓t', 'Stselkstesq̓t', 'Stqmekstesq̓t'],\n    'weekdays_short' => ['Sxe', 'Spe', 'Sel', 'Ske', 'Sme', 'Sts', 'Stq'],\n    'weekdays_min' => ['Sxe', 'Spe', 'Sel', 'Ske', 'Sme', 'Sts', 'Stq'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count sqlélten', // less reliable\n    'y' => ':count sqlélten', // less reliable\n    'a_year' => ':count sqlélten', // less reliable\n\n    'month' => ':count swewll', // less reliable\n    'm' => ':count swewll', // less reliable\n    'a_month' => ':count swewll', // less reliable\n\n    'hour' => ':count seqwlút', // less reliable\n    'h' => ':count seqwlút', // less reliable\n    'a_hour' => ':count seqwlút', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/si.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Serhan Apaydın\n * - JD Isaacks\n * - Malinda Weerasinghe (MalindaWMD)\n */\nreturn [\n    'year' => '{1}වසර 1|වසර :count',\n    'a_year' => '{1}වසරක්|වසර :count',\n    'month' => '{1}මාස 1|මාස :count',\n    'a_month' => '{1}මාසය|මාස :count',\n    'week' => '{1}සති 1|සති :count',\n    'a_week' => '{1}සතියක්|සති :count',\n    'day' => '{1}දින 1|දින :count',\n    'a_day' => '{1}දිනක්|දින :count',\n    'hour' => '{1}පැය 1|පැය :count',\n    'a_hour' => '{1}පැයක්|පැය :count',\n    'minute' => '{1}මිනිත්තු 1|මිනිත්තු :count',\n    'a_minute' => '{1}මිනිත්තුවක්|මිනිත්තු :count',\n    'second' => '{1}තත්පර 1|තත්පර :count',\n    'a_second' => '{1}තත්පර කිහිපයකට|තත්පර :count',\n    'ago' => ':time කට පෙර',\n    'from_now' => static function ($time) {\n        if (preg_match('/දින \\d+/u', $time)) {\n            return $time.' න්';\n        }\n\n        return $time.' කින්';\n    },\n    'before' => ':time කට පෙර',\n    'after' => static function ($time) {\n        if (preg_match('/දින \\d+/u', $time)) {\n            return $time.' න්';\n        }\n\n        return $time.' කින්';\n    },\n    'diff_now' => 'දැන්',\n    'diff_today' => 'අද',\n    'diff_yesterday' => 'ඊයේ',\n    'diff_tomorrow' => 'හෙට',\n    'formats' => [\n        'LT' => 'a h:mm',\n        'LTS' => 'a h:mm:ss',\n        'L' => 'YYYY/MM/DD',\n        'LL' => 'YYYY MMMM D',\n        'LLL' => 'YYYY MMMM D, a h:mm',\n        'LLLL' => 'YYYY MMMM D [වැනි] dddd, a h:mm:ss',\n    ],\n    'calendar' => [\n        'sameDay' => '[අද] LT[ට]',\n        'nextDay' => '[හෙට] LT[ට]',\n        'nextWeek' => 'dddd LT[ට]',\n        'lastDay' => '[ඊයේ] LT[ට]',\n        'lastWeek' => '[පසුගිය] dddd LT[ට]',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number වැනි',\n    'meridiem' => ['පෙර වරු', 'පස් වරු', 'පෙ.ව.', 'ප.ව.'],\n    'months' => ['ජනවාරි', 'පෙබරවාරි', 'මාර්තු', 'අප්‍රේල්', 'මැයි', 'ජූනි', 'ජූලි', 'අගෝස්තු', 'සැප්තැම්බර්', 'ඔක්තෝබර්', 'නොවැම්බර්', 'දෙසැම්බර්'],\n    'months_short' => ['ජන', 'පෙබ', 'මාර්', 'අප්', 'මැයි', 'ජූනි', 'ජූලි', 'අගෝ', 'සැප්', 'ඔක්', 'නොවැ', 'දෙසැ'],\n    'weekdays' => ['ඉරිදා', 'සඳුදා', 'අඟහරුවාදා', 'බදාදා', 'බ්‍රහස්පතින්දා', 'සිකුරාදා', 'සෙනසුරාදා'],\n    'weekdays_short' => ['ඉරි', 'සඳු', 'අඟ', 'බදා', 'බ්‍රහ', 'සිකු', 'සෙන'],\n    'weekdays_min' => ['ඉ', 'ස', 'අ', 'බ', 'බ්‍ර', 'සි', 'සෙ'],\n    'first_day_of_week' => 1,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/si_LK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/si.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sid.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sid_ET.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sid_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],\n    'weekdays' => ['Sambata', 'Sanyo', 'Maakisanyo', 'Roowe', 'Hamuse', 'Arbe', 'Qidaame'],\n    'weekdays_short' => ['Sam', 'San', 'Mak', 'Row', 'Ham', 'Arb', 'Qid'],\n    'weekdays_min' => ['Sam', 'San', 'Mak', 'Row', 'Ham', 'Arb', 'Qid'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['soodo', 'hawwaro'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sk.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Martin Suja\n * - Tsutomu Kuroda\n * - tjku\n * - Max Melentiev\n * - Juanito Fatas\n * - Ivan Stana\n * - Akira Matsuda\n * - Christopher Dell\n * - James McKinney\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Jozef Fulop\n * - Nicolás Hock Isaza\n * - Tom Hughes\n * - Simon Hürlimann (CyT)\n * - jofi\n * - Jakub ADAMEC\n * - Marek Adamický\n * - AlterwebStudio\n * - Peter Kundis\n */\n\nuse Carbon\\CarbonInterface;\n\n$fromNow = function ($time) {\n    return 'o '.strtr($time, [\n            'hodina' => 'hodinu',\n            'minúta' => 'minútu',\n            'sekunda' => 'sekundu',\n        ]);\n};\n\n$ago = function ($time) {\n    $replacements = [\n        '/\\bhodina\\b/' => 'hodinou',\n        '/\\bminúta\\b/' => 'minútou',\n        '/\\bsekunda\\b/' => 'sekundou',\n        '/\\bdeň\\b/u' => 'dňom',\n        '/\\btýždeň\\b/u' => 'týždňom',\n        '/\\bmesiac\\b/' => 'mesiacom',\n        '/\\brok\\b/' => 'rokom',\n    ];\n\n    $replacementsPlural = [\n        '/\\b(?:hodiny|hodín)\\b/' => 'hodinami',\n        '/\\b(?:minúty|minút)\\b/' => 'minútami',\n        '/\\b(?:sekundy|sekúnd)\\b/' => 'sekundami',\n        '/\\bdeň\\b/' => 'dňom',\n        '/\\bdni\\b/' => 'dňami',\n        '/\\bdní\\b/u' => 'dňami',\n        '/\\b(?:týždne|týždňov)\\b/' => 'týždňami',\n        '/\\b(?:mesiace|mesiacov)\\b/' => 'mesiacmi',\n        '/\\b(?:roky|rokov)\\b/' => 'rokmi',\n    ];\n\n    foreach ($replacements + $replacementsPlural as $pattern => $replacement) {\n        $time = preg_replace($pattern, $replacement, $time);\n    }\n\n    return \"pred $time\";\n};\n\nreturn [\n    'year' => ':count rok|:count roky|:count rokov',\n    'a_year' => 'rok|:count roky|:count rokov',\n    'y' => ':count r',\n    'month' => ':count mesiac|:count mesiace|:count mesiacov',\n    'a_month' => 'mesiac|:count mesiace|:count mesiacov',\n    'm' => ':count m',\n    'week' => ':count týždeň|:count týždne|:count týždňov',\n    'a_week' => 'týždeň|:count týždne|:count týždňov',\n    'w' => ':count t',\n    'day' => ':count deň|:count dni|:count dní',\n    'a_day' => 'deň|:count dni|:count dní',\n    'd' => ':count d',\n    'hour' => ':count hodina|:count hodiny|:count hodín',\n    'a_hour' => 'hodina|:count hodiny|:count hodín',\n    'h' => ':count h',\n    'minute' => ':count minúta|:count minúty|:count minút',\n    'a_minute' => 'minúta|:count minúty|:count minút',\n    'min' => ':count min',\n    'second' => ':count sekunda|:count sekundy|:count sekúnd',\n    'a_second' => 'sekunda|:count sekundy|:count sekúnd',\n    's' => ':count s',\n    'millisecond' => ':count milisekunda|:count milisekundy|:count milisekúnd',\n    'a_millisecond' => 'milisekunda|:count milisekundy|:count milisekúnd',\n    'ms' => ':count ms',\n    'microsecond' => ':count mikrosekunda|:count mikrosekundy|:count mikrosekúnd',\n    'a_microsecond' => 'mikrosekunda|:count mikrosekundy|:count mikrosekúnd',\n    'µs' => ':count µs',\n\n    'ago' => $ago,\n    'from_now' => $fromNow,\n    'before' => ':time pred',\n    'after' => ':time po',\n\n    'hour_after' => ':count hodinu|:count hodiny|:count hodín',\n    'minute_after' => ':count minútu|:count minúty|:count minút',\n    'second_after' => ':count sekundu|:count sekundy|:count sekúnd',\n\n    'hour_before' => ':count hodinu|:count hodiny|:count hodín',\n    'minute_before' => ':count minútu|:count minúty|:count minút',\n    'second_before' => ':count sekundu|:count sekundy|:count sekúnd',\n\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' a '],\n    'diff_now' => 'teraz',\n    'diff_yesterday' => 'včera',\n    'diff_tomorrow' => 'zajtra',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'DD. MMMM YYYY',\n        'LLL' => 'D. M. HH:mm',\n        'LLLL' => 'dddd D. MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[dnes o] LT',\n        'nextDay' => '[zajtra o] LT',\n        'lastDay' => '[včera o] LT',\n        'nextWeek' => 'dddd [o] LT',\n        'lastWeek' => static function (CarbonInterface $date) {\n            switch ($date->dayOfWeek) {\n                case 1:\n                case 2:\n                case 4:\n                case 5:\n                    return '[minulý] dddd [o] LT'; //pondelok/utorok/štvrtok/piatok\n                default:\n                    return '[minulá] dddd [o] LT';\n            }\n        },\n        'sameElse' => 'L',\n    ],\n    'weekdays' => ['nedeľa', 'pondelok', 'utorok', 'streda', 'štvrtok', 'piatok', 'sobota'],\n    'weekdays_short' => ['ned', 'pon', 'uto', 'str', 'štv', 'pia', 'sob'],\n    'weekdays_min' => ['ne', 'po', 'ut', 'st', 'št', 'pi', 'so'],\n    'months' => ['januára', 'februára', 'marca', 'apríla', 'mája', 'júna', 'júla', 'augusta', 'septembra', 'októbra', 'novembra', 'decembra'],\n    'months_standalone' => ['január', 'február', 'marec', 'apríl', 'máj', 'jún', 'júl', 'august', 'september', 'október', 'november', 'december'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'máj', 'jún', 'júl', 'aug', 'sep', 'okt', 'nov', 'dec'],\n    'months_regexp' => '/(DD?o?\\.?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'meridiem' => ['dopoludnia', 'popoludní'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sk_SK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sk.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - tjku\n * - Max Melentiev\n * - Juanito Fatas\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Nicolás Hock Isaza\n * - Miha Rebernik\n * - Gal Jakič (morpheus7CS)\n * - Glavić\n * - Anže Časar\n * - Lovro Tramšek (Lovro1107)\n * - burut13\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count leto|:count leti|:count leta|:count let',\n    'y' => ':count leto|:count leti|:count leta|:count let',\n    'month' => ':count mesec|:count meseca|:count mesece|:count mesecev',\n    'm' => ':count mes.',\n    'week' => ':count teden|:count tedna|:count tedne|:count tednov',\n    'w' => ':count ted.',\n    'day' => ':count dan|:count dni|:count dni|:count dni',\n    'd' => ':count dan|:count dni|:count dni|:count dni',\n    'hour' => ':count ura|:count uri|:count ure|:count ur',\n    'h' => ':count h',\n    'minute' => ':count minuta|:count minuti|:count minute|:count minut',\n    'min' => ':count min.',\n    'second' => ':count sekunda|:count sekundi|:count sekunde|:count sekund',\n    'a_second' => '{1}nekaj sekund|:count sekunda|:count sekundi|:count sekunde|:count sekund',\n    's' => ':count s',\n\n    'year_ago' => ':count letom|:count letoma|:count leti|:count leti',\n    'y_ago' => ':count letom|:count letoma|:count leti|:count leti',\n    'month_ago' => ':count mesecem|:count mesecema|:count meseci|:count meseci',\n    'week_ago' => ':count tednom|:count tednoma|:count tedni|:count tedni',\n    'day_ago' => ':count dnem|:count dnevoma|:count dnevi|:count dnevi',\n    'd_ago' => ':count dnem|:count dnevoma|:count dnevi|:count dnevi',\n    'hour_ago' => ':count uro|:count urama|:count urami|:count urami',\n    'minute_ago' => ':count minuto|:count minutama|:count minutami|:count minutami',\n    'second_ago' => ':count sekundo|:count sekundama|:count sekundami|:count sekundami',\n\n    'day_from_now' => ':count dan|:count dneva|:count dni|:count dni',\n    'd_from_now' => ':count dan|:count dneva|:count dni|:count dni',\n    'hour_from_now' => ':count uro|:count uri|:count ure|:count ur',\n    'minute_from_now' => ':count minuto|:count minuti|:count minute|:count minut',\n    'second_from_now' => ':count sekundo|:count sekundi|:count sekunde|:count sekund',\n\n    'ago' => 'pred :time',\n    'from_now' => 'čez :time',\n    'after' => ':time kasneje',\n    'before' => ':time prej',\n\n    'diff_now' => 'ravnokar',\n    'diff_today' => 'danes',\n    'diff_today_regexp' => 'danes(?:\\\\s+ob)?',\n    'diff_yesterday' => 'včeraj',\n    'diff_yesterday_regexp' => 'včeraj(?:\\\\s+ob)?',\n    'diff_tomorrow' => 'jutri',\n    'diff_tomorrow_regexp' => 'jutri(?:\\\\s+ob)?',\n    'diff_before_yesterday' => 'predvčerajšnjim',\n    'diff_after_tomorrow' => 'pojutrišnjem',\n\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'period_start_date' => 'od :date',\n    'period_end_date' => 'do :date',\n\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[danes ob] LT',\n        'nextDay' => '[jutri ob] LT',\n        'nextWeek' => 'dddd [ob] LT',\n        'lastDay' => '[včeraj ob] LT',\n        'lastWeek' => static function (CarbonInterface $date) {\n            switch ($date->dayOfWeek) {\n                case 0:\n                    return '[preteklo] [nedeljo] [ob] LT';\n                case 1:\n                    return '[pretekli] [ponedeljek] [ob] LT';\n                case 2:\n                    return '[pretekli] [torek] [ob] LT';\n                case 3:\n                    return '[preteklo] [sredo] [ob] LT';\n                case 4:\n                    return '[pretekli] [četrtek] [ob] LT';\n                case 5:\n                    return '[pretekli] [petek] [ob] LT';\n                case 6:\n                    return '[preteklo] [soboto] [ob] LT';\n            }\n        },\n        'sameElse' => 'L',\n    ],\n    'months' => ['januarja', 'februarja', 'marca', 'aprila', 'maja', 'junija', 'julija', 'avgusta', 'septembra', 'oktobra', 'novembra', 'decembra'],\n    'months_standalone' => ['januar', 'februar', 'marec', 'april', 'maj', 'junij', 'julij', 'avgust', 'september', 'oktober', 'november', 'december'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'],\n    'months_regexp' => '/(DD?o?\\.?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => ['nedelja', 'ponedeljek', 'torek', 'sreda', 'četrtek', 'petek', 'sobota'],\n    'weekdays_short' => ['ned', 'pon', 'tor', 'sre', 'čet', 'pet', 'sob'],\n    'weekdays_min' => ['ne', 'po', 'to', 'sr', 'če', 'pe', 'so'],\n    'list' => [', ', ' in '],\n    'meridiem' => ['dopoldan', 'popoldan'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sl_SI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sm.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/sm_WS.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sm_WS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Samsung Electronics Co., Ltd.    akhilesh.k@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Ianuari', 'Fepuari', 'Mati', 'Aperila', 'Me', 'Iuni', 'Iulai', 'Auguso', 'Setema', 'Oketopa', 'Novema', 'Tesema'],\n    'months_short' => ['Ian', 'Fep', 'Mat', 'Ape', 'Me', 'Iun', 'Iul', 'Aug', 'Set', 'Oke', 'Nov', 'Tes'],\n    'weekdays' => ['Aso Sa', 'Aso Gafua', 'Aso Lua', 'Aso Lulu', 'Aso Tofi', 'Aso Farail', 'Aso To\\'ana\\'i'],\n    'weekdays_short' => ['Aso Sa', 'Aso Gaf', 'Aso Lua', 'Aso Lul', 'Aso Tof', 'Aso Far', 'Aso To\\''],\n    'weekdays_min' => ['Aso Sa', 'Aso Gaf', 'Aso Lua', 'Aso Lul', 'Aso Tof', 'Aso Far', 'Aso To\\''],\n\n    'hour' => ':count uati', // less reliable\n    'h' => ':count uati', // less reliable\n    'a_hour' => ':count uati', // less reliable\n\n    'minute' => ':count itiiti', // less reliable\n    'min' => ':count itiiti', // less reliable\n    'a_minute' => ':count itiiti', // less reliable\n\n    'second' => ':count lua', // less reliable\n    's' => ':count lua', // less reliable\n    'a_second' => ':count lua', // less reliable\n\n    'year' => ':count tausaga',\n    'y' => ':count tausaga',\n    'a_year' => ':count tausaga',\n\n    'month' => ':count māsina',\n    'm' => ':count māsina',\n    'a_month' => ':count māsina',\n\n    'week' => ':count vaiaso',\n    'w' => ':count vaiaso',\n    'a_week' => ':count vaiaso',\n\n    'day' => ':count aso',\n    'd' => ':count aso',\n    'a_day' => ':count aso',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/smn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['ip.', 'ep.'],\n    'weekdays' => ['pasepeeivi', 'vuossaargâ', 'majebaargâ', 'koskoho', 'tuorâstuv', 'vástuppeeivi', 'lávurduv'],\n    'weekdays_short' => ['pas', 'vuo', 'maj', 'kos', 'tuo', 'vás', 'láv'],\n    'weekdays_min' => ['pa', 'vu', 'ma', 'ko', 'tu', 'vá', 'lá'],\n    'weekdays_standalone' => ['pasepeivi', 'vuossargâ', 'majebargâ', 'koskokko', 'tuorâstâh', 'vástuppeivi', 'lávurdâh'],\n    'months' => ['uđđâivemáánu', 'kuovâmáánu', 'njuhčâmáánu', 'cuáŋuimáánu', 'vyesimáánu', 'kesimáánu', 'syeinimáánu', 'porgemáánu', 'čohčâmáánu', 'roovvâdmáánu', 'skammâmáánu', 'juovlâmáánu'],\n    'months_short' => ['uđiv', 'kuovâ', 'njuhčâ', 'cuáŋui', 'vyesi', 'kesi', 'syeini', 'porge', 'čohčâ', 'roovvâd', 'skammâ', 'juovlâ'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'H.mm',\n        'LTS' => 'H.mm.ss',\n        'L' => 'D.M.YYYY',\n        'LL' => 'MMM D. YYYY',\n        'LLL' => 'MMMM D. YYYY H.mm',\n        'LLLL' => 'dddd, MMMM D. YYYY H.mm',\n    ],\n\n    'hour' => ':count äigi', // less reliable\n    'h' => ':count äigi', // less reliable\n    'a_hour' => ':count äigi', // less reliable\n\n    'year' => ':count ihe',\n    'y' => ':count ihe',\n    'a_year' => ':count ihe',\n\n    'month' => ':count mánuppaje',\n    'm' => ':count mánuppaje',\n    'a_month' => ':count mánuppaje',\n\n    'week' => ':count okko',\n    'w' => ':count okko',\n    'a_week' => ':count okko',\n\n    'day' => ':count peivi',\n    'd' => ':count peivi',\n    'a_day' => ':count peivi',\n\n    'minute' => ':count miinut',\n    'min' => ':count miinut',\n    'a_minute' => ':count miinut',\n\n    'second' => ':count nubbe',\n    's' => ':count nubbe',\n    'a_second' => ':count nubbe',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'meridiem' => ['a', 'p'],\n    'weekdays' => ['Svondo', 'Muvhuro', 'Chipiri', 'Chitatu', 'China', 'Chishanu', 'Mugovera'],\n    'weekdays_short' => ['Svo', 'Muv', 'Chp', 'Cht', 'Chn', 'Chs', 'Mug'],\n    'weekdays_min' => ['Sv', 'Mu', 'Cp', 'Ct', 'Cn', 'Cs', 'Mg'],\n    'months' => ['Ndira', 'Kukadzi', 'Kurume', 'Kubvumbi', 'Chivabvu', 'Chikumi', 'Chikunguru', 'Nyamavhuvhu', 'Gunyana', 'Gumiguru', 'Mbudzi', 'Zvita'],\n    'months_short' => ['Ndi', 'Kuk', 'Kur', 'Kub', 'Chv', 'Chk', 'Chg', 'Nya', 'Gun', 'Gum', 'Mbu', 'Zvi'],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'YYYY MMMM D, dddd HH:mm',\n    ],\n\n    'year' => 'makore :count',\n    'y' => 'makore :count',\n    'a_year' => 'makore :count',\n\n    'month' => 'mwedzi :count',\n    'm' => 'mwedzi :count',\n    'a_month' => 'mwedzi :count',\n\n    'week' => 'vhiki :count',\n    'w' => 'vhiki :count',\n    'a_week' => 'vhiki :count',\n\n    'day' => 'mazuva :count',\n    'd' => 'mazuva :count',\n    'a_day' => 'mazuva :count',\n\n    'hour' => 'maawa :count',\n    'h' => 'maawa :count',\n    'a_hour' => 'maawa :count',\n\n    'minute' => 'minitsi :count',\n    'min' => 'minitsi :count',\n    'a_minute' => 'minitsi :count',\n\n    'second' => 'sekonzi :count',\n    's' => 'sekonzi :count',\n    'a_second' => 'sekonzi :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/so.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Author:\n * - Abdifatah Abdilahi(@abdifatahz)\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'year' => ':count sanad|:count sanadood',\n    'a_year' => 'sanad|:count sanadood',\n    'y' => '{1}:countsn|{0}:countsns|[-Inf,Inf]:countsn',\n    'month' => ':count bil|:count bilood',\n    'a_month' => 'bil|:count bilood',\n    'm' => ':countbil',\n    'week' => ':count isbuuc',\n    'a_week' => 'isbuuc|:count isbuuc',\n    'w' => ':countis',\n    'day' => ':count maalin|:count maalmood',\n    'a_day' => 'maalin|:count maalmood',\n    'd' => ':countml',\n    'hour' => ':count saac',\n    'a_hour' => 'saacad|:count saac',\n    'h' => ':countsc',\n    'minute' => ':count daqiiqo',\n    'a_minute' => 'daqiiqo|:count daqiiqo',\n    'min' => ':countdq',\n    'second' => ':count ilbidhiqsi',\n    'a_second' => 'xooga ilbidhiqsiyo|:count ilbidhiqsi',\n    's' => ':countil',\n    'ago' => ':time kahor',\n    'from_now' => ':time gudahood',\n    'after' => ':time kedib',\n    'before' => ':time kahor',\n    'diff_now' => 'hada',\n    'diff_today' => 'maanta',\n    'diff_today_regexp' => 'maanta(?:\\s+markay\\s+(?:tahay|ahayd))?',\n    'diff_yesterday' => 'shalayto',\n    'diff_yesterday_regexp' => 'shalayto(?:\\s+markay\\s+ahayd)?',\n    'diff_tomorrow' => 'beri',\n    'diff_tomorrow_regexp' => 'beri(?:\\s+markay\\s+tahay)?',\n    'diff_before_yesterday' => 'doraato',\n    'diff_after_tomorrow' => 'saadanbe',\n    'period_recurrences' => 'mar|:count jeer',\n    'period_interval' => ':interval kasta',\n    'period_start_date' => 'laga bilaabo :date',\n    'period_end_date' => 'ilaa :date',\n    'months' => ['Janaayo', 'Febraayo', 'Abriil', 'Maajo', 'Juun', 'Luuliyo', 'Agoosto', 'Sebteembar', 'Oktoobar', 'Nofeembar', 'Diseembar'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Abr', 'Mjo', 'Jun', 'Lyo', 'Agt', 'Seb', 'Okt', 'Nof', 'Dis'],\n    'weekdays' => ['Axad', 'Isniin', 'Talaada', 'Arbaca', 'Khamiis', 'Jimce', 'Sabti'],\n    'weekdays_short' => ['Axd', 'Isn', 'Tal', 'Arb', 'Kha', 'Jim', 'Sbt'],\n    'weekdays_min' => ['Ax', 'Is', 'Ta', 'Ar', 'Kh', 'Ji', 'Sa'],\n    'list' => [', ', ' and '],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'calendar' => [\n        'sameDay' => '[Maanta markay tahay] LT',\n        'nextDay' => '[Beri markay tahay] LT',\n        'nextWeek' => 'dddd [markay tahay] LT',\n        'lastDay' => '[Shalay markay ahayd] LT',\n        'lastWeek' => '[Hore] dddd [Markay ahayd] LT',\n        'sameElse' => 'L',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/so_DJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/so.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/so_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn require __DIR__.'/so.php';\n"
  },
  {
    "path": "src/Carbon/Lang/so_KE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn require __DIR__.'/so.php';\n"
  },
  {
    "path": "src/Carbon/Lang/so_SO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn require __DIR__.'/so.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - JD Isaacks\n * - Fadion Dashi\n */\nreturn [\n    'year' => ':count vit|:count vjet',\n    'a_year' => 'një vit|:count vite',\n    'y' => ':count v.',\n    'month' => ':count muaj',\n    'a_month' => 'një muaj|:count muaj',\n    'm' => ':count muaj',\n    'week' => ':count javë',\n    'a_week' => ':count javë|:count javë',\n    'w' => ':count j.',\n    'day' => ':count ditë',\n    'a_day' => 'një ditë|:count ditë',\n    'd' => ':count d.',\n    'hour' => ':count orë',\n    'a_hour' => 'një orë|:count orë',\n    'h' => ':count o.',\n    'minute' => ':count minutë|:count minuta',\n    'a_minute' => 'një minutë|:count minuta',\n    'min' => ':count min.',\n    'second' => ':count sekondë|:count sekonda',\n    'a_second' => 'disa sekonda|:count sekonda',\n    's' => ':count s.',\n    'ago' => ':time më parë',\n    'from_now' => 'në :time',\n    'after' => ':time pas',\n    'before' => ':time para',\n    'diff_now' => 'tani',\n    'diff_today' => 'Sot',\n    'diff_today_regexp' => 'Sot(?:\\\\s+në)?',\n    'diff_yesterday' => 'dje',\n    'diff_yesterday_regexp' => 'Dje(?:\\\\s+në)?',\n    'diff_tomorrow' => 'nesër',\n    'diff_tomorrow_regexp' => 'Nesër(?:\\\\s+në)?',\n    'diff_before_yesterday' => 'pardje',\n    'diff_after_tomorrow' => 'pasnesër',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Sot në] LT',\n        'nextDay' => '[Nesër në] LT',\n        'nextWeek' => 'dddd [në] LT',\n        'lastDay' => '[Dje në] LT',\n        'lastWeek' => 'dddd [e kaluar në] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'meridiem' => ['PD', 'MD'],\n    'months' => ['janar', 'shkurt', 'mars', 'prill', 'maj', 'qershor', 'korrik', 'gusht', 'shtator', 'tetor', 'nëntor', 'dhjetor'],\n    'months_short' => ['jan', 'shk', 'mar', 'pri', 'maj', 'qer', 'kor', 'gus', 'sht', 'tet', 'nën', 'dhj'],\n    'weekdays' => ['e diel', 'e hënë', 'e martë', 'e mërkurë', 'e enjte', 'e premte', 'e shtunë'],\n    'weekdays_short' => ['die', 'hën', 'mar', 'mër', 'enj', 'pre', 'sht'],\n    'weekdays_min' => ['d', 'h', 'ma', 'më', 'e', 'p', 'sh'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' dhe '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sq_AL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sq.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sq_MK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/sq.php', [\n    'formats' => [\n        'L' => 'D.M.YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sq_XK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/sq.php', [\n    'formats' => [\n        'L' => 'D.M.YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - shaishavgandhi05\n * - Serhan Apaydın\n * - JD Isaacks\n * - Glavić\n * - Milos Sakovic\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count godina|:count godine|:count godina',\n    'y' => ':count g.',\n    'month' => ':count mesec|:count meseca|:count meseci',\n    'm' => ':count mes.',\n    'week' => ':count nedelja|:count nedelje|:count nedelja',\n    'w' => ':count ned.',\n    'day' => ':count dan|:count dana|:count dana',\n    'd' => ':count d.',\n    'hour' => ':count sat|:count sata|:count sati',\n    'h' => ':count č.',\n    'minute' => ':count minut|:count minuta|:count minuta',\n    'min' => ':count min.',\n    'second' => ':count sekundu|:count sekunde|:count sekundi',\n    's' => ':count sek.',\n\n    'ago' => 'pre :time',\n    'from_now' => 'za :time',\n    'after' => 'nakon :time',\n    'before' => 'pre :time',\n\n    'year_ago' => ':count godinu|:count godine|:count godina',\n    'year_from_now' => ':count godinu|:count godine|:count godina',\n    'week_ago' => ':count nedelju|:count nedelje|:count nedelja',\n    'week_from_now' => ':count nedelju|:count nedelje|:count nedelja',\n\n    'diff_now' => 'upravo sada',\n    'diff_today' => 'danas',\n    'diff_today_regexp' => 'danas(?:\\\\s+u)?',\n    'diff_yesterday' => 'juče',\n    'diff_yesterday_regexp' => 'juče(?:\\\\s+u)?',\n    'diff_tomorrow' => 'sutra',\n    'diff_tomorrow_regexp' => 'sutra(?:\\\\s+u)?',\n    'diff_before_yesterday' => 'prekjuče',\n    'diff_after_tomorrow' => 'preksutra',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[danas u] LT',\n        'nextDay' => '[sutra u] LT',\n        'nextWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[u nedelju u] LT',\n            3 => '[u sredu u] LT',\n            6 => '[u subotu u] LT',\n            default => '[u] dddd [u] LT',\n        },\n        'lastDay' => '[juče u] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[prošle nedelje u] LT',\n            1 => '[prošlog ponedeljka u] LT',\n            2 => '[prošlog utorka u] LT',\n            3 => '[prošle srede u] LT',\n            4 => '[prošlog četvrtka u] LT',\n            5 => '[prošlog petka u] LT',\n            default => '[prošle subote u] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['januar', 'februar', 'mart', 'april', 'maj', 'jun', 'jul', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'],\n    'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj', 'jun', 'jul', 'avg.', 'sep.', 'okt.', 'nov.', 'dec.'],\n    'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'],\n    'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sre.', 'čet.', 'pet.', 'sub.'],\n    'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' i '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Cyrl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - shaishavgandhi05\n * - Serhan Apaydın\n * - JD Isaacks\n * - Glavić\n * - Nikola Zeravcic\n * - Milos Sakovic\n */\n\nuse Carbon\\CarbonInterface;\n\nreturn [\n    'year' => ':count година|:count године|:count година',\n    'y' => ':count г.',\n    'month' => ':count месец|:count месеца|:count месеци',\n    'm' => ':count м.',\n    'week' => ':count недеља|:count недеље|:count недеља',\n    'w' => ':count нед.',\n    'day' => ':count дан|:count дана|:count дана',\n    'd' => ':count д.',\n    'hour' => ':count сат|:count сата|:count сати',\n    'h' => ':count ч.',\n    'minute' => ':count минут|:count минута|:count минута',\n    'min' => ':count мин.',\n    'second' => ':count секунд|:count секунде|:count секунди',\n    's' => ':count сек.',\n    'ago' => 'пре :time',\n    'from_now' => 'за :time',\n    'after' => ':time након',\n    'before' => ':time пре',\n    'year_from_now' => ':count годину|:count године|:count година',\n    'year_ago' => ':count годину|:count године|:count година',\n    'week_from_now' => ':count недељу|:count недеље|:count недеља',\n    'week_ago' => ':count недељу|:count недеље|:count недеља',\n    'diff_now' => 'управо сада',\n    'diff_today' => 'данас',\n    'diff_today_regexp' => 'данас(?:\\\\s+у)?',\n    'diff_yesterday' => 'јуче',\n    'diff_yesterday_regexp' => 'јуче(?:\\\\s+у)?',\n    'diff_tomorrow' => 'сутра',\n    'diff_tomorrow_regexp' => 'сутра(?:\\\\s+у)?',\n    'diff_before_yesterday' => 'прекјуче',\n    'diff_after_tomorrow' => 'прекосутра',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[данас у] LT',\n        'nextDay' => '[сутра у] LT',\n        'nextWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[у недељу у] LT',\n            3 => '[у среду у] LT',\n            6 => '[у суботу у] LT',\n            default => '[у] dddd [у] LT',\n        },\n        'lastDay' => '[јуче у] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[прошле недеље у] LT',\n            1 => '[прошлог понедељка у] LT',\n            2 => '[прошлог уторка у] LT',\n            3 => '[прошле среде у] LT',\n            4 => '[прошлог четвртка у] LT',\n            5 => '[прошлог петка у] LT',\n            default => '[прошле суботе у] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['јануар', 'фебруар', 'март', 'април', 'мај', 'јун', 'јул', 'август', 'септембар', 'октобар', 'новембар', 'децембар'],\n    'months_short' => ['јан.', 'феб.', 'мар.', 'апр.', 'мај', 'јун', 'јул', 'авг.', 'сеп.', 'окт.', 'нов.', 'дец.'],\n    'weekdays' => ['недеља', 'понедељак', 'уторак', 'среда', 'четвртак', 'петак', 'субота'],\n    'weekdays_short' => ['нед.', 'пон.', 'уто.', 'сре.', 'чет.', 'пет.', 'суб.'],\n    'weekdays_min' => ['не', 'по', 'ут', 'ср', 'че', 'пе', 'су'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' и '],\n    'meridiem' => ['АМ', 'ПМ'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Cyrl_BA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'sr');\n    }, 'sr_Cyrl_BA');\n}\n// @codeCoverageIgnoreEnd\n\nreturn array_replace_recursive(require __DIR__.'/sr_Cyrl.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D.M.yy.',\n        'LL' => 'DD.MM.YYYY.',\n        'LLL' => 'DD. MMMM YYYY. HH:mm',\n        'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm',\n    ],\n    'weekdays' => ['недјеља', 'понедељак', 'уторак', 'сриједа', 'четвртак', 'петак', 'субота'],\n    'weekdays_short' => ['нед.', 'пон.', 'ут.', 'ср.', 'чет.', 'пет.', 'суб.'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Cyrl_ME.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Glavić\n * - Milos Sakovic\n */\n\nuse Carbon\\CarbonInterface;\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'sr');\n    }, 'sr_Cyrl_ME');\n}\n// @codeCoverageIgnoreEnd\n\nreturn [\n    'year' => ':count година|:count године|:count година',\n    'y' => ':count г.',\n    'month' => ':count мјесец|:count мјесеца|:count мјесеци',\n    'm' => ':count мј.',\n    'week' => ':count недјеља|:count недјеље|:count недјеља',\n    'w' => ':count нед.',\n    'day' => ':count дан|:count дана|:count дана',\n    'd' => ':count д.',\n    'hour' => ':count сат|:count сата|:count сати',\n    'h' => ':count ч.',\n    'minute' => ':count минут|:count минута|:count минута',\n    'min' => ':count мин.',\n    'second' => ':count секунд|:count секунде|:count секунди',\n    's' => ':count сек.',\n    'ago' => 'прије :time',\n    'from_now' => 'за :time',\n    'after' => ':time након',\n    'before' => ':time прије',\n\n    'year_from_now' => ':count годину|:count године|:count година',\n    'year_ago' => ':count годину|:count године|:count година',\n\n    'week_from_now' => ':count недјељу|:count недјеље|:count недјеља',\n    'week_ago' => ':count недјељу|:count недјеље|:count недјеља',\n\n    'diff_now' => 'управо сада',\n    'diff_today' => 'данас',\n    'diff_today_regexp' => 'данас(?:\\\\s+у)?',\n    'diff_yesterday' => 'јуче',\n    'diff_yesterday_regexp' => 'јуче(?:\\\\s+у)?',\n    'diff_tomorrow' => 'сутра',\n    'diff_tomorrow_regexp' => 'сутра(?:\\\\s+у)?',\n    'diff_before_yesterday' => 'прекјуче',\n    'diff_after_tomorrow' => 'прекосјутра',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM YYYY',\n        'LLL' => 'D. MMMM YYYY H:mm',\n        'LLLL' => 'dddd, D. MMMM YYYY H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[данас у] LT',\n        'nextDay' => '[сутра у] LT',\n        'nextWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[у недељу у] LT',\n            3 => '[у среду у] LT',\n            6 => '[у суботу у] LT',\n            default => '[у] dddd [у] LT',\n        },\n        'lastDay' => '[јуче у] LT',\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[прошле недеље у] LT',\n            1 => '[прошлог понедељка у] LT',\n            2 => '[прошлог уторка у] LT',\n            3 => '[прошле среде у] LT',\n            4 => '[прошлог четвртка у] LT',\n            5 => '[прошлог петка у] LT',\n            default => '[прошле суботе у] LT',\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['јануар', 'фебруар', 'март', 'април', 'мај', 'јун', 'јул', 'август', 'септембар', 'октобар', 'новембар', 'децембар'],\n    'months_short' => ['јан.', 'феб.', 'мар.', 'апр.', 'мај', 'јун', 'јул', 'авг.', 'сеп.', 'окт.', 'нов.', 'дец.'],\n    'weekdays' => ['недеља', 'понедељак', 'уторак', 'среда', 'четвртак', 'петак', 'субота'],\n    'weekdays_short' => ['нед.', 'пон.', 'уто.', 'сре.', 'чет.', 'пет.', 'суб.'],\n    'weekdays_min' => ['не', 'по', 'ут', 'ср', 'че', 'пе', 'су'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' и '],\n    'meridiem' => ['АМ', 'ПМ'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Cyrl_XK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'sr');\n    }, 'sr_Cyrl_XK');\n}\n// @codeCoverageIgnoreEnd\n\nreturn array_replace_recursive(require __DIR__.'/sr_Cyrl_BA.php', [\n    'weekdays' => ['недеља', 'понедељак', 'уторак', 'среда', 'четвртак', 'петак', 'субота'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Latn_BA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'sr');\n    }, 'sr_Latn_BA');\n}\n// @codeCoverageIgnoreEnd\n\nreturn array_replace_recursive(require __DIR__.'/sr_Latn.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D.M.yy.',\n        'LL' => 'DD.MM.YYYY.',\n        'LLL' => 'DD. MMMM YYYY. HH:mm',\n        'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm',\n    ],\n    'weekdays' => ['nedjelja', 'ponedeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],\n    'weekdays_short' => ['ned.', 'pon.', 'ut.', 'sr.', 'čet.', 'pet.', 'sub.'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Latn_ME.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Glavić\n * - Milos Sakovic\n */\n\nuse Carbon\\CarbonInterface;\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'sr');\n    }, 'sr_Latn_ME');\n}\n// @codeCoverageIgnoreEnd\n\nreturn array_replace_recursive(require __DIR__.'/sr.php', [\n    'month' => ':count mjesec|:count mjeseca|:count mjeseci',\n    'week' => ':count nedjelja|:count nedjelje|:count nedjelja',\n    'second' => ':count sekund|:count sekunde|:count sekundi',\n    'ago' => 'prije :time',\n    'from_now' => 'za :time',\n    'after' => ':time nakon',\n    'before' => ':time prije',\n    'week_from_now' => ':count nedjelju|:count nedjelje|:count nedjelja',\n    'week_ago' => ':count nedjelju|:count nedjelje|:count nedjelja',\n    'second_ago' => ':count sekund|:count sekunde|:count sekundi',\n    'diff_tomorrow' => 'sjutra',\n    'calendar' => [\n        'nextDay' => '[sjutra u] LT',\n        'nextWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[u nedjelju u] LT',\n            3 => '[u srijedu u] LT',\n            6 => '[u subotu u] LT',\n            default => '[u] dddd [u] LT',\n        },\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0 => '[prošle nedjelje u] LT',\n            1 => '[prošle nedjelje u] LT',\n            2 => '[prošlog utorka u] LT',\n            3 => '[prošle srijede u] LT',\n            4 => '[prošlog četvrtka u] LT',\n            5 => '[prošlog petka u] LT',\n            default => '[prošle subote u] LT',\n        },\n    ],\n    'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],\n    'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sr_Latn_XK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Symfony\\Component\\Translation\\PluralizationRules;\n\n// @codeCoverageIgnoreStart\nif (class_exists(PluralizationRules::class)) {\n    PluralizationRules::set(static function ($number) {\n        return PluralizationRules::get($number, 'sr');\n    }, 'sr_Latn_XK');\n}\n// @codeCoverageIgnoreEnd\n\nreturn array_replace_recursive(require __DIR__.'/sr_Latn_BA.php', [\n    'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sr_ME.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sr_Latn_ME.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sr_RS.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - sr_YU, sr_CS locale Danilo Segan bug-glibc-locales@gnu.org\n */\nreturn require __DIR__.'/sr_Cyrl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sr_RS@latin.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ss.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Nicolai Davies\n */\nreturn [\n    'year' => '{1}umnyaka|:count iminyaka',\n    'month' => '{1}inyanga|:count tinyanga',\n    'week' => '{1}:count liviki|:count emaviki',\n    'day' => '{1}lilanga|:count emalanga',\n    'hour' => '{1}lihora|:count emahora',\n    'minute' => '{1}umzuzu|:count emizuzu',\n    'second' => '{1}emizuzwana lomcane|:count mzuzwana',\n    'ago' => 'wenteka nga :time',\n    'from_now' => 'nga :time',\n    'diff_yesterday' => 'Itolo',\n    'diff_yesterday_regexp' => 'Itolo(?:\\\\s+nga)?',\n    'diff_today' => 'Namuhla',\n    'diff_today_regexp' => 'Namuhla(?:\\\\s+nga)?',\n    'diff_tomorrow' => 'Kusasa',\n    'diff_tomorrow_regexp' => 'Kusasa(?:\\\\s+nga)?',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm A',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm A',\n    ],\n    'calendar' => [\n        'sameDay' => '[Namuhla nga] LT',\n        'nextDay' => '[Kusasa nga] LT',\n        'nextWeek' => 'dddd [nga] LT',\n        'lastDay' => '[Itolo nga] LT',\n        'lastWeek' => 'dddd [leliphelile] [nga] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        $lastDigit = $number % 10;\n\n        return $number.(\n            ((int) ($number % 100 / 10) === 1) ? 'e' : (\n                ($lastDigit === 1 || $lastDigit === 2) ? 'a' : 'e'\n            )\n        );\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 11) {\n            return 'ekuseni';\n        }\n        if ($hour < 15) {\n            return 'emini';\n        }\n        if ($hour < 19) {\n            return 'entsambama';\n        }\n\n        return 'ebusuku';\n    },\n    'months' => ['Bhimbidvwane', 'Indlovana', 'Indlov\\'lenkhulu', 'Mabasa', 'Inkhwekhweti', 'Inhlaba', 'Kholwane', 'Ingci', 'Inyoni', 'Imphala', 'Lweti', 'Ingongoni'],\n    'months_short' => ['Bhi', 'Ina', 'Inu', 'Mab', 'Ink', 'Inh', 'Kho', 'Igc', 'Iny', 'Imp', 'Lwe', 'Igo'],\n    'weekdays' => ['Lisontfo', 'Umsombuluko', 'Lesibili', 'Lesitsatfu', 'Lesine', 'Lesihlanu', 'Umgcibelo'],\n    'weekdays_short' => ['Lis', 'Umb', 'Lsb', 'Les', 'Lsi', 'Lsh', 'Umg'],\n    'weekdays_min' => ['Li', 'Us', 'Lb', 'Lt', 'Ls', 'Lh', 'Ug'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ss_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/ss.php';\n"
  },
  {
    "path": "src/Carbon/Lang/st.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/st_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/st_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Pherekgong', 'Hlakola', 'Tlhakubele', 'Mmese', 'Motsheanong', 'Phupjane', 'Phupu', 'Phato', 'Leotse', 'Mphalane', 'Pudungwana', 'Tshitwe'],\n    'months_short' => ['Phe', 'Hla', 'TlH', 'Mme', 'Mot', 'Jan', 'Upu', 'Pha', 'Leo', 'Mph', 'Pud', 'Tsh'],\n    'weekdays' => ['Sontaha', 'Mantaha', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Moqebelo'],\n    'weekdays_short' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'],\n    'weekdays_min' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'week' => ':count Sontaha', // less reliable\n    'w' => ':count Sontaha', // less reliable\n    'a_week' => ':count Sontaha', // less reliable\n\n    'day' => ':count letsatsi', // less reliable\n    'd' => ':count letsatsi', // less reliable\n    'a_day' => ':count letsatsi', // less reliable\n\n    'hour' => ':count sešupanako', // less reliable\n    'h' => ':count sešupanako', // less reliable\n    'a_hour' => ':count sešupanako', // less reliable\n\n    'minute' => ':count menyane', // less reliable\n    'min' => ':count menyane', // less reliable\n    'a_minute' => ':count menyane', // less reliable\n\n    'second' => ':count thusa', // less reliable\n    's' => ':count thusa', // less reliable\n    'a_second' => ':count thusa', // less reliable\n\n    'year' => ':count selemo',\n    'y' => ':count selemo',\n    'a_year' => ':count selemo',\n\n    'month' => ':count kgwedi',\n    'm' => ':count kgwedi',\n    'a_month' => ':count kgwedi',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sv.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Kristoffer Snabb\n * - JD Isaacks\n * - Jens Herlevsen\n * - Nightpine\n * - Anders Nygren (litemerafrukt)\n */\nreturn [\n    'year' => ':count år',\n    'a_year' => 'ett år|:count år',\n    'y' => ':count år',\n    'month' => ':count månad|:count månader',\n    'a_month' => 'en månad|:count månader',\n    'm' => ':count mån',\n    'week' => ':count vecka|:count veckor',\n    'a_week' => 'en vecka|:count veckor',\n    'w' => ':count v',\n    'day' => ':count dag|:count dagar',\n    'a_day' => 'en dag|:count dagar',\n    'd' => ':count dgr',\n    'hour' => ':count timme|:count timmar',\n    'a_hour' => 'en timme|:count timmar',\n    'h' => ':count tim',\n    'minute' => ':count minut|:count minuter',\n    'a_minute' => 'en minut|:count minuter',\n    'min' => ':count min',\n    'second' => ':count sekund|:count sekunder',\n    'a_second' => 'några sekunder|:count sekunder',\n    's' => ':count s',\n    'ago' => 'för :time sedan',\n    'from_now' => 'om :time',\n    'after' => ':time efter',\n    'before' => ':time före',\n    'diff_now' => 'nu',\n    'diff_today' => 'I dag',\n    'diff_yesterday' => 'i går',\n    'diff_yesterday_regexp' => 'I går',\n    'diff_tomorrow' => 'i morgon',\n    'diff_tomorrow_regexp' => 'I morgon',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY [kl.] HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY [kl.] HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[I dag] LT',\n        'nextDay' => '[I morgon] LT',\n        'nextWeek' => '[På] dddd LT',\n        'lastDay' => '[I går] LT',\n        'lastWeek' => '[I] dddd[s] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        $lastDigit = $number % 10;\n\n        return $number.(\n            ((int) ($number % 100 / 10) === 1) ? 'e' : (\n                ($lastDigit === 1 || $lastDigit === 2) ? 'a' : 'e'\n            )\n        );\n    },\n    'months' => ['januari', 'februari', 'mars', 'april', 'maj', 'juni', 'juli', 'augusti', 'september', 'oktober', 'november', 'december'],\n    'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],\n    'weekdays' => ['söndag', 'måndag', 'tisdag', 'onsdag', 'torsdag', 'fredag', 'lördag'],\n    'weekdays_short' => ['sön', 'mån', 'tis', 'ons', 'tors', 'fre', 'lör'],\n    'weekdays_min' => ['sö', 'må', 'ti', 'on', 'to', 'fr', 'lö'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' och '],\n    'meridiem' => ['fm', 'em'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sv_AX.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/sv.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sv_FI.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sv.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sv_SE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/sv.php';\n"
  },
  {
    "path": "src/Carbon/Lang/sw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - leyluj\n * - Josh Soref\n * - ryanhart2\n */\nreturn [\n    'year' => 'mwaka :count|miaka :count',\n    'a_year' => 'mwaka mmoja|miaka :count',\n    'y' => 'mwaka :count|miaka :count',\n    'month' => 'mwezi :count|miezi :count',\n    'a_month' => 'mwezi mmoja|miezi :count',\n    'm' => 'mwezi :count|miezi :count',\n    'week' => 'wiki :count',\n    'a_week' => 'wiki mmoja|wiki :count',\n    'w' => 'w. :count',\n    'day' => 'siku :count',\n    'a_day' => 'siku moja|masiku :count',\n    'd' => 'si. :count',\n    'hour' => 'saa :count|masaa :count',\n    'a_hour' => 'saa limoja|masaa :count',\n    'h' => 'saa :count|masaa :count',\n    'minute' => 'dakika :count',\n    'a_minute' => 'dakika moja|dakika :count',\n    'min' => 'd. :count',\n    'second' => 'sekunde :count',\n    'a_second' => 'hivi punde|sekunde :count',\n    's' => 'se. :count',\n    'ago' => 'tokea :time',\n    'from_now' => ':time baadaye',\n    'after' => ':time baada',\n    'before' => ':time kabla',\n    'diff_now' => 'sasa hivi',\n    'diff_today' => 'leo',\n    'diff_today_regexp' => 'leo(?:\\\\s+saa)?',\n    'diff_yesterday' => 'jana',\n    'diff_tomorrow' => 'kesho',\n    'diff_tomorrow_regexp' => 'kesho(?:\\\\s+saa)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[leo saa] LT',\n        'nextDay' => '[kesho saa] LT',\n        'nextWeek' => '[wiki ijayo] dddd [saat] LT',\n        'lastDay' => '[jana] LT',\n        'lastWeek' => '[wiki iliyopita] dddd [saat] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Jpl', 'Jtat', 'Jnne', 'Jtan', 'Alh', 'Ijm', 'Jmos'],\n    'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' na '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/sw_CD.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/sw.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sw_KE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kamusi Project Martin Benjamin locales@kamusi.org\n */\nreturn array_replace_recursive(require __DIR__.'/sw.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],\n    'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['asubuhi', 'alasiri'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sw_TZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kamusi Project Martin Benjamin locales@kamusi.org\n */\nreturn array_replace_recursive(require __DIR__.'/sw.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],\n    'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['asubuhi', 'alasiri'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/sw_UG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/sw.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/szl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/szl_PL.php';\n"
  },
  {
    "path": "src/Carbon/Lang/szl_PL.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - szl_PL locale Przemyslaw Buczkowski libc-alpha@sourceware.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['styczyń', 'luty', 'merc', 'kwjeciyń', 'moj', 'czyrwjyń', 'lipjyń', 'siyrpjyń', 'wrzesiyń', 'październik', 'listopad', 'grudziyń'],\n    'months_short' => ['sty', 'lut', 'mer', 'kwj', 'moj', 'czy', 'lip', 'siy', 'wrz', 'paź', 'lis', 'gru'],\n    'weekdays' => ['niydziela', 'pyńdziŏek', 'wtŏrek', 'strzŏda', 'sztwortek', 'pjōntek', 'sobŏta'],\n    'weekdays_short' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'],\n    'weekdays_min' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count rok',\n    'y' => ':count rok',\n    'a_year' => ':count rok',\n\n    'month' => ':count mjeśůnc',\n    'm' => ':count mjeśůnc',\n    'a_month' => ':count mjeśůnc',\n\n    'week' => ':count tydźyń',\n    'w' => ':count tydźyń',\n    'a_week' => ':count tydźyń',\n\n    'day' => ':count dźyń',\n    'd' => ':count dźyń',\n    'a_day' => ':count dźyń',\n\n    'hour' => ':count godzina',\n    'h' => ':count godzina',\n    'a_hour' => ':count godzina',\n\n    'minute' => ':count minuta',\n    'min' => ':count minuta',\n    'a_minute' => ':count minuta',\n\n    'second' => ':count sekůnda',\n    's' => ':count sekůnda',\n    'a_second' => ':count sekůnda',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ta.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - François B\n * - JD Isaacks\n * - Satheez\n */\nreturn [\n    'year' => ':count வருடம்|:count ஆண்டுகள்',\n    'a_year' => 'ஒரு வருடம்|:count ஆண்டுகள்',\n    'y' => ':count வருட.|:count ஆண்.',\n    'month' => ':count மாதம்|:count மாதங்கள்',\n    'a_month' => 'ஒரு மாதம்|:count மாதங்கள்',\n    'm' => ':count மாத.',\n    'week' => ':count வாரம்|:count வாரங்கள்',\n    'a_week' => 'ஒரு வாரம்|:count வாரங்கள்',\n    'w' => ':count வார.',\n    'day' => ':count நாள்|:count நாட்கள்',\n    'a_day' => 'ஒரு நாள்|:count நாட்கள்',\n    'd' => ':count நாள்|:count நாட்.',\n    'hour' => ':count மணி நேரம்|:count மணி நேரம்',\n    'a_hour' => 'ஒரு மணி நேரம்|:count மணி நேரம்',\n    'h' => ':count மணி.',\n    'minute' => ':count நிமிடம்|:count நிமிடங்கள்',\n    'a_minute' => 'ஒரு நிமிடம்|:count நிமிடங்கள்',\n    'min' => ':count நிமி.',\n    'second' => ':count சில விநாடிகள்|:count விநாடிகள்',\n    'a_second' => 'ஒரு சில விநாடிகள்|:count விநாடிகள்',\n    's' => ':count விநா.',\n    'ago' => ':time முன்',\n    'from_now' => ':time இல்',\n    'before' => ':time முன்',\n    'after' => ':time பின்',\n    'diff_now' => 'இப்போது',\n    'diff_today' => 'இன்று',\n    'diff_yesterday' => 'நேற்று',\n    'diff_tomorrow' => 'நாளை',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[இன்று] LT',\n        'nextDay' => '[நாளை] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[நேற்று] LT',\n        'lastWeek' => '[கடந்த வாரம்] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberவது',\n    'meridiem' => static function ($hour) {\n        if ($hour < 2) {\n            return ' யாமம்';\n        }\n        if ($hour < 6) {\n            return ' வைகறை';\n        }\n        if ($hour < 10) {\n            return ' காலை';\n        }\n        if ($hour < 14) {\n            return ' நண்பகல்';\n        }\n        if ($hour < 18) {\n            return ' எற்பாடு';\n        }\n        if ($hour < 22) {\n            return ' மாலை';\n        }\n\n        return ' யாமம்';\n    },\n    'months' => ['ஜனவரி', 'பிப்ரவரி', 'மார்ச்', 'ஏப்ரல்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆகஸ்ட்', 'செப்டெம்பர்', 'அக்டோபர்', 'நவம்பர்', 'டிசம்பர்'],\n    'months_short' => ['ஜனவரி', 'பிப்ரவரி', 'மார்ச்', 'ஏப்ரல்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆகஸ்ட்', 'செப்டெம்பர்', 'அக்டோபர்', 'நவம்பர்', 'டிசம்பர்'],\n    'weekdays' => ['ஞாயிற்றுக்கிழமை', 'திங்கட்கிழமை', 'செவ்வாய்கிழமை', 'புதன்கிழமை', 'வியாழக்கிழமை', 'வெள்ளிக்கிழமை', 'சனிக்கிழமை'],\n    'weekdays_short' => ['ஞாயிறு', 'திங்கள்', 'செவ்வாய்', 'புதன்', 'வியாழன்', 'வெள்ளி', 'சனி'],\n    'weekdays_min' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' மற்றும் '],\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ta_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/ta.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['ஜனவரி', 'பிப்ரவரி', 'மார்ச்', 'ஏப்ரல்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆகஸ்ட்', 'செப்டம்பர்', 'அக்டோபர்', 'நவம்பர்', 'டிசம்பர்'],\n    'months_short' => ['ஜன.', 'பிப்.', 'மார்.', 'ஏப்.', 'மே', 'ஜூன்', 'ஜூலை', 'ஆக.', 'செப்.', 'அக்.', 'நவ.', 'டிச.'],\n    'weekdays' => ['ஞாயிறு', 'திங்கள்', 'செவ்வாய்', 'புதன்', 'வியாழன்', 'வெள்ளி', 'சனி'],\n    'weekdays_short' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'weekdays_min' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['காலை', 'மாலை'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ta_LK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - J.Yogaraj 94-777-315206 yogaraj.ubuntu@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/ta.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['ஜனவரி', 'பிப்ரவரி', 'மார்ச்', 'ஏப்ரல்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆகஸ்ட்', 'செப்டம்பர்', 'அக்டோபர்', 'நவம்பர்', 'டிசம்பர்'],\n    'months_short' => ['ஜன', 'பிப்', 'மார்', 'ஏப்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆக', 'செப்', 'அக்', 'நவ', 'டிச'],\n    'weekdays' => ['ஞாயிறு', 'திங்கள்', 'செவ்வாய்', 'புதன்', 'வியாழன்', 'வெள்ளி', 'சனி'],\n    'weekdays_short' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'weekdays_min' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['காலை', 'மாலை'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ta_MY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ta.php', [\n    'formats' => [\n        'LT' => 'a h:mm',\n        'LTS' => 'a h:mm:ss',\n        'L' => 'D/M/yy',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM, YYYY, a h:mm',\n        'LLLL' => 'dddd, D MMMM, YYYY, a h:mm',\n    ],\n    'months' => ['ஜனவரி', 'பிப்ரவரி', 'மார்ச்', 'ஏப்ரல்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆகஸ்ட்', 'செப்டம்பர்', 'அக்டோபர்', 'நவம்பர்', 'டிசம்பர்'],\n    'months_short' => ['ஜன.', 'பிப்.', 'மார்.', 'ஏப்.', 'மே', 'ஜூன்', 'ஜூலை', 'ஆக.', 'செப்.', 'அக்.', 'நவ.', 'டிச.'],\n    'weekdays' => ['ஞாயிறு', 'திங்கள்', 'செவ்வாய்', 'புதன்', 'வியாழன்', 'வெள்ளி', 'சனி'],\n    'weekdays_short' => ['ஞாயி.', 'திங்.', 'செவ்.', 'புத.', 'வியா.', 'வெள்.', 'சனி'],\n    'weekdays_min' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'first_day_of_week' => 1,\n    'meridiem' => ['மு.ப', 'பி.ப'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ta_SG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ta.php', [\n    'formats' => [\n        'LT' => 'a h:mm',\n        'LTS' => 'a h:mm:ss',\n        'L' => 'D/M/yy',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM, YYYY, a h:mm',\n        'LLLL' => 'dddd, D MMMM, YYYY, a h:mm',\n    ],\n    'months' => ['ஜனவரி', 'பிப்ரவரி', 'மார்ச்', 'ஏப்ரல்', 'மே', 'ஜூன்', 'ஜூலை', 'ஆகஸ்ட்', 'செப்டம்பர்', 'அக்டோபர்', 'நவம்பர்', 'டிசம்பர்'],\n    'months_short' => ['ஜன.', 'பிப்.', 'மார்.', 'ஏப்.', 'மே', 'ஜூன்', 'ஜூலை', 'ஆக.', 'செப்.', 'அக்.', 'நவ.', 'டிச.'],\n    'weekdays' => ['ஞாயிறு', 'திங்கள்', 'செவ்வாய்', 'புதன்', 'வியாழன்', 'வெள்ளி', 'சனி'],\n    'weekdays_short' => ['ஞாயி.', 'திங்.', 'செவ்.', 'புத.', 'வியா.', 'வெள்.', 'சனி'],\n    'weekdays_min' => ['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'],\n    'meridiem' => ['மு.ப', 'பி.ப'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tcy.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/tcy_IN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tcy_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IndLinux.org, Samsung Electronics Co., Ltd.    alexey.merzlyakov@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['ಜನವರಿ', 'ಫೆಬ್ರುವರಿ', 'ಮಾರ್ಚ್', 'ಏಪ್ರಿಲ್‌‌', 'ಮೇ', 'ಜೂನ್', 'ಜುಲೈ', 'ಆಗಸ್ಟ್', 'ಸೆಪ್ಟೆಂಬರ್‌', 'ಅಕ್ಟೋಬರ್', 'ನವೆಂಬರ್', 'ಡಿಸೆಂಬರ್'],\n    'months_short' => ['ಜ', 'ಫೆ', 'ಮಾ', 'ಏ', 'ಮೇ', 'ಜೂ', 'ಜು', 'ಆ', 'ಸೆ', 'ಅ', 'ನ', 'ಡಿ'],\n    'weekdays' => ['ಐಥಾರ', 'ಸೋಮಾರ', 'ಅಂಗರೆ', 'ಬುಧಾರ', 'ಗುರುವಾರ', 'ಶುಕ್ರರ', 'ಶನಿವಾರ'],\n    'weekdays_short' => ['ಐ', 'ಸೋ', 'ಅಂ', 'ಬು', 'ಗು', 'ಶು', 'ಶ'],\n    'weekdays_min' => ['ಐ', 'ಸೋ', 'ಅಂ', 'ಬು', 'ಗು', 'ಶು', 'ಶ'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ಕಾಂಡೆ', 'ಬಯ್ಯ'],\n\n    'year' => ':count ನೀರ್', // less reliable\n    'y' => ':count ನೀರ್', // less reliable\n    'a_year' => ':count ನೀರ್', // less reliable\n\n    'month' => ':count ಮೀನ್', // less reliable\n    'm' => ':count ಮೀನ್', // less reliable\n    'a_month' => ':count ಮೀನ್', // less reliable\n\n    'day' => ':count ಸುಗ್ಗಿ', // less reliable\n    'd' => ':count ಸುಗ್ಗಿ', // less reliable\n    'a_day' => ':count ಸುಗ್ಗಿ', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/te.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - Josh Soref\n * - François B\n * - kc\n */\nreturn [\n    'year' => ':count సంవత్సరం|:count సంవత్సరాలు',\n    'a_year' => 'ఒక సంవత్సరం|:count సంవత్సరాలు',\n    'y' => ':count సం.',\n    'month' => ':count నెల|:count నెలలు',\n    'a_month' => 'ఒక నెల|:count నెలలు',\n    'm' => ':count నెల|:count నెల.',\n    'week' => ':count వారం|:count వారాలు',\n    'a_week' => 'ఒక వారం|:count వారాలు',\n    'w' => ':count వార.|:count వారా.',\n    'day' => ':count రోజు|:count రోజులు',\n    'a_day' => 'ఒక రోజు|:count రోజులు',\n    'd' => ':count రోజు|:count రోజు.',\n    'hour' => ':count గంట|:count గంటలు',\n    'a_hour' => 'ఒక గంట|:count గంటలు',\n    'h' => ':count గం.',\n    'minute' => ':count నిమిషం|:count నిమిషాలు',\n    'a_minute' => 'ఒక నిమిషం|:count నిమిషాలు',\n    'min' => ':count నిమి.',\n    'second' => ':count సెకను|:count సెకన్లు',\n    'a_second' => 'కొన్ని క్షణాలు|:count సెకన్లు',\n    's' => ':count సెక.',\n    'ago' => ':time క్రితం',\n    'from_now' => ':time లో',\n    'diff_now' => 'ప్రస్తుతం',\n    'diff_today' => 'నేడు',\n    'diff_yesterday' => 'నిన్న',\n    'diff_tomorrow' => 'రేపు',\n    'formats' => [\n        'LT' => 'A h:mm',\n        'LTS' => 'A h:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, A h:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, A h:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[నేడు] LT',\n        'nextDay' => '[రేపు] LT',\n        'nextWeek' => 'dddd, LT',\n        'lastDay' => '[నిన్న] LT',\n        'lastWeek' => '[గత] dddd, LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberవ',\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'రాత్రి';\n        }\n        if ($hour < 10) {\n            return 'ఉదయం';\n        }\n        if ($hour < 17) {\n            return 'మధ్యాహ్నం';\n        }\n        if ($hour < 20) {\n            return 'సాయంత్రం';\n        }\n\n        return ' రాత్రి';\n    },\n    'months' => ['జనవరి', 'ఫిబ్రవరి', 'మార్చి', 'ఏప్రిల్', 'మే', 'జూన్', 'జూలై', 'ఆగస్టు', 'సెప్టెంబర్', 'అక్టోబర్', 'నవంబర్', 'డిసెంబర్'],\n    'months_short' => ['జన.', 'ఫిబ్ర.', 'మార్చి', 'ఏప్రి.', 'మే', 'జూన్', 'జూలై', 'ఆగ.', 'సెప్.', 'అక్టో.', 'నవ.', 'డిసె.'],\n    'weekdays' => ['ఆదివారం', 'సోమవారం', 'మంగళవారం', 'బుధవారం', 'గురువారం', 'శుక్రవారం', 'శనివారం'],\n    'weekdays_short' => ['ఆది', 'సోమ', 'మంగళ', 'బుధ', 'గురు', 'శుక్ర', 'శని'],\n    'weekdays_min' => ['ఆ', 'సో', 'మం', 'బు', 'గు', 'శు', 'శ'],\n    'list' => ', ',\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'weekend' => [0, 0],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/te_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/te.php';\n"
  },
  {
    "path": "src/Carbon/Lang/teo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ta.php', [\n    'meridiem' => ['Taparachu', 'Ebongi'],\n    'weekdays' => ['Nakaejuma', 'Nakaebarasa', 'Nakaare', 'Nakauni', 'Nakaung’on', 'Nakakany', 'Nakasabiti'],\n    'weekdays_short' => ['Jum', 'Bar', 'Aar', 'Uni', 'Ung', 'Kan', 'Sab'],\n    'weekdays_min' => ['Jum', 'Bar', 'Aar', 'Uni', 'Ung', 'Kan', 'Sab'],\n    'months' => ['Orara', 'Omuk', 'Okwamg’', 'Odung’el', 'Omaruk', 'Omodok’king’ol', 'Ojola', 'Opedel', 'Osokosokoma', 'Otibar', 'Olabor', 'Opoo'],\n    'months_short' => ['Rar', 'Muk', 'Kwa', 'Dun', 'Mar', 'Mod', 'Jol', 'Ped', 'Sok', 'Tib', 'Lab', 'Poo'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/teo_KE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/teo.php', [\n    'first_day_of_week' => 0,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tet.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Joshua Brooks\n * - François B\n */\nreturn [\n    'year' => 'tinan :count',\n    'a_year' => '{1}tinan ida|tinan :count',\n    'month' => 'fulan :count',\n    'a_month' => '{1}fulan ida|fulan :count',\n    'week' => 'semana :count',\n    'a_week' => '{1}semana ida|semana :count',\n    'day' => 'loron :count',\n    'a_day' => '{1}loron ida|loron :count',\n    'hour' => 'oras :count',\n    'a_hour' => '{1}oras ida|oras :count',\n    'minute' => 'minutu :count',\n    'a_minute' => '{1}minutu ida|minutu :count',\n    'second' => 'segundu :count',\n    'a_second' => '{1}segundu balun|segundu :count',\n    'ago' => ':time liuba',\n    'from_now' => 'iha :time',\n    'diff_yesterday' => 'Horiseik',\n    'diff_yesterday_regexp' => 'Horiseik(?:\\\\s+iha)?',\n    'diff_today' => 'Ohin',\n    'diff_today_regexp' => 'Ohin(?:\\\\s+iha)?',\n    'diff_tomorrow' => 'Aban',\n    'diff_tomorrow_regexp' => 'Aban(?:\\\\s+iha)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Ohin iha] LT',\n        'nextDay' => '[Aban iha] LT',\n        'nextWeek' => 'dddd [iha] LT',\n        'lastDay' => '[Horiseik iha] LT',\n        'lastWeek' => 'dddd [semana kotuk] [iha] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':numberº',\n    'months' => ['Janeiru', 'Fevereiru', 'Marsu', 'Abril', 'Maiu', 'Juñu', 'Jullu', 'Agustu', 'Setembru', 'Outubru', 'Novembru', 'Dezembru'],\n    'months_short' => ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],\n    'weekdays' => ['Domingu', 'Segunda', 'Tersa', 'Kuarta', 'Kinta', 'Sesta', 'Sabadu'],\n    'weekdays_short' => ['Dom', 'Seg', 'Ters', 'Kua', 'Kint', 'Sest', 'Sab'],\n    'weekdays_min' => ['Do', 'Seg', 'Te', 'Ku', 'Ki', 'Ses', 'Sa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tg.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Orif N. Jr\n */\nreturn [\n    'year' => '{1}як сол|:count сол',\n    'month' => '{1}як моҳ|:count моҳ',\n    'week' => '{1}як ҳафта|:count ҳафта',\n    'day' => '{1}як рӯз|:count рӯз',\n    'hour' => '{1}як соат|:count соат',\n    'minute' => '{1}як дақиқа|:count дақиқа',\n    'second' => '{1}якчанд сония|:count сония',\n    'ago' => ':time пеш',\n    'from_now' => 'баъди :time',\n    'diff_today' => 'Имрӯз',\n    'diff_yesterday' => 'Дирӯз',\n    'diff_yesterday_regexp' => 'Дирӯз(?:\\\\s+соати)?',\n    'diff_tomorrow' => 'Пагоҳ',\n    'diff_tomorrow_regexp' => 'Пагоҳ(?:\\\\s+соати)?',\n    'diff_today_regexp' => 'Имрӯз(?:\\\\s+соати)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Имрӯз соати] LT',\n        'nextDay' => '[Пагоҳ соати] LT',\n        'nextWeek' => 'dddd[и] [ҳафтаи оянда соати] LT',\n        'lastDay' => '[Дирӯз соати] LT',\n        'lastWeek' => 'dddd[и] [ҳафтаи гузашта соати] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number) {\n        if ($number === 0) { // special case for zero\n            return \"$number-ıncı\";\n        }\n\n        static $suffixes = [\n            0 => '-ум',\n            1 => '-ум',\n            2 => '-юм',\n            3 => '-юм',\n            4 => '-ум',\n            5 => '-ум',\n            6 => '-ум',\n            7 => '-ум',\n            8 => '-ум',\n            9 => '-ум',\n            10 => '-ум',\n            12 => '-ум',\n            13 => '-ум',\n            20 => '-ум',\n            30 => '-юм',\n            40 => '-ум',\n            50 => '-ум',\n            60 => '-ум',\n            70 => '-ум',\n            80 => '-ум',\n            90 => '-ум',\n            100 => '-ум',\n        ];\n\n        return $number.($suffixes[$number] ?? $suffixes[$number % 10] ?? $suffixes[$number >= 100 ? 100 : -1] ?? '');\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'шаб';\n        }\n        if ($hour < 11) {\n            return 'субҳ';\n        }\n        if ($hour < 16) {\n            return 'рӯз';\n        }\n        if ($hour < 19) {\n            return 'бегоҳ';\n        }\n\n        return 'шаб';\n    },\n    'months' => ['январ', 'феврал', 'март', 'апрел', 'май', 'июн', 'июл', 'август', 'сентябр', 'октябр', 'ноябр', 'декабр'],\n    'months_short' => ['янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'weekdays' => ['якшанбе', 'душанбе', 'сешанбе', 'чоршанбе', 'панҷшанбе', 'ҷумъа', 'шанбе'],\n    'weekdays_short' => ['яшб', 'дшб', 'сшб', 'чшб', 'пшб', 'ҷум', 'шнб'],\n    'weekdays_min' => ['яш', 'дш', 'сш', 'чш', 'пш', 'ҷм', 'шб'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' ва '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tg_TJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/tg.php';\n"
  },
  {
    "path": "src/Carbon/Lang/th.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Nate Whittaker\n * - John MacAslan\n * - Chanintorn Asavavichairoj\n * - JD Isaacks\n * - ROKAISAKKON\n * - RO'KAISAKKON\n * - Andreas Möller\n * - nithisa\n */\nreturn [\n    'year' => ':count ปี',\n    'y' => ':count ปี',\n    'month' => ':count เดือน',\n    'm' => ':count เดือน',\n    'week' => ':count สัปดาห์',\n    'w' => ':count สัปดาห์',\n    'day' => ':count วัน',\n    'd' => ':count วัน',\n    'hour' => ':count ชั่วโมง',\n    'h' => ':count ชั่วโมง',\n    'minute' => ':count นาที',\n    'min' => ':count นาที',\n    'second' => ':count วินาที',\n    'a_second' => '{1}ไม่กี่วินาที|[-Inf,Inf]:count วินาที',\n    's' => ':count วินาที',\n    'ago' => ':timeที่แล้ว',\n    'from_now' => 'อีก :time',\n    'after' => ':timeหลังจากนี้',\n    'before' => ':timeก่อน',\n    'diff_now' => 'ขณะนี้',\n    'diff_today' => 'วันนี้',\n    'diff_today_regexp' => 'วันนี้(?:\\\\s+เวลา)?',\n    'diff_yesterday' => 'เมื่อวาน',\n    'diff_yesterday_regexp' => 'เมื่อวานนี้(?:\\\\s+เวลา)?',\n    'diff_tomorrow' => 'พรุ่งนี้',\n    'diff_tomorrow_regexp' => 'พรุ่งนี้(?:\\\\s+เวลา)?',\n    'formats' => [\n        'LT' => 'H:mm',\n        'LTS' => 'H:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY เวลา H:mm',\n        'LLLL' => 'วันddddที่ D MMMM YYYY เวลา H:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[วันนี้ เวลา] LT',\n        'nextDay' => '[พรุ่งนี้ เวลา] LT',\n        'nextWeek' => 'dddd[หน้า เวลา] LT',\n        'lastDay' => '[เมื่อวานนี้ เวลา] LT',\n        'lastWeek' => '[วัน]dddd[ที่แล้ว เวลา] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ก่อนเที่ยง', 'หลังเที่ยง'],\n    'months' => ['มกราคม', 'กุมภาพันธ์', 'มีนาคม', 'เมษายน', 'พฤษภาคม', 'มิถุนายน', 'กรกฎาคม', 'สิงหาคม', 'กันยายน', 'ตุลาคม', 'พฤศจิกายน', 'ธันวาคม'],\n    'months_short' => ['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.', 'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'],\n    'weekdays' => ['อาทิตย์', 'จันทร์', 'อังคาร', 'พุธ', 'พฤหัสบดี', 'ศุกร์', 'เสาร์'],\n    'weekdays_short' => ['อาทิตย์', 'จันทร์', 'อังคาร', 'พุธ', 'พฤหัส', 'ศุกร์', 'เสาร์'],\n    'weekdays_min' => ['อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.'],\n    'list' => [', ', ' และ '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/th_TH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/th.php';\n"
  },
  {
    "path": "src/Carbon/Lang/the.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/the_NP.php';\n"
  },
  {
    "path": "src/Carbon/Lang/the_NP.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Chitwanix OS Development    info@chitwanix.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'dddd DD MMM YYYY',\n    ],\n    'months' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'months_short' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],\n    'weekdays' => ['आइतबार', 'सोमबार', 'मंगलबार', 'बुधबार', 'बिहिबार', 'शुक्रबार', 'शनिबार'],\n    'weekdays_short' => ['आइत', 'सोम', 'मंगल', 'बुध', 'बिहि', 'शुक्र', 'शनि'],\n    'weekdays_min' => ['आइत', 'सोम', 'मंगल', 'बुध', 'बिहि', 'शुक्र', 'शनि'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['पूर्वाह्न', 'अपराह्न'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ti.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ti_ER.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ti_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጥሪ', 'ለካቲት', 'መጋቢት', 'ሚያዝያ', 'ግንቦት', 'ሰነ', 'ሓምለ', 'ነሓሰ', 'መስከረም', 'ጥቅምቲ', 'ሕዳር', 'ታሕሳስ'],\n    'months_short' => ['ጥሪ ', 'ለካቲ', 'መጋቢ', 'ሚያዝ', 'ግንቦ', 'ሰነ ', 'ሓምለ', 'ነሓሰ', 'መስከ', 'ጥቅም', 'ሕዳር', 'ታሕሳ'],\n    'weekdays' => ['ሰንበት', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],\n    'weekdays_short' => ['ሰንበ', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],\n    'weekdays_min' => ['ሰንበ', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ንጉሆ ሰዓተ', 'ድሕር ሰዓት'],\n\n    'year' => ':count ዓመት',\n    'y' => ':count ዓመት',\n    'a_year' => ':count ዓመት',\n\n    'month' => 'ወርሒ :count',\n    'm' => 'ወርሒ :count',\n    'a_month' => 'ወርሒ :count',\n\n    'week' => ':count ሰሙን',\n    'w' => ':count ሰሙን',\n    'a_week' => ':count ሰሙን',\n\n    'day' => ':count መዓልቲ',\n    'd' => ':count መዓልቲ',\n    'a_day' => ':count መዓልቲ',\n\n    'hour' => ':count ሰዓት',\n    'h' => ':count ሰዓት',\n    'a_hour' => ':count ሰዓት',\n\n    'minute' => ':count ደቒቕ',\n    'min' => ':count ደቒቕ',\n    'a_minute' => ':count ደቒቕ',\n\n    'second' => ':count ሰከንድ',\n    's' => ':count ሰከንድ',\n    'a_second' => ':count ሰከንድ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ti_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጃንዩወሪ', 'ፌብሩወሪ', 'ማርች', 'ኤፕረል', 'ሜይ', 'ጁን', 'ጁላይ', 'ኦገስት', 'ሴፕቴምበር', 'ኦክተውበር', 'ኖቬምበር', 'ዲሴምበር'],\n    'months_short' => ['ጃንዩ', 'ፌብሩ', 'ማርች', 'ኤፕረ', 'ሜይ ', 'ጁን ', 'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክተ', 'ኖቬም', 'ዲሴም'],\n    'weekdays' => ['ሰንበት', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],\n    'weekdays_short' => ['ሰንበ', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],\n    'weekdays_min' => ['ሰንበ', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ንጉሆ ሰዓተ', 'ድሕር ሰዓት'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tig.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/tig_ER.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tig_ER.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጥሪ', 'ለካቲት', 'መጋቢት', 'ሚያዝያ', 'ግንቦት', 'ሰነ', 'ሓምለ', 'ነሓሰ', 'መስከረም', 'ጥቅምቲ', 'ሕዳር', 'ታሕሳስ'],\n    'months_short' => ['ጥሪ ', 'ለካቲ', 'መጋቢ', 'ሚያዝ', 'ግንቦ', 'ሰነ ', 'ሓምለ', 'ነሓሰ', 'መስከ', 'ጥቅም', 'ሕዳር', 'ታሕሳ'],\n    'weekdays' => ['ሰንበት ዓባይ', 'ሰኖ', 'ታላሸኖ', 'ኣረርባዓ', 'ከሚሽ', 'ጅምዓት', 'ሰንበት ንኢሽ'],\n    'weekdays_short' => ['ሰ//ዓ', 'ሰኖ ', 'ታላሸ', 'ኣረር', 'ከሚሽ', 'ጅምዓ', 'ሰ//ን'],\n    'weekdays_min' => ['ሰ//ዓ', 'ሰኖ ', 'ታላሸ', 'ኣረር', 'ከሚሽ', 'ጅምዓ', 'ሰ//ን'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ቀደም ሰር ምዕል', 'ሓቆ ሰር ምዕል'],\n\n    'year' => ':count ማይ', // less reliable\n    'y' => ':count ማይ', // less reliable\n    'a_year' => ':count ማይ', // less reliable\n\n    'month' => ':count ሸምሽ', // less reliable\n    'm' => ':count ሸምሽ', // less reliable\n    'a_month' => ':count ሸምሽ', // less reliable\n\n    'week' => ':count ሰቡዕ', // less reliable\n    'w' => ':count ሰቡዕ', // less reliable\n    'a_week' => ':count ሰቡዕ', // less reliable\n\n    'day' => ':count ዎሮ', // less reliable\n    'd' => ':count ዎሮ', // less reliable\n    'a_day' => ':count ዎሮ', // less reliable\n\n    'hour' => ':count ሰዓት', // less reliable\n    'h' => ':count ሰዓት', // less reliable\n    'a_hour' => ':count ሰዓት', // less reliable\n\n    'minute' => ':count ካልኣይት', // less reliable\n    'min' => ':count ካልኣይት', // less reliable\n    'a_minute' => ':count ካልኣይት', // less reliable\n\n    'second' => ':count ካልኣይ',\n    's' => ':count ካልኣይ',\n    'a_second' => ':count ካልኣይ',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tk.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/tk_TM.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tk_TM.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/**\n * Authors:\n * - Ghorban M. Tavakoly Pablo Saratxaga & Ghorban M. Tavakoly pablo@walon.org & gmt314@yahoo.com\n * - SuperManPHP\n * - Maksat Meredow (isadma)\n */\n$transformDiff = static fn (string $input) => strtr($input, [\n    'sekunt' => 'sekunt',\n    'hepde' => 'hepde',\n]);\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Ýanwar', 'Fewral', 'Mart', 'Aprel', 'Maý', 'Iýun', 'Iýul', 'Awgust', 'Sentýabr', 'Oktýabr', 'Noýabr', 'Dekabr'],\n    'months_short' => ['Ýan', 'Few', 'Mar', 'Apr', 'Maý', 'Iýn', 'Iýl', 'Awg', 'Sen', 'Okt', 'Noý', 'Dek'],\n    'weekdays' => ['Ýekşenbe', 'Duşenbe', 'Sişenbe', 'Çarşenbe', 'Penşenbe', 'Anna', 'Şenbe'],\n    'weekdays_short' => ['Ýek', 'Duş', 'Siş', 'Çar', 'Pen', 'Ann', 'Şen'],\n    'weekdays_min' => ['Ýe', 'Du', 'Si', 'Ça', 'Pe', 'An', 'Şe'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count ýyl',\n    'y' => ':count ýyl',\n    'a_year' => ':count ýyl',\n\n    'month' => ':count aý',\n    'm' => ':count aý',\n    'a_month' => ':count aý',\n\n    'week' => ':count hepde',\n    'w' => ':count hepde',\n    'a_week' => ':count hepde',\n\n    'day' => ':count gün',\n    'd' => ':count gün',\n    'a_day' => ':count gün',\n\n    'hour' => ':count sagat',\n    'h' => ':count sagat',\n    'a_hour' => ':count sagat',\n\n    'minute' => ':count minut',\n    'min' => ':count minut',\n    'a_minute' => ':count minut',\n\n    'second' => ':count sekunt',\n    's' => ':count sekunt',\n    'a_second' => ':count sekunt',\n\n    'ago' => static fn (string $time) => $transformDiff($time).' ozal',\n    'from_now' => static fn (string $time) => $transformDiff($time).' soňra',\n    'after' => static fn (string $time) => $transformDiff($time).' soň',\n    'before' => static fn (string $time) => $transformDiff($time).' öň',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn [\n    'year' => ':count taon',\n    'a_year' => '{1}isang taon|:count taon',\n    'month' => ':count buwan',\n    'a_month' => '{1}isang buwan|:count buwan',\n    'week' => ':count linggo',\n    'a_week' => '{1}isang linggo|:count linggo',\n    'day' => ':count araw',\n    'a_day' => '{1}isang araw|:count araw',\n    'hour' => ':count oras',\n    'a_hour' => '{1}isang oras|:count oras',\n    'minute' => ':count minuto',\n    'a_minute' => '{1}isang minuto|:count minuto',\n    'min' => ':count min.',\n    'second' => ':count segundo',\n    'a_second' => '{1}ilang segundo|:count segundo',\n    's' => ':count seg.',\n    'ago' => ':time ang nakalipas',\n    'from_now' => 'sa loob ng :time',\n    'diff_now' => 'ngayon',\n    'diff_today' => 'ngayong',\n    'diff_today_regexp' => 'ngayong(?:\\\\s+araw)?',\n    'diff_yesterday' => 'kahapon',\n    'diff_tomorrow' => 'bukas',\n    'diff_tomorrow_regexp' => 'Bukas(?:\\\\s+ng)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'MM/D/YYYY',\n        'LL' => 'MMMM D, YYYY',\n        'LLL' => 'MMMM D, YYYY HH:mm',\n        'LLLL' => 'dddd, MMMM DD, YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => 'LT [ngayong araw]',\n        'nextDay' => '[Bukas ng] LT',\n        'nextWeek' => 'LT [sa susunod na] dddd',\n        'lastDay' => 'LT [kahapon]',\n        'lastWeek' => 'LT [noong nakaraang] dddd',\n        'sameElse' => 'L',\n    ],\n    'months' => ['Enero', 'Pebrero', 'Marso', 'Abril', 'Mayo', 'Hunyo', 'Hulyo', 'Agosto', 'Setyembre', 'Oktubre', 'Nobyembre', 'Disyembre'],\n    'months_short' => ['Ene', 'Peb', 'Mar', 'Abr', 'May', 'Hun', 'Hul', 'Ago', 'Set', 'Okt', 'Nob', 'Dis'],\n    'weekdays' => ['Linggo', 'Lunes', 'Martes', 'Miyerkules', 'Huwebes', 'Biyernes', 'Sabado'],\n    'weekdays_short' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],\n    'weekdays_min' => ['Li', 'Lu', 'Ma', 'Mi', 'Hu', 'Bi', 'Sab'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' at '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tl_PH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Ian De La Cruz\n * - JD Isaacks\n */\nreturn require __DIR__.'/tl.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tlh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Serhan Apaydın\n * - Dominika\n */\nreturn [\n    'year' => '{1}wa’ DIS|:count DIS',\n    'month' => '{1}wa’ jar|:count jar',\n    'week' => '{1}wa’ hogh|:count hogh',\n    'day' => '{1}wa’ jaj|:count jaj',\n    'hour' => '{1}wa’ rep|:count rep',\n    'minute' => '{1}wa’ tup|:count tup',\n    'second' => '{1}puS lup|:count lup',\n    'ago' => static function ($time) {\n        $output = strtr($time, [\n            'jaj' => 'Hu’',\n            'jar' => 'wen',\n            'DIS' => 'ben',\n        ]);\n\n        return $output === $time ? \"$time ret\" : $output;\n    },\n    'from_now' => static function ($time) {\n        $output = strtr($time, [\n            'jaj' => 'leS',\n            'jar' => 'waQ',\n            'DIS' => 'nem',\n        ]);\n\n        return $output === $time ? \"$time pIq\" : $output;\n    },\n    'diff_yesterday' => 'wa’Hu’',\n    'diff_today' => 'DaHjaj',\n    'diff_tomorrow' => 'wa’leS',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[DaHjaj] LT',\n        'nextDay' => '[wa’leS] LT',\n        'nextWeek' => 'LLL',\n        'lastDay' => '[wa’Hu’] LT',\n        'lastWeek' => 'LLL',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => ':number.',\n    'months' => ['tera’ jar wa’', 'tera’ jar cha’', 'tera’ jar wej', 'tera’ jar loS', 'tera’ jar vagh', 'tera’ jar jav', 'tera’ jar Soch', 'tera’ jar chorgh', 'tera’ jar Hut', 'tera’ jar wa’maH', 'tera’ jar wa’maH wa’', 'tera’ jar wa’maH cha’'],\n    'months_short' => ['jar wa’', 'jar cha’', 'jar wej', 'jar loS', 'jar vagh', 'jar jav', 'jar Soch', 'jar chorgh', 'jar Hut', 'jar wa’maH', 'jar wa’maH wa’', 'jar wa’maH cha’'],\n    'weekdays' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],\n    'weekdays_short' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],\n    'weekdays_min' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' ’ej '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/tn_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tn_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Ferikgong', 'Tlhakole', 'Mopitlwe', 'Moranang', 'Motsheganong', 'Seetebosigo', 'Phukwi', 'Phatwe', 'Lwetse', 'Diphalane', 'Ngwanatsele', 'Sedimonthole'],\n    'months_short' => ['Fer', 'Tlh', 'Mop', 'Mor', 'Mot', 'See', 'Phu', 'Pha', 'Lwe', 'Dip', 'Ngw', 'Sed'],\n    'weekdays' => ['laTshipi', 'Mosupologo', 'Labobedi', 'Laboraro', 'Labone', 'Labotlhano', 'Lamatlhatso'],\n    'weekdays_short' => ['Tsh', 'Mos', 'Bed', 'Rar', 'Ne', 'Tlh', 'Mat'],\n    'weekdays_min' => ['Tsh', 'Mos', 'Bed', 'Rar', 'Ne', 'Tlh', 'Mat'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => 'dingwaga di le :count',\n    'y' => 'dingwaga di le :count',\n    'a_year' => 'dingwaga di le :count',\n\n    'month' => 'dikgwedi di le :count',\n    'm' => 'dikgwedi di le :count',\n    'a_month' => 'dikgwedi di le :count',\n\n    'week' => 'dibeke di le :count',\n    'w' => 'dibeke di le :count',\n    'a_week' => 'dibeke di le :count',\n\n    'day' => 'malatsi :count',\n    'd' => 'malatsi :count',\n    'a_day' => 'malatsi :count',\n\n    'hour' => 'diura di le :count',\n    'h' => 'diura di le :count',\n    'a_hour' => 'diura di le :count',\n\n    'minute' => 'metsotso e le :count',\n    'min' => 'metsotso e le :count',\n    'a_minute' => 'metsotso e le :count',\n\n    'second' => 'metsotswana e le :count',\n    's' => 'metsotswana e le :count',\n    'a_second' => 'metsotswana e le :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/to.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/to_TO.php';\n"
  },
  {
    "path": "src/Carbon/Lang/to_TO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - International Components for Unicode    akhilesh.k@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'first_day_of_week' => 0,\n    'formats' => [\n        'L' => 'dddd DD MMM YYYY',\n    ],\n    'months' => ['Sānuali', 'Fēpueli', 'Maʻasi', 'ʻEpeleli', 'Mē', 'Sune', 'Siulai', 'ʻAokosi', 'Sepitema', 'ʻOkatopa', 'Nōvema', 'Tīsema'],\n    'months_short' => ['Sān', 'Fēp', 'Maʻa', 'ʻEpe', 'Mē', 'Sun', 'Siu', 'ʻAok', 'Sep', 'ʻOka', 'Nōv', 'Tīs'],\n    'weekdays' => ['Sāpate', 'Mōnite', 'Tūsite', 'Pulelulu', 'Tuʻapulelulu', 'Falaite', 'Tokonaki'],\n    'weekdays_short' => ['Sāp', 'Mōn', 'Tūs', 'Pul', 'Tuʻa', 'Fal', 'Tok'],\n    'weekdays_min' => ['Sāp', 'Mōn', 'Tūs', 'Pul', 'Tuʻa', 'Fal', 'Tok'],\n    'meridiem' => ['hengihengi', 'efiafi'],\n\n    'year' => ':count fitu', // less reliable\n    'y' => ':count fitu', // less reliable\n    'a_year' => ':count fitu', // less reliable\n\n    'month' => ':count mahina', // less reliable\n    'm' => ':count mahina', // less reliable\n    'a_month' => ':count mahina', // less reliable\n\n    'week' => ':count Sapate', // less reliable\n    'w' => ':count Sapate', // less reliable\n    'a_week' => ':count Sapate', // less reliable\n\n    'day' => ':count ʻaho', // less reliable\n    'd' => ':count ʻaho', // less reliable\n    'a_day' => ':count ʻaho', // less reliable\n\n    'hour' => ':count houa',\n    'h' => ':count houa',\n    'a_hour' => ':count houa',\n\n    'minute' => ':count miniti',\n    'min' => ':count miniti',\n    'a_minute' => ':count miniti',\n\n    'second' => ':count sekoni',\n    's' => ':count sekoni',\n    'a_second' => ':count sekoni',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tpi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/tpi_PG.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tpi_PG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Samsung Electronics Co., Ltd.    akhilesh.k@samsung.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Janueri', 'Februeri', 'Mas', 'Epril', 'Me', 'Jun', 'Julai', 'Ogas', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mas', 'Epr', 'Me', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Des'],\n    'weekdays' => ['Sande', 'Mande', 'Tunde', 'Trinde', 'Fonde', 'Fraide', 'Sarere'],\n    'weekdays_short' => ['San', 'Man', 'Tun', 'Tri', 'Fon', 'Fra', 'Sar'],\n    'weekdays_min' => ['San', 'Man', 'Tun', 'Tri', 'Fon', 'Fra', 'Sar'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['biknait', 'apinun'],\n\n    'year' => 'yia :count',\n    'y' => 'yia :count',\n    'a_year' => 'yia :count',\n\n    'month' => ':count mun',\n    'm' => ':count mun',\n    'a_month' => ':count mun',\n\n    'week' => ':count wik',\n    'w' => ':count wik',\n    'a_week' => ':count wik',\n\n    'day' => ':count de',\n    'd' => ':count de',\n    'a_day' => ':count de',\n\n    'hour' => ':count aua',\n    'h' => ':count aua',\n    'a_hour' => ':count aua',\n\n    'minute' => ':count minit',\n    'min' => ':count minit',\n    'a_minute' => ':count minit',\n\n    'second' => ':count namba tu',\n    's' => ':count namba tu',\n    'a_second' => ':count namba tu',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tr.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - Alan Agius\n * - Erhan Gundogan\n * - François B\n * - JD Isaacks\n * - Murat Yüksel\n * - Baran Şengül\n * - Selami (selamialtin)\n * - TeomanBey\n */\nreturn [\n    'year' => ':count yıl',\n    'a_year' => '{1}bir yıl|[-Inf,Inf]:count yıl',\n    'y' => ':county',\n    'month' => ':count ay',\n    'a_month' => '{1}bir ay|[-Inf,Inf]:count ay',\n    'm' => ':countay',\n    'week' => ':count hafta',\n    'a_week' => '{1}bir hafta|[-Inf,Inf]:count hafta',\n    'w' => ':counth',\n    'day' => ':count gün',\n    'a_day' => '{1}bir gün|[-Inf,Inf]:count gün',\n    'd' => ':countg',\n    'hour' => ':count saat',\n    'a_hour' => '{1}bir saat|[-Inf,Inf]:count saat',\n    'h' => ':countsa',\n    'minute' => ':count dakika',\n    'a_minute' => '{1}bir dakika|[-Inf,Inf]:count dakika',\n    'min' => ':countdk',\n    'second' => ':count saniye',\n    'a_second' => '{1}birkaç saniye|[-Inf,Inf]:count saniye',\n    's' => ':countsn',\n    'ago' => ':time önce',\n    'from_now' => ':time sonra',\n    'after' => ':time sonra',\n    'before' => ':time önce',\n    'diff_now' => 'şimdi',\n    'diff_today' => 'bugün',\n    'diff_today_regexp' => 'bugün(?:\\\\s+saat)?',\n    'diff_yesterday' => 'dün',\n    'diff_tomorrow' => 'yarın',\n    'diff_tomorrow_regexp' => 'yarın(?:\\\\s+saat)?',\n    'diff_before_yesterday' => 'evvelsi gün',\n    'diff_after_tomorrow' => 'öbür gün',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[bugün saat] LT',\n        'nextDay' => '[yarın saat] LT',\n        'nextWeek' => '[gelecek] dddd [saat] LT',\n        'lastDay' => '[dün] LT',\n        'lastWeek' => '[geçen] dddd [saat] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        switch ($period) {\n            case 'd':\n            case 'D':\n            case 'Do':\n            case 'DD':\n                return $number;\n            default:\n                if ($number === 0) {  // special case for zero\n                    return \"$number'ıncı\";\n                }\n\n                static $suffixes = [\n                    1 => '\\'inci',\n                    5 => '\\'inci',\n                    8 => '\\'inci',\n                    70 => '\\'inci',\n                    80 => '\\'inci',\n                    2 => '\\'nci',\n                    7 => '\\'nci',\n                    20 => '\\'nci',\n                    50 => '\\'nci',\n                    3 => '\\'üncü',\n                    4 => '\\'üncü',\n                    100 => '\\'üncü',\n                    6 => '\\'ncı',\n                    9 => '\\'uncu',\n                    10 => '\\'uncu',\n                    30 => '\\'uncu',\n                    60 => '\\'ıncı',\n                    90 => '\\'ıncı',\n                ];\n\n                $lastDigit = $number % 10;\n\n                return $number.($suffixes[$lastDigit] ?? $suffixes[$number % 100 - $lastDigit] ?? $suffixes[$number >= 100 ? 100 : -1] ?? '');\n        }\n    },\n    'meridiem' => ['ÖÖ', 'ÖS', 'öö', 'ös'],\n    'months' => ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'],\n    'months_short' => ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'],\n    'weekdays' => ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],\n    'weekdays_short' => ['Paz', 'Pts', 'Sal', 'Çar', 'Per', 'Cum', 'Cts'],\n    'weekdays_min' => ['Pz', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' ve '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tr_CY.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/tr.php', [\n    'weekdays_short' => ['Paz', 'Pzt', 'Sal', 'Çar', 'Per', 'Cum', 'Cmt'],\n    'weekdays_min' => ['Pa', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct'],\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'D.MM.YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'D MMMM YYYY dddd h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tr_TR.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/tr.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ts.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ts_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ts_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Sunguti', 'Nyenyenyani', 'Nyenyankulu', 'Dzivamisoko', 'Mudyaxihi', 'Khotavuxika', 'Mawuwani', 'Mhawuri', 'Ndzhati', 'Nhlangula', 'Hukuri', 'N\\'wendzamhala'],\n    'months_short' => ['Sun', 'Yan', 'Kul', 'Dzi', 'Mud', 'Kho', 'Maw', 'Mha', 'Ndz', 'Nhl', 'Huk', 'N\\'w'],\n    'weekdays' => ['Sonto', 'Musumbhunuku', 'Ravumbirhi', 'Ravunharhu', 'Ravumune', 'Ravuntlhanu', 'Mugqivela'],\n    'weekdays_short' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'],\n    'weekdays_min' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => 'malembe ya :count',\n    'y' => 'malembe ya :count',\n    'a_year' => 'malembe ya :count',\n\n    'month' => 'tin’hweti ta :count',\n    'm' => 'tin’hweti ta :count',\n    'a_month' => 'tin’hweti ta :count',\n\n    'week' => 'mavhiki ya :count',\n    'w' => 'mavhiki ya :count',\n    'a_week' => 'mavhiki ya :count',\n\n    'day' => 'masiku :count',\n    'd' => 'masiku :count',\n    'a_day' => 'masiku :count',\n\n    'hour' => 'tiawara ta :count',\n    'h' => 'tiawara ta :count',\n    'a_hour' => 'tiawara ta :count',\n\n    'minute' => 'timinete ta :count',\n    'min' => 'timinete ta :count',\n    'a_minute' => 'timinete ta :count',\n\n    'second' => 'tisekoni ta :count',\n    's' => 'tisekoni ta :count',\n    'a_second' => 'tisekoni ta :count',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tt.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/tt_RU.php';\n"
  },
  {
    "path": "src/Carbon/Lang/tt_RU.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Rinat Norkin Pablo Saratxaga, Rinat Norkin pablo@mandrakesoft.com, rinat@taif.ru\n */\nreturn [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'DD MMM, HH:mm',\n        'LLLL' => 'DD MMMM YYYY, HH:mm',\n    ],\n    'months' => ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря'],\n    'months_short' => ['янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'weekdays' => ['якшәмбе', 'дышәмбе', 'сишәмбе', 'чәршәәмбе', 'пәнҗешмбе', 'җомга', 'шимбә'],\n    'weekdays_short' => ['якш', 'дыш', 'сиш', 'чәрш', 'пәнҗ', 'җом', 'шим'],\n    'weekdays_min' => ['якш', 'дыш', 'сиш', 'чәрш', 'пәнҗ', 'җом', 'шим'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'year' => ':count ел',\n    'month' => ':count ай',\n    'week' => ':count атна',\n    'day' => ':count көн',\n    'hour' => ':count сәгать',\n    'minute' => ':count минут',\n    'second' => ':count секунд',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tt_RU@iqtelif.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Reshat Sabiq tatar.iqtelif.i18n@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD.MM.YYYY',\n    ],\n    'months' => ['Ğınwar', 'Fiwral\\'', 'Mart', 'April', 'May', 'Yün', 'Yül', 'Awgust', 'Sintebír', 'Üktebír', 'Noyebír', 'Dikebír'],\n    'months_short' => ['Ğın', 'Fiw', 'Mar', 'Apr', 'May', 'Yün', 'Yül', 'Awg', 'Sin', 'Ükt', 'Noy', 'Dik'],\n    'weekdays' => ['Yekşembí', 'Düşembí', 'Sişembí', 'Çerşembí', 'Pencíşembí', 'Comğa', 'Şimbe'],\n    'weekdays_short' => ['Yek', 'Düş', 'Siş', 'Çer', 'Pen', 'Com', 'Şim'],\n    'weekdays_min' => ['Yek', 'Düş', 'Siş', 'Çer', 'Pen', 'Com', 'Şim'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ÖA', 'ÖS'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/twq.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/ses.php', [\n    'meridiem' => ['Subbaahi', 'Zaarikay b'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/tzl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn [\n    'year' => '[0,1]:count ar|:count ars',\n    'y' => '[0,1]:count ar|:count ars',\n    'month' => '[0,1]:count mes|:count mesen',\n    'm' => '[0,1]:count mes|:count mesen',\n    'week' => '[0,1]:count seifetziua|:count seifetziuas',\n    'w' => '[0,1]:count seifetziua|:count seifetziuas',\n    'day' => '[0,1]:count ziua|:count ziuas',\n    'd' => '[0,1]:count ziua|:count ziuas',\n    'hour' => '[0,1]:count þora|:count þoras',\n    'h' => '[0,1]:count þora|:count þoras',\n    'minute' => '[0,1]:count míut|:count míuts',\n    'min' => '[0,1]:count míut|:count míuts',\n    'second' => ':count secunds',\n    's' => ':count secunds',\n\n    'ago' => 'ja :time',\n    'from_now' => 'osprei :time',\n\n    'diff_yesterday' => 'ieiri',\n    'diff_yesterday_regexp' => 'ieiri(?:\\\\s+à)?',\n    'diff_today' => 'oxhi',\n    'diff_today_regexp' => 'oxhi(?:\\\\s+à)?',\n    'diff_tomorrow' => 'demà',\n    'diff_tomorrow_regexp' => 'demà(?:\\\\s+à)?',\n\n    'formats' => [\n        'LT' => 'HH.mm',\n        'LTS' => 'HH.mm.ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D. MMMM [dallas] YYYY',\n        'LLL' => 'D. MMMM [dallas] YYYY HH.mm',\n        'LLLL' => 'dddd, [li] D. MMMM [dallas] YYYY HH.mm',\n    ],\n\n    'calendar' => [\n        'sameDay' => '[oxhi à] LT',\n        'nextDay' => '[demà à] LT',\n        'nextWeek' => 'dddd [à] LT',\n        'lastDay' => '[ieiri à] LT',\n        'lastWeek' => '[sür el] dddd [lasteu à] LT',\n        'sameElse' => 'L',\n    ],\n\n    'meridiem' => [\"D'A\", \"D'O\"],\n    'months' => ['Januar', 'Fevraglh', 'Març', 'Avrïu', 'Mai', 'Gün', 'Julia', 'Guscht', 'Setemvar', 'Listopäts', 'Noemvar', 'Zecemvar'],\n    'months_short' => ['Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Gün', 'Jul', 'Gus', 'Set', 'Lis', 'Noe', 'Zec'],\n    'weekdays' => ['Súladi', 'Lúneçi', 'Maitzi', 'Márcuri', 'Xhúadi', 'Viénerçi', 'Sáturi'],\n    'weekdays_short' => ['Súl', 'Lún', 'Mai', 'Már', 'Xhú', 'Vié', 'Sát'],\n    'weekdays_min' => ['Sú', 'Lú', 'Ma', 'Má', 'Xh', 'Vi', 'Sá'],\n    'ordinal' => ':number.',\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tzm.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n */\nreturn [\n    'year' => '{1}ⴰⵙⴳⴰⵙ|:count ⵉⵙⴳⴰⵙⵏ',\n    'month' => '{1}ⴰⵢoⵓⵔ|:count ⵉⵢⵢⵉⵔⵏ',\n    'week' => ':count ⵉⵎⴰⵍⴰⵙⵙ',\n    'day' => '{1}ⴰⵙⵙ|:count oⵙⵙⴰⵏ',\n    'hour' => '{1}ⵙⴰⵄⴰ|:count ⵜⴰⵙⵙⴰⵄⵉⵏ',\n    'minute' => '{1}ⵎⵉⵏⵓⴺ|:count ⵎⵉⵏⵓⴺ',\n    'second' => '{1}ⵉⵎⵉⴽ|:count ⵉⵎⵉⴽ',\n    'ago' => 'ⵢⴰⵏ :time',\n    'from_now' => 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ :time',\n    'diff_today' => 'ⴰⵙⴷⵅ',\n    'diff_yesterday' => 'ⴰⵚⴰⵏⵜ',\n    'diff_yesterday_regexp' => 'ⴰⵚⴰⵏⵜ(?:\\\\s+ⴴ)?',\n    'diff_tomorrow' => 'ⴰⵙⴽⴰ',\n    'diff_tomorrow_regexp' => 'ⴰⵙⴽⴰ(?:\\\\s+ⴴ)?',\n    'diff_today_regexp' => 'ⴰⵙⴷⵅ(?:\\\\s+ⴴ)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ⴰⵙⴷⵅ ⴴ] LT',\n        'nextDay' => '[ⴰⵙⴽⴰ ⴴ] LT',\n        'nextWeek' => 'dddd [ⴴ] LT',\n        'lastDay' => '[ⴰⵚⴰⵏⵜ ⴴ] LT',\n        'lastWeek' => 'dddd [ⴴ] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['ⵉⵏⵏⴰⵢⵔ', 'ⴱⵕⴰⵢⵕ', 'ⵎⴰⵕⵚ', 'ⵉⴱⵔⵉⵔ', 'ⵎⴰⵢⵢⵓ', 'ⵢⵓⵏⵢⵓ', 'ⵢⵓⵍⵢⵓⵣ', 'ⵖⵓⵛⵜ', 'ⵛⵓⵜⴰⵏⴱⵉⵔ', 'ⴽⵟⵓⴱⵕ', 'ⵏⵓⵡⴰⵏⴱⵉⵔ', 'ⴷⵓⵊⵏⴱⵉⵔ'],\n    'months_short' => ['ⵉⵏⵏⴰⵢⵔ', 'ⴱⵕⴰⵢⵕ', 'ⵎⴰⵕⵚ', 'ⵉⴱⵔⵉⵔ', 'ⵎⴰⵢⵢⵓ', 'ⵢⵓⵏⵢⵓ', 'ⵢⵓⵍⵢⵓⵣ', 'ⵖⵓⵛⵜ', 'ⵛⵓⵜⴰⵏⴱⵉⵔ', 'ⴽⵟⵓⴱⵕ', 'ⵏⵓⵡⴰⵏⴱⵉⵔ', 'ⴷⵓⵊⵏⴱⵉⵔ'],\n    'weekdays' => ['ⴰⵙⴰⵎⴰⵙ', 'ⴰⵢⵏⴰⵙ', 'ⴰⵙⵉⵏⴰⵙ', 'ⴰⴽⵔⴰⵙ', 'ⴰⴽⵡⴰⵙ', 'ⴰⵙⵉⵎⵡⴰⵙ', 'ⴰⵙⵉⴹⵢⴰⵙ'],\n    'weekdays_short' => ['ⴰⵙⴰⵎⴰⵙ', 'ⴰⵢⵏⴰⵙ', 'ⴰⵙⵉⵏⴰⵙ', 'ⴰⴽⵔⴰⵙ', 'ⴰⴽⵡⴰⵙ', 'ⴰⵙⵉⵎⵡⴰⵙ', 'ⴰⵙⵉⴹⵢⴰⵙ'],\n    'weekdays_min' => ['ⴰⵙⴰⵎⴰⵙ', 'ⴰⵢⵏⴰⵙ', 'ⴰⵙⵉⵏⴰⵙ', 'ⴰⴽⵔⴰⵙ', 'ⴰⴽⵡⴰⵙ', 'ⴰⵙⵉⵎⵡⴰⵙ', 'ⴰⵙⵉⴹⵢⴰⵙ'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n    'weekend' => [5, 6],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/tzm_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - JD Isaacks\n */\nreturn [\n    'year' => '{1}:count asgas|:count isgasn',\n    'a_year' => 'asgas|:count isgasn',\n    'month' => '{1}:count ayowr|:count iyyirn',\n    'a_month' => 'ayowr|:count iyyirn',\n    'week' => ':count imalass',\n    'a_week' => ':imalass',\n    'day' => '{1}:count ass|:count ossan',\n    'a_day' => 'ass|:count ossan',\n    'hour' => '{1}:count saɛa|:count tassaɛin',\n    'a_hour' => '{1}saɛa|:count tassaɛin',\n    'minute' => ':count minuḍ',\n    'a_minute' => '{1}minuḍ|:count minuḍ',\n    'second' => ':count imik',\n    'a_second' => '{1}imik|:count imik',\n    'ago' => 'yan :time',\n    'from_now' => 'dadkh s yan :time',\n    'diff_yesterday' => 'assant',\n    'diff_yesterday_regexp' => 'assant(?:\\\\s+g)?',\n    'diff_today' => 'asdkh',\n    'diff_today_regexp' => 'asdkh(?:\\\\s+g)?',\n    'diff_tomorrow' => 'aska',\n    'diff_tomorrow_regexp' => 'aska(?:\\\\s+g)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[asdkh g] LT',\n        'nextDay' => '[aska g] LT',\n        'nextWeek' => 'dddd [g] LT',\n        'lastDay' => '[assant g] LT',\n        'lastWeek' => 'dddd [g] LT',\n        'sameElse' => 'L',\n    ],\n    'months' => ['innayr', 'brˤayrˤ', 'marˤsˤ', 'ibrir', 'mayyw', 'ywnyw', 'ywlywz', 'ɣwšt', 'šwtanbir', 'ktˤwbrˤ', 'nwwanbir', 'dwjnbir'],\n    'months_short' => ['innayr', 'brˤayrˤ', 'marˤsˤ', 'ibrir', 'mayyw', 'ywnyw', 'ywlywz', 'ɣwšt', 'šwtanbir', 'ktˤwbrˤ', 'nwwanbir', 'dwjnbir'],\n    'weekdays' => ['asamas', 'aynas', 'asinas', 'akras', 'akwas', 'asimwas', 'asiḍyas'],\n    'weekdays_short' => ['asamas', 'aynas', 'asinas', 'akras', 'akwas', 'asimwas', 'asiḍyas'],\n    'weekdays_min' => ['asamas', 'aynas', 'asinas', 'akras', 'akwas', 'asimwas', 'asiḍyas'],\n    'meridiem' => ['Zdat azal', 'Ḍeffir aza'],\n    'first_day_of_week' => 6,\n    'day_of_first_week_of_year' => 1,\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ug.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - yasinn\n */\nreturn [\n    'year' => '{1}'.'بىر يىل'.'|:count '.'يىل',\n    'month' => '{1}'.'بىر ئاي'.'|:count '.'ئاي',\n    'week' => '{1}'.'بىر ھەپتە'.'|:count '.'ھەپتە',\n    'day' => '{1}'.'بىر كۈن'.'|:count '.'كۈن',\n    'hour' => '{1}'.'بىر سائەت'.'|:count '.'سائەت',\n    'minute' => '{1}'.'بىر مىنۇت'.'|:count '.'مىنۇت',\n    'second' => '{1}'.'نەچچە سېكونت'.'|:count '.'سېكونت',\n    'ago' => ':time بۇرۇن',\n    'from_now' => ':time كېيىن',\n    'diff_today' => 'بۈگۈن',\n    'diff_yesterday' => 'تۆنۈگۈن',\n    'diff_tomorrow' => 'ئەتە',\n    'diff_tomorrow_regexp' => 'ئەتە(?:\\\\s+سائەت)?',\n    'diff_today_regexp' => 'بۈگۈن(?:\\\\s+سائەت)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-DD',\n        'LL' => 'YYYY-يىلىM-ئاينىڭD-كۈنى',\n        'LLL' => 'YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',\n        'LLLL' => 'dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[بۈگۈن سائەت] LT',\n        'nextDay' => '[ئەتە سائەت] LT',\n        'nextWeek' => '[كېلەركى] dddd [سائەت] LT',\n        'lastDay' => '[تۆنۈگۈن] LT',\n        'lastWeek' => '[ئالدىنقى] dddd [سائەت] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'd', 'D', 'DDD' => $number.'-كۈنى',\n            'w', 'W' => $number.'-ھەپتە',\n            default => $number,\n        };\n    },\n    'meridiem' => static function ($hour, $minute) {\n        $time = $hour * 100 + $minute;\n        if ($time < 600) {\n            return 'يېرىم كېچە';\n        }\n        if ($time < 900) {\n            return 'سەھەر';\n        }\n        if ($time < 1130) {\n            return 'چۈشتىن بۇرۇن';\n        }\n        if ($time < 1230) {\n            return 'چۈش';\n        }\n        if ($time < 1800) {\n            return 'چۈشتىن كېيىن';\n        }\n\n        return 'كەچ';\n    },\n    'months' => ['يانۋار', 'فېۋرال', 'مارت', 'ئاپرېل', 'ماي', 'ئىيۇن', 'ئىيۇل', 'ئاۋغۇست', 'سېنتەبىر', 'ئۆكتەبىر', 'نويابىر', 'دېكابىر'],\n    'months_short' => ['يانۋار', 'فېۋرال', 'مارت', 'ئاپرېل', 'ماي', 'ئىيۇن', 'ئىيۇل', 'ئاۋغۇست', 'سېنتەبىر', 'ئۆكتەبىر', 'نويابىر', 'دېكابىر'],\n    'weekdays' => ['يەكشەنبە', 'دۈشەنبە', 'سەيشەنبە', 'چارشەنبە', 'پەيشەنبە', 'جۈمە', 'شەنبە'],\n    'weekdays_short' => ['يە', 'دۈ', 'سە', 'چا', 'پە', 'جۈ', 'شە'],\n    'weekdays_min' => ['يە', 'دۈ', 'سە', 'چا', 'پە', 'جۈ', 'شە'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' ۋە '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ug_CN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - Alim Boyaq\n */\nreturn require __DIR__.'/ug.php';\n"
  },
  {
    "path": "src/Carbon/Lang/uk.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonInterface;\n\n$processHoursFunction = static function (CarbonInterface $date, string $format) {\n    return $format.'о'.($date->hour === 11 ? 'б' : '').'] LT';\n};\n\n/*\n * Authors:\n * - Kunal Marwaha\n * - Josh Soref\n * - François B\n * - Tim Fish\n * - Serhan Apaydın\n * - Max Mykhailenko\n * - JD Isaacks\n * - Max Kovpak\n * - AucT\n * - Philippe Vaucher\n * - Ilya Shaplyko\n * - Vadym Ievsieiev\n * - Denys Kurets\n * - Igor Kasyanchuk\n * - Tsutomu Kuroda\n * - tjku\n * - Max Melentiev\n * - Oleh\n * - epaminond\n * - Juanito Fatas\n * - Vitalii Khustochka\n * - Akira Matsuda\n * - Christopher Dell\n * - Enrique Vidal\n * - Simone Carletti\n * - Aaron Patterson\n * - Andriy Tyurnikov\n * - Nicolás Hock Isaza\n * - Iwakura Taro\n * - Andrii Ponomarov\n * - alecrabbit\n * - vystepanenko\n * - AlexWalkerson\n * - Andre Havryliuk (Andrend)\n * - Max Datsenko (datsenko-md)\n */\nreturn [\n    'year' => ':count рік|:count роки|:count років',\n    'y' => ':countр|:countрр|:countрр',\n    'a_year' => '{1}рік|:count рік|:count роки|:count років',\n    'month' => ':count місяць|:count місяці|:count місяців',\n    'm' => ':countм',\n    'a_month' => '{1}місяць|:count місяць|:count місяці|:count місяців',\n    'week' => ':count тиждень|:count тижні|:count тижнів',\n    'w' => ':countт',\n    'a_week' => '{1}тиждень|:count тиждень|:count тижні|:count тижнів',\n    'day' => ':count день|:count дні|:count днів',\n    'd' => ':countд',\n    'a_day' => '{1}день|:count день|:count дні|:count днів',\n    'hour' => ':count година|:count години|:count годин',\n    'h' => ':countг',\n    'a_hour' => '{1}година|:count година|:count години|:count годин',\n    'minute' => ':count хвилина|:count хвилини|:count хвилин',\n    'min' => ':countхв',\n    'a_minute' => '{1}хвилина|:count хвилина|:count хвилини|:count хвилин',\n    'second' => ':count секунда|:count секунди|:count секунд',\n    's' => ':countсек',\n    'a_second' => '{1}декілька секунд|:count секунда|:count секунди|:count секунд',\n\n    'hour_ago' => ':count годину|:count години|:count годин',\n    'a_hour_ago' => '{1}годину|:count годину|:count години|:count годин',\n    'minute_ago' => ':count хвилину|:count хвилини|:count хвилин',\n    'a_minute_ago' => '{1}хвилину|:count хвилину|:count хвилини|:count хвилин',\n    'second_ago' => ':count секунду|:count секунди|:count секунд',\n    'a_second_ago' => '{1}декілька секунд|:count секунду|:count секунди|:count секунд',\n\n    'hour_from_now' => ':count годину|:count години|:count годин',\n    'a_hour_from_now' => '{1}годину|:count годину|:count години|:count годин',\n    'minute_from_now' => ':count хвилину|:count хвилини|:count хвилин',\n    'a_minute_from_now' => '{1}хвилину|:count хвилину|:count хвилини|:count хвилин',\n    'second_from_now' => ':count секунду|:count секунди|:count секунд',\n    'a_second_from_now' => '{1}декілька секунд|:count секунду|:count секунди|:count секунд',\n\n    'hour_after' => ':count годину|:count години|:count годин',\n    'a_hour_after' => '{1}годину|:count годину|:count години|:count годин',\n    'minute_after' => ':count хвилину|:count хвилини|:count хвилин',\n    'a_minute_after' => '{1}хвилину|:count хвилину|:count хвилини|:count хвилин',\n    'second_after' => ':count секунду|:count секунди|:count секунд',\n    'a_second_after' => '{1}декілька секунд|:count секунду|:count секунди|:count секунд',\n\n    'hour_before' => ':count годину|:count години|:count годин',\n    'a_hour_before' => '{1}годину|:count годину|:count години|:count годин',\n    'minute_before' => ':count хвилину|:count хвилини|:count хвилин',\n    'a_minute_before' => '{1}хвилину|:count хвилину|:count хвилини|:count хвилин',\n    'second_before' => ':count секунду|:count секунди|:count секунд',\n    'a_second_before' => '{1}декілька секунд|:count секунду|:count секунди|:count секунд',\n\n    'ago' => ':time тому',\n    'from_now' => 'за :time',\n    'after' => ':time після',\n    'before' => ':time до',\n    'diff_now' => 'щойно',\n    'diff_today' => 'Сьогодні',\n    'diff_today_regexp' => 'Сьогодні(?:\\\\s+о)?',\n    'diff_yesterday' => 'вчора',\n    'diff_yesterday_regexp' => 'Вчора(?:\\\\s+о)?',\n    'diff_tomorrow' => 'завтра',\n    'diff_tomorrow_regexp' => 'Завтра(?:\\\\s+о)?',\n    'diff_before_yesterday' => 'позавчора',\n    'diff_after_tomorrow' => 'післязавтра',\n    'period_recurrences' => 'один раз|:count рази|:count разів',\n    'period_interval' => 'кожні :interval',\n    'period_start_date' => 'з :date',\n    'period_end_date' => 'до :date',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY, HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY, HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => static fn (CarbonInterface $date) => $processHoursFunction($date, '[Сьогодні '),\n        'nextDay' => static fn (CarbonInterface $date) => $processHoursFunction($date, '[Завтра '),\n        'nextWeek' => static fn (CarbonInterface $date) => $processHoursFunction($date, '[У] dddd ['),\n        'lastDay' => static fn (CarbonInterface $date) => $processHoursFunction($date, '[Вчора '),\n        'lastWeek' => static fn (CarbonInterface $date) => match ($date->dayOfWeek) {\n            0, 3, 5, 6 => $processHoursFunction($date, '[Минулої] dddd ['),\n            default => $processHoursFunction($date, '[Минулого] dddd ['),\n        },\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static fn ($number, $period) => match ($period) {\n        'M', 'd', 'DDD', 'w', 'W' => $number.'-й',\n        'D' => $number.'-го',\n        default => $number,\n    },\n    'meridiem' => static function ($hour) {\n        if ($hour < 4) {\n            return 'ночі';\n        }\n\n        if ($hour < 12) {\n            return 'ранку';\n        }\n\n        if ($hour < 17) {\n            return 'дня';\n        }\n\n        return 'вечора';\n    },\n    'months' => ['січня', 'лютого', 'березня', 'квітня', 'травня', 'червня', 'липня', 'серпня', 'вересня', 'жовтня', 'листопада', 'грудня'],\n    'months_standalone' => ['січень', 'лютий', 'березень', 'квітень', 'травень', 'червень', 'липень', 'серпень', 'вересень', 'жовтень', 'листопад', 'грудень'],\n    'months_short' => ['січ', 'лют', 'бер', 'кві', 'тра', 'чер', 'лип', 'сер', 'вер', 'жов', 'лис', 'гру'],\n    'months_regexp' => '/(D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|L{2,4}|l{2,4})/',\n    'weekdays' => static function (CarbonInterface $date, $format, $index) {\n        static $words = [\n            'nominative' => ['неділя', 'понеділок', 'вівторок', 'середа', 'четвер', 'п’ятниця', 'субота'],\n            'accusative' => ['неділю', 'понеділок', 'вівторок', 'середу', 'четвер', 'п’ятницю', 'суботу'],\n            'genitive' => ['неділі', 'понеділка', 'вівторка', 'середи', 'четверга', 'п’ятниці', 'суботи'],\n        ];\n\n        $format ??= '';\n        $nounCase = preg_match('/(\\[(В|в|У|у)\\])\\s+dddd/u', $format)\n            ? 'accusative'\n            : (\n                preg_match('/\\[?(?:минулої|наступної)?\\s*\\]\\s+dddd/u', $format)\n                    ? 'genitive'\n                    : 'nominative'\n            );\n\n        return $words[$nounCase][$index] ?? null;\n    },\n    'weekdays_short' => ['нд', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'],\n    'weekdays_min' => ['нд', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' i '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/uk_UA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/uk.php';\n"
  },
  {
    "path": "src/Carbon/Lang/unm.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/unm_US.php';\n"
  },
  {
    "path": "src/Carbon/Lang/unm_US.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['enikwsi', 'chkwali', 'xamokhwite', 'kwetayoxe', 'tainipen', 'kichinipen', 'lainipen', 'winaminke', 'kichitahkok', 'puksit', 'wini', 'muxkotae'],\n    'months_short' => ['eni', 'chk', 'xam', 'kwe', 'tai', 'nip', 'lai', 'win', 'tah', 'puk', 'kun', 'mux'],\n    'weekdays' => ['kentuwei', 'manteke', 'tusteke', 'lelai', 'tasteke', 'pelaiteke', 'sateteke'],\n    'weekdays_short' => ['ken', 'man', 'tus', 'lel', 'tas', 'pel', 'sat'],\n    'weekdays_min' => ['ken', 'man', 'tus', 'lel', 'tas', 'pel', 'sat'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    // Too unreliable\n    /*\n    'year' => ':count kaxtëne',\n    'y' => ':count kaxtëne',\n    'a_year' => ':count kaxtëne',\n\n    'month' => ':count piskewëni kishux', // less reliable\n    'm' => ':count piskewëni kishux', // less reliable\n    'a_month' => ':count piskewëni kishux', // less reliable\n\n    'week' => ':count kishku', // less reliable\n    'w' => ':count kishku', // less reliable\n    'a_week' => ':count kishku', // less reliable\n\n    'day' => ':count kishku',\n    'd' => ':count kishku',\n    'a_day' => ':count kishku',\n\n    'hour' => ':count xkuk', // less reliable\n    'h' => ':count xkuk', // less reliable\n    'a_hour' => ':count xkuk', // less reliable\n\n    'minute' => ':count txituwàk', // less reliable\n    'min' => ':count txituwàk', // less reliable\n    'a_minute' => ':count txituwàk', // less reliable\n\n    'second' => ':count nisha', // less reliable\n    's' => ':count nisha', // less reliable\n    'a_second' => ':count nisha', // less reliable\n    */\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ur.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n$months = [\n    'جنوری',\n    'فروری',\n    'مارچ',\n    'اپریل',\n    'مئی',\n    'جون',\n    'جولائی',\n    'اگست',\n    'ستمبر',\n    'اکتوبر',\n    'نومبر',\n    'دسمبر',\n];\n\n$weekdays = [\n    'اتوار',\n    'پیر',\n    'منگل',\n    'بدھ',\n    'جمعرات',\n    'جمعہ',\n    'ہفتہ',\n];\n\n/*\n * Authors:\n * - Sawood Alam\n * - Mehshan\n * - Philippe Vaucher\n * - Tsutomu Kuroda\n * - tjku\n * - Zaid Akram\n * - Max Melentiev\n * - hafezdivandari\n * - Hossein Jabbari\n * - nimamo\n * - Usman Zahid\n */\nreturn [\n    'year' => ':count '.'سال',\n    'a_year' => 'ایک سال|:count سال',\n    'month' => ':count '.'ماہ',\n    'a_month' => 'ایک ماہ|:count ماہ',\n    'week' => ':count '.'ہفتے',\n    'day' => ':count '.'دن',\n    'a_day' => 'ایک دن|:count دن',\n    'hour' => ':count '.'گھنٹے',\n    'a_hour' => 'ایک گھنٹہ|:count گھنٹے',\n    'minute' => ':count '.'منٹ',\n    'a_minute' => 'ایک منٹ|:count منٹ',\n    'second' => ':count '.'سیکنڈ',\n    'a_second' => 'چند سیکنڈ|:count سیکنڈ',\n    'ago' => ':time قبل',\n    'from_now' => ':time بعد',\n    'after' => ':time بعد',\n    'before' => ':time پہلے',\n    'diff_now' => 'اب',\n    'diff_today' => 'آج',\n    'diff_today_regexp' => 'آج(?:\\\\s+بوقت)?',\n    'diff_yesterday' => 'گزشتہ کل',\n    'diff_yesterday_regexp' => 'گذشتہ(?:\\\\s+روز)?(?:\\\\s+بوقت)?',\n    'diff_tomorrow' => 'آئندہ کل',\n    'diff_tomorrow_regexp' => 'کل(?:\\\\s+بوقت)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd، D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[آج بوقت] LT',\n        'nextDay' => '[کل بوقت] LT',\n        'nextWeek' => 'dddd [بوقت] LT',\n        'lastDay' => '[گذشتہ روز بوقت] LT',\n        'lastWeek' => '[گذشتہ] dddd [بوقت] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['صبح', 'شام'],\n    'months' => $months,\n    'months_short' => $months,\n    'weekdays' => $weekdays,\n    'weekdays_short' => $weekdays,\n    'weekdays_min' => $weekdays,\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => ['، ', ' اور '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/ur_IN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Red Hat, Pune    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/ur.php', [\n    'formats' => [\n        'L' => 'D/M/YY',\n    ],\n    'months' => ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئی', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئی', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'weekdays' => ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'سنیچر'],\n    'weekdays_short' => ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'سنیچر'],\n    'weekdays_min' => ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'سنیچر'],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/ur_PK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/ur.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئی', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئی', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'weekdays' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'],\n    'weekdays_short' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'],\n    'weekdays_min' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'],\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ص', 'ش'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/uz.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Dmitriy Shabanov\n * - JD Isaacks\n * - Inoyatulloh\n * - Jamshid\n * - aarkhipov\n * - Philippe Vaucher\n * - felixthemagnificent\n * - Tsutomu Kuroda\n * - tjku\n * - Max Melentiev\n * - Juanito Fatas\n * - Alisher Ulugbekov\n * - Ergashev Adizbek\n */\nreturn [\n    'year' => ':count йил',\n    'a_year' => '{1}бир йил|:count йил',\n    'y' => ':count й',\n    'month' => ':count ой',\n    'a_month' => '{1}бир ой|:count ой',\n    'm' => ':count о',\n    'week' => ':count ҳафта',\n    'a_week' => '{1}бир ҳафта|:count ҳафта',\n    'w' => ':count ҳ',\n    'day' => ':count кун',\n    'a_day' => '{1}бир кун|:count кун',\n    'd' => ':count к',\n    'hour' => ':count соат',\n    'a_hour' => '{1}бир соат|:count соат',\n    'h' => ':count с',\n    'minute' => ':count дақиқа',\n    'a_minute' => '{1}бир дақиқа|:count дақиқа',\n    'min' => ':count д',\n    'second' => ':count сония',\n    'a_second' => '{1}сония|:count сония',\n    's' => ':count с',\n    'ago' => ':time аввал',\n    'from_now' => 'Якин :time ичида',\n    'after' => ':timeдан кейин',\n    'before' => ':time олдин',\n    'diff_now' => 'ҳозир',\n    'diff_today' => 'Бугун',\n    'diff_today_regexp' => 'Бугун(?:\\\\s+соат)?',\n    'diff_yesterday' => 'Кеча',\n    'diff_yesterday_regexp' => 'Кеча(?:\\\\s+соат)?',\n    'diff_tomorrow' => 'Эртага',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'D MMMM YYYY, dddd HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Бугун соат] LT [да]',\n        'nextDay' => '[Эртага] LT [да]',\n        'nextWeek' => 'dddd [куни соат] LT [да]',\n        'lastDay' => '[Кеча соат] LT [да]',\n        'lastWeek' => '[Утган] dddd [куни соат] LT [да]',\n        'sameElse' => 'L',\n    ],\n    'months' => ['январ', 'феврал', 'март', 'апрел', 'май', 'июн', 'июл', 'август', 'сентябр', 'октябр', 'ноябр', 'декабр'],\n    'months_short' => ['янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],\n    'weekdays' => ['якшанба', 'душанба', 'сешанба', 'чоршанба', 'пайшанба', 'жума', 'шанба'],\n    'weekdays_short' => ['якш', 'душ', 'сеш', 'чор', 'пай', 'жум', 'шан'],\n    'weekdays_min' => ['як', 'ду', 'се', 'чо', 'па', 'жу', 'ша'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['эрталаб', 'кечаси'],\n    'list' => [', ', ' ва '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/uz_Arab.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/fa.php', [\n    'weekdays' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'],\n    'weekdays_short' => ['ی.', 'د.', 'س.', 'چ.', 'پ.', 'ج.', 'ش.'],\n    'weekdays_min' => ['ی.', 'د.', 'س.', 'چ.', 'پ.', 'ج.', 'ش.'],\n    'months' => ['جنوری', 'فبروری', 'مارچ', 'اپریل', 'می', 'جون', 'جولای', 'اگست', 'سپتمبر', 'اکتوبر', 'نومبر', 'دسمبر'],\n    'months_short' => ['جنو', 'فبر', 'مار', 'اپر', 'می', 'جون', 'جول', 'اگس', 'سپت', 'اکت', 'نوم', 'دسم'],\n    'first_day_of_week' => 6,\n    'weekend' => [4, 5],\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'YYYY MMMM D, dddd HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/uz_Cyrl.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/uz.php', [\n    'formats' => [\n        'L' => 'DD/MM/yy',\n        'LL' => 'D MMM, YYYY',\n        'LLL' => 'D MMMM, YYYY HH:mm',\n        'LLLL' => 'dddd, DD MMMM, YYYY HH:mm',\n    ],\n    'meridiem' => ['ТО', 'ТК'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/uz_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Josh Soref\n * - Rasulbek\n * - Ilyosjon Kamoldinov (ilyosjon09)\n */\nreturn [\n    'year' => ':count yil',\n    'a_year' => '{1}bir yil|:count yil',\n    'y' => ':count y',\n    'month' => ':count oy',\n    'a_month' => '{1}bir oy|:count oy',\n    'm' => ':count o',\n    'week' => ':count hafta',\n    'a_week' => '{1}bir hafta|:count hafta',\n    'w' => ':count h',\n    'day' => ':count kun',\n    'a_day' => '{1}bir kun|:count kun',\n    'd' => ':count k',\n    'hour' => ':count soat',\n    'a_hour' => '{1}bir soat|:count soat',\n    'h' => ':count soat',\n    'minute' => ':count daqiqa',\n    'a_minute' => '{1}bir daqiqa|:count daqiqa',\n    'min' => ':count d',\n    'second' => ':count soniya',\n    'a_second' => '{1}soniya|:count soniya',\n    's' => ':count son.',\n    'ago' => ':time avval',\n    'from_now' => 'Yaqin :time ichida',\n    'after' => ':timedan keyin',\n    'before' => ':time oldin',\n    'diff_yesterday' => 'Kecha',\n    'diff_yesterday_regexp' => 'Kecha(?:\\\\s+soat)?',\n    'diff_today' => 'Bugun',\n    'diff_today_regexp' => 'Bugun(?:\\\\s+soat)?',\n    'diff_tomorrow' => 'Ertaga',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'D MMMM YYYY, dddd HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Bugun soat] LT [da]',\n        'nextDay' => '[Ertaga] LT [da]',\n        'nextWeek' => 'dddd [kuni soat] LT [da]',\n        'lastDay' => '[Kecha soat] LT [da]',\n        'lastWeek' => '[O\\'tgan] dddd [kuni soat] LT [da]',\n        'sameElse' => 'L',\n    ],\n    'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr'],\n    'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'Iyun', 'Iyul', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'],\n    'weekdays' => ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba'],\n    'weekdays_short' => ['Yak', 'Dush', 'Sesh', 'Chor', 'Pay', 'Jum', 'Shan'],\n    'weekdays_min' => ['Ya', 'Du', 'Se', 'Cho', 'Pa', 'Ju', 'Sha'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' va '],\n    'meridiem' => ['TO', 'TK'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/uz_UZ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Bobir Ismailov Bobir Ismailov, Pablo Saratxaga, Mashrab Kuvatov bobir_is@yahoo.com, pablo@mandrakesoft.com, kmashrab@uni-bremen.de\n */\nreturn array_replace_recursive(require __DIR__.'/uz_Latn.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr'],\n    'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'Iyn', 'Iyl', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'],\n    'weekdays' => ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba'],\n    'weekdays_short' => ['Yak', 'Du', 'Se', 'Cho', 'Pay', 'Ju', 'Sha'],\n    'weekdays_min' => ['Yak', 'Du', 'Se', 'Cho', 'Pay', 'Ju', 'Sha'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/uz_UZ@cyrillic.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Mashrab Kuvatov Mashrab Kuvatov, Pablo Saratxaga kmashrab@uni-bremen.de, pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/uz.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['Январ', 'Феврал', 'Март', 'Апрел', 'Май', 'Июн', 'Июл', 'Август', 'Сентябр', 'Октябр', 'Ноябр', 'Декабр'],\n    'months_short' => ['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'],\n    'weekdays' => ['Якшанба', 'Душанба', 'Сешанба', 'Чоршанба', 'Пайшанба', 'Жума', 'Шанба'],\n    'weekdays_short' => ['Якш', 'Душ', 'Сеш', 'Чор', 'Пай', 'Жум', 'Шан'],\n    'weekdays_min' => ['Якш', 'Душ', 'Сеш', 'Чор', 'Пай', 'Жум', 'Шан'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/vai.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['ꕞꕌꔵ', 'ꗳꗡꘉ', 'ꕚꕞꕚ', 'ꕉꕞꕒ', 'ꕉꔤꕆꕢ', 'ꕉꔤꕀꕮ', 'ꔻꔬꔳ'],\n    'weekdays_short' => ['ꕞꕌꔵ', 'ꗳꗡꘉ', 'ꕚꕞꕚ', 'ꕉꕞꕒ', 'ꕉꔤꕆꕢ', 'ꕉꔤꕀꕮ', 'ꔻꔬꔳ'],\n    'weekdays_min' => ['ꕞꕌꔵ', 'ꗳꗡꘉ', 'ꕚꕞꕚ', 'ꕉꕞꕒ', 'ꕉꔤꕆꕢ', 'ꕉꔤꕀꕮ', 'ꔻꔬꔳ'],\n    'months' => ['ꖨꖕ ꕪꕴ ꔞꔀꕮꕊ', 'ꕒꕡꖝꖕ', 'ꕾꖺ', 'ꖢꖕ', 'ꖑꕱ', 'ꖱꘋ', 'ꖱꕞꔤ', 'ꗛꔕ', 'ꕢꕌ', 'ꕭꖃ', 'ꔞꘋꕔꕿ ꕸꖃꗏ', 'ꖨꖕ ꕪꕴ ꗏꖺꕮꕊ'],\n    'months_short' => ['ꖨꖕꔞ', 'ꕒꕡ', 'ꕾꖺ', 'ꖢꖕ', 'ꖑꕱ', 'ꖱꘋ', 'ꖱꕞ', 'ꗛꔕ', 'ꕢꕌ', 'ꕭꖃ', 'ꔞꘋ', 'ꖨꖕꗏ'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm a',\n    ],\n\n    'year' => ':count ꕀ', // less reliable\n    'y' => ':count ꕀ', // less reliable\n    'a_year' => ':count ꕀ', // less reliable\n\n    'second' => ':count ꗱꕞꕯꕊ', // less reliable\n    's' => ':count ꗱꕞꕯꕊ', // less reliable\n    'a_second' => ':count ꗱꕞꕯꕊ', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/vai_Latn.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'weekdays' => ['lahadi', 'tɛɛnɛɛ', 'talata', 'alaba', 'aimisa', 'aijima', 'siɓiti'],\n    'weekdays_short' => ['lahadi', 'tɛɛnɛɛ', 'talata', 'alaba', 'aimisa', 'aijima', 'siɓiti'],\n    'weekdays_min' => ['lahadi', 'tɛɛnɛɛ', 'talata', 'alaba', 'aimisa', 'aijima', 'siɓiti'],\n    'months' => ['luukao kemã', 'ɓandaɓu', 'vɔɔ', 'fulu', 'goo', '6', '7', 'kɔnde', 'saah', 'galo', 'kenpkato ɓololɔ', 'luukao lɔma'],\n    'months_short' => ['luukao kemã', 'ɓandaɓu', 'vɔɔ', 'fulu', 'goo', '6', '7', 'kɔnde', 'saah', 'galo', 'kenpkato ɓololɔ', 'luukao lɔma'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'h:mm a',\n        'LTS' => 'h:mm:ss a',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm a',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm a',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/vai_Vaii.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/vai.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ve.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/ve_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/ve_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Phando', 'Luhuhi', 'Ṱhafamuhwe', 'Lambamai', 'Shundunthule', 'Fulwi', 'Fulwana', 'Ṱhangule', 'Khubvumedzi', 'Tshimedzi', 'Ḽara', 'Nyendavhusiku'],\n    'months_short' => ['Pha', 'Luh', 'Fam', 'Lam', 'Shu', 'Lwi', 'Lwa', 'Ngu', 'Khu', 'Tsh', 'Ḽar', 'Nye'],\n    'weekdays' => ['Swondaha', 'Musumbuluwo', 'Ḽavhuvhili', 'Ḽavhuraru', 'Ḽavhuṋa', 'Ḽavhuṱanu', 'Mugivhela'],\n    'weekdays_short' => ['Swo', 'Mus', 'Vhi', 'Rar', 'ṋa', 'Ṱan', 'Mug'],\n    'weekdays_min' => ['Swo', 'Mus', 'Vhi', 'Rar', 'ṋa', 'Ṱan', 'Mug'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    // Too unreliable\n    /*\n    'day' => ':count vhege', // less reliable\n    'd' => ':count vhege', // less reliable\n    'a_day' => ':count vhege', // less reliable\n\n    'hour' => ':count watshi', // less reliable\n    'h' => ':count watshi', // less reliable\n    'a_hour' => ':count watshi', // less reliable\n\n    'minute' => ':count watshi', // less reliable\n    'min' => ':count watshi', // less reliable\n    'a_minute' => ':count watshi', // less reliable\n\n    'second' => ':count Mu', // less reliable\n    's' => ':count Mu', // less reliable\n    'a_second' => ':count Mu', // less reliable\n\n    'week' => ':count vhege',\n    'w' => ':count vhege',\n    'a_week' => ':count vhege',\n    */\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/vi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Andre Polykanine A.K.A. Menelion Elensúlë\n * - JD Isaacks\n */\nreturn [\n    'year' => ':count năm',\n    'a_year' => '{1}một năm|]1, Inf[:count năm',\n    'y' => ':count năm',\n    'month' => ':count tháng',\n    'a_month' => '{1}một tháng|]1, Inf[:count tháng',\n    'm' => ':count tháng',\n    'week' => ':count tuần',\n    'a_week' => '{1}một tuần|]1, Inf[:count tuần',\n    'w' => ':count tuần',\n    'day' => ':count ngày',\n    'a_day' => '{1}một ngày|]1, Inf[:count ngày',\n    'd' => ':count ngày',\n    'hour' => ':count giờ',\n    'a_hour' => '{1}một giờ|]1, Inf[:count giờ',\n    'h' => ':count giờ',\n    'minute' => ':count phút',\n    'a_minute' => '{1}một phút|]1, Inf[:count phút',\n    'min' => ':count phút',\n    'second' => ':count giây',\n    'a_second' => '{1}vài giây|]1, Inf[:count giây',\n    's' => ':count giây',\n    'ago' => ':time trước',\n    'from_now' => ':time tới',\n    'after' => ':time sau',\n    'before' => ':time trước',\n    'diff_now' => 'bây giờ',\n    'diff_today' => 'Hôm',\n    'diff_today_regexp' => 'Hôm(?:\\\\s+nay)?(?:\\\\s+lúc)?',\n    'diff_yesterday' => 'Hôm qua',\n    'diff_yesterday_regexp' => 'Hôm(?:\\\\s+qua)?(?:\\\\s+lúc)?',\n    'diff_tomorrow' => 'Ngày mai',\n    'diff_tomorrow_regexp' => 'Ngày(?:\\\\s+mai)?(?:\\\\s+lúc)?',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM [năm] YYYY',\n        'LLL' => 'D MMMM [năm] YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM [năm] YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[Hôm nay lúc] LT',\n        'nextDay' => '[Ngày mai lúc] LT',\n        'nextWeek' => 'dddd [tuần tới lúc] LT',\n        'lastDay' => '[Hôm qua lúc] LT',\n        'lastWeek' => 'dddd [tuần trước lúc] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['SA', 'CH'],\n    'months' => ['tháng 1', 'tháng 2', 'tháng 3', 'tháng 4', 'tháng 5', 'tháng 6', 'tháng 7', 'tháng 8', 'tháng 9', 'tháng 10', 'tháng 11', 'tháng 12'],\n    'months_short' => ['Th01', 'Th02', 'Th03', 'Th04', 'Th05', 'Th06', 'Th07', 'Th08', 'Th09', 'Th10', 'Th11', 'Th12'],\n    'weekdays' => ['chủ nhật', 'thứ hai', 'thứ ba', 'thứ tư', 'thứ năm', 'thứ sáu', 'thứ bảy'],\n    'weekdays_short' => ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'],\n    'weekdays_min' => ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => [', ', ' và '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/vi_VN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/vi.php';\n"
  },
  {
    "path": "src/Carbon/Lang/vo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],\n    'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY-MM-dd',\n        'LL' => 'YYYY MMM D',\n        'LLL' => 'YYYY MMMM D HH:mm',\n        'LLLL' => 'YYYY MMMM D, dddd HH:mm',\n    ],\n\n    'year' => ':count yel',\n    'y' => ':count yel',\n    'a_year' => ':count yel',\n\n    'month' => ':count mul',\n    'm' => ':count mul',\n    'a_month' => ':count mul',\n\n    'week' => ':count vig',\n    'w' => ':count vig',\n    'a_week' => ':count vig',\n\n    'day' => ':count del',\n    'd' => ':count del',\n    'a_day' => ':count del',\n\n    'hour' => ':count düp',\n    'h' => ':count düp',\n    'a_hour' => ':count düp',\n\n    'minute' => ':count minut',\n    'min' => ':count minut',\n    'a_minute' => ':count minut',\n\n    'second' => ':count sekun',\n    's' => ':count sekun',\n    'a_second' => ':count sekun',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/vun.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['utuko', 'kyiukonyi'],\n    'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'],\n    'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],\n    'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/wa.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/wa_BE.php';\n"
  },
  {
    "path": "src/Carbon/Lang/wa_BE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Djan SACRE Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['di djanvî', 'di fevrî', 'di måss', 'd’ avri', 'di may', 'di djun', 'di djulete', 'd’ awousse', 'di setimbe', 'd’ octôbe', 'di nôvimbe', 'di decimbe'],\n    'months_short' => ['dja', 'fev', 'mås', 'avr', 'may', 'djn', 'djl', 'awo', 'set', 'oct', 'nôv', 'dec'],\n    'weekdays' => ['dimegne', 'londi', 'mårdi', 'mierkidi', 'djudi', 'vénrdi', 'semdi'],\n    'weekdays_short' => ['dim', 'lon', 'mår', 'mie', 'dju', 'vén', 'sem'],\n    'weekdays_min' => ['dim', 'lon', 'mår', 'mie', 'dju', 'vén', 'sem'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'year' => ':count anêye',\n    'y' => ':count anêye',\n    'a_year' => ':count anêye',\n\n    'month' => ':count meûs',\n    'm' => ':count meûs',\n    'a_month' => ':count meûs',\n\n    'week' => ':count samwinne',\n    'w' => ':count samwinne',\n    'a_week' => ':count samwinne',\n\n    'day' => ':count djoû',\n    'd' => ':count djoû',\n    'a_day' => ':count djoû',\n\n    'hour' => ':count eure',\n    'h' => ':count eure',\n    'a_hour' => ':count eure',\n\n    'minute' => ':count munute',\n    'min' => ':count munute',\n    'a_minute' => ':count munute',\n\n    'second' => ':count Sigonde',\n    's' => ':count Sigonde',\n    'a_second' => ':count Sigonde',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/wae.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/wae_CH.php';\n"
  },
  {
    "path": "src/Carbon/Lang/wae_CH.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Walser Translation Team ml@translate-wae.ch\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n    'months' => ['Jenner', 'Hornig', 'Märze', 'Abrille', 'Meije', 'Bráčet', 'Heiwet', 'Öigšte', 'Herbštmánet', 'Wímánet', 'Wintermánet', 'Chrištmánet'],\n    'months_short' => ['Jen', 'Hor', 'Mär', 'Abr', 'Mei', 'Brá', 'Hei', 'Öig', 'Her', 'Wím', 'Win', 'Chr'],\n    'weekdays' => ['Suntag', 'Mäntag', 'Zischtag', 'Mittwuch', 'Frontag', 'Fritag', 'Samschtag'],\n    'weekdays_short' => ['Sun', 'Män', 'Zis', 'Mit', 'Fro', 'Fri', 'Sam'],\n    'weekdays_min' => ['Sun', 'Män', 'Zis', 'Mit', 'Fro', 'Fri', 'Sam'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n\n    'month' => ':count Maano', // less reliable\n    'm' => ':count Maano', // less reliable\n    'a_month' => ':count Maano', // less reliable\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/wal.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/wal_ET.php';\n"
  },
  {
    "path": "src/Carbon/Lang/wal_ET.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Ge'ez Frontier Foundation    locales@geez.org\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['ጃንዩወሪ', 'ፌብሩወሪ', 'ማርች', 'ኤፕረል', 'ሜይ', 'ጁን', 'ጁላይ', 'ኦገስት', 'ሴፕቴምበር', 'ኦክተውበር', 'ኖቬምበር', 'ዲሴምበር'],\n    'months_short' => ['ጃንዩ', 'ፌብሩ', 'ማርች', 'ኤፕረ', 'ሜይ ', 'ጁን ', 'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክተ', 'ኖቬም', 'ዲሴም'],\n    'weekdays' => ['ወጋ', 'ሳይኖ', 'ማቆሳኛ', 'አሩዋ', 'ሃሙሳ', 'አርባ', 'ቄራ'],\n    'weekdays_short' => ['ወጋ ', 'ሳይኖ', 'ማቆሳ', 'አሩዋ', 'ሃሙሳ', 'አርባ', 'ቄራ '],\n    'weekdays_min' => ['ወጋ ', 'ሳይኖ', 'ማቆሳ', 'አሩዋ', 'ሃሙሳ', 'አርባ', 'ቄራ '],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['ማለዶ', 'ቃማ'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/wo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/wo_SN.php';\n"
  },
  {
    "path": "src/Carbon/Lang/wo_SN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - The Debian Project Christian Perrier bubulle@debian.org\n */\nreturn [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD.MM.YYYY',\n        'LL' => 'MMMM DD, YYYY',\n        'LLL' => 'DD MMM HH:mm',\n        'LLLL' => 'MMMM DD, YYYY HH:mm',\n    ],\n    'months' => ['sanwiy\\'e', 'feebriy\\'e', 'mars', 'awril', 'me', 'suwen', 'sulet', 'uut', 'septaambar', 'oktoobar', 'nowaambar', 'desaambar'],\n    'months_short' => ['san', 'fee', 'mar', 'awr', 'me ', 'suw', 'sul', 'uut', 'sep', 'okt', 'now', 'des'],\n    'weekdays' => ['dib\\'eer', 'altine', 'talaata', 'allarba', 'alxames', 'ajjuma', 'gaawu'],\n    'weekdays_short' => ['dib', 'alt', 'tal', 'all', 'alx', 'ajj', 'gaa'],\n    'weekdays_min' => ['dib', 'alt', 'tal', 'all', 'alx', 'ajj', 'gaa'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'year' => ':count at',\n    'month' => ':count wèr',\n    'week' => ':count ayubés',\n    'day' => ':count bés',\n    'hour' => ':count waxtu',\n    'minute' => ':count simili',\n    'second' => ':count saa',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/xh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/xh_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/xh_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['eyoMqungu', 'eyoMdumba', 'eyoKwindla', 'uTshazimpuzi', 'uCanzibe', 'eyeSilimela', 'eyeKhala', 'eyeThupa', 'eyoMsintsi', 'eyeDwarha', 'eyeNkanga', 'eyoMnga'],\n    'months_short' => ['Mqu', 'Mdu', 'Kwi', 'Tsh', 'Can', 'Sil', 'Kha', 'Thu', 'Msi', 'Dwa', 'Nka', 'Mng'],\n    'weekdays' => ['iCawa', 'uMvulo', 'lwesiBini', 'lwesiThathu', 'ulweSine', 'lwesiHlanu', 'uMgqibelo'],\n    'weekdays_short' => ['Caw', 'Mvu', 'Bin', 'Tha', 'Sin', 'Hla', 'Mgq'],\n    'weekdays_min' => ['Caw', 'Mvu', 'Bin', 'Tha', 'Sin', 'Hla', 'Mgq'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => ':count ihlobo', // less reliable\n    'y' => ':count ihlobo', // less reliable\n    'a_year' => ':count ihlobo', // less reliable\n\n    'hour' => ':count iwotshi', // less reliable\n    'h' => ':count iwotshi', // less reliable\n    'a_hour' => ':count iwotshi', // less reliable\n\n    'minute' => ':count ingqalelo', // less reliable\n    'min' => ':count ingqalelo', // less reliable\n    'a_minute' => ':count ingqalelo', // less reliable\n\n    'second' => ':count nceda', // less reliable\n    's' => ':count nceda', // less reliable\n    'a_second' => ':count nceda', // less reliable\n\n    'month' => ':count inyanga',\n    'm' => ':count inyanga',\n    'a_month' => ':count inyanga',\n\n    'week' => ':count veki',\n    'w' => ':count veki',\n    'a_week' => ':count veki',\n\n    'day' => ':count imini',\n    'd' => ':count imini',\n    'a_day' => ':count imini',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/xog.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['Munkyo', 'Eigulo'],\n    'weekdays' => ['Sabiiti', 'Balaza', 'Owokubili', 'Owokusatu', 'Olokuna', 'Olokutaanu', 'Olomukaaga'],\n    'weekdays_short' => ['Sabi', 'Bala', 'Kubi', 'Kusa', 'Kuna', 'Kuta', 'Muka'],\n    'weekdays_min' => ['Sabi', 'Bala', 'Kubi', 'Kusa', 'Kuna', 'Kuta', 'Muka'],\n    'months' => ['Janwaliyo', 'Febwaliyo', 'Marisi', 'Apuli', 'Maayi', 'Juuni', 'Julaayi', 'Agusito', 'Sebuttemba', 'Okitobba', 'Novemba', 'Desemba'],\n    'months_short' => ['Jan', 'Feb', 'Mar', 'Apu', 'Maa', 'Juu', 'Jul', 'Agu', 'Seb', 'Oki', 'Nov', 'Des'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/yav.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'meridiem' => ['kiɛmɛ́ɛm', 'kisɛ́ndɛ'],\n    'weekdays' => ['sɔ́ndiɛ', 'móndie', 'muányáŋmóndie', 'metúkpíápɛ', 'kúpélimetúkpiapɛ', 'feléte', 'séselé'],\n    'weekdays_short' => ['sd', 'md', 'mw', 'et', 'kl', 'fl', 'ss'],\n    'weekdays_min' => ['sd', 'md', 'mw', 'et', 'kl', 'fl', 'ss'],\n    'months' => ['pikítíkítie, oólí ú kutúan', 'siɛyɛ́, oóli ú kándíɛ', 'ɔnsúmbɔl, oóli ú kátátúɛ', 'mesiŋ, oóli ú kénie', 'ensil, oóli ú kátánuɛ', 'ɔsɔn', 'efute', 'pisuyú', 'imɛŋ i puɔs', 'imɛŋ i putúk,oóli ú kátíɛ', 'makandikɛ', 'pilɔndɔ́'],\n    'months_short' => ['o.1', 'o.2', 'o.3', 'o.4', 'o.5', 'o.6', 'o.7', 'o.8', 'o.9', 'o.10', 'o.11', 'o.12'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'D/M/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/yi.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/yi_US.php';\n"
  },
  {
    "path": "src/Carbon/Lang/yi_US.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - http://www.uyip.org/ Pablo Saratxaga pablo@mandrakesoft.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'year' => '{1}:count יאר|{0}:count יאר|[-Inf,Inf]:count יאר',\n    'a_year' => '{1}א יאר|{0}:count יאר|[-Inf,Inf]:count יאר',\n    'y' => ':count יאר',\n    'month' => '{1}:count חודש|{0}:count חדשים|[-Inf,Inf]:count חדשים',\n    'a_month' => '{1}א חודש|{0}:count חדשים|[-Inf,Inf]:count חדשים',\n    'm' => '{1}:count חודש|{0}:count חדשים|[-Inf,Inf]:count חדשים',\n    'week' => '{1}:count וואך|{0}:count וואכן|[-Inf,Inf]:count וואכן',\n    'a_week' => '{1}א וואך|{0}:count וואכן|[-Inf,Inf]:count וואכן',\n    'w' => ':count וואך',\n    'day' => '{1}:count טאג|{0}:count טעג|[-Inf,Inf]:count טעג',\n    'a_day' => '{1}א טאג|{0}:count טעג|[-Inf,Inf]:count טעג',\n    'd' => ':count טאג',\n    'hour'   => ':count שעה',\n    'a_hour' => 'א שעה',\n    'h' => ':count שעה',\n    'minute' => '{1}:count מינוט|{0}:count מינוט|[-Inf,Inf]:count מינוט',\n    'a_minute' => '{1}א מינוט|{0}:count מינוט|[-Inf,Inf]:count מינוט',\n    'min' => ':count מינוט',\n    'second' => '{1}:count סעקונדע|{0}:count סעקונדעס|[-Inf,Inf]:count סעקונדעס',\n    'a_second' => '{0,1}א סעקונדע|[-Inf,Inf]:count סעקונדעס',\n    's' => ':count סעק',\n    'millisecond' => '{1}:count מילי-סעקונדע|{0}:count מילי-סעקונדעס|[-Inf,Inf]:count מילי-סעקונדעס',\n    'a_millisecond' => '{1}א מילי-סעקונדע|{0}:count מילי-סעקונדעס|[-Inf,Inf]:count מילי-סעקונדעס',\n    'ms' => ':count מס',\n    'microsecond' => '{1}:count מיקרא-סעקונדע|{0}:count מיקרא-סעקונדעס|[-Inf,Inf]:count מיקרא-סעקונדעס',\n    'a_microsecond' => '{1}א מיקרא-סעקונדע|{0}:count מיקרא-סעקונדעס|[-Inf,Inf]:count מיקרא-סעקונדעס',\n    'µs' => ':count מיקרא',\n    'ago' => ':time פון יעצט',\n    'from_now' => ':time ארום',\n    'after' => ':time נאך',\n    'before' => ':time פאר',\n    'diff_now' => 'ממש יעצט',\n    'diff_today' => 'היינט',\n    'diff_yesterday' => 'נעכטן',\n    'diff_tomorrow' => 'מארגן',\n    'diff_before_yesterday' => 'אייער-נעכטן',\n    'diff_after_tomorrow' => 'איבער-מארגן',\n    'period_recurrences' => '{1}איין מאל|{0}:count מאל|[-Inf,Inf]:count מאל',\n    'period_interval' => 'יעדע :interval',\n    'period_start_date' => 'פון :date',\n    'period_end_date' => 'ביז :date',\n    'months' => ['יאנואר', 'פעברואר', 'מארטש', 'אפריל', 'מאי', 'יוני', 'יולי', 'אויגוסט', 'סעפטעמבער', 'אקטאבער', 'נאוועמבער', 'דעצעמבער'],\n    'months_short' => ['יאנ\\'', 'פעב\\'', 'מאר\\'', 'אפר\\'', 'מאי', 'יוני', 'יולי', 'אויג\\'', 'סעפ\\'', 'אקט\\'', 'נאו\\'', 'דעצ\\''],\n    'weekdays' => ['זונטאג', 'מאנטאג', 'דינסטאג', 'מיטוואך', 'דאנערשטאג', 'פרייטאג', 'שבת'],\n    'weekdays_short' => ['זונ\\'', 'מאנ\\'', 'דינ\\'', 'מיט\\'', 'דאנ\\'', 'פריי\\'', 'שבת'],\n    'weekdays_min' => ['ז\\'', 'מ\\'', 'ד\\'', 'מ\\'', 'ד\\'', 'ו\\'', 'ש\\''],\n    'ordinal' => static function ($number) {\n        return $number.'טע';\n    },\n    'list' => [', ', ' און '],\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/yo.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - François B\n * - Atolagbe Abisoye\n */\nreturn [\n    'year' => 'ọdún :count',\n    'a_year' => '{1}ọdún kan|ọdún :count',\n    'month' => 'osù :count',\n    'a_month' => '{1}osù kan|osù :count',\n    'week' => 'ọsẹ :count',\n    'a_week' => '{1}ọsẹ kan|ọsẹ :count',\n    'day' => 'ọjọ́ :count',\n    'a_day' => '{1}ọjọ́ kan|ọjọ́ :count',\n    'hour' => 'wákati :count',\n    'a_hour' => '{1}wákati kan|wákati :count',\n    'minute' => 'ìsẹjú :count',\n    'a_minute' => '{1}ìsẹjú kan|ìsẹjú :count',\n    'second' => 'iaayá :count',\n    'a_second' => '{1}ìsẹjú aayá die|aayá :count',\n    'ago' => ':time kọjá',\n    'from_now' => 'ní :time',\n    'diff_yesterday' => 'Àna',\n    'diff_yesterday_regexp' => 'Àna(?:\\\\s+ni)?',\n    'diff_today' => 'Ònì',\n    'diff_today_regexp' => 'Ònì(?:\\\\s+ni)?',\n    'diff_tomorrow' => 'Ọ̀la',\n    'diff_tomorrow_regexp' => 'Ọ̀la(?:\\\\s+ni)?',\n    'formats' => [\n        'LT' => 'h:mm A',\n        'LTS' => 'h:mm:ss A',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY h:mm A',\n        'LLLL' => 'dddd, D MMMM YYYY h:mm A',\n    ],\n    'calendar' => [\n        'sameDay' => '[Ònì ni] LT',\n        'nextDay' => '[Ọ̀la ni] LT',\n        'nextWeek' => 'dddd [Ọsẹ̀ tón\\'bọ] [ni] LT',\n        'lastDay' => '[Àna ni] LT',\n        'lastWeek' => 'dddd [Ọsẹ̀ tólọ́] [ni] LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => 'ọjọ́ :number',\n    'months' => ['Sẹ́rẹ́', 'Èrèlè', 'Ẹrẹ̀nà', 'Ìgbé', 'Èbibi', 'Òkùdu', 'Agẹmo', 'Ògún', 'Owewe', 'Ọ̀wàrà', 'Bélú', 'Ọ̀pẹ̀̀'],\n    'months_short' => ['Sẹ́r', 'Èrl', 'Ẹrn', 'Ìgb', 'Èbi', 'Òkù', 'Agẹ', 'Ògú', 'Owe', 'Ọ̀wà', 'Bél', 'Ọ̀pẹ̀̀'],\n    'weekdays' => ['Àìkú', 'Ajé', 'Ìsẹ́gun', 'Ọjọ́rú', 'Ọjọ́bọ', 'Ẹtì', 'Àbámẹ́ta'],\n    'weekdays_short' => ['Àìk', 'Ajé', 'Ìsẹ́', 'Ọjr', 'Ọjb', 'Ẹtì', 'Àbá'],\n    'weekdays_min' => ['Àì', 'Aj', 'Ìs', 'Ọr', 'Ọb', 'Ẹt', 'Àb'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'meridiem' => ['Àárọ̀', 'Ọ̀sán'],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/yo_BJ.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn array_replace_recursive(require __DIR__.'/yo.php', [\n    'meridiem' => ['Àárɔ̀', 'Ɔ̀sán'],\n    'weekdays' => ['Ɔjɔ́ Àìkú', 'Ɔjɔ́ Ajé', 'Ɔjɔ́ Ìsɛ́gun', 'Ɔjɔ́rú', 'Ɔjɔ́bɔ', 'Ɔjɔ́ Ɛtì', 'Ɔjɔ́ Àbámɛ́ta'],\n    'weekdays_short' => ['Àìkú', 'Ajé', 'Ìsɛ́gun', 'Ɔjɔ́rú', 'Ɔjɔ́bɔ', 'Ɛtì', 'Àbámɛ́ta'],\n    'weekdays_min' => ['Àìkú', 'Ajé', 'Ìsɛ́gun', 'Ɔjɔ́rú', 'Ɔjɔ́bɔ', 'Ɛtì', 'Àbámɛ́ta'],\n    'months' => ['Oshù Shɛ́rɛ́', 'Oshù Èrèlè', 'Oshù Ɛrɛ̀nà', 'Oshù Ìgbé', 'Oshù Ɛ̀bibi', 'Oshù Òkúdu', 'Oshù Agɛmɔ', 'Oshù Ògún', 'Oshù Owewe', 'Oshù Ɔ̀wàrà', 'Oshù Bélú', 'Oshù Ɔ̀pɛ̀'],\n    'months_short' => ['Shɛ́rɛ́', 'Èrèlè', 'Ɛrɛ̀nà', 'Ìgbé', 'Ɛ̀bibi', 'Òkúdu', 'Agɛmɔ', 'Ògún', 'Owewe', 'Ɔ̀wàrà', 'Bélú', 'Ɔ̀pɛ̀'],\n    'first_day_of_week' => 1,\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd, D MMMM YYYY HH:mm',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/yo_NG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/yo.php';\n"
  },
  {
    "path": "src/Carbon/Lang/yue.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/yue_HK.php';\n"
  },
  {
    "path": "src/Carbon/Lang/yue_HK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/zh_HK.php', [\n    'formats' => [\n        'L' => 'YYYY年MM月DD日 dddd',\n    ],\n    'months' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],\n    'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],\n    'weekdays' => ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],\n    'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n    'meridiem' => ['上午', '下午'],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/yue_Hans.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hans.php';\n"
  },
  {
    "path": "src/Carbon/Lang/yue_Hant.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hant.php';\n"
  },
  {
    "path": "src/Carbon/Lang/yuw.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/yuw_PG.php';\n"
  },
  {
    "path": "src/Carbon/Lang/yuw_PG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Information from native speakers Hannah Sarvasy nungon.localization@gmail.com\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YY',\n    ],\n    'months' => ['jenuari', 'febuari', 'mas', 'epril', 'mei', 'jun', 'julai', 'ögus', 'septemba', 'öktoba', 'nöwemba', 'diksemba'],\n    'months_short' => ['jen', 'feb', 'mas', 'epr', 'mei', 'jun', 'jul', 'ögu', 'sep', 'ökt', 'nöw', 'dis'],\n    'weekdays' => ['sönda', 'mönda', 'sinda', 'mitiwö', 'sogipbono', 'nenggo', 'söndanggie'],\n    'weekdays_short' => ['sön', 'mön', 'sin', 'mit', 'soi', 'nen', 'sab'],\n    'weekdays_min' => ['sön', 'mön', 'sin', 'mit', 'soi', 'nen', 'sab'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/zgh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - BAKTETE Miloud\n */\nreturn [\n    'year' => ':count ⵓⵙⴳⴳⵯⴰⵙ|:count ⵉⵙⴳⴳⵓⵙⴰ',\n    'a_year' => 'ⵓⵙⴳⴳⵯⴰⵙ|:count ⵉⵙⴳⴳⵓⵙⴰ',\n    'y' => ':count ⵓⵙⴳⴳⵯⴰⵙ|:count ⵉⵙⴳⴳⵓⵙⴰ',\n    'month' => ':count ⵡⴰⵢⵢⵓⵔ|:count ⴰⵢⵢⵓⵔⵏ',\n    'a_month' => 'ⵉⴷⵊ ⵡⴰⵢⵢⵓⵔ|:count ⴰⵢⵢⵓⵔⵏ',\n    'm' => ':count ⴰⵢⵢⵓⵔⵏ',\n    'week' => ':count ⵉⵎⴰⵍⴰⵙⵙ|:count ⵉⵎⴰⵍⴰⵙⵙⵏ',\n    'a_week' => 'ⵉⵛⵜ ⵉⵎⴰⵍⴰⵙⵙ|:count ⵉⵎⴰⵍⴰⵙⵙⵏ',\n    'w' => ':count ⵉⵎⴰⵍⴰⵙⵙ.',\n    'day' => ':count ⵡⴰⵙⵙ|:count ⵓⵙⵙⴰⵏ',\n    'a_day' => 'ⵉⴷⵊ ⵡⴰⵙⵙ|:count ⵓⵙⵙⴰⵏ',\n    'd' => ':count ⵓ',\n    'hour' => ':count ⵜⵙⵔⴰⴳⵜ|:count ⵜⵉⵙⵔⴰⴳⵉⵏ',\n    'a_hour' => 'ⵉⵛⵜ ⵜⵙⵔⴰⴳⵜ|:count ⵜⵉⵙⵔⴰⴳⵉⵏ',\n    'h' => ':count ⵜ',\n    'minute' => ':count ⵜⵓⵙⴷⵉⴷⵜ|:count ⵜⵓⵙⴷⵉⴷⵉⵏ',\n    'a_minute' => 'ⵉⵛⵜ ⵜⵓⵙⴷⵉⴷⵜ|:count ⵜⵓⵙⴷⵉⴷⵉⵏ',\n    'min' => ':count ⵜⵓⵙ',\n    'second' => ':count ⵜⵙⵉⵏⵜ|:count ⵜⵉⵙⵉⵏⴰ',\n    'a_second' => 'ⴽⵔⴰ ⵜⵉⵙⵉⵏⴰ|:count ⵜⵉⵙⵉⵏⴰ',\n    's' => ':count ⵜ',\n    'ago' => 'ⵣⴳ :time',\n    'from_now' => 'ⴷⴳ :time',\n    'after' => ':time ⴰⵡⴰⵔ',\n    'before' => ':time ⴷⴰⵜ',\n    'diff_now' => 'ⴰⴷⵡⴰⵍⵉ',\n    'diff_today' => 'ⴰⵙⵙ',\n    'diff_today_regexp' => 'ⴰⵙⵙ(?:\\\\s+ⴰ/ⴰⴷ)?(?:\\\\s+ⴳ)?',\n    'diff_yesterday' => 'ⴰⵙⵙⵏⵏⴰⵟ',\n    'diff_yesterday_regexp' => 'ⴰⵙⵙⵏⵏⴰⵟ(?:\\\\s+ⴳ)?',\n    'diff_tomorrow' => 'ⴰⵙⴽⴽⴰ',\n    'diff_tomorrow_regexp' => 'ⴰⵙⴽⴽⴰ(?:\\\\s+ⴳ)?',\n    'diff_before_yesterday' => 'ⴼⵔ ⵉⴹⵏⵏⴰⵟ',\n    'diff_after_tomorrow' => 'ⵏⴰⴼ ⵓⵙⴽⴽⴰ',\n    'period_recurrences' => ':count ⵜⵉⴽⴽⴰⵍ',\n    'period_interval' => 'ⴽⵓ :interval',\n    'period_start_date' => 'ⴳ :date',\n    'period_end_date' => 'ⵉ :date',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'DD/MM/YYYY',\n        'LL' => 'D MMMM YYYY',\n        'LLL' => 'D MMMM YYYY HH:mm',\n        'LLLL' => 'dddd D MMMM YYYY HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[ⴰⵙⵙ ⴰ/ⴰⴷ ⴳ] LT',\n        'nextDay' => '[ⴰⵙⴽⴽⴰ ⴳ] LT',\n        'nextWeek' => 'dddd [ⴳ] LT',\n        'lastDay' => '[ⴰⵙⵙⵏⵏⴰⵟ ⴳ] LT',\n        'lastWeek' => 'dddd [ⴰⵎⴳⴳⴰⵔⵓ ⴳ] LT',\n        'sameElse' => 'L',\n    ],\n    'meridiem' => ['ⵜⵉⴼⴰⵡⵜ', 'ⵜⴰⴷⴳⴳⵯⴰⵜ'],\n    'months' => ['ⵉⵏⵏⴰⵢⵔ', 'ⴱⵕⴰⵢⵕ', 'ⵎⴰⵕⵚ', 'ⵉⴱⵔⵉⵔ', 'ⵎⴰⵢⵢⵓ', 'ⵢⵓⵏⵢⵓ', 'ⵢⵓⵍⵢⵓⵣ', 'ⵖⵓⵛⵜ', 'ⵛⵓⵜⴰⵏⴱⵉⵔ', 'ⴽⵟⵓⴱⵕ', 'ⵏⵓⵡⴰⵏⴱⵉⵔ', 'ⴷⵓⵊⴰⵏⴱⵉⵔ'],\n    'months_short' => ['ⵉⵏⵏ', 'ⴱⵕⴰ', 'ⵎⴰⵕ', 'ⵉⴱⵔ', 'ⵎⴰⵢ', 'ⵢⵓⵏ', 'ⵢⵓⵍ', 'ⵖⵓⵛ', 'ⵛⵓⵜ', 'ⴽⵟⵓ', 'ⵏⵓⵡ', 'ⴷⵓⵊ'],\n    'weekdays' => ['ⵓⵙⴰⵎⴰⵙ', 'ⵡⴰⵢⵏⴰⵙ', 'ⵓⵙⵉⵏⴰⵙ', 'ⵡⴰⴽⵕⴰⵙ', 'ⵓⴽⵡⴰⵙ', 'ⵓⵙⵉⵎⵡⴰⵙ', 'ⵓⵙⵉⴹⵢⴰⵙ'],\n    'weekdays_short' => ['ⵓⵙⴰ', 'ⵡⴰⵢ', 'ⵓⵙⵉ', 'ⵡⴰⴽ', 'ⵓⴽⵡ', 'ⵓⵙⵉⵎ', 'ⵓⵙⵉⴹ'],\n    'weekdays_min' => ['ⵓⵙⴰ', 'ⵡⴰⵢ', 'ⵓⵙⵉ', 'ⵡⴰⴽ', 'ⵓⴽⵡ', 'ⵓⵙⵉⵎ', 'ⵓⵙⵉⴹ'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 1,\n    'list' => [', ', ' ⴷ '],\n];\n"
  },
  {
    "path": "src/Carbon/Lang/zh.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - xuri\n * - sycuato\n * - bokideckonja\n * - Luo Ning\n * - William Yang (williamyang233)\n */\nreturn array_merge(require __DIR__.'/zh_Hans.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY/MM/DD',\n        'LL' => 'YYYY年M月D日',\n        'LLL' => 'YYYY年M月D日 A h点mm分',\n        'LLLL' => 'YYYY年M月D日dddd A h点mm分',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/zh_CN.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - monkeycon\n * - François B\n * - Jason Katz-Brown\n * - Serhan Apaydın\n * - Matt Johnson\n * - JD Isaacks\n * - Zeno Zeng\n * - Chris Hemp\n * - shankesgk2\n */\nreturn array_merge(require __DIR__.'/zh.php', [\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY/MM/DD',\n        'LL' => 'YYYY年M月D日',\n        'LLL' => 'YYYY年M月D日Ah点mm分',\n        'LLLL' => 'YYYY年M月D日ddddAh点mm分',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/zh_HK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hant_HK.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hans.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - monkeycon\n * - François B\n * - Jason Katz-Brown\n * - Konstantin Konev\n * - Chris Lam\n * - Serhan Apaydın\n * - Gary Lo\n * - JD Isaacks\n * - Chris Hemp\n * - shankesgk2\n * - Daniel Cheung (danvim)\n */\nreturn [\n    'year' => ':count:optional-space年',\n    'y' => ':count:optional-space年',\n    'month' => ':count:optional-space个月',\n    'm' => ':count:optional-space个月',\n    'week' => ':count:optional-space周',\n    'w' => ':count:optional-space周',\n    'day' => ':count:optional-space天',\n    'd' => ':count:optional-space天',\n    'hour' => ':count:optional-space小时',\n    'h' => ':count:optional-space小时',\n    'minute' => ':count:optional-space分钟',\n    'min' => ':count:optional-space分钟',\n    'second' => ':count:optional-space秒',\n    'a_second' => '{1}几秒|[-Inf,Inf]:count:optional-space秒',\n    's' => ':count:optional-space秒',\n    'ago' => ':time前',\n    'from_now' => ':time后',\n    'after' => ':time后',\n    'before' => ':time前',\n    'diff_now' => '现在',\n    'diff_today' => '今天',\n    'diff_yesterday' => '昨天',\n    'diff_tomorrow' => '明天',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY/MM/DD',\n        'LL' => 'YYYY年M月D日',\n        'LLL' => 'YYYY年M月D日 HH:mm',\n        'LLLL' => 'YYYY年M月D日dddd HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[今天]LT',\n        'nextDay' => '[明天]LT',\n        'nextWeek' => '[下]ddddLT',\n        'lastDay' => '[昨天]LT',\n        'lastWeek' => '[上]ddddLT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'd', 'D', 'DDD' => $number.'日',\n            'M' => $number.'月',\n            'w', 'W' => $number.'周',\n            default => $number,\n        };\n    },\n    'meridiem' => static function ($hour, $minute) {\n        $time = $hour * 100 + $minute;\n        if ($time < 600) {\n            return '凌晨';\n        }\n        if ($time < 900) {\n            return '早上';\n        }\n        if ($time < 1130) {\n            return '上午';\n        }\n        if ($time < 1230) {\n            return '中午';\n        }\n        if ($time < 1800) {\n            return '下午';\n        }\n\n        return '晚上';\n    },\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],\n    'weekdays' => ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],\n    'weekdays_short' => ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => '',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hans_HK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hans.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hans_MO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hans.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hans_SG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hans.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hant.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Adam\n * - monkeycon\n * - François B\n * - Jason Katz-Brown\n * - Chris Lam\n * - Serhan Apaydın\n * - Gary Lo\n * - JD Isaacks\n * - Chris Hemp\n * - Eddie\n * - KID\n * - shankesgk2\n * - Daniel Cheung (danvim)\n */\nreturn [\n    'year' => ':count:optional-space年',\n    'y' => ':count:optional-space年',\n    'month' => ':count:optional-space個月',\n    'm' => ':count:optional-space月',\n    'week' => ':count:optional-space週',\n    'w' => ':count:optional-space週',\n    'day' => ':count:optional-space天',\n    'd' => ':count:optional-space天',\n    'hour' => ':count:optional-space小時',\n    'h' => ':count:optional-space小時',\n    'minute' => ':count:optional-space分鐘',\n    'min' => ':count:optional-space分鐘',\n    'second' => ':count:optional-space秒',\n    'a_second' => '{1}幾秒|[-Inf,Inf]:count:optional-space秒',\n    's' => ':count:optional-space秒',\n    'ago' => ':time前',\n    'from_now' => ':time後',\n    'after' => ':time後',\n    'before' => ':time前',\n    'diff_now' => '現在',\n    'diff_today' => '今天',\n    'diff_yesterday' => '昨天',\n    'diff_tomorrow' => '明天',\n    'formats' => [\n        'LT' => 'HH:mm',\n        'LTS' => 'HH:mm:ss',\n        'L' => 'YYYY/MM/DD',\n        'LL' => 'YYYY年M月D日',\n        'LLL' => 'YYYY年M月D日 HH:mm',\n        'LLLL' => 'YYYY年M月D日dddd HH:mm',\n    ],\n    'calendar' => [\n        'sameDay' => '[今天] LT',\n        'nextDay' => '[明天] LT',\n        'nextWeek' => '[下]dddd LT',\n        'lastDay' => '[昨天] LT',\n        'lastWeek' => '[上]dddd LT',\n        'sameElse' => 'L',\n    ],\n    'ordinal' => static function ($number, $period) {\n        return match ($period) {\n            'd', 'D', 'DDD' => $number.'日',\n            'M' => $number.'月',\n            'w', 'W' => $number.'周',\n            default => $number,\n        };\n    },\n    'meridiem' => static function ($hour, $minute) {\n        $time = $hour * 100 + $minute;\n        if ($time < 600) {\n            return '凌晨';\n        }\n        if ($time < 900) {\n            return '早上';\n        }\n        if ($time < 1130) {\n            return '上午';\n        }\n        if ($time < 1230) {\n            return '中午';\n        }\n        if ($time < 1800) {\n            return '下午';\n        }\n\n        return '晚上';\n    },\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],\n    'weekdays' => ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],\n    'weekdays_short' => ['週日', '週一', '週二', '週三', '週四', '週五', '週六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'first_day_of_week' => 1,\n    'day_of_first_week_of_year' => 4,\n    'list' => '',\n];\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hant_HK.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hant.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hant_MO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hant.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_Hant_TW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hant.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_MO.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - tarunvelli\n * - Eddie\n * - KID\n * - shankesgk2\n */\nreturn array_replace_recursive(require __DIR__.'/zh_Hant.php', [\n    'after' => ':time后',\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/zh_SG.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/zh.php', [\n    'formats' => [\n        'L' => 'YYYY年MM月DD日',\n    ],\n    'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'months_short' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],\n    'weekdays' => ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],\n    'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],\n    'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],\n    'day_of_first_week_of_year' => 1,\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/zh_TW.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn require __DIR__.'/zh_Hant_TW.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zh_YUE.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - IBM Globalization Center of Competency, Yamato Software Laboratory    bug-glibc-locales@gnu.org\n */\nreturn array_replace_recursive(require __DIR__.'/zh.php', [\n    'formats' => [\n        'L' => 'YYYY-MM-DD',\n    ],\n]);\n"
  },
  {
    "path": "src/Carbon/Lang/zu.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Unknown default region, use the first alphabetically.\n */\nreturn require __DIR__.'/zu_ZA.php';\n"
  },
  {
    "path": "src/Carbon/Lang/zu_ZA.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * Authors:\n * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za\n */\nreturn array_replace_recursive(require __DIR__.'/en.php', [\n    'formats' => [\n        'L' => 'DD/MM/YYYY',\n    ],\n    'months' => ['Januwari', 'Februwari', 'Mashi', 'Ephreli', 'Meyi', 'Juni', 'Julayi', 'Agasti', 'Septhemba', 'Okthoba', 'Novemba', 'Disemba'],\n    'months_short' => ['Jan', 'Feb', 'Mas', 'Eph', 'Mey', 'Jun', 'Jul', 'Aga', 'Sep', 'Okt', 'Nov', 'Dis'],\n    'weekdays' => ['iSonto', 'uMsombuluko', 'uLwesibili', 'uLwesithathu', 'uLwesine', 'uLwesihlanu', 'uMgqibelo'],\n    'weekdays_short' => ['Son', 'Mso', 'Bil', 'Tha', 'Sin', 'Hla', 'Mgq'],\n    'weekdays_min' => ['Son', 'Mso', 'Bil', 'Tha', 'Sin', 'Hla', 'Mgq'],\n    'first_day_of_week' => 0,\n    'day_of_first_week_of_year' => 1,\n\n    'year' => 'kweminyaka engu-:count',\n    'y' => 'kweminyaka engu-:count',\n    'a_year' => 'kweminyaka engu-:count',\n\n    'month' => 'izinyanga ezingu-:count',\n    'm' => 'izinyanga ezingu-:count',\n    'a_month' => 'izinyanga ezingu-:count',\n\n    'week' => 'lwamasonto angu-:count',\n    'w' => 'lwamasonto angu-:count',\n    'a_week' => 'lwamasonto angu-:count',\n\n    'day' => 'ezingaba ngu-:count',\n    'd' => 'ezingaba ngu-:count',\n    'a_day' => 'ezingaba ngu-:count',\n\n    'hour' => 'amahora angu-:count',\n    'h' => 'amahora angu-:count',\n    'a_hour' => 'amahora angu-:count',\n\n    'minute' => 'ngemizuzu engu-:count',\n    'min' => 'ngemizuzu engu-:count',\n    'a_minute' => 'ngemizuzu engu-:count',\n\n    'second' => 'imizuzwana engu-:count',\n    's' => 'imizuzwana engu-:count',\n    'a_second' => 'imizuzwana engu-:count',\n]);\n"
  },
  {
    "path": "src/Carbon/Language.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse JsonSerializable;\n\nclass Language implements JsonSerializable\n{\n    protected static ?array $languagesNames = null;\n\n    protected static ?array $regionsNames = null;\n\n    protected string $id;\n\n    protected string $code;\n\n    protected ?string $variant = null;\n\n    protected ?string $region = null;\n\n    protected ?array $names = null;\n\n    protected ?string $isoName = null;\n\n    protected ?string $nativeName = null;\n\n    public function __construct(string $id)\n    {\n        $this->id = str_replace('-', '_', $id);\n        $parts = explode('_', $this->id);\n        $this->code = $parts[0];\n\n        if (isset($parts[1])) {\n            if (!preg_match('/^[A-Z]+$/', $parts[1])) {\n                $this->variant = $parts[1];\n                $parts[1] = $parts[2] ?? null;\n            }\n            if ($parts[1]) {\n                $this->region = $parts[1];\n            }\n        }\n    }\n\n    /**\n     * Get the list of the known languages.\n     *\n     * @return array\n     */\n    public static function all(): array\n    {\n        static::$languagesNames ??= require __DIR__.'/List/languages.php';\n\n        return static::$languagesNames;\n    }\n\n    /**\n     * Get the list of the known regions.\n     *\n     * ⚠ ISO 3166-2 short name provided with no warranty, should not\n     * be used for any purpose to show official state names.\n     */\n    public static function regions(): array\n    {\n        static::$regionsNames ??= require __DIR__.'/List/regions.php';\n\n        return static::$regionsNames;\n    }\n\n    /**\n     * Get both isoName and nativeName as an array.\n     */\n    public function getNames(): array\n    {\n        $this->names ??= static::all()[$this->code] ?? [\n            'isoName' => $this->code,\n            'nativeName' => $this->code,\n        ];\n\n        return $this->names;\n    }\n\n    /**\n     * Returns the original locale ID.\n     */\n    public function getId(): string\n    {\n        return $this->id;\n    }\n\n    /**\n     * Returns the code of the locale \"en\"/\"fr\".\n     */\n    public function getCode(): string\n    {\n        return $this->code;\n    }\n\n    /**\n     * Returns the variant code such as cyrl/latn.\n     */\n    public function getVariant(): ?string\n    {\n        return $this->variant;\n    }\n\n    /**\n     * Returns the variant such as Cyrillic/Latin.\n     */\n    public function getVariantName(): ?string\n    {\n        if ($this->variant === 'Latn') {\n            return 'Latin';\n        }\n\n        if ($this->variant === 'Cyrl') {\n            return 'Cyrillic';\n        }\n\n        return $this->variant;\n    }\n\n    /**\n     * Returns the region part of the locale.\n     */\n    public function getRegion(): ?string\n    {\n        return $this->region;\n    }\n\n    /**\n     * Returns the region name for the current language.\n     *\n     * ⚠ ISO 3166-2 short name provided with no warranty, should not\n     * be used for any purpose to show official state names.\n     */\n    public function getRegionName(): ?string\n    {\n        return $this->region ? (static::regions()[$this->region] ?? $this->region) : null;\n    }\n\n    /**\n     * Returns the long ISO language name.\n     */\n    public function getFullIsoName(): string\n    {\n        $this->isoName ??= $this->getNames()['isoName'];\n\n        return $this->isoName;\n    }\n\n    /**\n     * Set the ISO language name.\n     */\n    public function setIsoName(string $isoName): static\n    {\n        $this->isoName = $isoName;\n\n        return $this;\n    }\n\n    /**\n     * Return the full name of the language in this language.\n     */\n    public function getFullNativeName(): string\n    {\n        $this->nativeName ??= $this->getNames()['nativeName'];\n\n        return $this->nativeName;\n    }\n\n    /**\n     * Set the name of the language in this language.\n     */\n    public function setNativeName(string $nativeName): static\n    {\n        $this->nativeName = $nativeName;\n\n        return $this;\n    }\n\n    /**\n     * Returns the short ISO language name.\n     */\n    public function getIsoName(): string\n    {\n        $name = $this->getFullIsoName();\n\n        return trim(strstr($name, ',', true) ?: $name);\n    }\n\n    /**\n     * Get the short name of the language in this language.\n     */\n    public function getNativeName(): string\n    {\n        $name = $this->getFullNativeName();\n\n        return trim(strstr($name, ',', true) ?: $name);\n    }\n\n    /**\n     * Get a string with short ISO name, region in parentheses if applicable, variant in parentheses if applicable.\n     */\n    public function getIsoDescription(): string\n    {\n        $region = $this->getRegionName();\n        $variant = $this->getVariantName();\n\n        return $this->getIsoName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');\n    }\n\n    /**\n     * Get a string with short native name, region in parentheses if applicable, variant in parentheses if applicable.\n     */\n    public function getNativeDescription(): string\n    {\n        $region = $this->getRegionName();\n        $variant = $this->getVariantName();\n\n        return $this->getNativeName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');\n    }\n\n    /**\n     * Get a string with long ISO name, region in parentheses if applicable, variant in parentheses if applicable.\n     */\n    public function getFullIsoDescription(): string\n    {\n        $region = $this->getRegionName();\n        $variant = $this->getVariantName();\n\n        return $this->getFullIsoName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');\n    }\n\n    /**\n     * Get a string with long native name, region in parentheses if applicable, variant in parentheses if applicable.\n     */\n    public function getFullNativeDescription(): string\n    {\n        $region = $this->getRegionName();\n        $variant = $this->getVariantName();\n\n        return $this->getFullNativeName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');\n    }\n\n    /**\n     * Returns the original locale ID.\n     */\n    public function __toString(): string\n    {\n        return $this->getId();\n    }\n\n    /**\n     * Get a string with short ISO name, region in parentheses if applicable, variant in parentheses if applicable.\n     */\n    public function jsonSerialize(): string\n    {\n        return $this->getIsoDescription();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Laravel/ServiceProvider.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Laravel;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Illuminate\\Contracts\\Events\\Dispatcher as DispatcherContract;\nuse Illuminate\\Events\\Dispatcher;\nuse Illuminate\\Events\\EventDispatcher;\nuse Illuminate\\Support\\Carbon as IlluminateCarbon;\nuse Illuminate\\Support\\Facades\\Date;\nuse Throwable;\n\nclass ServiceProvider extends \\Illuminate\\Support\\ServiceProvider\n{\n    /** @var callable|null */\n    protected $appGetter = null;\n\n    /** @var callable|null */\n    protected $localeGetter = null;\n\n    /** @var callable|null */\n    protected $fallbackLocaleGetter = null;\n\n    public function setAppGetter(?callable $appGetter): void\n    {\n        $this->appGetter = $appGetter;\n    }\n\n    public function setLocaleGetter(?callable $localeGetter): void\n    {\n        $this->localeGetter = $localeGetter;\n    }\n\n    public function setFallbackLocaleGetter(?callable $fallbackLocaleGetter): void\n    {\n        $this->fallbackLocaleGetter = $fallbackLocaleGetter;\n    }\n\n    public function boot()\n    {\n        $this->updateLocale();\n        $this->updateFallbackLocale();\n\n        if (!$this->app->bound('events')) {\n            return;\n        }\n\n        $service = $this;\n        $events = $this->app['events'];\n\n        if ($this->isEventDispatcher($events)) {\n            $events->listen(class_exists('Illuminate\\Foundation\\Events\\LocaleUpdated') ? 'Illuminate\\Foundation\\Events\\LocaleUpdated' : 'locale.changed', function () use ($service) {\n                $service->updateLocale();\n            });\n        }\n    }\n\n    public function updateLocale()\n    {\n        $locale = $this->getLocale();\n\n        if ($locale === null) {\n            return;\n        }\n\n        Carbon::setLocale($locale);\n        CarbonImmutable::setLocale($locale);\n        CarbonPeriod::setLocale($locale);\n        CarbonInterval::setLocale($locale);\n\n        if (class_exists(IlluminateCarbon::class)) {\n            IlluminateCarbon::setLocale($locale);\n        }\n\n        if (class_exists(Date::class)) {\n            try {\n                $root = Date::getFacadeRoot();\n                $root->setLocale($locale);\n            } catch (Throwable) {\n                // Non Carbon class in use in Date facade\n            }\n        }\n    }\n\n    public function updateFallbackLocale()\n    {\n        $locale = $this->getFallbackLocale();\n\n        if ($locale === null) {\n            return;\n        }\n\n        Carbon::setFallbackLocale($locale);\n        CarbonImmutable::setFallbackLocale($locale);\n        CarbonPeriod::setFallbackLocale($locale);\n        CarbonInterval::setFallbackLocale($locale);\n\n        if (class_exists(IlluminateCarbon::class) && method_exists(IlluminateCarbon::class, 'setFallbackLocale')) {\n            IlluminateCarbon::setFallbackLocale($locale);\n        }\n\n        if (class_exists(Date::class)) {\n            try {\n                $root = Date::getFacadeRoot();\n                $root->setFallbackLocale($locale);\n            } catch (Throwable) { // @codeCoverageIgnore\n                // Non Carbon class in use in Date facade\n            }\n        }\n    }\n\n    public function register()\n    {\n        // Needed for Laravel < 5.3 compatibility\n    }\n\n    protected function getLocale()\n    {\n        if ($this->localeGetter) {\n            return ($this->localeGetter)();\n        }\n\n        $app = $this->getApp();\n        $app = $app && method_exists($app, 'getLocale')\n            ? $app\n            : $this->getGlobalApp('translator');\n\n        return $app ? $app->getLocale() : null;\n    }\n\n    protected function getFallbackLocale()\n    {\n        if ($this->fallbackLocaleGetter) {\n            return ($this->fallbackLocaleGetter)();\n        }\n\n        $app = $this->getApp();\n\n        return $app && method_exists($app, 'getFallbackLocale')\n            ? $app->getFallbackLocale()\n            : $this->getGlobalApp('translator')?->getFallback();\n    }\n\n    protected function getApp()\n    {\n        if ($this->appGetter) {\n            return ($this->appGetter)();\n        }\n\n        return $this->app ?? $this->getGlobalApp();\n    }\n\n    protected function getGlobalApp(...$args)\n    {\n        return \\function_exists('app') ? \\app(...$args) : null;\n    }\n\n    protected function isEventDispatcher($instance)\n    {\n        return $instance instanceof EventDispatcher\n            || $instance instanceof Dispatcher\n            || $instance instanceof DispatcherContract;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/List/languages.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nreturn [\n    /*\n     * ISO 639-2\n     */\n    'ab' => [\n        'isoName' => 'Abkhazian',\n        'nativeName' => 'аҧсуа бызшәа, аҧсшәа',\n    ],\n    'aa' => [\n        'isoName' => 'Afar',\n        'nativeName' => 'Afaraf',\n    ],\n    'af' => [\n        'isoName' => 'Afrikaans',\n        'nativeName' => 'Afrikaans',\n    ],\n    'ak' => [\n        'isoName' => 'Akan',\n        'nativeName' => 'Akan',\n    ],\n    'sq' => [\n        'isoName' => 'Albanian',\n        'nativeName' => 'Shqip',\n    ],\n    'am' => [\n        'isoName' => 'Amharic',\n        'nativeName' => 'አማርኛ',\n    ],\n    'ar' => [\n        'isoName' => 'Arabic',\n        'nativeName' => 'العربية',\n    ],\n    'an' => [\n        'isoName' => 'Aragonese',\n        'nativeName' => 'aragonés',\n    ],\n    'hy' => [\n        'isoName' => 'Armenian',\n        'nativeName' => 'Հայերեն',\n    ],\n    'as' => [\n        'isoName' => 'Assamese',\n        'nativeName' => 'অসমীয়া',\n    ],\n    'av' => [\n        'isoName' => 'Avaric',\n        'nativeName' => 'авар мацӀ, магӀарул мацӀ',\n    ],\n    'ae' => [\n        'isoName' => 'Avestan',\n        'nativeName' => 'avesta',\n    ],\n    'ay' => [\n        'isoName' => 'Aymara',\n        'nativeName' => 'aymar aru',\n    ],\n    'az' => [\n        'isoName' => 'Azerbaijani',\n        'nativeName' => 'azərbaycan dili',\n    ],\n    'bm' => [\n        'isoName' => 'Bambara',\n        'nativeName' => 'bamanankan',\n    ],\n    'ba' => [\n        'isoName' => 'Bashkir',\n        'nativeName' => 'башҡорт теле',\n    ],\n    'eu' => [\n        'isoName' => 'Basque',\n        'nativeName' => 'euskara, euskera',\n    ],\n    'be' => [\n        'isoName' => 'Belarusian',\n        'nativeName' => 'беларуская мова',\n    ],\n    'bn' => [\n        'isoName' => 'Bengali',\n        'nativeName' => 'বাংলা',\n    ],\n    'bh' => [\n        'isoName' => 'Bihari languages',\n        'nativeName' => 'भोजपुरी',\n    ],\n    'bi' => [\n        'isoName' => 'Bislama',\n        'nativeName' => 'Bislama',\n    ],\n    'bs' => [\n        'isoName' => 'Bosnian',\n        'nativeName' => 'bosanski jezik',\n    ],\n    'br' => [\n        'isoName' => 'Breton',\n        'nativeName' => 'brezhoneg',\n    ],\n    'bg' => [\n        'isoName' => 'Bulgarian',\n        'nativeName' => 'български език',\n    ],\n    'my' => [\n        'isoName' => 'Burmese',\n        'nativeName' => 'ဗမာစာ',\n    ],\n    'ca' => [\n        'isoName' => 'Catalan, Valencian',\n        'nativeName' => 'català, valencià',\n    ],\n    'ch' => [\n        'isoName' => 'Chamorro',\n        'nativeName' => 'Chamoru',\n    ],\n    'ce' => [\n        'isoName' => 'Chechen',\n        'nativeName' => 'нохчийн мотт',\n    ],\n    'ny' => [\n        'isoName' => 'Chichewa, Chewa, Nyanja',\n        'nativeName' => 'chiCheŵa, chinyanja',\n    ],\n    'zh' => [\n        'isoName' => 'Chinese',\n        'nativeName' => '中文 (Zhōngwén), 汉语, 漢語',\n    ],\n    'cv' => [\n        'isoName' => 'Chuvash',\n        'nativeName' => 'чӑваш чӗлхи',\n    ],\n    'kw' => [\n        'isoName' => 'Cornish',\n        'nativeName' => 'Kernewek',\n    ],\n    'co' => [\n        'isoName' => 'Corsican',\n        'nativeName' => 'corsu, lingua corsa',\n    ],\n    'cr' => [\n        'isoName' => 'Cree',\n        'nativeName' => 'ᓀᐦᐃᔭᐍᐏᐣ',\n    ],\n    'hr' => [\n        'isoName' => 'Croatian',\n        'nativeName' => 'hrvatski jezik',\n    ],\n    'cs' => [\n        'isoName' => 'Czech',\n        'nativeName' => 'čeština, český jazyk',\n    ],\n    'da' => [\n        'isoName' => 'Danish',\n        'nativeName' => 'dansk',\n    ],\n    'dv' => [\n        'isoName' => 'Divehi, Dhivehi, Maldivian',\n        'nativeName' => 'ދިވެހި',\n    ],\n    'nl' => [\n        'isoName' => 'Dutch, Flemish',\n        'nativeName' => 'Nederlands, Vlaams',\n    ],\n    'dz' => [\n        'isoName' => 'Dzongkha',\n        'nativeName' => 'རྫོང་ཁ',\n    ],\n    'en' => [\n        'isoName' => 'English',\n        'nativeName' => 'English',\n    ],\n    'eo' => [\n        'isoName' => 'Esperanto',\n        'nativeName' => 'Esperanto',\n    ],\n    'et' => [\n        'isoName' => 'Estonian',\n        'nativeName' => 'eesti, eesti keel',\n    ],\n    'ee' => [\n        'isoName' => 'Ewe',\n        'nativeName' => 'Eʋegbe',\n    ],\n    'fo' => [\n        'isoName' => 'Faroese',\n        'nativeName' => 'føroyskt',\n    ],\n    'fj' => [\n        'isoName' => 'Fijian',\n        'nativeName' => 'vosa Vakaviti',\n    ],\n    'fi' => [\n        'isoName' => 'Finnish',\n        'nativeName' => 'suomi, suomen kieli',\n    ],\n    'fr' => [\n        'isoName' => 'French',\n        'nativeName' => 'français',\n    ],\n    'ff' => [\n        'isoName' => 'Fulah',\n        'nativeName' => 'Fulfulde, Pulaar, Pular',\n    ],\n    'gl' => [\n        'isoName' => 'Galician',\n        'nativeName' => 'Galego',\n    ],\n    'ka' => [\n        'isoName' => 'Georgian',\n        'nativeName' => 'ქართული',\n    ],\n    'de' => [\n        'isoName' => 'German',\n        'nativeName' => 'Deutsch',\n    ],\n    'el' => [\n        'isoName' => 'Greek (modern)',\n        'nativeName' => 'ελληνικά',\n    ],\n    'gn' => [\n        'isoName' => 'Guaraní',\n        'nativeName' => 'Avañe\\'ẽ',\n    ],\n    'gu' => [\n        'isoName' => 'Gujarati',\n        'nativeName' => 'ગુજરાતી',\n    ],\n    'ht' => [\n        'isoName' => 'Haitian, Haitian Creole',\n        'nativeName' => 'Kreyòl ayisyen',\n    ],\n    'ha' => [\n        'isoName' => 'Hausa',\n        'nativeName' => '(Hausa) هَوُسَ',\n    ],\n    'he' => [\n        'isoName' => 'Hebrew (modern)',\n        'nativeName' => 'עברית',\n    ],\n    'hz' => [\n        'isoName' => 'Herero',\n        'nativeName' => 'Otjiherero',\n    ],\n    'hi' => [\n        'isoName' => 'Hindi',\n        'nativeName' => 'हिन्दी, हिंदी',\n    ],\n    'ho' => [\n        'isoName' => 'Hiri Motu',\n        'nativeName' => 'Hiri Motu',\n    ],\n    'hu' => [\n        'isoName' => 'Hungarian',\n        'nativeName' => 'magyar',\n    ],\n    'ia' => [\n        'isoName' => 'Interlingua',\n        'nativeName' => 'Interlingua',\n    ],\n    'id' => [\n        'isoName' => 'Indonesian',\n        'nativeName' => 'Bahasa Indonesia',\n    ],\n    'ie' => [\n        'isoName' => 'Interlingue',\n        'nativeName' => 'Originally called Occidental; then Interlingue after WWII',\n    ],\n    'ga' => [\n        'isoName' => 'Irish',\n        'nativeName' => 'Gaeilge',\n    ],\n    'ig' => [\n        'isoName' => 'Igbo',\n        'nativeName' => 'Asụsụ Igbo',\n    ],\n    'ik' => [\n        'isoName' => 'Inupiaq',\n        'nativeName' => 'Iñupiaq, Iñupiatun',\n    ],\n    'io' => [\n        'isoName' => 'Ido',\n        'nativeName' => 'Ido',\n    ],\n    'is' => [\n        'isoName' => 'Icelandic',\n        'nativeName' => 'Íslenska',\n    ],\n    'it' => [\n        'isoName' => 'Italian',\n        'nativeName' => 'Italiano',\n    ],\n    'iu' => [\n        'isoName' => 'Inuktitut',\n        'nativeName' => 'ᐃᓄᒃᑎᑐᑦ',\n    ],\n    'ja' => [\n        'isoName' => 'Japanese',\n        'nativeName' => '日本語 (にほんご)',\n    ],\n    'jv' => [\n        'isoName' => 'Javanese',\n        'nativeName' => 'ꦧꦱꦗꦮ, Basa Jawa',\n    ],\n    'kl' => [\n        'isoName' => 'Kalaallisut, Greenlandic',\n        'nativeName' => 'kalaallisut, kalaallit oqaasii',\n    ],\n    'kn' => [\n        'isoName' => 'Kannada',\n        'nativeName' => 'ಕನ್ನಡ',\n    ],\n    'kr' => [\n        'isoName' => 'Kanuri',\n        'nativeName' => 'Kanuri',\n    ],\n    'ks' => [\n        'isoName' => 'Kashmiri',\n        'nativeName' => 'कश्मीरी, كشميري‎',\n    ],\n    'kk' => [\n        'isoName' => 'Kazakh',\n        'nativeName' => 'қазақ тілі',\n    ],\n    'km' => [\n        'isoName' => 'Central Khmer',\n        'nativeName' => 'ខ្មែរ, ខេមរភាសា, ភាសាខ្មែរ',\n    ],\n    'ki' => [\n        'isoName' => 'Kikuyu, Gikuyu',\n        'nativeName' => 'Gĩkũyũ',\n    ],\n    'rw' => [\n        'isoName' => 'Kinyarwanda',\n        'nativeName' => 'Ikinyarwanda',\n    ],\n    'ky' => [\n        'isoName' => 'Kirghiz, Kyrgyz',\n        'nativeName' => 'Кыргызча, Кыргыз тили',\n    ],\n    'kv' => [\n        'isoName' => 'Komi',\n        'nativeName' => 'коми кыв',\n    ],\n    'kg' => [\n        'isoName' => 'Kongo',\n        'nativeName' => 'Kikongo',\n    ],\n    'ko' => [\n        'isoName' => 'Korean',\n        'nativeName' => '한국어',\n    ],\n    'ku' => [\n        'isoName' => 'Kurdish',\n        'nativeName' => 'Kurdî, کوردی‎',\n    ],\n    'kj' => [\n        'isoName' => 'Kuanyama, Kwanyama',\n        'nativeName' => 'Kuanyama',\n    ],\n    'la' => [\n        'isoName' => 'Latin',\n        'nativeName' => 'latine, lingua latina',\n    ],\n    'lb' => [\n        'isoName' => 'Luxembourgish, Letzeburgesch',\n        'nativeName' => 'Lëtzebuergesch',\n    ],\n    'lg' => [\n        'isoName' => 'Ganda',\n        'nativeName' => 'Luganda',\n    ],\n    'li' => [\n        'isoName' => 'Limburgan, Limburger, Limburgish',\n        'nativeName' => 'Limburgs',\n    ],\n    'ln' => [\n        'isoName' => 'Lingala',\n        'nativeName' => 'Lingála',\n    ],\n    'lo' => [\n        'isoName' => 'Lao',\n        'nativeName' => 'ພາສາລາວ',\n    ],\n    'lt' => [\n        'isoName' => 'Lithuanian',\n        'nativeName' => 'lietuvių kalba',\n    ],\n    'lu' => [\n        'isoName' => 'Luba-Katanga',\n        'nativeName' => 'Kiluba',\n    ],\n    'lv' => [\n        'isoName' => 'Latvian',\n        'nativeName' => 'latviešu valoda',\n    ],\n    'gv' => [\n        'isoName' => 'Manx',\n        'nativeName' => 'Gaelg, Gailck',\n    ],\n    'mk' => [\n        'isoName' => 'Macedonian',\n        'nativeName' => 'македонски јазик',\n    ],\n    'mg' => [\n        'isoName' => 'Malagasy',\n        'nativeName' => 'fiteny malagasy',\n    ],\n    'ms' => [\n        'isoName' => 'Malay',\n        'nativeName' => 'Bahasa Melayu, بهاس ملايو‎',\n    ],\n    'ml' => [\n        'isoName' => 'Malayalam',\n        'nativeName' => 'മലയാളം',\n    ],\n    'mt' => [\n        'isoName' => 'Maltese',\n        'nativeName' => 'Malti',\n    ],\n    'mi' => [\n        'isoName' => 'Maori',\n        'nativeName' => 'te reo Māori',\n    ],\n    'mr' => [\n        'isoName' => 'Marathi',\n        'nativeName' => 'मराठी',\n    ],\n    'mh' => [\n        'isoName' => 'Marshallese',\n        'nativeName' => 'Kajin M̧ajeļ',\n    ],\n    'mn' => [\n        'isoName' => 'Mongolian',\n        'nativeName' => 'Монгол хэл',\n    ],\n    'na' => [\n        'isoName' => 'Nauru',\n        'nativeName' => 'Dorerin Naoero',\n    ],\n    'nv' => [\n        'isoName' => 'Navajo, Navaho',\n        'nativeName' => 'Diné bizaad',\n    ],\n    'nd' => [\n        'isoName' => 'North Ndebele',\n        'nativeName' => 'isiNdebele',\n    ],\n    'ne' => [\n        'isoName' => 'Nepali',\n        'nativeName' => 'नेपाली',\n    ],\n    'ng' => [\n        'isoName' => 'Ndonga',\n        'nativeName' => 'Owambo',\n    ],\n    'nb' => [\n        'isoName' => 'Norwegian Bokmål',\n        'nativeName' => 'Norsk Bokmål',\n    ],\n    'nn' => [\n        'isoName' => 'Norwegian Nynorsk',\n        'nativeName' => 'Norsk Nynorsk',\n    ],\n    'no' => [\n        'isoName' => 'Norwegian',\n        'nativeName' => 'Norsk',\n    ],\n    'ii' => [\n        'isoName' => 'Sichuan Yi, Nuosu',\n        'nativeName' => 'ꆈꌠ꒿ Nuosuhxop',\n    ],\n    'nr' => [\n        'isoName' => 'South Ndebele',\n        'nativeName' => 'isiNdebele',\n    ],\n    'oc' => [\n        'isoName' => 'Occitan',\n        'nativeName' => 'occitan, lenga d\\'òc',\n    ],\n    'oj' => [\n        'isoName' => 'Ojibwa',\n        'nativeName' => 'ᐊᓂᔑᓈᐯᒧᐎᓐ',\n    ],\n    'cu' => [\n        'isoName' => 'Church Slavic, Church Slavonic, Old Church Slavonic, Old Slavonic, Old Bulgarian',\n        'nativeName' => 'ѩзыкъ словѣньскъ',\n    ],\n    'om' => [\n        'isoName' => 'Oromo',\n        'nativeName' => 'Afaan Oromoo',\n    ],\n    'or' => [\n        'isoName' => 'Oriya',\n        'nativeName' => 'ଓଡ଼ିଆ',\n    ],\n    'os' => [\n        'isoName' => 'Ossetian, Ossetic',\n        'nativeName' => 'ирон æвзаг',\n    ],\n    'pa' => [\n        'isoName' => 'Panjabi, Punjabi',\n        'nativeName' => 'ਪੰਜਾਬੀ',\n    ],\n    'pi' => [\n        'isoName' => 'Pali',\n        'nativeName' => 'पाऴि',\n    ],\n    'fa' => [\n        'isoName' => 'Persian',\n        'nativeName' => 'فارسی',\n    ],\n    'pl' => [\n        'isoName' => 'Polish',\n        'nativeName' => 'język polski, polszczyzna',\n    ],\n    'ps' => [\n        'isoName' => 'Pashto, Pushto',\n        'nativeName' => 'پښتو',\n    ],\n    'pt' => [\n        'isoName' => 'Portuguese',\n        'nativeName' => 'Português',\n    ],\n    'qu' => [\n        'isoName' => 'Quechua',\n        'nativeName' => 'Runa Simi, Kichwa',\n    ],\n    'rm' => [\n        'isoName' => 'Romansh',\n        'nativeName' => 'Rumantsch Grischun',\n    ],\n    'rn' => [\n        'isoName' => 'Rundi',\n        'nativeName' => 'Ikirundi',\n    ],\n    'ro' => [\n        'isoName' => 'Romanian, Moldavian, Moldovan',\n        'nativeName' => 'Română',\n    ],\n    'ru' => [\n        'isoName' => 'Russian',\n        'nativeName' => 'русский',\n    ],\n    'sa' => [\n        'isoName' => 'Sanskrit',\n        'nativeName' => 'संस्कृतम्',\n    ],\n    'sc' => [\n        'isoName' => 'Sardinian',\n        'nativeName' => 'sardu',\n    ],\n    'sd' => [\n        'isoName' => 'Sindhi',\n        'nativeName' => 'सिन्धी, سنڌي، سندھی‎',\n    ],\n    'se' => [\n        'isoName' => 'Northern Sami',\n        'nativeName' => 'Davvisámegiella',\n    ],\n    'sm' => [\n        'isoName' => 'Samoan',\n        'nativeName' => 'gagana fa\\'a Samoa',\n    ],\n    'sg' => [\n        'isoName' => 'Sango',\n        'nativeName' => 'yângâ tî sängö',\n    ],\n    'sr' => [\n        'isoName' => 'Serbian',\n        'nativeName' => 'српски језик',\n    ],\n    'gd' => [\n        'isoName' => 'Gaelic, Scottish Gaelic',\n        'nativeName' => 'Gàidhlig',\n    ],\n    'sn' => [\n        'isoName' => 'Shona',\n        'nativeName' => 'chiShona',\n    ],\n    'si' => [\n        'isoName' => 'Sinhala, Sinhalese',\n        'nativeName' => 'සිංහල',\n    ],\n    'sk' => [\n        'isoName' => 'Slovak',\n        'nativeName' => 'Slovenčina, Slovenský Jazyk',\n    ],\n    'sl' => [\n        'isoName' => 'Slovenian',\n        'nativeName' => 'Slovenski Jezik, Slovenščina',\n    ],\n    'so' => [\n        'isoName' => 'Somali',\n        'nativeName' => 'Soomaaliga, af Soomaali',\n    ],\n    'st' => [\n        'isoName' => 'Southern Sotho',\n        'nativeName' => 'Sesotho',\n    ],\n    'es' => [\n        'isoName' => 'Spanish, Castilian',\n        'nativeName' => 'Español',\n    ],\n    'su' => [\n        'isoName' => 'Sundanese',\n        'nativeName' => 'Basa Sunda',\n    ],\n    'sw' => [\n        'isoName' => 'Swahili',\n        'nativeName' => 'Kiswahili',\n    ],\n    'ss' => [\n        'isoName' => 'Swati',\n        'nativeName' => 'SiSwati',\n    ],\n    'sv' => [\n        'isoName' => 'Swedish',\n        'nativeName' => 'Svenska',\n    ],\n    'ta' => [\n        'isoName' => 'Tamil',\n        'nativeName' => 'தமிழ்',\n    ],\n    'te' => [\n        'isoName' => 'Telugu',\n        'nativeName' => 'తెలుగు',\n    ],\n    'tg' => [\n        'isoName' => 'Tajik',\n        'nativeName' => 'тоҷикӣ, toçikī, تاجیکی‎',\n    ],\n    'th' => [\n        'isoName' => 'Thai',\n        'nativeName' => 'ไทย',\n    ],\n    'ti' => [\n        'isoName' => 'Tigrinya',\n        'nativeName' => 'ትግርኛ',\n    ],\n    'bo' => [\n        'isoName' => 'Tibetan',\n        'nativeName' => 'བོད་ཡིག',\n    ],\n    'tk' => [\n        'isoName' => 'Turkmen',\n        'nativeName' => 'Türkmen, Түркмен',\n    ],\n    'tl' => [\n        'isoName' => 'Tagalog',\n        'nativeName' => 'Wikang Tagalog',\n    ],\n    'tn' => [\n        'isoName' => 'Tswana',\n        'nativeName' => 'Setswana',\n    ],\n    'to' => [\n        'isoName' => 'Tongan (Tonga Islands)',\n        'nativeName' => 'Faka Tonga',\n    ],\n    'tr' => [\n        'isoName' => 'Turkish',\n        'nativeName' => 'Türkçe',\n    ],\n    'ts' => [\n        'isoName' => 'Tsonga',\n        'nativeName' => 'Xitsonga',\n    ],\n    'tt' => [\n        'isoName' => 'Tatar',\n        'nativeName' => 'татар теле, tatar tele',\n    ],\n    'tw' => [\n        'isoName' => 'Twi',\n        'nativeName' => 'Twi',\n    ],\n    'ty' => [\n        'isoName' => 'Tahitian',\n        'nativeName' => 'Reo Tahiti',\n    ],\n    'ug' => [\n        'isoName' => 'Uighur, Uyghur',\n        'nativeName' => 'Uyƣurqə, ‫ئۇيغۇرچ',\n    ],\n    'uk' => [\n        'isoName' => 'Ukrainian',\n        'nativeName' => 'Українська',\n    ],\n    'ur' => [\n        'isoName' => 'Urdu',\n        'nativeName' => 'اردو',\n    ],\n    'uz' => [\n        'isoName' => 'Uzbek',\n        'nativeName' => 'Oʻzbek, Ўзбек, أۇزبېك‎',\n    ],\n    've' => [\n        'isoName' => 'Venda',\n        'nativeName' => 'Tshivenḓa',\n    ],\n    'vi' => [\n        'isoName' => 'Vietnamese',\n        'nativeName' => 'Tiếng Việt',\n    ],\n    'vo' => [\n        'isoName' => 'Volapük',\n        'nativeName' => 'Volapük',\n    ],\n    'wa' => [\n        'isoName' => 'Walloon',\n        'nativeName' => 'Walon',\n    ],\n    'cy' => [\n        'isoName' => 'Welsh',\n        'nativeName' => 'Cymraeg',\n    ],\n    'wo' => [\n        'isoName' => 'Wolof',\n        'nativeName' => 'Wollof',\n    ],\n    'fy' => [\n        'isoName' => 'Western Frisian',\n        'nativeName' => 'Frysk',\n    ],\n    'xh' => [\n        'isoName' => 'Xhosa',\n        'nativeName' => 'isiXhosa',\n    ],\n    'yi' => [\n        'isoName' => 'Yiddish',\n        'nativeName' => 'ייִדיש',\n    ],\n    'yo' => [\n        'isoName' => 'Yoruba',\n        'nativeName' => 'Yorùbá',\n    ],\n    'za' => [\n        'isoName' => 'Zhuang, Chuang',\n        'nativeName' => 'Saɯ cueŋƅ, Saw cuengh',\n    ],\n    'zu' => [\n        'isoName' => 'Zulu',\n        'nativeName' => 'isiZulu',\n    ],\n    /*\n     * Add ISO 639-3 languages available in Carbon\n     */\n    'agq' => [\n        'isoName' => 'Aghem',\n        'nativeName' => 'Aghem',\n    ],\n    'agr' => [\n        'isoName' => 'Aguaruna',\n        'nativeName' => 'Aguaruna',\n    ],\n    'anp' => [\n        'isoName' => 'Angika',\n        'nativeName' => 'Angika',\n    ],\n    'asa' => [\n        'isoName' => 'Asu',\n        'nativeName' => 'Asu',\n    ],\n    'ast' => [\n        'isoName' => 'Asturian',\n        'nativeName' => 'Asturian',\n    ],\n    'ayc' => [\n        'isoName' => 'Southern Aymara',\n        'nativeName' => 'Southern Aymara',\n    ],\n    'bas' => [\n        'isoName' => 'Basaa',\n        'nativeName' => 'Basaa',\n    ],\n    'bem' => [\n        'isoName' => 'Bemba',\n        'nativeName' => 'Bemba',\n    ],\n    'bez' => [\n        'isoName' => 'Bena',\n        'nativeName' => 'Bena',\n    ],\n    'bhb' => [\n        'isoName' => 'Bhili',\n        'nativeName' => 'Bhili',\n    ],\n    'bho' => [\n        'isoName' => 'Bhojpuri',\n        'nativeName' => 'Bhojpuri',\n    ],\n    'brx' => [\n        'isoName' => 'Bodo',\n        'nativeName' => 'Bodo',\n    ],\n    'byn' => [\n        'isoName' => 'Bilin',\n        'nativeName' => 'Bilin',\n    ],\n    'ccp' => [\n        'isoName' => 'Chakma',\n        'nativeName' => 'Chakma',\n    ],\n    'cgg' => [\n        'isoName' => 'Chiga',\n        'nativeName' => 'Chiga',\n    ],\n    'chr' => [\n        'isoName' => 'Cherokee',\n        'nativeName' => 'Cherokee',\n    ],\n    'cmn' => [\n        'isoName' => 'Chinese',\n        'nativeName' => 'Chinese',\n    ],\n    'crh' => [\n        'isoName' => 'Crimean Turkish',\n        'nativeName' => 'Crimean Turkish',\n    ],\n    'csb' => [\n        'isoName' => 'Kashubian',\n        'nativeName' => 'Kashubian',\n    ],\n    'dav' => [\n        'isoName' => 'Taita',\n        'nativeName' => 'Taita',\n    ],\n    'dje' => [\n        'isoName' => 'Zarma',\n        'nativeName' => 'Zarma',\n    ],\n    'doi' => [\n        'isoName' => 'Dogri (macrolanguage)',\n        'nativeName' => 'Dogri (macrolanguage)',\n    ],\n    'dsb' => [\n        'isoName' => 'Lower Sorbian',\n        'nativeName' => 'Lower Sorbian',\n    ],\n    'dua' => [\n        'isoName' => 'Duala',\n        'nativeName' => 'Duala',\n    ],\n    'dyo' => [\n        'isoName' => 'Jola-Fonyi',\n        'nativeName' => 'Jola-Fonyi',\n    ],\n    'ebu' => [\n        'isoName' => 'Embu',\n        'nativeName' => 'Embu',\n    ],\n    'ewo' => [\n        'isoName' => 'Ewondo',\n        'nativeName' => 'Ewondo',\n    ],\n    'fil' => [\n        'isoName' => 'Filipino',\n        'nativeName' => 'Filipino',\n    ],\n    'fur' => [\n        'isoName' => 'Friulian',\n        'nativeName' => 'Friulian',\n    ],\n    'gez' => [\n        'isoName' => 'Geez',\n        'nativeName' => 'Geez',\n    ],\n    'gom' => [\n        'isoName' => 'Konkani, Goan',\n        'nativeName' => 'ಕೊಂಕಣಿ',\n    ],\n    'gsw' => [\n        'isoName' => 'Swiss German',\n        'nativeName' => 'Swiss German',\n    ],\n    'guz' => [\n        'isoName' => 'Gusii',\n        'nativeName' => 'Gusii',\n    ],\n    'hak' => [\n        'isoName' => 'Hakka Chinese',\n        'nativeName' => 'Hakka Chinese',\n    ],\n    'haw' => [\n        'isoName' => 'Hawaiian',\n        'nativeName' => 'Hawaiian',\n    ],\n    'hif' => [\n        'isoName' => 'Fiji Hindi',\n        'nativeName' => 'Fiji Hindi',\n    ],\n    'hne' => [\n        'isoName' => 'Chhattisgarhi',\n        'nativeName' => 'Chhattisgarhi',\n    ],\n    'hsb' => [\n        'isoName' => 'Upper Sorbian',\n        'nativeName' => 'Upper Sorbian',\n    ],\n    'jgo' => [\n        'isoName' => 'Ngomba',\n        'nativeName' => 'Ngomba',\n    ],\n    'jmc' => [\n        'isoName' => 'Machame',\n        'nativeName' => 'Machame',\n    ],\n    'kab' => [\n        'isoName' => 'Kabyle',\n        'nativeName' => 'Kabyle',\n    ],\n    'kam' => [\n        'isoName' => 'Kamba',\n        'nativeName' => 'Kamba',\n    ],\n    'kde' => [\n        'isoName' => 'Makonde',\n        'nativeName' => 'Makonde',\n    ],\n    'kea' => [\n        'isoName' => 'Kabuverdianu',\n        'nativeName' => 'Kabuverdianu',\n    ],\n    'khq' => [\n        'isoName' => 'Koyra Chiini',\n        'nativeName' => 'Koyra Chiini',\n    ],\n    'kkj' => [\n        'isoName' => 'Kako',\n        'nativeName' => 'Kako',\n    ],\n    'kln' => [\n        'isoName' => 'Kalenjin',\n        'nativeName' => 'Kalenjin',\n    ],\n    'kok' => [\n        'isoName' => 'Konkani',\n        'nativeName' => 'Konkani',\n    ],\n    'ksb' => [\n        'isoName' => 'Shambala',\n        'nativeName' => 'Shambala',\n    ],\n    'ksf' => [\n        'isoName' => 'Bafia',\n        'nativeName' => 'Bafia',\n    ],\n    'ksh' => [\n        'isoName' => 'Colognian',\n        'nativeName' => 'Colognian',\n    ],\n    'lag' => [\n        'isoName' => 'Langi',\n        'nativeName' => 'Langi',\n    ],\n    'lij' => [\n        'isoName' => 'Ligurian',\n        'nativeName' => 'Ligurian',\n    ],\n    'lkt' => [\n        'isoName' => 'Lakota',\n        'nativeName' => 'Lakota',\n    ],\n    'lrc' => [\n        'isoName' => 'Northern Luri',\n        'nativeName' => 'Northern Luri',\n    ],\n    'luo' => [\n        'isoName' => 'Luo',\n        'nativeName' => 'Luo',\n    ],\n    'luy' => [\n        'isoName' => 'Luyia',\n        'nativeName' => 'Luyia',\n    ],\n    'lzh' => [\n        'isoName' => 'Literary Chinese',\n        'nativeName' => 'Literary Chinese',\n    ],\n    'mag' => [\n        'isoName' => 'Magahi',\n        'nativeName' => 'Magahi',\n    ],\n    'mai' => [\n        'isoName' => 'Maithili',\n        'nativeName' => 'Maithili',\n    ],\n    'mas' => [\n        'isoName' => 'Masai',\n        'nativeName' => 'Masai',\n    ],\n    'mer' => [\n        'isoName' => 'Meru',\n        'nativeName' => 'Meru',\n    ],\n    'mfe' => [\n        'isoName' => 'Morisyen',\n        'nativeName' => 'Morisyen',\n    ],\n    'mgh' => [\n        'isoName' => 'Makhuwa-Meetto',\n        'nativeName' => 'Makhuwa-Meetto',\n    ],\n    'mgo' => [\n        'isoName' => 'Metaʼ',\n        'nativeName' => 'Metaʼ',\n    ],\n    'mhr' => [\n        'isoName' => 'Eastern Mari',\n        'nativeName' => 'Eastern Mari',\n    ],\n    'miq' => [\n        'isoName' => 'Mískito',\n        'nativeName' => 'Mískito',\n    ],\n    'mjw' => [\n        'isoName' => 'Karbi',\n        'nativeName' => 'Karbi',\n    ],\n    'mni' => [\n        'isoName' => 'Manipuri',\n        'nativeName' => 'Manipuri',\n    ],\n    'mua' => [\n        'isoName' => 'Mundang',\n        'nativeName' => 'Mundang',\n    ],\n    'mzn' => [\n        'isoName' => 'Mazanderani',\n        'nativeName' => 'Mazanderani',\n    ],\n    'nan' => [\n        'isoName' => 'Min Nan Chinese',\n        'nativeName' => 'Min Nan Chinese',\n    ],\n    'naq' => [\n        'isoName' => 'Nama',\n        'nativeName' => 'Nama',\n    ],\n    'nds' => [\n        'isoName' => 'Low German',\n        'nativeName' => 'Low German',\n    ],\n    'nhn' => [\n        'isoName' => 'Central Nahuatl',\n        'nativeName' => 'Central Nahuatl',\n    ],\n    'niu' => [\n        'isoName' => 'Niuean',\n        'nativeName' => 'Niuean',\n    ],\n    'nmg' => [\n        'isoName' => 'Kwasio',\n        'nativeName' => 'Kwasio',\n    ],\n    'nnh' => [\n        'isoName' => 'Ngiemboon',\n        'nativeName' => 'Ngiemboon',\n    ],\n    'nso' => [\n        'isoName' => 'Northern Sotho',\n        'nativeName' => 'Northern Sotho',\n    ],\n    'nus' => [\n        'isoName' => 'Nuer',\n        'nativeName' => 'Nuer',\n    ],\n    'nyn' => [\n        'isoName' => 'Nyankole',\n        'nativeName' => 'Nyankole',\n    ],\n    'pap' => [\n        'isoName' => 'Papiamento',\n        'nativeName' => 'Papiamento',\n    ],\n    'prg' => [\n        'isoName' => 'Prussian',\n        'nativeName' => 'Prussian',\n    ],\n    'quz' => [\n        'isoName' => 'Cusco Quechua',\n        'nativeName' => 'Cusco Quechua',\n    ],\n    'raj' => [\n        'isoName' => 'Rajasthani',\n        'nativeName' => 'Rajasthani',\n    ],\n    'rof' => [\n        'isoName' => 'Rombo',\n        'nativeName' => 'Rombo',\n    ],\n    'rwk' => [\n        'isoName' => 'Rwa',\n        'nativeName' => 'Rwa',\n    ],\n    'sah' => [\n        'isoName' => 'Sakha',\n        'nativeName' => 'Sakha',\n    ],\n    'saq' => [\n        'isoName' => 'Samburu',\n        'nativeName' => 'Samburu',\n    ],\n    'sat' => [\n        'isoName' => 'Santali',\n        'nativeName' => 'Santali',\n    ],\n    'sbp' => [\n        'isoName' => 'Sangu',\n        'nativeName' => 'Sangu',\n    ],\n    'scr' => [\n        'isoName' => 'Serbo Croatian',\n        'nativeName' => 'Serbo Croatian',\n    ],\n    'seh' => [\n        'isoName' => 'Sena',\n        'nativeName' => 'Sena',\n    ],\n    'ses' => [\n        'isoName' => 'Koyraboro Senni',\n        'nativeName' => 'Koyraboro Senni',\n    ],\n    'sgs' => [\n        'isoName' => 'Samogitian',\n        'nativeName' => 'Samogitian',\n    ],\n    'shi' => [\n        'isoName' => 'Tachelhit',\n        'nativeName' => 'Tachelhit',\n    ],\n    'shn' => [\n        'isoName' => 'Shan',\n        'nativeName' => 'Shan',\n    ],\n    'shs' => [\n        'isoName' => 'Shuswap',\n        'nativeName' => 'Shuswap',\n    ],\n    'sid' => [\n        'isoName' => 'Sidamo',\n        'nativeName' => 'Sidamo',\n    ],\n    'smn' => [\n        'isoName' => 'Inari Sami',\n        'nativeName' => 'Inari Sami',\n    ],\n    'szl' => [\n        'isoName' => 'Silesian',\n        'nativeName' => 'Silesian',\n    ],\n    'tcy' => [\n        'isoName' => 'Tulu',\n        'nativeName' => 'Tulu',\n    ],\n    'teo' => [\n        'isoName' => 'Teso',\n        'nativeName' => 'Teso',\n    ],\n    'tet' => [\n        'isoName' => 'Tetum',\n        'nativeName' => 'Tetum',\n    ],\n    'the' => [\n        'isoName' => 'Chitwania Tharu',\n        'nativeName' => 'Chitwania Tharu',\n    ],\n    'tig' => [\n        'isoName' => 'Tigre',\n        'nativeName' => 'Tigre',\n    ],\n    'tlh' => [\n        'isoName' => 'Klingon',\n        'nativeName' => 'tlhIngan Hol',\n    ],\n    'tpi' => [\n        'isoName' => 'Tok Pisin',\n        'nativeName' => 'Tok Pisin',\n    ],\n    'twq' => [\n        'isoName' => 'Tasawaq',\n        'nativeName' => 'Tasawaq',\n    ],\n    'tzl' => [\n        'isoName' => 'Talossan',\n        'nativeName' => 'Talossan',\n    ],\n    'tzm' => [\n        'isoName' => 'Tamazight, Central Atlas',\n        'nativeName' => 'ⵜⵎⴰⵣⵉⵖⵜ',\n    ],\n    'unm' => [\n        'isoName' => 'Unami',\n        'nativeName' => 'Unami',\n    ],\n    'vai' => [\n        'isoName' => 'Vai',\n        'nativeName' => 'Vai',\n    ],\n    'vun' => [\n        'isoName' => 'Vunjo',\n        'nativeName' => 'Vunjo',\n    ],\n    'wae' => [\n        'isoName' => 'Walser',\n        'nativeName' => 'Walser',\n    ],\n    'wal' => [\n        'isoName' => 'Wolaytta',\n        'nativeName' => 'Wolaytta',\n    ],\n    'xog' => [\n        'isoName' => 'Soga',\n        'nativeName' => 'Soga',\n    ],\n    'yav' => [\n        'isoName' => 'Yangben',\n        'nativeName' => 'Yangben',\n    ],\n    'yue' => [\n        'isoName' => 'Cantonese',\n        'nativeName' => 'Cantonese',\n    ],\n    'yuw' => [\n        'isoName' => 'Yau (Morobe Province)',\n        'nativeName' => 'Yau (Morobe Province)',\n    ],\n    'zgh' => [\n        'isoName' => 'Standard Moroccan Tamazight',\n        'nativeName' => 'Standard Moroccan Tamazight',\n    ],\n];\n"
  },
  {
    "path": "src/Carbon/List/regions.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n/*\n * ISO 3166-2 short names.\n *\n * ⚠ Provided with No Warranty\n *\n * This list has no official value, and it's using short name, i.e. the first column of\n * https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes\n *\n * Without the extra parenthesis unless a particular ambiguity in the list.\n *\n * For instance:\n *  - Falkland Islands and Malvinas both to FK, but we keep only the first for brevity and\n *    because there is no ambiguity in the list to justify longer name.\n *  - For Sint Maarten/Saint Martin not to have any confusion between FM and SX codes that\n *    are on the same island and so to be clear it's not referring to the whole island,\n *    south (dutch-speaking) and north (french-speaking) parentheses are kept for disambiguation.\n *  - For Virgin Islands, that can refer to either VG or VI, parentheses are also kept for\n *    disambiguation.\n *\n * We won't take into consideration any change request in this list unless there is an update\n * in ISO 3166-2 itself that we need to align to.\n *\n * It's a purely geographical helper, state sovereignty is out of scope, for political\n * complains you should address them directly to https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes\n *\n * Anyone needing official state names (such as the second column of the wikipedia page above)\n * should seek for another tool, this list is not meant to provide long names.\n */\nreturn [\n    'AD' => 'Andorra',\n    'AE' => 'United Arab Emirates',\n    'AF' => 'Afghanistan',\n    'AG' => 'Antigua and Barbuda',\n    'AI' => 'Anguilla',\n    'AL' => 'Albania',\n    'AM' => 'Armenia',\n    'AO' => 'Angola',\n    'AQ' => 'Antarctica',\n    'AR' => 'Argentina',\n    'AS' => 'American Samoa',\n    'AT' => 'Austria',\n    'AU' => 'Australia',\n    'AW' => 'Aruba',\n    'AX' => 'Åland Islands',\n    'AZ' => 'Azerbaijan',\n    'BA' => 'Bosnia and Herzegovina',\n    'BB' => 'Barbados',\n    'BD' => 'Bangladesh',\n    'BE' => 'Belgium',\n    'BF' => 'Burkina Faso',\n    'BG' => 'Bulgaria',\n    'BH' => 'Bahrain',\n    'BI' => 'Burundi',\n    'BJ' => 'Benin',\n    'BL' => 'Saint Barthélemy',\n    'BM' => 'Bermuda',\n    'BN' => 'Brunei Darussalam',\n    'BO' => 'Bolivia',\n    'BQ' => 'Bonaire, Sint Eustatius and Saba',\n    'BR' => 'Brazil',\n    'BS' => 'Bahamas',\n    'BT' => 'Bhutan',\n    'BV' => 'Bouvet Island',\n    'BW' => 'Botswana',\n    'BY' => 'Belarus',\n    'BZ' => 'Belize',\n    'CA' => 'Canada',\n    'CC' => 'Cocos (Keeling) Islands',\n    'CD' => 'Congo, Democratic Republic of the',\n    'CF' => 'Central African Republic',\n    'CG' => 'Congo',\n    'CH' => 'Switzerland',\n    'CI' => 'Côte d\\'Ivoire',\n    'CK' => 'Cook Islands',\n    'CL' => 'Chile',\n    'CM' => 'Cameroon',\n    'CN' => 'China',\n    'CO' => 'Colombia',\n    'CR' => 'Costa Rica',\n    'CU' => 'Cuba',\n    'CV' => 'Cabo Verde',\n    'CW' => 'Curaçao',\n    'CX' => 'Christmas Island',\n    'CY' => 'Cyprus',\n    'CZ' => 'Czechia',\n    'DE' => 'Germany',\n    'DJ' => 'Djibouti',\n    'DK' => 'Denmark',\n    'DM' => 'Dominica',\n    'DO' => 'Dominican Republic',\n    'DZ' => 'Algeria',\n    'EC' => 'Ecuador',\n    'EE' => 'Estonia',\n    'EG' => 'Egypt',\n    'EH' => 'Western Sahara',\n    'ER' => 'Eritrea',\n    'ES' => 'Spain',\n    'ET' => 'Ethiopia',\n    'FI' => 'Finland',\n    'FJ' => 'Fiji',\n    'FK' => 'Falkland Islands',\n    'FM' => 'Micronesia',\n    'FO' => 'Faroe Islands',\n    'FR' => 'France',\n    'GA' => 'Gabon',\n    'GB' => 'United Kingdom of Great Britain and Northern Ireland',\n    'GD' => 'Grenada',\n    'GE' => 'Georgia',\n    'GF' => 'French Guiana',\n    'GG' => 'Guernsey',\n    'GH' => 'Ghana',\n    'GI' => 'Gibraltar',\n    'GL' => 'Greenland',\n    'GM' => 'Gambia',\n    'GN' => 'Guinea',\n    'GP' => 'Guadeloupe',\n    'GQ' => 'Equatorial Guinea',\n    'GR' => 'Greece',\n    'GS' => 'South Georgia and the South Sandwich Islands',\n    'GT' => 'Guatemala',\n    'GU' => 'Guam',\n    'GW' => 'Guinea-Bissau',\n    'GY' => 'Guyana',\n    'HK' => 'Hong Kong',\n    'HM' => 'Heard Island and McDonald Islands',\n    'HN' => 'Honduras',\n    'HR' => 'Croatia',\n    'HT' => 'Haiti',\n    'HU' => 'Hungary',\n    'ID' => 'Indonesia',\n    'IE' => 'Ireland',\n    'IL' => 'Israel',\n    'IM' => 'Isle of Man',\n    'IN' => 'India',\n    'IO' => 'British Indian Ocean Territory',\n    'IQ' => 'Iraq',\n    'IR' => 'Iran',\n    'IS' => 'Iceland',\n    'IT' => 'Italy',\n    'JE' => 'Jersey',\n    'JM' => 'Jamaica',\n    'JO' => 'Jordan',\n    'JP' => 'Japan',\n    'KE' => 'Kenya',\n    'KG' => 'Kyrgyzstan',\n    'KH' => 'Cambodia',\n    'KI' => 'Kiribati',\n    'KM' => 'Comoros',\n    'KN' => 'Saint Kitts and Nevis',\n    'KP' => 'Korea (Democratic People\\'s Republic of)',\n    'KR' => 'Korea, Republic of',\n    'KW' => 'Kuwait',\n    'KY' => 'Cayman Islands',\n    'KZ' => 'Kazakhstan',\n    'LA' => 'Lao People\\'s Democratic Republic',\n    'LB' => 'Lebanon',\n    'LC' => 'Saint Lucia',\n    'LI' => 'Liechtenstein',\n    'LK' => 'Sri Lanka',\n    'LR' => 'Liberia',\n    'LS' => 'Lesotho',\n    'LT' => 'Lithuania',\n    'LU' => 'Luxembourg',\n    'LV' => 'Latvia',\n    'LY' => 'Libya',\n    'MA' => 'Morocco',\n    'MC' => 'Monaco',\n    'MD' => 'Moldova',\n    'ME' => 'Montenegro',\n    'MF' => 'Saint Martin (French part)',\n    'MG' => 'Madagascar',\n    'MH' => 'Marshall Islands',\n    'MK' => 'North Macedonia',\n    'ML' => 'Mali',\n    'MM' => 'Myanmar',\n    'MN' => 'Mongolia',\n    'MO' => 'Macao',\n    'MP' => 'Northern Mariana Islands',\n    'MQ' => 'Martinique',\n    'MR' => 'Mauritania',\n    'MS' => 'Montserrat',\n    'MT' => 'Malta',\n    'MU' => 'Mauritius',\n    'MV' => 'Maldives',\n    'MW' => 'Malawi',\n    'MX' => 'Mexico',\n    'MY' => 'Malaysia',\n    'MZ' => 'Mozambique',\n    'NA' => 'Namibia',\n    'NC' => 'New Caledonia',\n    'NE' => 'Niger',\n    'NF' => 'Norfolk Island',\n    'NG' => 'Nigeria',\n    'NI' => 'Nicaragua',\n    'NL' => 'Netherlands',\n    'NO' => 'Norway',\n    'NP' => 'Nepal',\n    'NR' => 'Nauru',\n    'NU' => 'Niue',\n    'NZ' => 'New Zealand',\n    'OM' => 'Oman',\n    'PA' => 'Panama',\n    'PE' => 'Peru',\n    'PF' => 'French Polynesia',\n    'PG' => 'Papua New Guinea',\n    'PH' => 'Philippines',\n    'PK' => 'Pakistan',\n    'PL' => 'Poland',\n    'PM' => 'Saint Pierre and Miquelon',\n    'PN' => 'Pitcairn',\n    'PR' => 'Puerto Rico',\n    'PS' => 'Palestine',\n    'PT' => 'Portugal',\n    'PW' => 'Palau',\n    'PY' => 'Paraguay',\n    'QA' => 'Qatar',\n    'RE' => 'Réunion',\n    'RO' => 'Romania',\n    'RS' => 'Serbia',\n    'RU' => 'Russian Federation',\n    'RW' => 'Rwanda',\n    'SA' => 'Saudi Arabia',\n    'SB' => 'Solomon Islands',\n    'SC' => 'Seychelles',\n    'SD' => 'Sudan',\n    'SE' => 'Sweden',\n    'SG' => 'Singapore',\n    'SH' => 'Saint Helena, Ascension and Tristan da Cunha',\n    'SI' => 'Slovenia',\n    'SJ' => 'Svalbard and Jan Mayen',\n    'SK' => 'Slovakia',\n    'SL' => 'Sierra Leone',\n    'SM' => 'San Marino',\n    'SN' => 'Senegal',\n    'SO' => 'Somalia',\n    'SR' => 'Suriname',\n    'SS' => 'South Sudan',\n    'ST' => 'Sao Tome and Principe',\n    'SV' => 'El Salvador',\n    'SX' => 'Sint Maarten (Dutch part)',\n    'SY' => 'Syrian Arab Republic',\n    'SZ' => 'Eswatini',\n    'TC' => 'Turks and Caicos Islands',\n    'TD' => 'Chad',\n    'TF' => 'French Southern Territories',\n    'TG' => 'Togo',\n    'TH' => 'Thailand',\n    'TJ' => 'Tajikistan',\n    'TK' => 'Tokelau',\n    'TL' => 'Timor-Leste',\n    'TM' => 'Turkmenistan',\n    'TN' => 'Tunisia',\n    'TO' => 'Tonga',\n    'TR' => 'Turkey',\n    'TT' => 'Trinidad and Tobago',\n    'TV' => 'Tuvalu',\n    'TW' => 'Taiwan',\n    'TZ' => 'Tanzania',\n    'UA' => 'Ukraine',\n    'UG' => 'Uganda',\n    'UM' => 'United States Minor Outlying Islands',\n    'US' => 'United States of America',\n    'UY' => 'Uruguay',\n    'UZ' => 'Uzbekistan',\n    'VA' => 'Holy See',\n    'VC' => 'Saint Vincent and the Grenadines',\n    'VE' => 'Venezuela',\n    'VG' => 'Virgin Islands (British)',\n    'VI' => 'Virgin Islands (U.S.)',\n    'VN' => 'Viet Nam',\n    'VU' => 'Vanuatu',\n    'WF' => 'Wallis and Futuna',\n    'WS' => 'Samoa',\n    'YE' => 'Yemen',\n    'YT' => 'Mayotte',\n    'ZA' => 'South Africa',\n    'ZM' => 'Zambia',\n    'ZW' => 'Zimbabwe',\n];\n"
  },
  {
    "path": "src/Carbon/MessageFormatter/MessageFormatterMapper.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\MessageFormatter;\n\nuse ReflectionMethod;\nuse Symfony\\Component\\Translation\\Formatter\\MessageFormatter;\nuse Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface;\n\n// @codeCoverageIgnoreStart\n$transMethod = new ReflectionMethod(MessageFormatterInterface::class, 'format');\n\nrequire $transMethod->getParameters()[0]->hasType()\n    ? __DIR__.'/../../../lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php'\n    : __DIR__.'/../../../lazy/Carbon/MessageFormatter/MessageFormatterMapperWeakType.php';\n// @codeCoverageIgnoreEnd\n\nfinal class MessageFormatterMapper extends LazyMessageFormatter\n{\n    /**\n     * Wrapped formatter.\n     *\n     * @var MessageFormatterInterface\n     */\n    protected $formatter;\n\n    public function __construct(?MessageFormatterInterface $formatter = null)\n    {\n        $this->formatter = $formatter ?? new MessageFormatter();\n    }\n\n    protected function transformLocale(?string $locale): ?string\n    {\n        return $locale ? preg_replace('/[_@][A-Za-z][a-z]{2,}/', '', $locale) : $locale;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Month.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Exceptions\\InvalidFormatException;\n\nenum Month: int\n{\n    // Using constants is only safe starting from PHP 8.2\n    case January = 1; // CarbonInterface::JANUARY\n    case February = 2; // CarbonInterface::FEBRUARY\n    case March = 3; // CarbonInterface::MARCH\n    case April = 4; // CarbonInterface::APRIL\n    case May = 5; // CarbonInterface::MAY\n    case June = 6; // CarbonInterface::JUNE\n    case July = 7; // CarbonInterface::JULY\n    case August = 8; // CarbonInterface::AUGUST\n    case September = 9; // CarbonInterface::SEPTEMBER\n    case October = 10; // CarbonInterface::OCTOBER\n    case November = 11; // CarbonInterface::NOVEMBER\n    case December = 12; // CarbonInterface::DECEMBER\n\n    public static function int(self|int|null $value): ?int\n    {\n        return $value instanceof self ? $value->value : $value;\n    }\n\n    public static function fromNumber(int $number): self\n    {\n        $month = $number % CarbonInterface::MONTHS_PER_YEAR;\n\n        return self::from($month + ($month < 1 ? CarbonInterface::MONTHS_PER_YEAR : 0));\n    }\n\n    public static function fromName(string $name, ?string $locale = null): self\n    {\n        try {\n            return self::from(CarbonImmutable::parseFromLocale(\"$name 1\", $locale)->month);\n        } catch (InvalidFormatException $exception) {\n            // Possibly current language expect a dot after short name, but it's missing\n            if ($locale !== null && !mb_strlen($name) < 4 && !str_ends_with($name, '.')) {\n                try {\n                    return self::from(CarbonImmutable::parseFromLocale(\"$name. 1\", $locale)->month);\n                } catch (InvalidFormatException $e) {\n                    // Throw previous error\n                }\n            }\n\n            throw $exception;\n        }\n    }\n\n    public function ofTheYear(CarbonImmutable|int|null $now = null): CarbonImmutable\n    {\n        if (\\is_int($now)) {\n            return CarbonImmutable::create($now, $this->value);\n        }\n\n        $modifier = $this->name.' 1st';\n\n        return $now?->modify($modifier) ?? new CarbonImmutable($modifier);\n    }\n\n    public function locale(string $locale, ?CarbonImmutable $now = null): CarbonImmutable\n    {\n        return $this->ofTheYear($now)->locale($locale);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/PHPStan/MacroExtension.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\PHPStan;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\FactoryImmutable;\nuse Closure;\nuse InvalidArgumentException;\nuse PHPStan\\Reflection\\ClassReflection;\nuse PHPStan\\Reflection\\MethodReflection;\nuse PHPStan\\Reflection\\MethodsClassReflectionExtension;\nuse PHPStan\\Reflection\\ReflectionProvider;\nuse PHPStan\\Type\\ClosureTypeFactory;\nuse ReflectionFunction;\nuse ReflectionMethod;\nuse stdClass;\nuse Throwable;\n\n/**\n * Class MacroExtension.\n *\n * @codeCoverageIgnore Pure PHPStan wrapper.\n */\nfinal class MacroExtension implements MethodsClassReflectionExtension\n{\n    /**\n     * @var ReflectionProvider\n     */\n    protected $reflectionProvider;\n\n    /**\n     * @var ClosureTypeFactory\n     */\n    protected $closureTypeFactory;\n\n    /**\n     * Extension constructor.\n     *\n     * @param ReflectionProvider $reflectionProvider\n     * @param ClosureTypeFactory $closureTypeFactory\n     */\n    public function __construct(\n        ReflectionProvider $reflectionProvider,\n        ClosureTypeFactory $closureTypeFactory\n    ) {\n        $this->reflectionProvider = $reflectionProvider;\n        $this->closureTypeFactory = $closureTypeFactory;\n    }\n\n    /**\n     * {@inheritdoc}\n     */\n    public function hasMethod(ClassReflection $classReflection, string $methodName): bool\n    {\n        if (\n            $classReflection->getName() !== CarbonInterface::class &&\n            !$classReflection->isSubclassOf(CarbonInterface::class)\n        ) {\n            return false;\n        }\n\n        $className = $classReflection->getName();\n\n        return \\is_callable([$className, 'hasMacro']) &&\n            $className::hasMacro($methodName);\n    }\n\n    /**\n     * {@inheritdoc}\n     */\n    public function getMethod(ClassReflection $classReflection, string $methodName): MethodReflection\n    {\n        $macros = FactoryImmutable::getDefaultInstance()->getSettings()['macros'] ?? [];\n        $macro = $macros[$methodName] ?? throw new InvalidArgumentException(\"Macro '$methodName' not found\");\n        $static = false;\n        $final = false;\n        $deprecated = false;\n        $docComment = null;\n\n        if (\\is_array($macro) && \\count($macro) === 2 && \\is_string($macro[1])) {\n            \\assert($macro[1] !== '');\n\n            $reflection = new ReflectionMethod($macro[0], $macro[1]);\n            $closure = \\is_object($macro[0]) ? $reflection->getClosure($macro[0]) : $reflection->getClosure();\n\n            $static = $reflection->isStatic();\n            $final = $reflection->isFinal();\n            $deprecated = $reflection->isDeprecated();\n            $docComment = $reflection->getDocComment() ?: null;\n        } elseif (\\is_string($macro)) {\n            $reflection = new ReflectionFunction($macro);\n            $closure = $reflection->getClosure();\n            $deprecated = $reflection->isDeprecated();\n            $docComment = $reflection->getDocComment() ?: null;\n        } elseif ($macro instanceof Closure) {\n            $closure = $macro;\n\n            try {\n                $boundClosure = Closure::bind($closure, new stdClass());\n                $static = (!$boundClosure || (new ReflectionFunction($boundClosure))->getClosureThis() === null);\n            } catch (Throwable) {\n                $static = true;\n            }\n\n            $reflection = new ReflectionFunction($macro);\n            $deprecated = $reflection->isDeprecated();\n            $docComment = $reflection->getDocComment() ?: null;\n        }\n\n        if (!isset($closure)) {\n            throw new InvalidArgumentException('Could not create reflection from the spec given'); // @codeCoverageIgnore\n        }\n\n        $closureType = $this->closureTypeFactory->fromClosureObject($closure);\n\n        return new MacroMethodReflection(\n            $classReflection,\n            $methodName,\n            $closureType,\n            $static,\n            $final,\n            $deprecated,\n            $docComment,\n        );\n    }\n}\n"
  },
  {
    "path": "src/Carbon/PHPStan/MacroMethodReflection.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\PHPStan;\n\nuse PHPStan\\Reflection\\ClassReflection;\nuse PHPStan\\Reflection\\MethodReflection;\nuse PHPStan\\Reflection\\ParametersAcceptor;\nuse PHPStan\\TrinaryLogic;\nuse PHPStan\\Type\\Type;\n\nuse function preg_match;\n\nclass MacroMethodReflection implements MethodReflection\n{\n    private ClassReflection $declaringClass;\n    private string $methodName;\n    private ParametersAcceptor $macroClosureType;\n    private bool $static;\n    private bool $final;\n    private bool $deprecated;\n    private ?string $docComment;\n\n    public function __construct(\n        ClassReflection $declaringClass,\n        string $methodName,\n        ParametersAcceptor $macroClosureType,\n        bool $static,\n        bool $final,\n        bool $deprecated,\n        ?string $docComment\n    ) {\n        $this->declaringClass = $declaringClass;\n        $this->methodName = $methodName;\n        $this->macroClosureType = $macroClosureType;\n        $this->static = $static;\n        $this->final = $final;\n        $this->deprecated = $deprecated;\n        $this->docComment = $docComment;\n    }\n\n    public function getDeclaringClass(): ClassReflection\n    {\n        return $this->declaringClass;\n    }\n\n    public function isStatic(): bool\n    {\n        return $this->static;\n    }\n\n    public function isPrivate(): bool\n    {\n        return false;\n    }\n\n    public function isPublic(): bool\n    {\n        return true;\n    }\n\n    public function getDocComment(): ?string\n    {\n        return $this->docComment;\n    }\n\n    public function getName(): string\n    {\n        return $this->methodName;\n    }\n\n    public function getPrototype(): \\PHPStan\\Reflection\\ClassMemberReflection\n    {\n        return $this;\n    }\n\n    public function getVariants(): array\n    {\n        return [$this->macroClosureType];\n    }\n\n    public function isDeprecated(): TrinaryLogic\n    {\n        return TrinaryLogic::createFromBoolean(\n            $this->deprecated ||\n            preg_match('/@deprecated/i', $this->getDocComment() ?: '')\n        );\n    }\n\n    public function getDeprecatedDescription(): ?string\n    {\n        return null;\n    }\n\n    public function isFinal(): TrinaryLogic\n    {\n        return TrinaryLogic::createFromBoolean($this->final);\n    }\n\n    public function isInternal(): TrinaryLogic\n    {\n        return TrinaryLogic::createNo();\n    }\n\n    public function getThrowType(): ?Type\n    {\n        return null;\n    }\n\n    public function hasSideEffects(): TrinaryLogic\n    {\n        return TrinaryLogic::createMaybe();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Boundaries.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Carbon\\Unit;\nuse Carbon\\WeekDay;\n\n/**\n * Trait Boundaries.\n *\n * startOf, endOf and derived method for each unit.\n *\n * Depends on the following properties:\n *\n * @property int $year\n * @property int $month\n * @property int $daysInMonth\n * @property int $quarter\n *\n * Depends on the following methods:\n *\n * @method $this setTime(int $hour, int $minute, int $second = 0, int $microseconds = 0)\n * @method $this setDate(int $year, int $month, int $day)\n * @method $this addMonths(int $value = 1)\n */\ntrait Boundaries\n{\n    /**\n     * Resets the time to 00:00:00 start of day\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfDay();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfDay()\n    {\n        return $this->setTime(0, 0, 0, 0);\n    }\n\n    /**\n     * Resets the time to 23:59:59.999999 end of day\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfDay();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfDay()\n    {\n        return $this->setTime(static::HOURS_PER_DAY - 1, static::MINUTES_PER_HOUR - 1, static::SECONDS_PER_MINUTE - 1, static::MICROSECONDS_PER_SECOND - 1);\n    }\n\n    /**\n     * Resets the date to the first day of the month and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfMonth();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfMonth()\n    {\n        return $this->setDate($this->year, $this->month, 1)->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of the month and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfMonth();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfMonth()\n    {\n        return $this->setDate($this->year, $this->month, $this->daysInMonth)->endOfDay();\n    }\n\n    /**\n     * Resets the date to the first day of the quarter and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfQuarter();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfQuarter()\n    {\n        $month = ($this->quarter - 1) * static::MONTHS_PER_QUARTER + 1;\n\n        return $this->setDate($this->year, $month, 1)->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of the quarter and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfQuarter();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfQuarter()\n    {\n        return $this->startOfQuarter()->addMonths(static::MONTHS_PER_QUARTER - 1)->endOfMonth();\n    }\n\n    /**\n     * Resets the date to the first day of the year and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfYear();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfYear()\n    {\n        return $this->setDate($this->year, 1, 1)->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of the year and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfYear();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfYear()\n    {\n        return $this->setDate($this->year, 12, 31)->endOfDay();\n    }\n\n    /**\n     * Resets the date to the first day of the decade and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfDecade();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfDecade()\n    {\n        $year = $this->year - $this->year % static::YEARS_PER_DECADE;\n\n        return $this->setDate($year, 1, 1)->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of the decade and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfDecade();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfDecade()\n    {\n        $year = $this->year - $this->year % static::YEARS_PER_DECADE + static::YEARS_PER_DECADE - 1;\n\n        return $this->setDate($year, 12, 31)->endOfDay();\n    }\n\n    /**\n     * Resets the date to the first day of the century and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfCentury();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfCentury()\n    {\n        $year = $this->year - ($this->year - 1) % static::YEARS_PER_CENTURY;\n\n        return $this->setDate($year, 1, 1)->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of the century and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfCentury();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfCentury()\n    {\n        $year = $this->year - 1 - ($this->year - 1) % static::YEARS_PER_CENTURY + static::YEARS_PER_CENTURY;\n\n        return $this->setDate($year, 12, 31)->endOfDay();\n    }\n\n    /**\n     * Resets the date to the first day of the millennium and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfMillennium();\n     * ```\n     *\n     * @return static\n     */\n    public function startOfMillennium()\n    {\n        $year = $this->year - ($this->year - 1) % static::YEARS_PER_MILLENNIUM;\n\n        return $this->setDate($year, 1, 1)->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of the millennium and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfMillennium();\n     * ```\n     *\n     * @return static\n     */\n    public function endOfMillennium()\n    {\n        $year = $this->year - 1 - ($this->year - 1) % static::YEARS_PER_MILLENNIUM + static::YEARS_PER_MILLENNIUM;\n\n        return $this->setDate($year, 12, 31)->endOfDay();\n    }\n\n    /**\n     * Resets the date to the first day of week (defined in $weekStartsAt) and the time to 00:00:00\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->startOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek(Carbon::SUNDAY) . \"\\n\";\n     * ```\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     *\n     * @return static\n     */\n    public function startOfWeek(WeekDay|int|null $weekStartsAt = null): static\n    {\n        return $this\n            ->subDays(\n                (static::DAYS_PER_WEEK + $this->dayOfWeek - (WeekDay::int($weekStartsAt) ?? $this->firstWeekDay)) %\n                static::DAYS_PER_WEEK,\n            )\n            ->startOfDay();\n    }\n\n    /**\n     * Resets the date to end of week (defined in $weekEndsAt) and time to 23:59:59.999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->endOfWeek() . \"\\n\";\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek(Carbon::SATURDAY) . \"\\n\";\n     * ```\n     *\n     * @param WeekDay|int|null $weekEndsAt optional end allow you to specify the day of week to use to end the week\n     *\n     * @return static\n     */\n    public function endOfWeek(WeekDay|int|null $weekEndsAt = null): static\n    {\n        return $this\n            ->addDays(\n                (static::DAYS_PER_WEEK - $this->dayOfWeek + (WeekDay::int($weekEndsAt) ?? $this->lastWeekDay)) %\n                static::DAYS_PER_WEEK,\n            )\n            ->endOfDay();\n    }\n\n    /**\n     * Modify to start of current hour, minutes and seconds become 0\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfHour();\n     * ```\n     */\n    public function startOfHour(): static\n    {\n        return $this->setTime($this->hour, 0, 0, 0);\n    }\n\n    /**\n     * Modify to end of current hour, minutes and seconds become 59\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfHour();\n     * ```\n     */\n    public function endOfHour(): static\n    {\n        return $this->setTime($this->hour, static::MINUTES_PER_HOUR - 1, static::SECONDS_PER_MINUTE - 1, static::MICROSECONDS_PER_SECOND - 1);\n    }\n\n    /**\n     * Modify to start of current minute, seconds become 0\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->startOfMinute();\n     * ```\n     */\n    public function startOfMinute(): static\n    {\n        return $this->setTime($this->hour, $this->minute, 0, 0);\n    }\n\n    /**\n     * Modify to end of current minute, seconds become 59\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16')->endOfMinute();\n     * ```\n     */\n    public function endOfMinute(): static\n    {\n        return $this->setTime($this->hour, $this->minute, static::SECONDS_PER_MINUTE - 1, static::MICROSECONDS_PER_SECOND - 1);\n    }\n\n    /**\n     * Modify to start of current second, microseconds become 0\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function startOfSecond(): static\n    {\n        return $this->setTime($this->hour, $this->minute, $this->second, 0);\n    }\n\n    /**\n     * Modify to end of current second, microseconds become 999999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->endOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function endOfSecond(): static\n    {\n        return $this->setTime($this->hour, $this->minute, $this->second, static::MICROSECONDS_PER_SECOND - 1);\n    }\n\n    /**\n     * Modify to start of current millisecond, microseconds such as 12345 become 123000\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function startOfMillisecond(): static\n    {\n        $millisecond = (int) floor($this->micro / 1000);\n\n        return $this->setTime($this->hour, $this->minute, $this->second, $millisecond * 1000);\n    }\n\n    /**\n     * Modify to end of current millisecond, microseconds such as 12345 become 123999\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->endOfSecond()\n     *   ->format('H:i:s.u');\n     * ```\n     */\n    public function endOfMillisecond(): static\n    {\n        $millisecond = (int) floor($this->micro / 1000);\n\n        return $this->setTime($this->hour, $this->minute, $this->second, $millisecond * 1000 + 999);\n    }\n\n    /**\n     * Modify to start of current given unit.\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOf(Unit::Month)\n     *   ->endOf(Unit::Week, Carbon::FRIDAY);\n     * ```\n     */\n    public function startOf(Unit|string $unit, mixed ...$params): static\n    {\n        $ucfUnit = ucfirst($unit instanceof Unit ? $unit->value : static::singularUnit($unit));\n        $method = \"startOf$ucfUnit\";\n        if (!method_exists($this, $method)) {\n            throw new UnknownUnitException($unit);\n        }\n\n        return $this->$method(...$params);\n    }\n\n    /**\n     * Modify to end of current given unit.\n     *\n     * @example\n     * ```\n     * echo Carbon::parse('2018-07-25 12:45:16.334455')\n     *   ->startOf(Unit::Month)\n     *   ->endOf(Unit::Week, Carbon::FRIDAY);\n     * ```\n     */\n    public function endOf(Unit|string $unit, mixed ...$params): static\n    {\n        $ucfUnit = ucfirst($unit instanceof Unit ? $unit->value : static::singularUnit($unit));\n        $method = \"endOf$ucfUnit\";\n        if (!method_exists($this, $method)) {\n            throw new UnknownUnitException($unit);\n        }\n\n        return $this->$method(...$params);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Cast.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Exceptions\\InvalidCastException;\nuse DateTimeInterface;\n\n/**\n * Trait Cast.\n *\n * Utils to cast into an other class.\n */\ntrait Cast\n{\n    /**\n     * Cast the current instance into the given class.\n     *\n     * @template T\n     *\n     * @param class-string<T> $className The $className::instance() method will be called to cast the current object.\n     *\n     * @return T\n     */\n    public function cast(string $className): mixed\n    {\n        if (!method_exists($className, 'instance')) {\n            if (is_a($className, DateTimeInterface::class, true)) {\n                return $className::createFromFormat('U.u', $this->rawFormat('U.u'))\n                    ->setTimezone($this->getTimezone());\n            }\n\n            throw new InvalidCastException(\"$className has not the instance() method needed to cast the date.\");\n        }\n\n        return $className::instance($this);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Comparison.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse BackedEnum;\nuse BadMethodCallException;\nuse Carbon\\CarbonConverterInterface;\nuse Carbon\\CarbonInterface;\nuse Carbon\\Exceptions\\BadComparisonUnitException;\nuse Carbon\\FactoryImmutable;\nuse Carbon\\Month;\nuse Carbon\\Unit;\nuse Carbon\\WeekDay;\nuse Closure;\nuse DateInterval;\nuse DateTimeInterface;\nuse InvalidArgumentException;\n\n/**\n * Trait Comparison.\n *\n * Comparison utils and testers. All the following methods return booleans.\n * nowWithSameTz\n *\n * Depends on the following methods:\n *\n * @method static        resolveCarbon($date)\n * @method static        copy()\n * @method static        nowWithSameTz()\n * @method static static yesterday($timezone = null)\n * @method static static tomorrow($timezone = null)\n */\ntrait Comparison\n{\n    protected bool $endOfTime = false;\n\n    protected bool $startOfTime = false;\n\n    /**\n     * Determines if the instance is equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->eq(Carbon::parse('2018-07-25 12:45:16')); // true\n     * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see equalTo()\n     */\n    public function eq(DateTimeInterface|string $date): bool\n    {\n        return $this->equalTo($date);\n    }\n\n    /**\n     * Determines if the instance is equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->equalTo(Carbon::parse('2018-07-25 12:45:16')); // true\n     * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:17'); // false\n     * ```\n     */\n    public function equalTo(DateTimeInterface|string $date): bool\n    {\n        return $this == $this->resolveCarbon($date);\n    }\n\n    /**\n     * Determines if the instance is not equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->ne(Carbon::parse('2018-07-25 12:45:16')); // false\n     * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see notEqualTo()\n     */\n    public function ne(DateTimeInterface|string $date): bool\n    {\n        return $this->notEqualTo($date);\n    }\n\n    /**\n     * Determines if the instance is not equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->notEqualTo(Carbon::parse('2018-07-25 12:45:16')); // false\n     * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:17'); // true\n     * ```\n     */\n    public function notEqualTo(DateTimeInterface|string $date): bool\n    {\n        return !$this->equalTo($date);\n    }\n\n    /**\n     * Determines if the instance is greater (after) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see greaterThan()\n     */\n    public function gt(DateTimeInterface|string $date): bool\n    {\n        return $this->greaterThan($date);\n    }\n\n    /**\n     * Determines if the instance is greater (after) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:17'); // false\n     * ```\n     */\n    public function greaterThan(DateTimeInterface|string $date): bool\n    {\n        return $this > $this->resolveCarbon($date);\n    }\n\n    /**\n     * Determines if the instance is greater (after) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see greaterThan()\n     */\n    public function isAfter(DateTimeInterface|string $date): bool\n    {\n        return $this->greaterThan($date);\n    }\n\n    /**\n     * Determines if the instance is greater (after) than or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:17'); // false\n     * ```\n     *\n     * @see greaterThanOrEqualTo()\n     */\n    public function gte(DateTimeInterface|string $date): bool\n    {\n        return $this->greaterThanOrEqualTo($date);\n    }\n\n    /**\n     * Determines if the instance is greater (after) than or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:15'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:17'); // false\n     * ```\n     */\n    public function greaterThanOrEqualTo(DateTimeInterface|string $date): bool\n    {\n        return $this >= $this->resolveCarbon($date);\n    }\n\n    /**\n     * Determines if the instance is less (before) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see lessThan()\n     */\n    public function lt(DateTimeInterface|string $date): bool\n    {\n        return $this->lessThan($date);\n    }\n\n    /**\n     * Determines if the instance is less (before) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:17'); // true\n     * ```\n     */\n    public function lessThan(DateTimeInterface|string $date): bool\n    {\n        return $this < $this->resolveCarbon($date);\n    }\n\n    /**\n     * Determines if the instance is less (before) than another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:16'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see lessThan()\n     */\n    public function isBefore(DateTimeInterface|string $date): bool\n    {\n        return $this->lessThan($date);\n    }\n\n    /**\n     * Determines if the instance is less (before) or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:17'); // true\n     * ```\n     *\n     * @see lessThanOrEqualTo()\n     */\n    public function lte(DateTimeInterface|string $date): bool\n    {\n        return $this->lessThanOrEqualTo($date);\n    }\n\n    /**\n     * Determines if the instance is less (before) or equal to another\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:15'); // false\n     * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:16'); // true\n     * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:17'); // true\n     * ```\n     */\n    public function lessThanOrEqualTo(DateTimeInterface|string $date): bool\n    {\n        return $this <= $this->resolveCarbon($date);\n    }\n\n    /**\n     * Determines if the instance is between two others.\n     *\n     * The third argument allow you to specify if bounds are included or not (true by default)\n     * but for when you including/excluding bounds may produce different results in your application,\n     * we recommend to use the explicit methods ->betweenIncluded() or ->betweenExcluded() instead.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->between('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->between('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01', false); // false\n     * ```\n     *\n     * @param bool $equal Indicates if an equal to comparison should be done\n     */\n    public function between(DateTimeInterface|string $date1, DateTimeInterface|string $date2, bool $equal = true): bool\n    {\n        $date1 = $this->resolveCarbon($date1);\n        $date2 = $this->resolveCarbon($date2);\n\n        if ($date1->greaterThan($date2)) {\n            [$date1, $date2] = [$date2, $date1];\n        }\n\n        if ($equal) {\n            return $this >= $date1 && $this <= $date2;\n        }\n\n        return $this > $date1 && $this < $date2;\n    }\n\n    /**\n     * Determines if the instance is between two others, bounds included.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->betweenIncluded('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-25', '2018-08-01'); // true\n     * ```\n     */\n    public function betweenIncluded(DateTimeInterface|string $date1, DateTimeInterface|string $date2): bool\n    {\n        return $this->between($date1, $date2, true);\n    }\n\n    /**\n     * Determines if the instance is between two others, bounds excluded.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->betweenExcluded('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-25', '2018-08-01'); // false\n     * ```\n     */\n    public function betweenExcluded(DateTimeInterface|string $date1, DateTimeInterface|string $date2): bool\n    {\n        return $this->between($date1, $date2, false);\n    }\n\n    /**\n     * Determines if the instance is between two others\n     *\n     * @example\n     * ```\n     * Carbon::parse('2018-07-25')->isBetween('2018-07-14', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->isBetween('2018-08-01', '2018-08-20'); // false\n     * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01'); // true\n     * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01', false); // false\n     * ```\n     *\n     * @param bool $equal Indicates if an equal to comparison should be done\n     */\n    public function isBetween(DateTimeInterface|string $date1, DateTimeInterface|string $date2, bool $equal = true): bool\n    {\n        return $this->between($date1, $date2, $equal);\n    }\n\n    /**\n     * Determines if the instance is a weekday.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-07-14')->isWeekday(); // false\n     * Carbon::parse('2019-07-15')->isWeekday(); // true\n     * ```\n     */\n    public function isWeekday(): bool\n    {\n        return !$this->isWeekend();\n    }\n\n    /**\n     * Determines if the instance is a weekend day.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-07-14')->isWeekend(); // true\n     * Carbon::parse('2019-07-15')->isWeekend(); // false\n     * ```\n     */\n    public function isWeekend(): bool\n    {\n        return \\in_array(\n            $this->dayOfWeek,\n            $this->transmitFactory(static fn () => static::getWeekendDays()),\n            true,\n        );\n    }\n\n    /**\n     * Determines if the instance is yesterday.\n     *\n     * @example\n     * ```\n     * Carbon::yesterday()->isYesterday(); // true\n     * Carbon::tomorrow()->isYesterday(); // false\n     * ```\n     */\n    public function isYesterday(): bool\n    {\n        return $this->toDateString() === $this->transmitFactory(\n            fn () => static::yesterday($this->getTimezone())->toDateString(),\n        );\n    }\n\n    /**\n     * Determines if the instance is today.\n     *\n     * @example\n     * ```\n     * Carbon::today()->isToday(); // true\n     * Carbon::tomorrow()->isToday(); // false\n     * ```\n     */\n    public function isToday(): bool\n    {\n        return $this->toDateString() === $this->nowWithSameTz()->toDateString();\n    }\n\n    /**\n     * Determines if the instance is tomorrow.\n     *\n     * @example\n     * ```\n     * Carbon::tomorrow()->isTomorrow(); // true\n     * Carbon::yesterday()->isTomorrow(); // false\n     * ```\n     */\n    public function isTomorrow(): bool\n    {\n        return $this->toDateString() === $this->transmitFactory(\n            fn () => static::tomorrow($this->getTimezone())->toDateString(),\n        );\n    }\n\n    /**\n     * Determines if the instance is in the future, ie. greater (after) than now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->addHours(5)->isFuture(); // true\n     * Carbon::now()->subHours(5)->isFuture(); // false\n     * ```\n     */\n    public function isFuture(): bool\n    {\n        return $this->greaterThan($this->nowWithSameTz());\n    }\n\n    /**\n     * Determines if the instance is in the past, ie. less (before) than now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->subHours(5)->isPast(); // true\n     * Carbon::now()->addHours(5)->isPast(); // false\n     * ```\n     */\n    public function isPast(): bool\n    {\n        return $this->lessThan($this->nowWithSameTz());\n    }\n\n    /**\n     * Determines if the instance is now or in the future, ie. greater (after) than or equal to now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->isNowOrFuture(); // true\n     * Carbon::now()->addHours(5)->isNowOrFuture(); // true\n     * Carbon::now()->subHours(5)->isNowOrFuture(); // false\n     * ```\n     */\n    public function isNowOrFuture(): bool\n    {\n        return $this->greaterThanOrEqualTo($this->nowWithSameTz());\n    }\n\n    /**\n     * Determines if the instance is now or in the past, ie. less (before) than or equal to now.\n     *\n     * @example\n     * ```\n     * Carbon::now()->isNowOrPast(); // true\n     * Carbon::now()->subHours(5)->isNowOrPast(); // true\n     * Carbon::now()->addHours(5)->isNowOrPast(); // false\n     * ```\n     */\n    public function isNowOrPast(): bool\n    {\n        return $this->lessThanOrEqualTo($this->nowWithSameTz());\n    }\n\n    /**\n     * Determines if the instance is a leap year.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2020-01-01')->isLeapYear(); // true\n     * Carbon::parse('2019-01-01')->isLeapYear(); // false\n     * ```\n     */\n    public function isLeapYear(): bool\n    {\n        return $this->rawFormat('L') === '1';\n    }\n\n    /**\n     * Determines if the instance is a long year (using calendar year).\n     *\n     * ⚠️ This method completely ignores month and day to use the numeric year number,\n     * it's not correct if the exact date matters. For instance as `2019-12-30` is already\n     * in the first week of the 2020 year, if you want to know from this date if ISO week\n     * year 2020 is a long year, use `isLongIsoYear` instead.\n     *\n     * @example\n     * ```\n     * Carbon::create(2015)->isLongYear(); // true\n     * Carbon::create(2016)->isLongYear(); // false\n     * ```\n     *\n     * @see https://en.wikipedia.org/wiki/ISO_8601#Week_dates\n     */\n    public function isLongYear(): bool\n    {\n        return static::create($this->year, 12, 28, 0, 0, 0, $this->tz)->weekOfYear === static::WEEKS_PER_YEAR + 1;\n    }\n\n    /**\n     * Determines if the instance is a long year (using ISO 8601 year).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2015-01-01')->isLongIsoYear(); // true\n     * Carbon::parse('2016-01-01')->isLongIsoYear(); // true\n     * Carbon::parse('2016-01-03')->isLongIsoYear(); // false\n     * Carbon::parse('2019-12-29')->isLongIsoYear(); // false\n     * Carbon::parse('2019-12-30')->isLongIsoYear(); // true\n     * ```\n     *\n     * @see https://en.wikipedia.org/wiki/ISO_8601#Week_dates\n     */\n    public function isLongIsoYear(): bool\n    {\n        return static::create($this->isoWeekYear, 12, 28, 0, 0, 0, $this->tz)->weekOfYear === 53;\n    }\n\n    /**\n     * Compares the formatted values of the two dates.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-12-13')); // true\n     * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-06-14')); // false\n     * ```\n     *\n     * @param string                   $format date formats to compare.\n     * @param DateTimeInterface|string $date   instance to compare with or null to use current day.\n     */\n    public function isSameAs(string $format, DateTimeInterface|string $date): bool\n    {\n        return $this->rawFormat($format) === $this->resolveCarbon($date)->rawFormat($format);\n    }\n\n    /**\n     * Determines if the instance is in the current unit given.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-01-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // true\n     * Carbon::parse('2018-12-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // false\n     * ```\n     *\n     * @param string                   $unit singular unit string\n     * @param DateTimeInterface|string $date instance to compare with or null to use current day.\n     *\n     * @throws BadComparisonUnitException\n     *\n     * @return bool\n     */\n    public function isSameUnit(string $unit, DateTimeInterface|string $date): bool\n    {\n        if ($unit === /* @call isSameUnit */ 'quarter') {\n            $other = $this->resolveCarbon($date);\n\n            return $other->year === $this->year && $other->quarter === $this->quarter;\n        }\n\n        $units = [\n            // @call isSameUnit\n            'year' => 'Y',\n            // @call isSameUnit\n            'month' => 'Y-n',\n            // @call isSameUnit\n            'week' => 'o-W',\n            // @call isSameUnit\n            'day' => 'Y-m-d',\n            // @call isSameUnit\n            'hour' => 'Y-m-d H',\n            // @call isSameUnit\n            'minute' => 'Y-m-d H:i',\n            // @call isSameUnit\n            'second' => 'Y-m-d H:i:s',\n            // @call isSameUnit\n            'milli' => 'Y-m-d H:i:s.v',\n            // @call isSameUnit\n            'millisecond' => 'Y-m-d H:i:s.v',\n            // @call isSameUnit\n            'micro' => 'Y-m-d H:i:s.u',\n            // @call isSameUnit\n            'microsecond' => 'Y-m-d H:i:s.u',\n        ];\n\n        if (isset($units[$unit])) {\n            return $this->isSameAs($units[$unit], $date);\n        }\n\n        if (isset($this->$unit)) {\n            return $this->resolveCarbon($date)->$unit === $this->$unit;\n        }\n\n        if ($this->isLocalStrictModeEnabled()) {\n            throw new BadComparisonUnitException($unit);\n        }\n\n        return false;\n    }\n\n    /**\n     * Determines if the instance is in the current unit given.\n     *\n     * @example\n     * ```\n     * Carbon::now()->isCurrentUnit('hour'); // true\n     * Carbon::now()->subHours(2)->isCurrentUnit('hour'); // false\n     * ```\n     *\n     * @param string $unit The unit to test.\n     *\n     * @throws BadMethodCallException\n     */\n    public function isCurrentUnit(string $unit): bool\n    {\n        return $this->{'isSame'.ucfirst($unit)}('now');\n    }\n\n    /**\n     * Checks if the passed in date is in the same quarter as the instance quarter (and year if needed).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-03-01')); // true\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-04-01')); // false\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01')); // false\n     * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01'), false); // true\n     * ```\n     *\n     * @param DateTimeInterface|string $date       The instance to compare with or null to use current day.\n     * @param bool                     $ofSameYear Check if it is the same month in the same year.\n     *\n     * @return bool\n     */\n    public function isSameQuarter(DateTimeInterface|string $date, bool $ofSameYear = true): bool\n    {\n        $date = $this->resolveCarbon($date);\n\n        return $this->quarter === $date->quarter && (!$ofSameYear || $this->isSameYear($date));\n    }\n\n    /**\n     * Checks if the passed in date is in the same month as the instance´s month.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-01-01')); // true\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-02-01')); // false\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01')); // false\n     * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01'), false); // true\n     * ```\n     *\n     * @param DateTimeInterface|string $date       The instance to compare with or null to use the current date.\n     * @param bool                     $ofSameYear Check if it is the same month in the same year.\n     *\n     * @return bool\n     */\n    public function isSameMonth(DateTimeInterface|string $date, bool $ofSameYear = true): bool\n    {\n        return $this->isSameAs($ofSameYear ? 'Y-m' : 'm', $date);\n    }\n\n    /**\n     * Checks if this day is a specific day of the week.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::WEDNESDAY); // true\n     * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::FRIDAY); // false\n     * Carbon::parse('2019-07-17')->isDayOfWeek('Wednesday'); // true\n     * Carbon::parse('2019-07-17')->isDayOfWeek('Friday'); // false\n     * ```\n     *\n     * @param int|string $dayOfWeek\n     *\n     * @return bool\n     */\n    public function isDayOfWeek($dayOfWeek): bool\n    {\n        if (\\is_string($dayOfWeek) && \\defined($constant = static::class.'::'.strtoupper($dayOfWeek))) {\n            $dayOfWeek = \\constant($constant);\n        }\n\n        return $this->dayOfWeek === $dayOfWeek;\n    }\n\n    /**\n     * Check if its the birthday. Compares the date/month values of the two dates.\n     *\n     * @example\n     * ```\n     * Carbon::now()->subYears(5)->isBirthday(); // true\n     * Carbon::now()->subYears(5)->subDay()->isBirthday(); // false\n     * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-05')); // true\n     * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-06')); // false\n     * ```\n     *\n     * @param DateTimeInterface|string|null $date The instance to compare with or null to use current day.\n     *\n     * @return bool\n     */\n    public function isBirthday(DateTimeInterface|string|null $date = null): bool\n    {\n        return $this->isSameAs('md', $date ?? 'now');\n    }\n\n    /**\n     * Check if today is the last day of the Month\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28')->isLastOfMonth(); // true\n     * Carbon::parse('2019-03-28')->isLastOfMonth(); // false\n     * Carbon::parse('2019-03-30')->isLastOfMonth(); // false\n     * Carbon::parse('2019-03-31')->isLastOfMonth(); // true\n     * Carbon::parse('2019-04-30')->isLastOfMonth(); // true\n     * ```\n     */\n    public function isLastOfMonth(): bool\n    {\n        return $this->day === $this->daysInMonth;\n    }\n\n    /**\n     * Check if the instance is start of a given unit (tolerating a given interval).\n     *\n     * @example\n     * ```\n     * // Check if a date-time is the first 15 minutes of the hour it's in\n     * Carbon::parse('2019-02-28 20:13:00')->isStartOfUnit(Unit::Hour, '15 minutes'); // true\n     * ```\n     */\n    public function isStartOfUnit(\n        Unit $unit,\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n        mixed ...$params,\n    ): bool {\n        $interval ??= match ($unit) {\n            Unit::Day, Unit::Hour, Unit::Minute, Unit::Second, Unit::Millisecond, Unit::Microsecond => Unit::Microsecond,\n            default => Unit::Day,\n        };\n\n        $startOfUnit = $this->avoidMutation()->startOf($unit, ...$params);\n        $startOfUnitDateTime = $startOfUnit->rawFormat('Y-m-d H:i:s.u');\n        $maximumDateTime = $startOfUnit\n            ->add($interval instanceof Unit ? '1  '.$interval->value : $interval)\n            ->rawFormat('Y-m-d H:i:s.u');\n\n        if ($maximumDateTime < $startOfUnitDateTime) {\n            return false;\n        }\n\n        return $this->rawFormat('Y-m-d H:i:s.u') < $maximumDateTime;\n    }\n\n    /**\n     * Check if the instance is end of a given unit (tolerating a given interval).\n     *\n     * @example\n     * ```\n     * // Check if a date-time is the last 15 minutes of the hour it's in\n     * Carbon::parse('2019-02-28 20:13:00')->isEndOfUnit(Unit::Hour, '15 minutes'); // false\n     * ```\n     */\n    public function isEndOfUnit(\n        Unit $unit,\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n        mixed ...$params,\n    ): bool {\n        $interval ??= match ($unit) {\n            Unit::Day, Unit::Hour, Unit::Minute, Unit::Second, Unit::Millisecond, Unit::Microsecond => Unit::Microsecond,\n            default => Unit::Day,\n        };\n\n        $endOfUnit = $this->avoidMutation()->endOf($unit, ...$params);\n        $endOfUnitDateTime = $endOfUnit->rawFormat('Y-m-d H:i:s.u');\n        $minimumDateTime = $endOfUnit\n            ->sub($interval instanceof Unit ? '1  '.$interval->value : $interval)\n            ->rawFormat('Y-m-d H:i:s.u');\n\n        if ($minimumDateTime > $endOfUnitDateTime) {\n            return false;\n        }\n\n        return $this->rawFormat('Y-m-d H:i:s.u') > $minimumDateTime;\n    }\n\n    /**\n     * Determines if the instance is start of millisecond (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfMillisecond(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Millisecond, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of millisecond (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfMillisecond(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Millisecond, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of second (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfSecond(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Second, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of second (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfSecond(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Second, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of minute (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfMinute(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Minute, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of minute (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfMinute(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Minute, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of hour (first microsecond by default but interval can be customized).\n     */\n    public function isStartOfHour(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Hour, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of hour (last microsecond by default but interval can be customized).\n     */\n    public function isEndOfHour(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Hour, $interval);\n    }\n\n    /**\n     * Check if the instance is start of day / midnight.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 00:00:00')->isStartOfDay(); // true\n     * Carbon::parse('2019-02-28 00:00:00.999999')->isStartOfDay(); // true\n     * Carbon::parse('2019-02-28 00:00:01')->isStartOfDay(); // false\n     * Carbon::parse('2019-02-28 00:00:00.000000')->isStartOfDay(true); // true\n     * Carbon::parse('2019-02-28 00:00:00.000012')->isStartOfDay(true); // false\n     * ```\n     *\n     * @param bool                                                           $checkMicroseconds check time at microseconds precision\n     * @param Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval          if an interval is specified it will be used as precision\n     *                                                                                          for instance with \"15 minutes\", it checks if current date-time\n     *                                                                                          is in the last 15 minutes of the day, with Unit::Hour, it\n     *                                                                                          checks if it's in the last hour of the day.\n     */\n    public function isStartOfDay(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|bool $checkMicroseconds = false,\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        if ($checkMicroseconds === true) {\n            @trigger_error(\n                \"Since 3.8.0, it's deprecated to use \\$checkMicroseconds.\\n\".\n                \"It will be removed in 4.0.0.\\n\".\n                \"Instead, you should use either isStartOfDay(interval: Unit::Microsecond) or isStartOfDay(interval: Unit::Second)\\n\".\n                'And you can now use any custom interval as precision, such as isStartOfDay(interval: \"15 minutes\")',\n                \\E_USER_DEPRECATED,\n            );\n        }\n\n        if ($interval === null && !\\is_bool($checkMicroseconds)) {\n            $interval = $checkMicroseconds;\n        }\n\n        if ($interval !== null) {\n            if ($interval instanceof Unit) {\n                $interval = '1  '.$interval->value;\n            }\n\n            $date = $this->rawFormat('Y-m-d');\n            $time = $this->rawFormat('H:i:s.u');\n            $maximum = $this->avoidMutation()->startOfDay()->add($interval);\n            $maximumDate = $maximum->rawFormat('Y-m-d');\n\n            if ($date === $maximumDate) {\n                return $time < $maximum->rawFormat('H:i:s.u');\n            }\n\n            return $maximumDate > $date;\n        }\n\n        /* @var CarbonInterface $this */\n        return $checkMicroseconds\n            ? $this->rawFormat('H:i:s.u') === '00:00:00.000000'\n            : $this->rawFormat('H:i:s') === '00:00:00';\n    }\n\n    /**\n     * Check if the instance is end of day.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(); // true\n     * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(); // true\n     * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(); // true\n     * Carbon::parse('2019-02-28 23:59:58.999999')->isEndOfDay(); // false\n     * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(true); // true\n     * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(true); // false\n     * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(true); // false\n     * ```\n     *\n     * @param bool                                                           $checkMicroseconds check time at microseconds precision\n     * @param Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval          if an interval is specified it will be used as precision\n     *                                                                                          for instance with \"15 minutes\", it checks if current date-time\n     *                                                                                          is in the last 15 minutes of the day, with Unit::Hour, it\n     *                                                                                          checks if it's in the last hour of the day.\n     */\n    public function isEndOfDay(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|bool $checkMicroseconds = false,\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        if ($checkMicroseconds === true) {\n            @trigger_error(\n                \"Since 3.8.0, it's deprecated to use \\$checkMicroseconds.\\n\".\n                \"It will be removed in 4.0.0.\\n\".\n                \"Instead, you should use either isEndOfDay(interval: Unit::Microsecond) or isEndOfDay(interval: Unit::Second)\\n\".\n                'And you can now use any custom interval as precision, such as isEndOfDay(interval: \"15 minutes\")',\n                \\E_USER_DEPRECATED,\n            );\n        }\n\n        if ($interval === null && !\\is_bool($checkMicroseconds)) {\n            $interval = $checkMicroseconds;\n        }\n\n        if ($interval !== null) {\n            $date = $this->rawFormat('Y-m-d');\n            $time = $this->rawFormat('H:i:s.u');\n            $minimum = $this->avoidMutation()\n                ->endOfDay()\n                ->sub($interval instanceof Unit ? '1  '.$interval->value : $interval);\n            $minimumDate = $minimum->rawFormat('Y-m-d');\n\n            if ($date === $minimumDate) {\n                return $time > $minimum->rawFormat('H:i:s.u');\n            }\n\n            return $minimumDate < $date;\n        }\n\n        /* @var CarbonInterface $this */\n        return $checkMicroseconds\n            ? $this->rawFormat('H:i:s.u') === '23:59:59.999999'\n            : $this->rawFormat('H:i:s') === '23:59:59';\n    }\n\n    /**\n     * Determines if the instance is start of week (first day by default but interval can be customized).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2024-08-31')->startOfWeek()->isStartOfWeek(); // true\n     * Carbon::parse('2024-08-31')->isStartOfWeek(); // false\n     * ```\n     */\n    public function isStartOfWeek(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n        WeekDay|int|null $weekStartsAt = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Week, $interval, $weekStartsAt);\n    }\n\n    /**\n     * Determines if the instance is end of week (last day by default but interval can be customized).\n     *\n     * @example\n     * ```\n     * Carbon::parse('2024-08-31')->endOfWeek()->isEndOfWeek(); // true\n     * Carbon::parse('2024-08-31')->isEndOfWeek(); // false\n     * ```\n     */\n    public function isEndOfWeek(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n        WeekDay|int|null $weekEndsAt = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Week, $interval, $weekEndsAt);\n    }\n\n    /**\n     * Determines if the instance is start of month (first day by default but interval can be customized).\n     */\n    public function isStartOfMonth(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Month, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of month (last day by default but interval can be customized).\n     */\n    public function isEndOfMonth(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Month, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of quarter (first day by default but interval can be customized).\n     */\n    public function isStartOfQuarter(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Quarter, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of quarter (last day by default but interval can be customized).\n     */\n    public function isEndOfQuarter(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Quarter, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of year (first day by default but interval can be customized).\n     */\n    public function isStartOfYear(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Year, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of year (last day by default but interval can be customized).\n     */\n    public function isEndOfYear(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Year, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of decade (first day by default but interval can be customized).\n     */\n    public function isStartOfDecade(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Decade, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of decade (last day by default but interval can be customized).\n     */\n    public function isEndOfDecade(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Decade, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of century (first day by default but interval can be customized).\n     */\n    public function isStartOfCentury(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Century, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of century (last day by default but interval can be customized).\n     */\n    public function isEndOfCentury(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Century, $interval);\n    }\n\n    /**\n     * Determines if the instance is start of millennium (first day by default but interval can be customized).\n     */\n    public function isStartOfMillennium(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isStartOfUnit(Unit::Millennium, $interval);\n    }\n\n    /**\n     * Determines if the instance is end of millennium (last day by default but interval can be customized).\n     */\n    public function isEndOfMillennium(\n        Unit|DateInterval|Closure|CarbonConverterInterface|string|null $interval = null,\n    ): bool {\n        return $this->isEndOfUnit(Unit::Millennium, $interval);\n    }\n\n    /**\n     * Check if the instance is start of day / midnight.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 00:00:00')->isMidnight(); // true\n     * Carbon::parse('2019-02-28 00:00:00.999999')->isMidnight(); // true\n     * Carbon::parse('2019-02-28 00:00:01')->isMidnight(); // false\n     * ```\n     */\n    public function isMidnight(): bool\n    {\n        return $this->isStartOfDay();\n    }\n\n    /**\n     * Check if the instance is midday.\n     *\n     * @example\n     * ```\n     * Carbon::parse('2019-02-28 11:59:59.999999')->isMidday(); // false\n     * Carbon::parse('2019-02-28 12:00:00')->isMidday(); // true\n     * Carbon::parse('2019-02-28 12:00:00.999999')->isMidday(); // true\n     * Carbon::parse('2019-02-28 12:00:01')->isMidday(); // false\n     * ```\n     */\n    public function isMidday(): bool\n    {\n        /* @var CarbonInterface $this */\n        return $this->rawFormat('G:i:s') === static::$midDayAt.':00:00';\n    }\n\n    /**\n     * Checks if the (date)time string is in a given format.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormat('11:12:45', 'h:i:s'); // true\n     * Carbon::hasFormat('13:12:45', 'h:i:s'); // false\n     * ```\n     */\n    public static function hasFormat(string $date, string $format): bool\n    {\n        return FactoryImmutable::getInstance()->hasFormat($date, $format);\n    }\n\n    /**\n     * Checks if the (date)time string is in a given format.\n     *\n     * @example\n     * ```\n     * Carbon::hasFormatWithModifiers('31/08/2015', 'd#m#Y'); // true\n     * Carbon::hasFormatWithModifiers('31/08/2015', 'm#d#Y'); // false\n     * ```\n     *\n     * @param string $date\n     * @param string $format\n     *\n     * @return bool\n     */\n    public static function hasFormatWithModifiers(?string $date, string $format): bool\n    {\n        return FactoryImmutable::getInstance()->hasFormatWithModifiers($date, $format);\n    }\n\n    /**\n     * Checks if the (date)time string is in a given format and valid to create a\n     * new instance.\n     *\n     * @example\n     * ```\n     * Carbon::canBeCreatedFromFormat('11:12:45', 'h:i:s'); // true\n     * Carbon::canBeCreatedFromFormat('13:12:45', 'h:i:s'); // false\n     * ```\n     */\n    public static function canBeCreatedFromFormat(?string $date, string $format): bool\n    {\n        if ($date === null) {\n            return false;\n        }\n\n        try {\n            // Try to create a DateTime object. Throws an InvalidArgumentException if the provided time string\n            // doesn't match the format in any way.\n            if (!static::rawCreateFromFormat($format, $date)) {\n                return false;\n            }\n        } catch (InvalidArgumentException) {\n            return false;\n        }\n\n        return static::hasFormatWithModifiers($date, $format);\n    }\n\n    /**\n     * Returns true if the current date matches the given string.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2018')); // false\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('06-02')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('Sunday')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('June')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:45')); // true\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:00')); // false\n     * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12h')); // true\n     * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3pm')); // true\n     * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3am')); // false\n     * ```\n     *\n     * @param string $tester day name, month name, hour, date, etc. as string\n     */\n    public function is(WeekDay|Month|string $tester): bool\n    {\n        if ($tester instanceof BackedEnum) {\n            $tester = $tester->name;\n        }\n\n        $tester = trim($tester);\n\n        if (preg_match('/^\\d+$/', $tester)) {\n            return $this->year === (int) $tester;\n        }\n\n        if (preg_match('/^(?:Jan|January|Feb|February|Mar|March|Apr|April|May|Jun|June|Jul|July|Aug|August|Sep|September|Oct|October|Nov|November|Dec|December)$/i', $tester)) {\n            return $this->isSameMonth(\n                $this->transmitFactory(static fn () => static::parse(\"$tester 1st\")),\n                false,\n            );\n        }\n\n        if (preg_match('/^\\d{3,}-\\d{1,2}$/', $tester)) {\n            return $this->isSameMonth(\n                $this->transmitFactory(static fn () => static::parse($tester)),\n            );\n        }\n\n        if (preg_match('/^(\\d{1,2})-(\\d{1,2})$/', $tester, $match)) {\n            return $this->month === (int) $match[1] && $this->day === (int) $match[2];\n        }\n\n        $modifier = preg_replace('/(\\d)h$/i', '$1:00', $tester);\n\n        /* @var CarbonInterface $max */\n        $median = $this->transmitFactory(static fn () => static::parse('5555-06-15 12:30:30.555555'))\n            ->modify($modifier);\n        $current = $this->avoidMutation();\n        /* @var CarbonInterface $other */\n        $other = $this->avoidMutation()->modify($modifier);\n\n        if ($current->eq($other)) {\n            return true;\n        }\n\n        if (preg_match('/\\d:\\d{1,2}:\\d{1,2}$/', $tester)) {\n            return $current->startOfSecond()->eq($other);\n        }\n\n        if (preg_match('/\\d:\\d{1,2}$/', $tester)) {\n            return $current->startOfMinute()->eq($other);\n        }\n\n        if (preg_match('/\\d(?:h|am|pm)$/', $tester)) {\n            return $current->startOfHour()->eq($other);\n        }\n\n        if (preg_match(\n            '/^(?:january|february|march|april|may|june|july|august|september|october|november|december)(?:\\s+\\d+)?$/i',\n            $tester,\n        )) {\n            return $current->startOfMonth()->eq($other->startOfMonth());\n        }\n\n        $units = [\n            'month' => [1, 'year'],\n            'day' => [1, 'month'],\n            'hour' => [0, 'day'],\n            'minute' => [0, 'hour'],\n            'second' => [0, 'minute'],\n            'microsecond' => [0, 'second'],\n        ];\n\n        foreach ($units as $unit => [$minimum, $startUnit]) {\n            if ($minimum === $median->$unit) {\n                $current = $current->startOf($startUnit);\n\n                break;\n            }\n        }\n\n        return $current->eq($other);\n    }\n\n    /**\n     * Returns true if the date was created using CarbonImmutable::startOfTime()\n     *\n     * @return bool\n     */\n    public function isStartOfTime(): bool\n    {\n        return $this->startOfTime ?? false;\n    }\n\n    /**\n     * Returns true if the date was created using CarbonImmutable::endOfTime()\n     *\n     * @return bool\n     */\n    public function isEndOfTime(): bool\n    {\n        return $this->endOfTime ?? false;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Converter.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonPeriodImmutable;\nuse Carbon\\Exceptions\\UnitException;\nuse Closure;\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeInterface;\n\n/**\n * Trait Converter.\n *\n * Change date into different string formats and types and\n * handle the string cast.\n *\n * Depends on the following methods:\n *\n * @method static copy()\n */\ntrait Converter\n{\n    use ToStringFormat;\n\n    /**\n     * Returns the formatted date string on success or FALSE on failure.\n     *\n     * @see https://php.net/manual/en/datetime.format.php\n     */\n    public function format(string $format): string\n    {\n        $function = $this->localFormatFunction\n            ?? $this->getFactory()->getSettings()['formatFunction']\n            ?? static::$formatFunction;\n\n        if (!$function) {\n            return $this->rawFormat($format);\n        }\n\n        if (\\is_string($function) && method_exists($this, $function)) {\n            $function = [$this, $function];\n        }\n\n        return $function(...\\func_get_args());\n    }\n\n    /**\n     * @see https://php.net/manual/en/datetime.format.php\n     */\n    public function rawFormat(string $format): string\n    {\n        return parent::format($format);\n    }\n\n    /**\n     * Format the instance as a string using the set format\n     *\n     * @example\n     * ```\n     * echo Carbon::now(); // Carbon instances can be cast to string\n     * ```\n     */\n    public function __toString(): string\n    {\n        $format = $this->localToStringFormat\n            ?? $this->getFactory()->getSettings()['toStringFormat']\n            ?? null;\n\n        return $format instanceof Closure\n            ? $format($this)\n            : $this->rawFormat($format ?: (\n                \\defined('static::DEFAULT_TO_STRING_FORMAT')\n                    ? static::DEFAULT_TO_STRING_FORMAT\n                    : CarbonInterface::DEFAULT_TO_STRING_FORMAT\n            ));\n    }\n\n    /**\n     * Format the instance as date\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDateString();\n     * ```\n     */\n    public function toDateString(): string\n    {\n        return $this->rawFormat('Y-m-d');\n    }\n\n    /**\n     * Format the instance as a readable date\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toFormattedDateString();\n     * ```\n     */\n    public function toFormattedDateString(): string\n    {\n        return $this->rawFormat('M j, Y');\n    }\n\n    /**\n     * Format the instance with the day, and a readable date\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toFormattedDayDateString();\n     * ```\n     */\n    public function toFormattedDayDateString(): string\n    {\n        return $this->rawFormat('D, M j, Y');\n    }\n\n    /**\n     * Format the instance as time\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toTimeString();\n     * ```\n     */\n    public function toTimeString(string $unitPrecision = 'second'): string\n    {\n        return $this->rawFormat(static::getTimeFormatByPrecision($unitPrecision));\n    }\n\n    /**\n     * Format the instance as date and time\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDateTimeString();\n     * ```\n     */\n    public function toDateTimeString(string $unitPrecision = 'second'): string\n    {\n        return $this->rawFormat('Y-m-d '.static::getTimeFormatByPrecision($unitPrecision));\n    }\n\n    /**\n     * Return a format from H:i to H:i:s.u according to given unit precision.\n     *\n     * @param string $unitPrecision \"minute\", \"second\", \"millisecond\" or \"microsecond\"\n     */\n    public static function getTimeFormatByPrecision(string $unitPrecision): string\n    {\n        return match (static::singularUnit($unitPrecision)) {\n            'minute' => 'H:i',\n            'second' => 'H:i:s',\n            'm', 'millisecond' => 'H:i:s.v',\n            'µ', 'microsecond' => 'H:i:s.u',\n            default => throw new UnitException('Precision unit expected among: minute, second, millisecond and microsecond.'),\n        };\n    }\n\n    /**\n     * Format the instance as date and time T-separated with no timezone\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDateTimeLocalString();\n     * echo \"\\n\";\n     * echo Carbon::now()->toDateTimeLocalString('minute'); // You can specify precision among: minute, second, millisecond and microsecond\n     * ```\n     */\n    public function toDateTimeLocalString(string $unitPrecision = 'second'): string\n    {\n        return $this->rawFormat('Y-m-d\\T'.static::getTimeFormatByPrecision($unitPrecision));\n    }\n\n    /**\n     * Format the instance with day, date and time\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toDayDateTimeString();\n     * ```\n     */\n    public function toDayDateTimeString(): string\n    {\n        return $this->rawFormat('D, M j, Y g:i A');\n    }\n\n    /**\n     * Format the instance as ATOM\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toAtomString();\n     * ```\n     */\n    public function toAtomString(): string\n    {\n        return $this->rawFormat(DateTime::ATOM);\n    }\n\n    /**\n     * Format the instance as COOKIE\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toCookieString();\n     * ```\n     */\n    public function toCookieString(): string\n    {\n        return $this->rawFormat(DateTimeInterface::COOKIE);\n    }\n\n    /**\n     * Format the instance as ISO8601\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toIso8601String();\n     * ```\n     */\n    public function toIso8601String(): string\n    {\n        return $this->toAtomString();\n    }\n\n    /**\n     * Format the instance as RFC822\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc822String();\n     * ```\n     */\n    public function toRfc822String(): string\n    {\n        return $this->rawFormat(DateTimeInterface::RFC822);\n    }\n\n    /**\n     * Convert the instance to UTC and return as Zulu ISO8601\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toIso8601ZuluString();\n     * ```\n     */\n    public function toIso8601ZuluString(string $unitPrecision = 'second'): string\n    {\n        return $this->avoidMutation()\n            ->utc()\n            ->rawFormat('Y-m-d\\T'.static::getTimeFormatByPrecision($unitPrecision).'\\Z');\n    }\n\n    /**\n     * Format the instance as RFC850\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc850String();\n     * ```\n     */\n    public function toRfc850String(): string\n    {\n        return $this->rawFormat(DateTimeInterface::RFC850);\n    }\n\n    /**\n     * Format the instance as RFC1036\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc1036String();\n     * ```\n     */\n    public function toRfc1036String(): string\n    {\n        return $this->rawFormat(DateTimeInterface::RFC1036);\n    }\n\n    /**\n     * Format the instance as RFC1123\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc1123String();\n     * ```\n     */\n    public function toRfc1123String(): string\n    {\n        return $this->rawFormat(DateTimeInterface::RFC1123);\n    }\n\n    /**\n     * Format the instance as RFC2822\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc2822String();\n     * ```\n     */\n    public function toRfc2822String(): string\n    {\n        return $this->rawFormat(DateTimeInterface::RFC2822);\n    }\n\n    /**\n     * Format the instance as RFC3339.\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc3339String() . \"\\n\";\n     * echo Carbon::now()->toRfc3339String(true) . \"\\n\";\n     * ```\n     */\n    public function toRfc3339String(bool $extended = false): string\n    {\n        return $this->rawFormat($extended ? DateTimeInterface::RFC3339_EXTENDED : DateTimeInterface::RFC3339);\n    }\n\n    /**\n     * Format the instance as RSS\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRssString();\n     * ```\n     */\n    public function toRssString(): string\n    {\n        return $this->rawFormat(DateTimeInterface::RSS);\n    }\n\n    /**\n     * Format the instance as W3C\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toW3cString();\n     * ```\n     */\n    public function toW3cString(): string\n    {\n        return $this->rawFormat(DateTimeInterface::W3C);\n    }\n\n    /**\n     * Format the instance as RFC7231\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toRfc7231String();\n     * ```\n     */\n    public function toRfc7231String(): string\n    {\n        return $this->avoidMutation()\n            ->setTimezone('GMT')\n            ->rawFormat(\\defined('static::RFC7231_FORMAT') ? static::RFC7231_FORMAT : CarbonInterface::RFC7231_FORMAT);\n    }\n\n    /**\n     * Get default array representation.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toArray());\n     * ```\n     */\n    public function toArray(): array\n    {\n        return [\n            'year' => $this->year,\n            'month' => $this->month,\n            'day' => $this->day,\n            'dayOfWeek' => $this->dayOfWeek,\n            'dayOfYear' => $this->dayOfYear,\n            'hour' => $this->hour,\n            'minute' => $this->minute,\n            'second' => $this->second,\n            'micro' => $this->micro,\n            'timestamp' => $this->timestamp,\n            'formatted' => $this->rawFormat(\\defined('static::DEFAULT_TO_STRING_FORMAT') ? static::DEFAULT_TO_STRING_FORMAT : CarbonInterface::DEFAULT_TO_STRING_FORMAT),\n            'timezone' => $this->timezone,\n        ];\n    }\n\n    /**\n     * Get default object representation.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toObject());\n     * ```\n     */\n    public function toObject(): object\n    {\n        return (object) $this->toArray();\n    }\n\n    /**\n     * Returns english human-readable complete date string.\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->toString();\n     * ```\n     */\n    public function toString(): string\n    {\n        return $this->avoidMutation()->locale('en')->isoFormat('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');\n    }\n\n    /**\n     * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z, if $keepOffset truthy, offset will be kept:\n     * 1977-04-22T01:00:00-05:00).\n     *\n     * @example\n     * ```\n     * echo Carbon::now('America/Toronto')->toISOString() . \"\\n\";\n     * echo Carbon::now('America/Toronto')->toISOString(true) . \"\\n\";\n     * ```\n     *\n     * @param bool $keepOffset Pass true to keep the date offset. Else forced to UTC.\n     */\n    public function toISOString(bool $keepOffset = false): ?string\n    {\n        if (!$this->isValid()) {\n            return null;\n        }\n\n        $yearFormat = $this->year < 0 || $this->year > 9999 ? 'YYYYYY' : 'YYYY';\n        $timezoneFormat = $keepOffset ? 'Z' : '[Z]';\n        $date = $keepOffset ? $this : $this->avoidMutation()->utc();\n\n        return $date->isoFormat(\"$yearFormat-MM-DD[T]HH:mm:ss.SSSSSS$timezoneFormat\");\n    }\n\n    /**\n     * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z) with UTC timezone.\n     *\n     * @example\n     * ```\n     * echo Carbon::now('America/Toronto')->toJSON();\n     * ```\n     */\n    public function toJSON(): ?string\n    {\n        return $this->toISOString();\n    }\n\n    /**\n     * Return native DateTime PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toDateTime());\n     * ```\n     */\n    public function toDateTime(): DateTime\n    {\n        return DateTime::createFromFormat('U.u', $this->rawFormat('U.u'))\n            ->setTimezone($this->getTimezone());\n    }\n\n    /**\n     * Return native toDateTimeImmutable PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toDateTimeImmutable());\n     * ```\n     */\n    public function toDateTimeImmutable(): DateTimeImmutable\n    {\n        return DateTimeImmutable::createFromFormat('U.u', $this->rawFormat('U.u'))\n            ->setTimezone($this->getTimezone());\n    }\n\n    /**\n     * @alias toDateTime\n     *\n     * Return native DateTime PHP object matching the current instance.\n     *\n     * @example\n     * ```\n     * var_dump(Carbon::now()->toDate());\n     * ```\n     */\n    public function toDate(): DateTime\n    {\n        return $this->toDateTime();\n    }\n\n    /**\n     * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval).\n     *\n     * @param \\DateTimeInterface|Carbon|CarbonImmutable|int|null $end      period end date or recurrences count if int\n     * @param int|\\DateInterval|string|null                      $interval period default interval or number of the given $unit\n     * @param string|null                                        $unit     if specified, $interval must be an integer\n     */\n    public function toPeriod($end = null, $interval = null, $unit = null): CarbonPeriod\n    {\n        if ($unit) {\n            $interval = CarbonInterval::make(\"$interval \".static::pluralUnit($unit));\n        }\n\n        $isDefaultInterval = !$interval;\n        $interval ??= CarbonInterval::day();\n        $class = $this->isMutable() ? CarbonPeriod::class : CarbonPeriodImmutable::class;\n\n        if (\\is_int($end) || (\\is_string($end) && ctype_digit($end))) {\n            $end = (int) $end;\n        }\n\n        $end ??= 1;\n\n        if (!\\is_int($end)) {\n            $end = $this->resolveCarbon($end);\n        }\n\n        return new $class(\n            raw: [$this, CarbonInterval::make($interval), $end],\n            dateClass: static::class,\n            isDefaultInterval: $isDefaultInterval,\n        );\n    }\n\n    /**\n     * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval).\n     *\n     * @param \\DateTimeInterface|Carbon|CarbonImmutable|null $end      period end date\n     * @param int|\\DateInterval|string|null                  $interval period default interval or number of the given $unit\n     * @param string|null                                    $unit     if specified, $interval must be an integer\n     */\n    public function range($end = null, $interval = null, $unit = null): CarbonPeriod\n    {\n        return $this->toPeriod($end, $interval, $unit);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Creator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\Exceptions\\InvalidDateException;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse Carbon\\Exceptions\\OutOfRangeException;\nuse Carbon\\Exceptions\\UnitException;\nuse Carbon\\Month;\nuse Carbon\\Translator;\nuse Carbon\\WeekDay;\nuse Closure;\nuse DateMalformedStringException;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Exception;\nuse ReturnTypeWillChange;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\n\n/**\n * Trait Creator.\n *\n * Static creators.\n *\n * Depends on the following methods:\n *\n * @method static Carbon|CarbonImmutable getTestNow()\n */\ntrait Creator\n{\n    use ObjectInitialisation;\n    use LocalFactory;\n\n    /**\n     * The errors that can occur.\n     */\n    protected static array|bool $lastErrors = false;\n\n    /**\n     * Create a new Carbon instance.\n     *\n     * Please see the testing aids section (specifically static::setTestNow())\n     * for more on the possibility of this constructor returning a test instance.\n     *\n     * @throws InvalidFormatException\n     */\n    public function __construct(\n        DateTimeInterface|WeekDay|Month|string|int|float|null $time = null,\n        DateTimeZone|string|int|null $timezone = null,\n    ) {\n        $this->initLocalFactory();\n\n        if ($time instanceof Month) {\n            $time = $time->name.' 1';\n        } elseif ($time instanceof WeekDay) {\n            $time = $time->name;\n        } elseif ($time instanceof DateTimeInterface) {\n            $time = $this->constructTimezoneFromDateTime($time, $timezone)->format('Y-m-d H:i:s.u');\n        }\n\n        if (\\is_string($time) && str_starts_with($time, '@')) {\n            $time = static::createFromTimestampUTC(substr($time, 1))->format('Y-m-d\\TH:i:s.uP');\n        } elseif (is_numeric($time) && (!\\is_string($time) || !preg_match('/^\\d{1,14}$/', $time))) {\n            $time = static::createFromTimestampUTC($time)->format('Y-m-d\\TH:i:s.uP');\n        }\n\n        // If the class has a test now set, and we are trying to create a now()\n        // instance then override as required\n        $isNow = \\in_array($time, [null, '', 'now'], true);\n        $timezone = static::safeCreateDateTimeZone($timezone) ?? null;\n\n        if (\n            ($this->clock || (\n                method_exists(static::class, 'hasTestNow') &&\n                method_exists(static::class, 'getTestNow') &&\n                static::hasTestNow()\n            )) &&\n            ($isNow || static::hasRelativeKeywords($time))\n        ) {\n            $this->mockConstructorParameters($time, $timezone);\n        }\n\n        try {\n            parent::__construct($time ?? 'now', $timezone);\n        } catch (Exception $exception) {\n            throw new InvalidFormatException($exception->getMessage(), 0, $exception);\n        }\n\n        $this->constructedObjectId = spl_object_hash($this);\n\n        self::setLastErrors(parent::getLastErrors());\n    }\n\n    /**\n     * Get timezone from a datetime instance.\n     */\n    private function constructTimezoneFromDateTime(\n        DateTimeInterface $date,\n        DateTimeZone|string|int|null &$timezone,\n    ): DateTimeInterface {\n        if ($timezone !== null) {\n            $safeTz = static::safeCreateDateTimeZone($timezone);\n\n            if ($safeTz) {\n                $date = ($date instanceof DateTimeImmutable ? $date : clone $date)->setTimezone($safeTz);\n            }\n\n            return $date;\n        }\n\n        $timezone = $date->getTimezone();\n\n        return $date;\n    }\n\n    /**\n     * Update constructedObjectId on cloned.\n     */\n    public function __clone(): void\n    {\n        $this->constructedObjectId = spl_object_hash($this);\n    }\n\n    /**\n     * Create a Carbon instance from a DateTime one.\n     */\n    public static function instance(DateTimeInterface $date): static\n    {\n        if ($date instanceof static) {\n            return clone $date;\n        }\n\n        $instance = parent::createFromFormat('U.u', $date->format('U.u'))\n            ->setTimezone($date->getTimezone());\n\n        if ($date instanceof CarbonInterface) {\n            $settings = $date->getSettings();\n\n            if (!$date->hasLocalTranslator()) {\n                unset($settings['locale']);\n            }\n\n            $instance->settings($settings);\n        }\n\n        return $instance;\n    }\n\n    /**\n     * Create a carbon instance from a string.\n     *\n     * This is an alias for the constructor that allows better fluent syntax\n     * as it allows you to do Carbon::parse('Monday next week')->fn() rather\n     * than (new Carbon('Monday next week'))->fn().\n     *\n     * @throws InvalidFormatException\n     */\n    public static function rawParse(\n        DateTimeInterface|WeekDay|Month|string|int|float|null $time,\n        DateTimeZone|string|int|null $timezone = null,\n    ): static {\n        if ($time instanceof DateTimeInterface) {\n            return static::instance($time);\n        }\n\n        try {\n            return new static($time, $timezone);\n        } catch (Exception $exception) {\n            // @codeCoverageIgnoreStart\n            try {\n                $date = @static::now($timezone)->change($time);\n            } catch (DateMalformedStringException|InvalidFormatException) {\n                $date = null;\n            }\n            // @codeCoverageIgnoreEnd\n\n            return $date\n                ?? throw new InvalidFormatException(\"Could not parse '$time': \".$exception->getMessage(), 0, $exception);\n        }\n    }\n\n    /**\n     * Create a carbon instance from a string.\n     *\n     * This is an alias for the constructor that allows better fluent syntax\n     * as it allows you to do Carbon::parse('Monday next week')->fn() rather\n     * than (new Carbon('Monday next week'))->fn().\n     *\n     * @throws InvalidFormatException\n     */\n    public static function parse(\n        DateTimeInterface|WeekDay|Month|string|int|float|null $time,\n        DateTimeZone|string|int|null $timezone = null,\n    ): static {\n        $function = static::$parseFunction;\n\n        if (!$function) {\n            return static::rawParse($time, $timezone);\n        }\n\n        if (\\is_string($function) && method_exists(static::class, $function)) {\n            $function = [static::class, $function];\n        }\n\n        return $function(...\\func_get_args());\n    }\n\n    /**\n     * Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.).\n     *\n     * @param string                       $time     date/time string in the given language (may also contain English).\n     * @param string|null                  $locale   if locale is null or not specified, current global locale will be\n     *                                               used instead.\n     * @param DateTimeZone|string|int|null $timezone optional timezone for the new instance.\n     *\n     * @throws InvalidFormatException\n     */\n    public static function parseFromLocale(\n        string $time,\n        ?string $locale = null,\n        DateTimeZone|string|int|null $timezone = null,\n    ): static {\n        return static::rawParse(static::translateTimeString($time, $locale, static::DEFAULT_LOCALE), $timezone);\n    }\n\n    /**\n     * Get a Carbon instance for the current date and time.\n     */\n    public static function now(DateTimeZone|string|int|null $timezone = null): static\n    {\n        return new static(null, $timezone);\n    }\n\n    /**\n     * Create a Carbon instance for today.\n     */\n    public static function today(DateTimeZone|string|int|null $timezone = null): static\n    {\n        return static::rawParse('today', $timezone);\n    }\n\n    /**\n     * Create a Carbon instance for tomorrow.\n     */\n    public static function tomorrow(DateTimeZone|string|int|null $timezone = null): static\n    {\n        return static::rawParse('tomorrow', $timezone);\n    }\n\n    /**\n     * Create a Carbon instance for yesterday.\n     */\n    public static function yesterday(DateTimeZone|string|int|null $timezone = null): static\n    {\n        return static::rawParse('yesterday', $timezone);\n    }\n\n    private static function assertBetween($unit, $value, $min, $max): void\n    {\n        if (static::isStrictModeEnabled() && ($value < $min || $value > $max)) {\n            throw new OutOfRangeException($unit, $min, $max, $value);\n        }\n    }\n\n    private static function createNowInstance($timezone)\n    {\n        if (!static::hasTestNow()) {\n            return static::now($timezone);\n        }\n\n        $now = static::getTestNow();\n\n        if ($now instanceof Closure) {\n            return $now(static::now($timezone));\n        }\n\n        $now = $now->avoidMutation();\n\n        return $timezone === null ? $now : $now->setTimezone($timezone);\n    }\n\n    /**\n     * Create a new Carbon instance from a specific date and time.\n     *\n     * If any of $year, $month or $day are set to null their now() values will\n     * be used.\n     *\n     * If $hour is null it will be set to its now() value and the default\n     * values for $minute and $second will be their now() values.\n     *\n     * If $hour is not null then the default values for $minute and $second\n     * will be 0.\n     *\n     * @param DateTimeInterface|string|int|null $year\n     * @param int|null                          $month\n     * @param int|null                          $day\n     * @param int|null                          $hour\n     * @param int|null                          $minute\n     * @param int|null                          $second\n     * @param DateTimeZone|string|int|null      $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $timezone = null): ?static\n    {\n        $month = self::monthToInt($month);\n\n        if ((\\is_string($year) && !is_numeric($year)) || $year instanceof DateTimeInterface) {\n            return static::parse($year, $timezone ?? (\\is_string($month) || $month instanceof DateTimeZone ? $month : null));\n        }\n\n        $defaults = null;\n        $getDefault = function ($unit) use ($timezone, &$defaults) {\n            if ($defaults === null) {\n                $now = self::createNowInstance($timezone);\n\n                $defaults = array_combine([\n                    'year',\n                    'month',\n                    'day',\n                    'hour',\n                    'minute',\n                    'second',\n                ], explode('-', $now->rawFormat('Y-n-j-G-i-s.u')));\n            }\n\n            return $defaults[$unit];\n        };\n\n        $year = $year ?? $getDefault('year');\n        $month = $month ?? $getDefault('month');\n        $day = $day ?? $getDefault('day');\n        $hour = $hour ?? $getDefault('hour');\n        $minute = $minute ?? $getDefault('minute');\n        $second = (float) ($second ?? $getDefault('second'));\n\n        self::assertBetween('month', $month, 0, 99);\n        self::assertBetween('day', $day, 0, 99);\n        self::assertBetween('hour', $hour, 0, 99);\n        self::assertBetween('minute', $minute, 0, 99);\n        self::assertBetween('second', $second, 0, 99);\n\n        $fixYear = null;\n\n        if ($year < 0) {\n            $fixYear = $year;\n            $year = 0;\n        } elseif ($year > 9999) {\n            $fixYear = $year - 9999;\n            $year = 9999;\n        }\n\n        $second = ($second < 10 ? '0' : '').number_format($second, 6);\n        $instance = static::rawCreateFromFormat('!Y-n-j G:i:s.u', \\sprintf('%s-%s-%s %s:%02s:%02s', $year, $month, $day, $hour, $minute, $second), $timezone);\n\n        if ($instance && $fixYear !== null) {\n            $instance = $instance->addYears($fixYear);\n        }\n\n        return $instance ?? null;\n    }\n\n    /**\n     * Create a new safe Carbon instance from a specific date and time.\n     *\n     * If any of $year, $month or $day are set to null their now() values will\n     * be used.\n     *\n     * If $hour is null it will be set to its now() value and the default\n     * values for $minute and $second will be their now() values.\n     *\n     * If $hour is not null then the default values for $minute and $second\n     * will be 0.\n     *\n     * If one of the set values is not valid, an InvalidDateException\n     * will be thrown.\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param int|null                     $hour\n     * @param int|null                     $minute\n     * @param int|null                     $second\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidDateException\n     *\n     * @return static|null\n     */\n    public static function createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $timezone = null): ?static\n    {\n        $month = self::monthToInt($month);\n        $fields = static::getRangesByUnit();\n\n        foreach ($fields as $field => $range) {\n            if ($$field !== null && (!\\is_int($$field) || $$field < $range[0] || $$field > $range[1])) {\n                if (static::isStrictModeEnabled()) {\n                    throw new InvalidDateException($field, $$field);\n                }\n\n                return null;\n            }\n        }\n\n        $instance = static::create($year, $month, $day, $hour, $minute, $second, $timezone);\n\n        foreach (array_reverse($fields) as $field => $range) {\n            if ($$field !== null && (!\\is_int($$field) || $$field !== $instance->$field)) {\n                if (static::isStrictModeEnabled()) {\n                    throw new InvalidDateException($field, $$field);\n                }\n\n                return null;\n            }\n        }\n\n        return $instance;\n    }\n\n    /**\n     * Create a new Carbon instance from a specific date and time using strict validation.\n     *\n     * @see create()\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param int|null                     $hour\n     * @param int|null                     $minute\n     * @param int|null                     $second\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createStrict(?int $year = 0, ?int $month = 1, ?int $day = 1, ?int $hour = 0, ?int $minute = 0, ?int $second = 0, $timezone = null): static\n    {\n        $initialStrictMode = static::isStrictModeEnabled();\n        static::useStrictMode(true);\n\n        try {\n            $date = static::create($year, $month, $day, $hour, $minute, $second, $timezone);\n        } finally {\n            static::useStrictMode($initialStrictMode);\n        }\n\n        return $date;\n    }\n\n    /**\n     * Create a Carbon instance from just a date. The time portion is set to now.\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createFromDate($year = null, $month = null, $day = null, $timezone = null)\n    {\n        return static::create($year, $month, $day, null, null, null, $timezone);\n    }\n\n    /**\n     * Create a Carbon instance from just a date. The time portion is set to midnight.\n     *\n     * @param int|null                     $year\n     * @param int|null                     $month\n     * @param int|null                     $day\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createMidnightDate($year = null, $month = null, $day = null, $timezone = null)\n    {\n        return static::create($year, $month, $day, 0, 0, 0, $timezone);\n    }\n\n    /**\n     * Create a Carbon instance from just a time. The date portion is set to today.\n     *\n     * @param int|null                     $hour\n     * @param int|null                     $minute\n     * @param int|null                     $second\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function createFromTime($hour = 0, $minute = 0, $second = 0, $timezone = null): static\n    {\n        return static::create(null, null, null, $hour, $minute, $second, $timezone);\n    }\n\n    /**\n     * Create a Carbon instance from a time string. The date portion is set to today.\n     *\n     * @throws InvalidFormatException\n     */\n    public static function createFromTimeString(string $time, DateTimeZone|string|int|null $timezone = null): static\n    {\n        return static::today($timezone)->setTimeFromTimeString($time);\n    }\n\n    private static function createFromFormatAndTimezone(\n        string $format,\n        string $time,\n        DateTimeZone|string|int|null $originalTimezone,\n    ): ?DateTimeInterface {\n        if ($originalTimezone === null) {\n            return parent::createFromFormat($format, $time) ?: null;\n        }\n\n        $timezone = \\is_int($originalTimezone) ? self::getOffsetTimezone($originalTimezone) : $originalTimezone;\n\n        $timezone = static::safeCreateDateTimeZone($timezone, $originalTimezone);\n\n        return parent::createFromFormat($format, $time, $timezone) ?: null;\n    }\n\n    private static function getOffsetTimezone(int $offset): string\n    {\n        $minutes = (int) ($offset * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE);\n\n        return @timezone_name_from_abbr('', $minutes, 1) ?: throw new InvalidTimeZoneException(\n            \"Invalid offset timezone $offset\",\n        );\n    }\n\n    /**\n     * Create a Carbon instance from a specific format.\n     *\n     * @param string                       $format   Datetime format\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function rawCreateFromFormat(string $format, string $time, $timezone = null): ?static\n    {\n        // Work-around for https://bugs.php.net/bug.php?id=80141\n        $format = preg_replace('/(?<!\\\\\\\\)((?:\\\\\\\\{2})*)c/', '$1Y-m-d\\TH:i:sP', $format);\n\n        if (preg_match('/(?<!\\\\\\\\)(?:\\\\\\\\{2})*(a|A)/', $format, $aMatches, PREG_OFFSET_CAPTURE) &&\n            preg_match('/(?<!\\\\\\\\)(?:\\\\\\\\{2})*(h|g|H|G)/', $format, $hMatches, PREG_OFFSET_CAPTURE) &&\n            $aMatches[1][1] < $hMatches[1][1] &&\n            preg_match('/(am|pm|AM|PM)/', $time)\n        ) {\n            $format = preg_replace('/^(.*)(?<!\\\\\\\\)((?:\\\\\\\\{2})*)(a|A)(.*)$/U', '$1$2$4 $3', $format);\n            $time = preg_replace('/^(.*)(am|pm|AM|PM)(.*)$/U', '$1$3 $2', $time);\n        }\n\n        if ($timezone === false) {\n            $timezone = null;\n        }\n\n        // First attempt to create an instance, so that error messages are based on the unmodified format.\n        $date = self::createFromFormatAndTimezone($format, $time, $timezone);\n        $lastErrors = parent::getLastErrors();\n        /** @var \\Carbon\\CarbonImmutable|\\Carbon\\Carbon|null $mock */\n        $mock = static::getMockedTestNow($timezone);\n\n        if ($mock && $date instanceof DateTimeInterface) {\n            // Set timezone from mock if custom timezone was neither given directly nor as a part of format.\n            // First let's skip the part that will be ignored by the parser.\n            $nonEscaped = '(?<!\\\\\\\\)(\\\\\\\\{2})*';\n\n            $nonIgnored = preg_replace(\"/^.*{$nonEscaped}!/s\", '', $format);\n\n            if ($timezone === null && !preg_match(\"/{$nonEscaped}[eOPT]/\", $nonIgnored)) {\n                $timezone = clone $mock->getTimezone();\n            }\n\n            $mock = $mock->copy();\n\n            // Prepend mock datetime only if the format does not contain non escaped unix epoch reset flag.\n            if (!preg_match(\"/{$nonEscaped}[!|]/\", $format)) {\n                if (preg_match('/[HhGgisvuB]/', $format)) {\n                    $mock = $mock->setTime(0, 0);\n                }\n\n                $format = static::MOCK_DATETIME_FORMAT.' '.$format;\n                $time = ($mock instanceof self ? $mock->rawFormat(static::MOCK_DATETIME_FORMAT) : $mock->format(static::MOCK_DATETIME_FORMAT)).' '.$time;\n            }\n\n            // Regenerate date from the modified format to base result on the mocked instance instead of now.\n            $date = self::createFromFormatAndTimezone($format, $time, $timezone);\n        }\n\n        if ($date instanceof DateTimeInterface) {\n            $instance = static::instance($date);\n            $instance::setLastErrors($lastErrors);\n\n            return $instance;\n        }\n\n        if (static::isStrictModeEnabled()) {\n            throw new InvalidFormatException(implode(PHP_EOL, (array) $lastErrors['errors']));\n        }\n\n        return null;\n    }\n\n    /**\n     * Create a Carbon instance from a specific format.\n     *\n     * @param string                       $format   Datetime format\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    #[ReturnTypeWillChange]\n    public static function createFromFormat($format, $time, $timezone = null): ?static\n    {\n        $function = static::$createFromFormatFunction;\n\n        // format is a single numeric unit\n        if (\\is_int($time) && \\in_array(ltrim($format, '!'), ['U', 'Y', 'y', 'X', 'x', 'm', 'n', 'd', 'j', 'w', 'W', 'H', 'h', 'G', 'g', 'i', 's', 'u', 'z', 'v'], true)) {\n            $time = (string) $time;\n        }\n\n        if (!\\is_string($time)) {\n            @trigger_error(\n                'createFromFormat() $time parameter will only accept string or integer for 1-letter format representing a numeric unit in the next version',\n                \\E_USER_DEPRECATED,\n            );\n            $time = (string) $time;\n        }\n\n        if (!$function) {\n            return static::rawCreateFromFormat($format, $time, $timezone);\n        }\n\n        if (\\is_string($function) && method_exists(static::class, $function)) {\n            $function = [static::class, $function];\n        }\n\n        return $function(...\\func_get_args());\n    }\n\n    /**\n     * Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()).\n     *\n     * @param string                       $format     Datetime format\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone   optional timezone\n     * @param string|null                  $locale     locale to be used for LTS, LT, LL, LLL, etc. macro-formats (en by fault, unneeded if no such macro-format in use)\n     * @param TranslatorInterface|null     $translator optional custom translator to use for macro-formats\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function createFromIsoFormat(\n        string $format,\n        string $time,\n        $timezone = null,\n        ?string $locale = CarbonInterface::DEFAULT_LOCALE,\n        ?TranslatorInterface $translator = null\n    ): ?static {\n        $format = preg_replace_callback('/(?<!\\\\\\\\)(\\\\\\\\{2})*(LTS|LT|[Ll]{1,4})/', function ($match) use ($locale, $translator) {\n            [$code] = $match;\n\n            static $formats = null;\n\n            if ($formats === null) {\n                $translator ??= Translator::get($locale);\n\n                $formats = [\n                    'LT' => static::getTranslationMessageWith($translator, 'formats.LT', $locale),\n                    'LTS' => static::getTranslationMessageWith($translator, 'formats.LTS', $locale),\n                    'L' => static::getTranslationMessageWith($translator, 'formats.L', $locale),\n                    'LL' => static::getTranslationMessageWith($translator, 'formats.LL', $locale),\n                    'LLL' => static::getTranslationMessageWith($translator, 'formats.LLL', $locale),\n                    'LLLL' => static::getTranslationMessageWith($translator, 'formats.LLLL', $locale),\n                ];\n            }\n\n            return $formats[$code] ?? preg_replace_callback(\n                '/MMMM|MM|DD|dddd/',\n                static fn (array $code) => mb_substr($code[0], 1),\n                $formats[strtoupper($code)] ?? '',\n            );\n        }, $format);\n\n        $format = preg_replace_callback('/(?<!\\\\\\\\)(\\\\\\\\{2})*('.CarbonInterface::ISO_FORMAT_REGEXP.'|[A-Za-z])/', function ($match) {\n            [$code] = $match;\n\n            static $replacements = null;\n\n            if ($replacements === null) {\n                $replacements = [\n                    'OD' => 'd',\n                    'OM' => 'M',\n                    'OY' => 'Y',\n                    'OH' => 'G',\n                    'Oh' => 'g',\n                    'Om' => 'i',\n                    'Os' => 's',\n                    'D' => 'd',\n                    'DD' => 'd',\n                    'Do' => 'd',\n                    'd' => '!',\n                    'dd' => '!',\n                    'ddd' => 'D',\n                    'dddd' => 'D',\n                    'DDD' => 'z',\n                    'DDDD' => 'z',\n                    'DDDo' => 'z',\n                    'e' => '!',\n                    'E' => '!',\n                    'H' => 'G',\n                    'HH' => 'H',\n                    'h' => 'g',\n                    'hh' => 'h',\n                    'k' => 'G',\n                    'kk' => 'G',\n                    'hmm' => 'gi',\n                    'hmmss' => 'gis',\n                    'Hmm' => 'Gi',\n                    'Hmmss' => 'Gis',\n                    'm' => 'i',\n                    'mm' => 'i',\n                    'a' => 'a',\n                    'A' => 'a',\n                    's' => 's',\n                    'ss' => 's',\n                    'S' => '*',\n                    'SS' => '*',\n                    'SSS' => '*',\n                    'SSSS' => '*',\n                    'SSSSS' => '*',\n                    'SSSSSS' => 'u',\n                    'SSSSSSS' => 'u*',\n                    'SSSSSSSS' => 'u*',\n                    'SSSSSSSSS' => 'u*',\n                    'M' => 'm',\n                    'MM' => 'm',\n                    'MMM' => 'M',\n                    'MMMM' => 'M',\n                    'Mo' => 'm',\n                    'Q' => '!',\n                    'Qo' => '!',\n                    'G' => '!',\n                    'GG' => '!',\n                    'GGG' => '!',\n                    'GGGG' => '!',\n                    'GGGGG' => '!',\n                    'g' => '!',\n                    'gg' => '!',\n                    'ggg' => '!',\n                    'gggg' => '!',\n                    'ggggg' => '!',\n                    'W' => '!',\n                    'WW' => '!',\n                    'Wo' => '!',\n                    'w' => '!',\n                    'ww' => '!',\n                    'wo' => '!',\n                    'x' => 'U???',\n                    'X' => 'U',\n                    'Y' => 'Y',\n                    'YY' => 'y',\n                    'YYYY' => 'Y',\n                    'YYYYY' => 'Y',\n                    'YYYYYY' => 'Y',\n                    'z' => 'e',\n                    'zz' => 'e',\n                    'Z' => 'e',\n                    'ZZ' => 'e',\n                ];\n            }\n\n            $format = $replacements[$code] ?? '?';\n\n            if ($format === '!') {\n                throw new InvalidFormatException(\"Format $code not supported for creation.\");\n            }\n\n            return $format;\n        }, $format);\n\n        return static::rawCreateFromFormat($format, $time, $timezone);\n    }\n\n    /**\n     * Create a Carbon instance from a specific format and a string in a given language.\n     *\n     * @param string                       $format   Datetime format\n     * @param string                       $locale\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function createFromLocaleFormat(string $format, string $locale, string $time, $timezone = null): ?static\n    {\n        $format = preg_replace_callback(\n            '/(?:\\\\\\\\[a-zA-Z]|[bfkqCEJKQRV]){2,}/',\n            static function (array $match) use ($locale): string {\n                $word = str_replace('\\\\', '', $match[0]);\n                $translatedWord = static::translateTimeString($word, $locale, static::DEFAULT_LOCALE);\n\n                return $word === $translatedWord\n                    ? $match[0]\n                    : preg_replace('/[a-zA-Z]/', '\\\\\\\\$0', $translatedWord);\n            },\n            $format\n        );\n\n        return static::rawCreateFromFormat($format, static::translateTimeString($time, $locale, static::DEFAULT_LOCALE), $timezone);\n    }\n\n    /**\n     * Create a Carbon instance from a specific ISO format and a string in a given language.\n     *\n     * @param string                       $format   Datetime ISO format\n     * @param string                       $locale\n     * @param string                       $time\n     * @param DateTimeZone|string|int|null $timezone\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function createFromLocaleIsoFormat(string $format, string $locale, string $time, $timezone = null): ?static\n    {\n        $time = static::translateTimeString($time, $locale, static::DEFAULT_LOCALE, CarbonInterface::TRANSLATE_MONTHS | CarbonInterface::TRANSLATE_DAYS | CarbonInterface::TRANSLATE_MERIDIEM);\n\n        return static::createFromIsoFormat($format, $time, $timezone, $locale);\n    }\n\n    /**\n     * Make a Carbon instance from given variable if possible.\n     *\n     * Always return a new instance. Parse only strings and only these likely to be dates (skip intervals\n     * and recurrences). Throw an exception for invalid format, but otherwise return null.\n     *\n     * @param mixed $var\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static|null\n     */\n    public static function make($var, DateTimeZone|string|null $timezone = null): ?static\n    {\n        if ($var instanceof DateTimeInterface) {\n            return static::instance($var);\n        }\n\n        $date = null;\n\n        if (\\is_string($var)) {\n            $var = trim($var);\n\n            if (!preg_match('/^P[\\dT]/', $var) &&\n                !preg_match('/^R\\d/', $var) &&\n                preg_match('/[a-z\\d]/i', $var)\n            ) {\n                $date = static::parse($var, $timezone);\n            }\n        }\n\n        return $date;\n    }\n\n    /**\n     * Set last errors.\n     *\n     * @param array|bool $lastErrors\n     *\n     * @return void\n     */\n    private static function setLastErrors($lastErrors): void\n    {\n        static::$lastErrors = $lastErrors;\n    }\n\n    /**\n     * {@inheritdoc}\n     */\n    public static function getLastErrors(): array|false\n    {\n        return static::$lastErrors;\n    }\n\n    private static function monthToInt(mixed $value, string $unit = 'month'): mixed\n    {\n        if ($value instanceof Month) {\n            if ($unit !== 'month') {\n                throw new UnitException(\"Month enum cannot be used to set $unit\");\n            }\n\n            return Month::int($value);\n        }\n\n        return $value;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Date.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonTimeZone;\nuse Carbon\\Exceptions\\BadComparisonUnitException;\nuse Carbon\\Exceptions\\ImmutableException;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse Carbon\\Exceptions\\UnitException;\nuse Carbon\\Exceptions\\UnknownGetterException;\nuse Carbon\\Exceptions\\UnknownMethodException;\nuse Carbon\\Exceptions\\UnknownSetterException;\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Carbon\\FactoryImmutable;\nuse Carbon\\Month;\nuse Carbon\\Translator;\nuse Carbon\\Unit;\nuse Carbon\\WeekDay;\nuse Closure;\nuse DateInterval;\nuse DatePeriod;\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Generator;\nuse InvalidArgumentException;\nuse ReflectionException;\nuse Symfony\\Component\\Clock\\NativeClock;\nuse Throwable;\n\n/**\n * A simple API extension for DateTime.\n *\n * <autodoc generated by `composer phpdoc`>\n *\n * @property      string           $localeDayOfWeek                                                                   the day of week in current locale\n * @property      string           $shortLocaleDayOfWeek                                                              the abbreviated day of week in current locale\n * @property      string           $localeMonth                                                                       the month in current locale\n * @property      string           $shortLocaleMonth                                                                  the abbreviated month in current locale\n * @property      int              $year\n * @property      int              $yearIso\n * @property      int              $month\n * @property      int              $day\n * @property      int              $hour\n * @property      int              $minute\n * @property      int              $second\n * @property      int              $micro\n * @property      int              $microsecond\n * @property      int              $dayOfWeekIso                                                                      1 (for Monday) through 7 (for Sunday)\n * @property      int|float|string $timestamp                                                                         seconds since the Unix Epoch\n * @property      string           $englishDayOfWeek                                                                  the day of week in English\n * @property      string           $shortEnglishDayOfWeek                                                             the abbreviated day of week in English\n * @property      string           $englishMonth                                                                      the month in English\n * @property      string           $shortEnglishMonth                                                                 the abbreviated month in English\n * @property      int              $milliseconds\n * @property      int              $millisecond\n * @property      int              $milli\n * @property      int              $week                                                                              1 through 53\n * @property      int              $isoWeek                                                                           1 through 53\n * @property      int              $weekYear                                                                          year according to week format\n * @property      int              $isoWeekYear                                                                       year according to ISO week format\n * @property      int              $age                                                                               does a diffInYears() with default parameters\n * @property      int              $offset                                                                            the timezone offset in seconds from UTC\n * @property      int              $offsetMinutes                                                                     the timezone offset in minutes from UTC\n * @property      int              $offsetHours                                                                       the timezone offset in hours from UTC\n * @property      CarbonTimeZone   $timezone                                                                          the current timezone\n * @property      CarbonTimeZone   $tz                                                                                alias of $timezone\n * @property      int              $centuryOfMillennium                                                               The value of the century starting from the beginning of the current millennium\n * @property      int              $dayOfCentury                                                                      The value of the day starting from the beginning of the current century\n * @property      int              $dayOfDecade                                                                       The value of the day starting from the beginning of the current decade\n * @property      int              $dayOfMillennium                                                                   The value of the day starting from the beginning of the current millennium\n * @property      int              $dayOfMonth                                                                        The value of the day starting from the beginning of the current month\n * @property      int              $dayOfQuarter                                                                      The value of the day starting from the beginning of the current quarter\n * @property      int              $dayOfWeek                                                                         0 (for Sunday) through 6 (for Saturday)\n * @property      int              $dayOfYear                                                                         1 through 366\n * @property      int              $decadeOfCentury                                                                   The value of the decade starting from the beginning of the current century\n * @property      int              $decadeOfMillennium                                                                The value of the decade starting from the beginning of the current millennium\n * @property      int              $hourOfCentury                                                                     The value of the hour starting from the beginning of the current century\n * @property      int              $hourOfDay                                                                         The value of the hour starting from the beginning of the current day\n * @property      int              $hourOfDecade                                                                      The value of the hour starting from the beginning of the current decade\n * @property      int              $hourOfMillennium                                                                  The value of the hour starting from the beginning of the current millennium\n * @property      int              $hourOfMonth                                                                       The value of the hour starting from the beginning of the current month\n * @property      int              $hourOfQuarter                                                                     The value of the hour starting from the beginning of the current quarter\n * @property      int              $hourOfWeek                                                                        The value of the hour starting from the beginning of the current week\n * @property      int              $hourOfYear                                                                        The value of the hour starting from the beginning of the current year\n * @property      int              $microsecondOfCentury                                                              The value of the microsecond starting from the beginning of the current century\n * @property      int              $microsecondOfDay                                                                  The value of the microsecond starting from the beginning of the current day\n * @property      int              $microsecondOfDecade                                                               The value of the microsecond starting from the beginning of the current decade\n * @property      int              $microsecondOfHour                                                                 The value of the microsecond starting from the beginning of the current hour\n * @property      int              $microsecondOfMillennium                                                           The value of the microsecond starting from the beginning of the current millennium\n * @property      int              $microsecondOfMillisecond                                                          The value of the microsecond starting from the beginning of the current millisecond\n * @property      int              $microsecondOfMinute                                                               The value of the microsecond starting from the beginning of the current minute\n * @property      int              $microsecondOfMonth                                                                The value of the microsecond starting from the beginning of the current month\n * @property      int              $microsecondOfQuarter                                                              The value of the microsecond starting from the beginning of the current quarter\n * @property      int              $microsecondOfSecond                                                               The value of the microsecond starting from the beginning of the current second\n * @property      int              $microsecondOfWeek                                                                 The value of the microsecond starting from the beginning of the current week\n * @property      int              $microsecondOfYear                                                                 The value of the microsecond starting from the beginning of the current year\n * @property      int              $millisecondOfCentury                                                              The value of the millisecond starting from the beginning of the current century\n * @property      int              $millisecondOfDay                                                                  The value of the millisecond starting from the beginning of the current day\n * @property      int              $millisecondOfDecade                                                               The value of the millisecond starting from the beginning of the current decade\n * @property      int              $millisecondOfHour                                                                 The value of the millisecond starting from the beginning of the current hour\n * @property      int              $millisecondOfMillennium                                                           The value of the millisecond starting from the beginning of the current millennium\n * @property      int              $millisecondOfMinute                                                               The value of the millisecond starting from the beginning of the current minute\n * @property      int              $millisecondOfMonth                                                                The value of the millisecond starting from the beginning of the current month\n * @property      int              $millisecondOfQuarter                                                              The value of the millisecond starting from the beginning of the current quarter\n * @property      int              $millisecondOfSecond                                                               The value of the millisecond starting from the beginning of the current second\n * @property      int              $millisecondOfWeek                                                                 The value of the millisecond starting from the beginning of the current week\n * @property      int              $millisecondOfYear                                                                 The value of the millisecond starting from the beginning of the current year\n * @property      int              $minuteOfCentury                                                                   The value of the minute starting from the beginning of the current century\n * @property      int              $minuteOfDay                                                                       The value of the minute starting from the beginning of the current day\n * @property      int              $minuteOfDecade                                                                    The value of the minute starting from the beginning of the current decade\n * @property      int              $minuteOfHour                                                                      The value of the minute starting from the beginning of the current hour\n * @property      int              $minuteOfMillennium                                                                The value of the minute starting from the beginning of the current millennium\n * @property      int              $minuteOfMonth                                                                     The value of the minute starting from the beginning of the current month\n * @property      int              $minuteOfQuarter                                                                   The value of the minute starting from the beginning of the current quarter\n * @property      int              $minuteOfWeek                                                                      The value of the minute starting from the beginning of the current week\n * @property      int              $minuteOfYear                                                                      The value of the minute starting from the beginning of the current year\n * @property      int              $monthOfCentury                                                                    The value of the month starting from the beginning of the current century\n * @property      int              $monthOfDecade                                                                     The value of the month starting from the beginning of the current decade\n * @property      int              $monthOfMillennium                                                                 The value of the month starting from the beginning of the current millennium\n * @property      int              $monthOfQuarter                                                                    The value of the month starting from the beginning of the current quarter\n * @property      int              $monthOfYear                                                                       The value of the month starting from the beginning of the current year\n * @property      int              $quarterOfCentury                                                                  The value of the quarter starting from the beginning of the current century\n * @property      int              $quarterOfDecade                                                                   The value of the quarter starting from the beginning of the current decade\n * @property      int              $quarterOfMillennium                                                               The value of the quarter starting from the beginning of the current millennium\n * @property      int              $quarterOfYear                                                                     The value of the quarter starting from the beginning of the current year\n * @property      int              $secondOfCentury                                                                   The value of the second starting from the beginning of the current century\n * @property      int              $secondOfDay                                                                       The value of the second starting from the beginning of the current day\n * @property      int              $secondOfDecade                                                                    The value of the second starting from the beginning of the current decade\n * @property      int              $secondOfHour                                                                      The value of the second starting from the beginning of the current hour\n * @property      int              $secondOfMillennium                                                                The value of the second starting from the beginning of the current millennium\n * @property      int              $secondOfMinute                                                                    The value of the second starting from the beginning of the current minute\n * @property      int              $secondOfMonth                                                                     The value of the second starting from the beginning of the current month\n * @property      int              $secondOfQuarter                                                                   The value of the second starting from the beginning of the current quarter\n * @property      int              $secondOfWeek                                                                      The value of the second starting from the beginning of the current week\n * @property      int              $secondOfYear                                                                      The value of the second starting from the beginning of the current year\n * @property      int              $weekOfCentury                                                                     The value of the week starting from the beginning of the current century\n * @property      int              $weekOfDecade                                                                      The value of the week starting from the beginning of the current decade\n * @property      int              $weekOfMillennium                                                                  The value of the week starting from the beginning of the current millennium\n * @property      int              $weekOfMonth                                                                       1 through 5\n * @property      int              $weekOfQuarter                                                                     The value of the week starting from the beginning of the current quarter\n * @property      int              $weekOfYear                                                                        ISO-8601 week number of year, weeks starting on Monday\n * @property      int              $yearOfCentury                                                                     The value of the year starting from the beginning of the current century\n * @property      int              $yearOfDecade                                                                      The value of the year starting from the beginning of the current decade\n * @property      int              $yearOfMillennium                                                                  The value of the year starting from the beginning of the current millennium\n * @property-read string           $latinMeridiem                                                                     \"am\"/\"pm\" (Ante meridiem or Post meridiem latin lowercase mark)\n * @property-read string           $latinUpperMeridiem                                                                \"AM\"/\"PM\" (Ante meridiem or Post meridiem latin uppercase mark)\n * @property-read string           $timezoneAbbreviatedName                                                           the current timezone abbreviated name\n * @property-read string           $tzAbbrName                                                                        alias of $timezoneAbbreviatedName\n * @property-read string           $dayName                                                                           long name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortDayName                                                                      short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $minDayName                                                                        very short name of weekday translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $monthName                                                                         long name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $shortMonthName                                                                    short name of month translated according to Carbon locale, in english if no translation available for current language\n * @property-read string           $meridiem                                                                          lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read string           $upperMeridiem                                                                     uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n * @property-read int              $noZeroHour                                                                        current hour from 1 to 24\n * @property-read int              $isoWeeksInYear                                                                    51 through 53\n * @property-read int              $weekNumberInMonth                                                                 1 through 5\n * @property-read int              $firstWeekDay                                                                      0 through 6\n * @property-read int              $lastWeekDay                                                                       0 through 6\n * @property-read int              $quarter                                                                           the quarter of this instance, 1 - 4\n * @property-read int              $decade                                                                            the decade of this instance\n * @property-read int              $century                                                                           the century of this instance\n * @property-read int              $millennium                                                                        the millennium of this instance\n * @property-read bool             $dst                                                                               daylight savings time indicator, true if DST, false otherwise\n * @property-read bool             $local                                                                             checks if the timezone is local, true if local, false otherwise\n * @property-read bool             $utc                                                                               checks if the timezone is UTC, true if UTC, false otherwise\n * @property-read string           $timezoneName                                                                      the current timezone name\n * @property-read string           $tzName                                                                            alias of $timezoneName\n * @property-read string           $locale                                                                            locale of the current instance\n * @property-read int              $centuriesInMillennium                                                             The number of centuries contained in the current millennium\n * @property-read int              $daysInCentury                                                                     The number of days contained in the current century\n * @property-read int              $daysInDecade                                                                      The number of days contained in the current decade\n * @property-read int              $daysInMillennium                                                                  The number of days contained in the current millennium\n * @property-read int              $daysInMonth                                                                       number of days in the given month\n * @property-read int              $daysInQuarter                                                                     The number of days contained in the current quarter\n * @property-read int              $daysInWeek                                                                        The number of days contained in the current week\n * @property-read int              $daysInYear                                                                        365 or 366\n * @property-read int              $decadesInCentury                                                                  The number of decades contained in the current century\n * @property-read int              $decadesInMillennium                                                               The number of decades contained in the current millennium\n * @property-read int              $hoursInCentury                                                                    The number of hours contained in the current century\n * @property-read int              $hoursInDay                                                                        The number of hours contained in the current day\n * @property-read int              $hoursInDecade                                                                     The number of hours contained in the current decade\n * @property-read int              $hoursInMillennium                                                                 The number of hours contained in the current millennium\n * @property-read int              $hoursInMonth                                                                      The number of hours contained in the current month\n * @property-read int              $hoursInQuarter                                                                    The number of hours contained in the current quarter\n * @property-read int              $hoursInWeek                                                                       The number of hours contained in the current week\n * @property-read int              $hoursInYear                                                                       The number of hours contained in the current year\n * @property-read int              $microsecondsInCentury                                                             The number of microseconds contained in the current century\n * @property-read int              $microsecondsInDay                                                                 The number of microseconds contained in the current day\n * @property-read int              $microsecondsInDecade                                                              The number of microseconds contained in the current decade\n * @property-read int              $microsecondsInHour                                                                The number of microseconds contained in the current hour\n * @property-read int              $microsecondsInMillennium                                                          The number of microseconds contained in the current millennium\n * @property-read int              $microsecondsInMillisecond                                                         The number of microseconds contained in the current millisecond\n * @property-read int              $microsecondsInMinute                                                              The number of microseconds contained in the current minute\n * @property-read int              $microsecondsInMonth                                                               The number of microseconds contained in the current month\n * @property-read int              $microsecondsInQuarter                                                             The number of microseconds contained in the current quarter\n * @property-read int              $microsecondsInSecond                                                              The number of microseconds contained in the current second\n * @property-read int              $microsecondsInWeek                                                                The number of microseconds contained in the current week\n * @property-read int              $microsecondsInYear                                                                The number of microseconds contained in the current year\n * @property-read int              $millisecondsInCentury                                                             The number of milliseconds contained in the current century\n * @property-read int              $millisecondsInDay                                                                 The number of milliseconds contained in the current day\n * @property-read int              $millisecondsInDecade                                                              The number of milliseconds contained in the current decade\n * @property-read int              $millisecondsInHour                                                                The number of milliseconds contained in the current hour\n * @property-read int              $millisecondsInMillennium                                                          The number of milliseconds contained in the current millennium\n * @property-read int              $millisecondsInMinute                                                              The number of milliseconds contained in the current minute\n * @property-read int              $millisecondsInMonth                                                               The number of milliseconds contained in the current month\n * @property-read int              $millisecondsInQuarter                                                             The number of milliseconds contained in the current quarter\n * @property-read int              $millisecondsInSecond                                                              The number of milliseconds contained in the current second\n * @property-read int              $millisecondsInWeek                                                                The number of milliseconds contained in the current week\n * @property-read int              $millisecondsInYear                                                                The number of milliseconds contained in the current year\n * @property-read int              $minutesInCentury                                                                  The number of minutes contained in the current century\n * @property-read int              $minutesInDay                                                                      The number of minutes contained in the current day\n * @property-read int              $minutesInDecade                                                                   The number of minutes contained in the current decade\n * @property-read int              $minutesInHour                                                                     The number of minutes contained in the current hour\n * @property-read int              $minutesInMillennium                                                               The number of minutes contained in the current millennium\n * @property-read int              $minutesInMonth                                                                    The number of minutes contained in the current month\n * @property-read int              $minutesInQuarter                                                                  The number of minutes contained in the current quarter\n * @property-read int              $minutesInWeek                                                                     The number of minutes contained in the current week\n * @property-read int              $minutesInYear                                                                     The number of minutes contained in the current year\n * @property-read int              $monthsInCentury                                                                   The number of months contained in the current century\n * @property-read int              $monthsInDecade                                                                    The number of months contained in the current decade\n * @property-read int              $monthsInMillennium                                                                The number of months contained in the current millennium\n * @property-read int              $monthsInQuarter                                                                   The number of months contained in the current quarter\n * @property-read int              $monthsInYear                                                                      The number of months contained in the current year\n * @property-read int              $quartersInCentury                                                                 The number of quarters contained in the current century\n * @property-read int              $quartersInDecade                                                                  The number of quarters contained in the current decade\n * @property-read int              $quartersInMillennium                                                              The number of quarters contained in the current millennium\n * @property-read int              $quartersInYear                                                                    The number of quarters contained in the current year\n * @property-read int              $secondsInCentury                                                                  The number of seconds contained in the current century\n * @property-read int              $secondsInDay                                                                      The number of seconds contained in the current day\n * @property-read int              $secondsInDecade                                                                   The number of seconds contained in the current decade\n * @property-read int              $secondsInHour                                                                     The number of seconds contained in the current hour\n * @property-read int              $secondsInMillennium                                                               The number of seconds contained in the current millennium\n * @property-read int              $secondsInMinute                                                                   The number of seconds contained in the current minute\n * @property-read int              $secondsInMonth                                                                    The number of seconds contained in the current month\n * @property-read int              $secondsInQuarter                                                                  The number of seconds contained in the current quarter\n * @property-read int              $secondsInWeek                                                                     The number of seconds contained in the current week\n * @property-read int              $secondsInYear                                                                     The number of seconds contained in the current year\n * @property-read int              $weeksInCentury                                                                    The number of weeks contained in the current century\n * @property-read int              $weeksInDecade                                                                     The number of weeks contained in the current decade\n * @property-read int              $weeksInMillennium                                                                 The number of weeks contained in the current millennium\n * @property-read int              $weeksInMonth                                                                      The number of weeks contained in the current month\n * @property-read int              $weeksInQuarter                                                                    The number of weeks contained in the current quarter\n * @property-read int              $weeksInYear                                                                       51 through 53\n * @property-read int              $yearsInCentury                                                                    The number of years contained in the current century\n * @property-read int              $yearsInDecade                                                                     The number of years contained in the current decade\n * @property-read int              $yearsInMillennium                                                                 The number of years contained in the current millennium\n *\n * @method        bool             isUtc()                                                                            Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.)\n * @method        bool             isLocal()                                                                          Check if the current instance has non-UTC timezone.\n * @method        bool             isValid()                                                                          Check if the current instance is a valid date.\n * @method        bool             isDST()                                                                            Check if the current instance is in a daylight saving time.\n * @method        bool             isSunday()                                                                         Checks if the instance day is sunday.\n * @method        bool             isMonday()                                                                         Checks if the instance day is monday.\n * @method        bool             isTuesday()                                                                        Checks if the instance day is tuesday.\n * @method        bool             isWednesday()                                                                      Checks if the instance day is wednesday.\n * @method        bool             isThursday()                                                                       Checks if the instance day is thursday.\n * @method        bool             isFriday()                                                                         Checks if the instance day is friday.\n * @method        bool             isSaturday()                                                                       Checks if the instance day is saturday.\n * @method        bool             isSameYear(DateTimeInterface|string $date)                                         Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentYear()                                                                    Checks if the instance is in the same year as the current moment.\n * @method        bool             isNextYear()                                                                       Checks if the instance is in the same year as the current moment next year.\n * @method        bool             isLastYear()                                                                       Checks if the instance is in the same year as the current moment last year.\n * @method        bool             isCurrentMonth()                                                                   Checks if the instance is in the same month as the current moment.\n * @method        bool             isNextMonth()                                                                      Checks if the instance is in the same month as the current moment next month.\n * @method        bool             isLastMonth()                                                                      Checks if the instance is in the same month as the current moment last month.\n * @method        bool             isSameWeek(DateTimeInterface|string $date)                                         Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentWeek()                                                                    Checks if the instance is in the same week as the current moment.\n * @method        bool             isNextWeek()                                                                       Checks if the instance is in the same week as the current moment next week.\n * @method        bool             isLastWeek()                                                                       Checks if the instance is in the same week as the current moment last week.\n * @method        bool             isSameDay(DateTimeInterface|string $date)                                          Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDay()                                                                     Checks if the instance is in the same day as the current moment.\n * @method        bool             isNextDay()                                                                        Checks if the instance is in the same day as the current moment next day.\n * @method        bool             isLastDay()                                                                        Checks if the instance is in the same day as the current moment last day.\n * @method        bool             isSameHour(DateTimeInterface|string $date)                                         Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentHour()                                                                    Checks if the instance is in the same hour as the current moment.\n * @method        bool             isNextHour()                                                                       Checks if the instance is in the same hour as the current moment next hour.\n * @method        bool             isLastHour()                                                                       Checks if the instance is in the same hour as the current moment last hour.\n * @method        bool             isSameMinute(DateTimeInterface|string $date)                                       Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMinute()                                                                  Checks if the instance is in the same minute as the current moment.\n * @method        bool             isNextMinute()                                                                     Checks if the instance is in the same minute as the current moment next minute.\n * @method        bool             isLastMinute()                                                                     Checks if the instance is in the same minute as the current moment last minute.\n * @method        bool             isSameSecond(DateTimeInterface|string $date)                                       Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentSecond()                                                                  Checks if the instance is in the same second as the current moment.\n * @method        bool             isNextSecond()                                                                     Checks if the instance is in the same second as the current moment next second.\n * @method        bool             isLastSecond()                                                                     Checks if the instance is in the same second as the current moment last second.\n * @method        bool             isSameMilli(DateTimeInterface|string $date)                                        Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMilli()                                                                   Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMilli()                                                                      Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMilli()                                                                      Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMillisecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same millisecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillisecond()                                                             Checks if the instance is in the same millisecond as the current moment.\n * @method        bool             isNextMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment next millisecond.\n * @method        bool             isLastMillisecond()                                                                Checks if the instance is in the same millisecond as the current moment last millisecond.\n * @method        bool             isSameMicro(DateTimeInterface|string $date)                                        Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicro()                                                                   Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicro()                                                                      Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicro()                                                                      Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameMicrosecond(DateTimeInterface|string $date)                                  Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMicrosecond()                                                             Checks if the instance is in the same microsecond as the current moment.\n * @method        bool             isNextMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment next microsecond.\n * @method        bool             isLastMicrosecond()                                                                Checks if the instance is in the same microsecond as the current moment last microsecond.\n * @method        bool             isSameDecade(DateTimeInterface|string $date)                                       Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentDecade()                                                                  Checks if the instance is in the same decade as the current moment.\n * @method        bool             isNextDecade()                                                                     Checks if the instance is in the same decade as the current moment next decade.\n * @method        bool             isLastDecade()                                                                     Checks if the instance is in the same decade as the current moment last decade.\n * @method        bool             isSameCentury(DateTimeInterface|string $date)                                      Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentCentury()                                                                 Checks if the instance is in the same century as the current moment.\n * @method        bool             isNextCentury()                                                                    Checks if the instance is in the same century as the current moment next century.\n * @method        bool             isLastCentury()                                                                    Checks if the instance is in the same century as the current moment last century.\n * @method        bool             isSameMillennium(DateTimeInterface|string $date)                                   Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone).\n * @method        bool             isCurrentMillennium()                                                              Checks if the instance is in the same millennium as the current moment.\n * @method        bool             isNextMillennium()                                                                 Checks if the instance is in the same millennium as the current moment next millennium.\n * @method        bool             isLastMillennium()                                                                 Checks if the instance is in the same millennium as the current moment last millennium.\n * @method        bool             isCurrentQuarter()                                                                 Checks if the instance is in the same quarter as the current moment.\n * @method        bool             isNextQuarter()                                                                    Checks if the instance is in the same quarter as the current moment next quarter.\n * @method        bool             isLastQuarter()                                                                    Checks if the instance is in the same quarter as the current moment last quarter.\n * @method        CarbonInterface  years(int $value)                                                                  Set current instance year to the given value.\n * @method        CarbonInterface  year(int $value)                                                                   Set current instance year to the given value.\n * @method        CarbonInterface  setYears(int $value)                                                               Set current instance year to the given value.\n * @method        CarbonInterface  setYear(int $value)                                                                Set current instance year to the given value.\n * @method        CarbonInterface  months(Month|int $value)                                                           Set current instance month to the given value.\n * @method        CarbonInterface  month(Month|int $value)                                                            Set current instance month to the given value.\n * @method        CarbonInterface  setMonths(Month|int $value)                                                        Set current instance month to the given value.\n * @method        CarbonInterface  setMonth(Month|int $value)                                                         Set current instance month to the given value.\n * @method        CarbonInterface  days(int $value)                                                                   Set current instance day to the given value.\n * @method        CarbonInterface  day(int $value)                                                                    Set current instance day to the given value.\n * @method        CarbonInterface  setDays(int $value)                                                                Set current instance day to the given value.\n * @method        CarbonInterface  setDay(int $value)                                                                 Set current instance day to the given value.\n * @method        CarbonInterface  hours(int $value)                                                                  Set current instance hour to the given value.\n * @method        CarbonInterface  hour(int $value)                                                                   Set current instance hour to the given value.\n * @method        CarbonInterface  setHours(int $value)                                                               Set current instance hour to the given value.\n * @method        CarbonInterface  setHour(int $value)                                                                Set current instance hour to the given value.\n * @method        CarbonInterface  minutes(int $value)                                                                Set current instance minute to the given value.\n * @method        CarbonInterface  minute(int $value)                                                                 Set current instance minute to the given value.\n * @method        CarbonInterface  setMinutes(int $value)                                                             Set current instance minute to the given value.\n * @method        CarbonInterface  setMinute(int $value)                                                              Set current instance minute to the given value.\n * @method        CarbonInterface  seconds(int $value)                                                                Set current instance second to the given value.\n * @method        CarbonInterface  second(int $value)                                                                 Set current instance second to the given value.\n * @method        CarbonInterface  setSeconds(int $value)                                                             Set current instance second to the given value.\n * @method        CarbonInterface  setSecond(int $value)                                                              Set current instance second to the given value.\n * @method        CarbonInterface  millis(int $value)                                                                 Set current instance millisecond to the given value.\n * @method        CarbonInterface  milli(int $value)                                                                  Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMillis(int $value)                                                              Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMilli(int $value)                                                               Set current instance millisecond to the given value.\n * @method        CarbonInterface  milliseconds(int $value)                                                           Set current instance millisecond to the given value.\n * @method        CarbonInterface  millisecond(int $value)                                                            Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMilliseconds(int $value)                                                        Set current instance millisecond to the given value.\n * @method        CarbonInterface  setMillisecond(int $value)                                                         Set current instance millisecond to the given value.\n * @method        CarbonInterface  micros(int $value)                                                                 Set current instance microsecond to the given value.\n * @method        CarbonInterface  micro(int $value)                                                                  Set current instance microsecond to the given value.\n * @method        CarbonInterface  setMicros(int $value)                                                              Set current instance microsecond to the given value.\n * @method        CarbonInterface  setMicro(int $value)                                                               Set current instance microsecond to the given value.\n * @method        CarbonInterface  microseconds(int $value)                                                           Set current instance microsecond to the given value.\n * @method        CarbonInterface  microsecond(int $value)                                                            Set current instance microsecond to the given value.\n * @method        CarbonInterface  setMicroseconds(int $value)                                                        Set current instance microsecond to the given value.\n * @method        self             setMicrosecond(int $value)                                                         Set current instance microsecond to the given value.\n * @method        CarbonInterface  addYears(int|float $value = 1)                                                     Add years (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addYear()                                                                          Add one year to the instance (using date interval).\n * @method        CarbonInterface  subYears(int|float $value = 1)                                                     Sub years (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subYear()                                                                          Sub one year to the instance (using date interval).\n * @method        CarbonInterface  addYearsWithOverflow(int|float $value = 1)                                         Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addYearWithOverflow()                                                              Add one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subYearsWithOverflow(int|float $value = 1)                                         Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subYearWithOverflow()                                                              Sub one year to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addYearsWithoutOverflow(int|float $value = 1)                                      Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearWithoutOverflow()                                                           Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearsWithoutOverflow(int|float $value = 1)                                      Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearWithoutOverflow()                                                           Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearsWithNoOverflow(int|float $value = 1)                                       Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearWithNoOverflow()                                                            Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearsWithNoOverflow(int|float $value = 1)                                       Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearWithNoOverflow()                                                            Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearsNoOverflow(int|float $value = 1)                                           Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addYearNoOverflow()                                                                Add one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearsNoOverflow(int|float $value = 1)                                           Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subYearNoOverflow()                                                                Sub one year to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonths(int|float $value = 1)                                                    Add months (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMonth()                                                                         Add one month to the instance (using date interval).\n * @method        CarbonInterface  subMonths(int|float $value = 1)                                                    Sub months (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMonth()                                                                         Sub one month to the instance (using date interval).\n * @method        CarbonInterface  addMonthsWithOverflow(int|float $value = 1)                                        Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMonthWithOverflow()                                                             Add one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMonthsWithOverflow(int|float $value = 1)                                        Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMonthWithOverflow()                                                             Sub one month to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMonthsWithoutOverflow(int|float $value = 1)                                     Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthWithoutOverflow()                                                          Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthsWithoutOverflow(int|float $value = 1)                                     Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthWithoutOverflow()                                                          Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthsWithNoOverflow(int|float $value = 1)                                      Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthWithNoOverflow()                                                           Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthsWithNoOverflow(int|float $value = 1)                                      Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthWithNoOverflow()                                                           Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthsNoOverflow(int|float $value = 1)                                          Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMonthNoOverflow()                                                               Add one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthsNoOverflow(int|float $value = 1)                                          Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMonthNoOverflow()                                                               Sub one month to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDays(int|float $value = 1)                                                      Add days (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addDay()                                                                           Add one day to the instance (using date interval).\n * @method        CarbonInterface  subDays(int|float $value = 1)                                                      Sub days (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subDay()                                                                           Sub one day to the instance (using date interval).\n * @method        CarbonInterface  addHours(int|float $value = 1)                                                     Add hours (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addHour()                                                                          Add one hour to the instance (using date interval).\n * @method        CarbonInterface  subHours(int|float $value = 1)                                                     Sub hours (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subHour()                                                                          Sub one hour to the instance (using date interval).\n * @method        CarbonInterface  addMinutes(int|float $value = 1)                                                   Add minutes (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMinute()                                                                        Add one minute to the instance (using date interval).\n * @method        CarbonInterface  subMinutes(int|float $value = 1)                                                   Sub minutes (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMinute()                                                                        Sub one minute to the instance (using date interval).\n * @method        CarbonInterface  addSeconds(int|float $value = 1)                                                   Add seconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addSecond()                                                                        Add one second to the instance (using date interval).\n * @method        CarbonInterface  subSeconds(int|float $value = 1)                                                   Sub seconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subSecond()                                                                        Sub one second to the instance (using date interval).\n * @method        CarbonInterface  addMillis(int|float $value = 1)                                                    Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMilli()                                                                         Add one millisecond to the instance (using date interval).\n * @method        CarbonInterface  subMillis(int|float $value = 1)                                                    Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMilli()                                                                         Sub one millisecond to the instance (using date interval).\n * @method        CarbonInterface  addMilliseconds(int|float $value = 1)                                              Add milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMillisecond()                                                                   Add one millisecond to the instance (using date interval).\n * @method        CarbonInterface  subMilliseconds(int|float $value = 1)                                              Sub milliseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMillisecond()                                                                   Sub one millisecond to the instance (using date interval).\n * @method        CarbonInterface  addMicros(int|float $value = 1)                                                    Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMicro()                                                                         Add one microsecond to the instance (using date interval).\n * @method        CarbonInterface  subMicros(int|float $value = 1)                                                    Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMicro()                                                                         Sub one microsecond to the instance (using date interval).\n * @method        CarbonInterface  addMicroseconds(int|float $value = 1)                                              Add microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMicrosecond()                                                                   Add one microsecond to the instance (using date interval).\n * @method        CarbonInterface  subMicroseconds(int|float $value = 1)                                              Sub microseconds (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMicrosecond()                                                                   Sub one microsecond to the instance (using date interval).\n * @method        CarbonInterface  addMillennia(int|float $value = 1)                                                 Add millennia (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addMillennium()                                                                    Add one millennium to the instance (using date interval).\n * @method        CarbonInterface  subMillennia(int|float $value = 1)                                                 Sub millennia (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subMillennium()                                                                    Sub one millennium to the instance (using date interval).\n * @method        CarbonInterface  addMillenniaWithOverflow(int|float $value = 1)                                     Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMillenniumWithOverflow()                                                        Add one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMillenniaWithOverflow(int|float $value = 1)                                     Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subMillenniumWithOverflow()                                                        Sub one millennium to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addMillenniaWithoutOverflow(int|float $value = 1)                                  Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniumWithoutOverflow()                                                     Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniaWithoutOverflow(int|float $value = 1)                                  Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniumWithoutOverflow()                                                     Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniaWithNoOverflow(int|float $value = 1)                                   Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniumWithNoOverflow()                                                      Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniaWithNoOverflow(int|float $value = 1)                                   Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniumWithNoOverflow()                                                      Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniaNoOverflow(int|float $value = 1)                                       Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addMillenniumNoOverflow()                                                          Add one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniaNoOverflow(int|float $value = 1)                                       Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subMillenniumNoOverflow()                                                          Sub one millennium to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturies(int|float $value = 1)                                                 Add centuries (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addCentury()                                                                       Add one century to the instance (using date interval).\n * @method        CarbonInterface  subCenturies(int|float $value = 1)                                                 Sub centuries (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subCentury()                                                                       Sub one century to the instance (using date interval).\n * @method        CarbonInterface  addCenturiesWithOverflow(int|float $value = 1)                                     Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addCenturyWithOverflow()                                                           Add one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subCenturiesWithOverflow(int|float $value = 1)                                     Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subCenturyWithOverflow()                                                           Sub one century to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addCenturiesWithoutOverflow(int|float $value = 1)                                  Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturyWithoutOverflow()                                                        Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturiesWithoutOverflow(int|float $value = 1)                                  Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturyWithoutOverflow()                                                        Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturiesWithNoOverflow(int|float $value = 1)                                   Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturyWithNoOverflow()                                                         Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturiesWithNoOverflow(int|float $value = 1)                                   Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturyWithNoOverflow()                                                         Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturiesNoOverflow(int|float $value = 1)                                       Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addCenturyNoOverflow()                                                             Add one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturiesNoOverflow(int|float $value = 1)                                       Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subCenturyNoOverflow()                                                             Sub one century to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecades(int|float $value = 1)                                                   Add decades (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addDecade()                                                                        Add one decade to the instance (using date interval).\n * @method        CarbonInterface  subDecades(int|float $value = 1)                                                   Sub decades (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subDecade()                                                                        Sub one decade to the instance (using date interval).\n * @method        CarbonInterface  addDecadesWithOverflow(int|float $value = 1)                                       Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addDecadeWithOverflow()                                                            Add one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subDecadesWithOverflow(int|float $value = 1)                                       Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subDecadeWithOverflow()                                                            Sub one decade to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addDecadesWithoutOverflow(int|float $value = 1)                                    Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadeWithoutOverflow()                                                         Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadesWithoutOverflow(int|float $value = 1)                                    Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadeWithoutOverflow()                                                         Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadesWithNoOverflow(int|float $value = 1)                                     Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadeWithNoOverflow()                                                          Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadesWithNoOverflow(int|float $value = 1)                                     Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadeWithNoOverflow()                                                          Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadesNoOverflow(int|float $value = 1)                                         Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addDecadeNoOverflow()                                                              Add one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadesNoOverflow(int|float $value = 1)                                         Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subDecadeNoOverflow()                                                              Sub one decade to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarters(int|float $value = 1)                                                  Add quarters (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addQuarter()                                                                       Add one quarter to the instance (using date interval).\n * @method        CarbonInterface  subQuarters(int|float $value = 1)                                                  Sub quarters (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subQuarter()                                                                       Sub one quarter to the instance (using date interval).\n * @method        CarbonInterface  addQuartersWithOverflow(int|float $value = 1)                                      Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addQuarterWithOverflow()                                                           Add one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subQuartersWithOverflow(int|float $value = 1)                                      Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  subQuarterWithOverflow()                                                           Sub one quarter to the instance (using date interval) with overflow explicitly allowed.\n * @method        CarbonInterface  addQuartersWithoutOverflow(int|float $value = 1)                                   Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarterWithoutOverflow()                                                        Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuartersWithoutOverflow(int|float $value = 1)                                   Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuarterWithoutOverflow()                                                        Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuartersWithNoOverflow(int|float $value = 1)                                    Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarterWithNoOverflow()                                                         Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuartersWithNoOverflow(int|float $value = 1)                                    Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuarterWithNoOverflow()                                                         Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuartersNoOverflow(int|float $value = 1)                                        Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addQuarterNoOverflow()                                                             Add one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuartersNoOverflow(int|float $value = 1)                                        Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  subQuarterNoOverflow()                                                             Sub one quarter to the instance (using date interval) with overflow explicitly forbidden.\n * @method        CarbonInterface  addWeeks(int|float $value = 1)                                                     Add weeks (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addWeek()                                                                          Add one week to the instance (using date interval).\n * @method        CarbonInterface  subWeeks(int|float $value = 1)                                                     Sub weeks (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subWeek()                                                                          Sub one week to the instance (using date interval).\n * @method        CarbonInterface  addWeekdays(int|float $value = 1)                                                  Add weekdays (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  addWeekday()                                                                       Add one weekday to the instance (using date interval).\n * @method        CarbonInterface  subWeekdays(int|float $value = 1)                                                  Sub weekdays (the $value count passed in) to the instance (using date interval).\n * @method        CarbonInterface  subWeekday()                                                                       Sub one weekday to the instance (using date interval).\n * @method        CarbonInterface  addUTCMicros(int|float $value = 1)                                                 Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMicro()                                                                      Add one microsecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicros(int|float $value = 1)                                                 Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicro()                                                                      Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicros(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        CarbonInterface  addUTCMicroseconds(int|float $value = 1)                                           Add microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMicrosecond()                                                                Add one microsecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicroseconds(int|float $value = 1)                                           Sub microseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMicrosecond()                                                                Sub one microsecond to the instance (using timestamp).\n * @method        CarbonPeriod     microsecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given.\n * @method        float            diffInUTCMicroseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of microseconds.\n * @method        CarbonInterface  addUTCMillis(int|float $value = 1)                                                 Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMilli()                                                                      Add one millisecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillis(int|float $value = 1)                                                 Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMilli()                                                                      Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMillis(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        CarbonInterface  addUTCMilliseconds(int|float $value = 1)                                           Add milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMillisecond()                                                                Add one millisecond to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMilliseconds(int|float $value = 1)                                           Sub milliseconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillisecond()                                                                Sub one millisecond to the instance (using timestamp).\n * @method        CarbonPeriod     millisecondsUntil($endDate = null, int|float $factor = 1)                          Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given.\n * @method        float            diffInUTCMilliseconds(DateTimeInterface|string|null $date, bool $absolute = false) Convert current and given date in UTC timezone and return a floating number of milliseconds.\n * @method        CarbonInterface  addUTCSeconds(int|float $value = 1)                                                Add seconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCSecond()                                                                     Add one second to the instance (using timestamp).\n * @method        CarbonInterface  subUTCSeconds(int|float $value = 1)                                                Sub seconds (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCSecond()                                                                     Sub one second to the instance (using timestamp).\n * @method        CarbonPeriod     secondsUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given.\n * @method        float            diffInUTCSeconds(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of seconds.\n * @method        CarbonInterface  addUTCMinutes(int|float $value = 1)                                                Add minutes (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMinute()                                                                     Add one minute to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMinutes(int|float $value = 1)                                                Sub minutes (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMinute()                                                                     Sub one minute to the instance (using timestamp).\n * @method        CarbonPeriod     minutesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given.\n * @method        float            diffInUTCMinutes(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of minutes.\n * @method        CarbonInterface  addUTCHours(int|float $value = 1)                                                  Add hours (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCHour()                                                                       Add one hour to the instance (using timestamp).\n * @method        CarbonInterface  subUTCHours(int|float $value = 1)                                                  Sub hours (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCHour()                                                                       Sub one hour to the instance (using timestamp).\n * @method        CarbonPeriod     hoursUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given.\n * @method        float            diffInUTCHours(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of hours.\n * @method        CarbonInterface  addUTCDays(int|float $value = 1)                                                   Add days (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCDay()                                                                        Add one day to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDays(int|float $value = 1)                                                   Sub days (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDay()                                                                        Sub one day to the instance (using timestamp).\n * @method        CarbonPeriod     daysUntil($endDate = null, int|float $factor = 1)                                  Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given.\n * @method        float            diffInUTCDays(DateTimeInterface|string|null $date, bool $absolute = false)         Convert current and given date in UTC timezone and return a floating number of days.\n * @method        CarbonInterface  addUTCWeeks(int|float $value = 1)                                                  Add weeks (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCWeek()                                                                       Add one week to the instance (using timestamp).\n * @method        CarbonInterface  subUTCWeeks(int|float $value = 1)                                                  Sub weeks (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCWeek()                                                                       Sub one week to the instance (using timestamp).\n * @method        CarbonPeriod     weeksUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given.\n * @method        float            diffInUTCWeeks(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of weeks.\n * @method        CarbonInterface  addUTCMonths(int|float $value = 1)                                                 Add months (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMonth()                                                                      Add one month to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMonths(int|float $value = 1)                                                 Sub months (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMonth()                                                                      Sub one month to the instance (using timestamp).\n * @method        CarbonPeriod     monthsUntil($endDate = null, int|float $factor = 1)                                Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given.\n * @method        float            diffInUTCMonths(DateTimeInterface|string|null $date, bool $absolute = false)       Convert current and given date in UTC timezone and return a floating number of months.\n * @method        CarbonInterface  addUTCQuarters(int|float $value = 1)                                               Add quarters (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCQuarter()                                                                    Add one quarter to the instance (using timestamp).\n * @method        CarbonInterface  subUTCQuarters(int|float $value = 1)                                               Sub quarters (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCQuarter()                                                                    Sub one quarter to the instance (using timestamp).\n * @method        CarbonPeriod     quartersUntil($endDate = null, int|float $factor = 1)                              Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given.\n * @method        float            diffInUTCQuarters(DateTimeInterface|string|null $date, bool $absolute = false)     Convert current and given date in UTC timezone and return a floating number of quarters.\n * @method        CarbonInterface  addUTCYears(int|float $value = 1)                                                  Add years (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCYear()                                                                       Add one year to the instance (using timestamp).\n * @method        CarbonInterface  subUTCYears(int|float $value = 1)                                                  Sub years (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCYear()                                                                       Sub one year to the instance (using timestamp).\n * @method        CarbonPeriod     yearsUntil($endDate = null, int|float $factor = 1)                                 Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given.\n * @method        float            diffInUTCYears(DateTimeInterface|string|null $date, bool $absolute = false)        Convert current and given date in UTC timezone and return a floating number of years.\n * @method        CarbonInterface  addUTCDecades(int|float $value = 1)                                                Add decades (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCDecade()                                                                     Add one decade to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDecades(int|float $value = 1)                                                Sub decades (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCDecade()                                                                     Sub one decade to the instance (using timestamp).\n * @method        CarbonPeriod     decadesUntil($endDate = null, int|float $factor = 1)                               Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given.\n * @method        float            diffInUTCDecades(DateTimeInterface|string|null $date, bool $absolute = false)      Convert current and given date in UTC timezone and return a floating number of decades.\n * @method        CarbonInterface  addUTCCenturies(int|float $value = 1)                                              Add centuries (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCCentury()                                                                    Add one century to the instance (using timestamp).\n * @method        CarbonInterface  subUTCCenturies(int|float $value = 1)                                              Sub centuries (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCCentury()                                                                    Sub one century to the instance (using timestamp).\n * @method        CarbonPeriod     centuriesUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given.\n * @method        float            diffInUTCCenturies(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of centuries.\n * @method        CarbonInterface  addUTCMillennia(int|float $value = 1)                                              Add millennia (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  addUTCMillennium()                                                                 Add one millennium to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillennia(int|float $value = 1)                                              Sub millennia (the $value count passed in) to the instance (using timestamp).\n * @method        CarbonInterface  subUTCMillennium()                                                                 Sub one millennium to the instance (using timestamp).\n * @method        CarbonPeriod     millenniaUntil($endDate = null, int|float $factor = 1)                             Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given.\n * @method        float            diffInUTCMillennia(DateTimeInterface|string|null $date, bool $absolute = false)    Convert current and given date in UTC timezone and return a floating number of millennia.\n * @method        CarbonInterface  roundYear(float $precision = 1, string $function = \"round\")                        Round the current instance year with given precision using the given function.\n * @method        CarbonInterface  roundYears(float $precision = 1, string $function = \"round\")                       Round the current instance year with given precision using the given function.\n * @method        CarbonInterface  floorYear(float $precision = 1)                                                    Truncate the current instance year with given precision.\n * @method        CarbonInterface  floorYears(float $precision = 1)                                                   Truncate the current instance year with given precision.\n * @method        CarbonInterface  ceilYear(float $precision = 1)                                                     Ceil the current instance year with given precision.\n * @method        CarbonInterface  ceilYears(float $precision = 1)                                                    Ceil the current instance year with given precision.\n * @method        CarbonInterface  roundMonth(float $precision = 1, string $function = \"round\")                       Round the current instance month with given precision using the given function.\n * @method        CarbonInterface  roundMonths(float $precision = 1, string $function = \"round\")                      Round the current instance month with given precision using the given function.\n * @method        CarbonInterface  floorMonth(float $precision = 1)                                                   Truncate the current instance month with given precision.\n * @method        CarbonInterface  floorMonths(float $precision = 1)                                                  Truncate the current instance month with given precision.\n * @method        CarbonInterface  ceilMonth(float $precision = 1)                                                    Ceil the current instance month with given precision.\n * @method        CarbonInterface  ceilMonths(float $precision = 1)                                                   Ceil the current instance month with given precision.\n * @method        CarbonInterface  roundDay(float $precision = 1, string $function = \"round\")                         Round the current instance day with given precision using the given function.\n * @method        CarbonInterface  roundDays(float $precision = 1, string $function = \"round\")                        Round the current instance day with given precision using the given function.\n * @method        CarbonInterface  floorDay(float $precision = 1)                                                     Truncate the current instance day with given precision.\n * @method        CarbonInterface  floorDays(float $precision = 1)                                                    Truncate the current instance day with given precision.\n * @method        CarbonInterface  ceilDay(float $precision = 1)                                                      Ceil the current instance day with given precision.\n * @method        CarbonInterface  ceilDays(float $precision = 1)                                                     Ceil the current instance day with given precision.\n * @method        CarbonInterface  roundHour(float $precision = 1, string $function = \"round\")                        Round the current instance hour with given precision using the given function.\n * @method        CarbonInterface  roundHours(float $precision = 1, string $function = \"round\")                       Round the current instance hour with given precision using the given function.\n * @method        CarbonInterface  floorHour(float $precision = 1)                                                    Truncate the current instance hour with given precision.\n * @method        CarbonInterface  floorHours(float $precision = 1)                                                   Truncate the current instance hour with given precision.\n * @method        CarbonInterface  ceilHour(float $precision = 1)                                                     Ceil the current instance hour with given precision.\n * @method        CarbonInterface  ceilHours(float $precision = 1)                                                    Ceil the current instance hour with given precision.\n * @method        CarbonInterface  roundMinute(float $precision = 1, string $function = \"round\")                      Round the current instance minute with given precision using the given function.\n * @method        CarbonInterface  roundMinutes(float $precision = 1, string $function = \"round\")                     Round the current instance minute with given precision using the given function.\n * @method        CarbonInterface  floorMinute(float $precision = 1)                                                  Truncate the current instance minute with given precision.\n * @method        CarbonInterface  floorMinutes(float $precision = 1)                                                 Truncate the current instance minute with given precision.\n * @method        CarbonInterface  ceilMinute(float $precision = 1)                                                   Ceil the current instance minute with given precision.\n * @method        CarbonInterface  ceilMinutes(float $precision = 1)                                                  Ceil the current instance minute with given precision.\n * @method        CarbonInterface  roundSecond(float $precision = 1, string $function = \"round\")                      Round the current instance second with given precision using the given function.\n * @method        CarbonInterface  roundSeconds(float $precision = 1, string $function = \"round\")                     Round the current instance second with given precision using the given function.\n * @method        CarbonInterface  floorSecond(float $precision = 1)                                                  Truncate the current instance second with given precision.\n * @method        CarbonInterface  floorSeconds(float $precision = 1)                                                 Truncate the current instance second with given precision.\n * @method        CarbonInterface  ceilSecond(float $precision = 1)                                                   Ceil the current instance second with given precision.\n * @method        CarbonInterface  ceilSeconds(float $precision = 1)                                                  Ceil the current instance second with given precision.\n * @method        CarbonInterface  roundMillennium(float $precision = 1, string $function = \"round\")                  Round the current instance millennium with given precision using the given function.\n * @method        CarbonInterface  roundMillennia(float $precision = 1, string $function = \"round\")                   Round the current instance millennium with given precision using the given function.\n * @method        CarbonInterface  floorMillennium(float $precision = 1)                                              Truncate the current instance millennium with given precision.\n * @method        CarbonInterface  floorMillennia(float $precision = 1)                                               Truncate the current instance millennium with given precision.\n * @method        CarbonInterface  ceilMillennium(float $precision = 1)                                               Ceil the current instance millennium with given precision.\n * @method        CarbonInterface  ceilMillennia(float $precision = 1)                                                Ceil the current instance millennium with given precision.\n * @method        CarbonInterface  roundCentury(float $precision = 1, string $function = \"round\")                     Round the current instance century with given precision using the given function.\n * @method        CarbonInterface  roundCenturies(float $precision = 1, string $function = \"round\")                   Round the current instance century with given precision using the given function.\n * @method        CarbonInterface  floorCentury(float $precision = 1)                                                 Truncate the current instance century with given precision.\n * @method        CarbonInterface  floorCenturies(float $precision = 1)                                               Truncate the current instance century with given precision.\n * @method        CarbonInterface  ceilCentury(float $precision = 1)                                                  Ceil the current instance century with given precision.\n * @method        CarbonInterface  ceilCenturies(float $precision = 1)                                                Ceil the current instance century with given precision.\n * @method        CarbonInterface  roundDecade(float $precision = 1, string $function = \"round\")                      Round the current instance decade with given precision using the given function.\n * @method        CarbonInterface  roundDecades(float $precision = 1, string $function = \"round\")                     Round the current instance decade with given precision using the given function.\n * @method        CarbonInterface  floorDecade(float $precision = 1)                                                  Truncate the current instance decade with given precision.\n * @method        CarbonInterface  floorDecades(float $precision = 1)                                                 Truncate the current instance decade with given precision.\n * @method        CarbonInterface  ceilDecade(float $precision = 1)                                                   Ceil the current instance decade with given precision.\n * @method        CarbonInterface  ceilDecades(float $precision = 1)                                                  Ceil the current instance decade with given precision.\n * @method        CarbonInterface  roundQuarter(float $precision = 1, string $function = \"round\")                     Round the current instance quarter with given precision using the given function.\n * @method        CarbonInterface  roundQuarters(float $precision = 1, string $function = \"round\")                    Round the current instance quarter with given precision using the given function.\n * @method        CarbonInterface  floorQuarter(float $precision = 1)                                                 Truncate the current instance quarter with given precision.\n * @method        CarbonInterface  floorQuarters(float $precision = 1)                                                Truncate the current instance quarter with given precision.\n * @method        CarbonInterface  ceilQuarter(float $precision = 1)                                                  Ceil the current instance quarter with given precision.\n * @method        CarbonInterface  ceilQuarters(float $precision = 1)                                                 Ceil the current instance quarter with given precision.\n * @method        CarbonInterface  roundMillisecond(float $precision = 1, string $function = \"round\")                 Round the current instance millisecond with given precision using the given function.\n * @method        CarbonInterface  roundMilliseconds(float $precision = 1, string $function = \"round\")                Round the current instance millisecond with given precision using the given function.\n * @method        CarbonInterface  floorMillisecond(float $precision = 1)                                             Truncate the current instance millisecond with given precision.\n * @method        CarbonInterface  floorMilliseconds(float $precision = 1)                                            Truncate the current instance millisecond with given precision.\n * @method        CarbonInterface  ceilMillisecond(float $precision = 1)                                              Ceil the current instance millisecond with given precision.\n * @method        CarbonInterface  ceilMilliseconds(float $precision = 1)                                             Ceil the current instance millisecond with given precision.\n * @method        CarbonInterface  roundMicrosecond(float $precision = 1, string $function = \"round\")                 Round the current instance microsecond with given precision using the given function.\n * @method        CarbonInterface  roundMicroseconds(float $precision = 1, string $function = \"round\")                Round the current instance microsecond with given precision using the given function.\n * @method        CarbonInterface  floorMicrosecond(float $precision = 1)                                             Truncate the current instance microsecond with given precision.\n * @method        CarbonInterface  floorMicroseconds(float $precision = 1)                                            Truncate the current instance microsecond with given precision.\n * @method        CarbonInterface  ceilMicrosecond(float $precision = 1)                                              Ceil the current instance microsecond with given precision.\n * @method        CarbonInterface  ceilMicroseconds(float $precision = 1)                                             Ceil the current instance microsecond with given precision.\n * @method        string           shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)        Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1)         Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)   Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1)    Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        string           longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1)  Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)\n * @method        int              centuriesInMillennium()                                                            Return the number of centuries contained in the current millennium\n * @method        int|static       centuryOfMillennium(?int $century = null)                                          Return the value of the century starting from the beginning of the current millennium when called with no parameters, change the current century when called with an integer value\n * @method        int|static       dayOfCentury(?int $day = null)                                                     Return the value of the day starting from the beginning of the current century when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfDecade(?int $day = null)                                                      Return the value of the day starting from the beginning of the current decade when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMillennium(?int $day = null)                                                  Return the value of the day starting from the beginning of the current millennium when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfMonth(?int $day = null)                                                       Return the value of the day starting from the beginning of the current month when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfQuarter(?int $day = null)                                                     Return the value of the day starting from the beginning of the current quarter when called with no parameters, change the current day when called with an integer value\n * @method        int|static       dayOfWeek(?int $day = null)                                                        Return the value of the day starting from the beginning of the current week when called with no parameters, change the current day when called with an integer value\n * @method        int              daysInCentury()                                                                    Return the number of days contained in the current century\n * @method        int              daysInDecade()                                                                     Return the number of days contained in the current decade\n * @method        int              daysInMillennium()                                                                 Return the number of days contained in the current millennium\n * @method        int              daysInMonth()                                                                      Return the number of days contained in the current month\n * @method        int              daysInQuarter()                                                                    Return the number of days contained in the current quarter\n * @method        int              daysInWeek()                                                                       Return the number of days contained in the current week\n * @method        int              daysInYear()                                                                       Return the number of days contained in the current year\n * @method        int|static       decadeOfCentury(?int $decade = null)                                               Return the value of the decade starting from the beginning of the current century when called with no parameters, change the current decade when called with an integer value\n * @method        int|static       decadeOfMillennium(?int $decade = null)                                            Return the value of the decade starting from the beginning of the current millennium when called with no parameters, change the current decade when called with an integer value\n * @method        int              decadesInCentury()                                                                 Return the number of decades contained in the current century\n * @method        int              decadesInMillennium()                                                              Return the number of decades contained in the current millennium\n * @method        int|static       hourOfCentury(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current century when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDay(?int $hour = null)                                                       Return the value of the hour starting from the beginning of the current day when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfDecade(?int $hour = null)                                                    Return the value of the hour starting from the beginning of the current decade when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMillennium(?int $hour = null)                                                Return the value of the hour starting from the beginning of the current millennium when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfMonth(?int $hour = null)                                                     Return the value of the hour starting from the beginning of the current month when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfQuarter(?int $hour = null)                                                   Return the value of the hour starting from the beginning of the current quarter when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfWeek(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current week when called with no parameters, change the current hour when called with an integer value\n * @method        int|static       hourOfYear(?int $hour = null)                                                      Return the value of the hour starting from the beginning of the current year when called with no parameters, change the current hour when called with an integer value\n * @method        int              hoursInCentury()                                                                   Return the number of hours contained in the current century\n * @method        int              hoursInDay()                                                                       Return the number of hours contained in the current day\n * @method        int              hoursInDecade()                                                                    Return the number of hours contained in the current decade\n * @method        int              hoursInMillennium()                                                                Return the number of hours contained in the current millennium\n * @method        int              hoursInMonth()                                                                     Return the number of hours contained in the current month\n * @method        int              hoursInQuarter()                                                                   Return the number of hours contained in the current quarter\n * @method        int              hoursInWeek()                                                                      Return the number of hours contained in the current week\n * @method        int              hoursInYear()                                                                      Return the number of hours contained in the current year\n * @method        int|static       microsecondOfCentury(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current century when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDay(?int $microsecond = null)                                         Return the value of the microsecond starting from the beginning of the current day when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfDecade(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current decade when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfHour(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current hour when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillennium(?int $microsecond = null)                                  Return the value of the microsecond starting from the beginning of the current millennium when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMillisecond(?int $microsecond = null)                                 Return the value of the microsecond starting from the beginning of the current millisecond when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMinute(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current minute when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfMonth(?int $microsecond = null)                                       Return the value of the microsecond starting from the beginning of the current month when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfQuarter(?int $microsecond = null)                                     Return the value of the microsecond starting from the beginning of the current quarter when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfSecond(?int $microsecond = null)                                      Return the value of the microsecond starting from the beginning of the current second when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfWeek(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current week when called with no parameters, change the current microsecond when called with an integer value\n * @method        int|static       microsecondOfYear(?int $microsecond = null)                                        Return the value of the microsecond starting from the beginning of the current year when called with no parameters, change the current microsecond when called with an integer value\n * @method        int              microsecondsInCentury()                                                            Return the number of microseconds contained in the current century\n * @method        int              microsecondsInDay()                                                                Return the number of microseconds contained in the current day\n * @method        int              microsecondsInDecade()                                                             Return the number of microseconds contained in the current decade\n * @method        int              microsecondsInHour()                                                               Return the number of microseconds contained in the current hour\n * @method        int              microsecondsInMillennium()                                                         Return the number of microseconds contained in the current millennium\n * @method        int              microsecondsInMillisecond()                                                        Return the number of microseconds contained in the current millisecond\n * @method        int              microsecondsInMinute()                                                             Return the number of microseconds contained in the current minute\n * @method        int              microsecondsInMonth()                                                              Return the number of microseconds contained in the current month\n * @method        int              microsecondsInQuarter()                                                            Return the number of microseconds contained in the current quarter\n * @method        int              microsecondsInSecond()                                                             Return the number of microseconds contained in the current second\n * @method        int              microsecondsInWeek()                                                               Return the number of microseconds contained in the current week\n * @method        int              microsecondsInYear()                                                               Return the number of microseconds contained in the current year\n * @method        int|static       millisecondOfCentury(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current century when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDay(?int $millisecond = null)                                         Return the value of the millisecond starting from the beginning of the current day when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfDecade(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current decade when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfHour(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current hour when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMillennium(?int $millisecond = null)                                  Return the value of the millisecond starting from the beginning of the current millennium when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMinute(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current minute when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfMonth(?int $millisecond = null)                                       Return the value of the millisecond starting from the beginning of the current month when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfQuarter(?int $millisecond = null)                                     Return the value of the millisecond starting from the beginning of the current quarter when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfSecond(?int $millisecond = null)                                      Return the value of the millisecond starting from the beginning of the current second when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfWeek(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current week when called with no parameters, change the current millisecond when called with an integer value\n * @method        int|static       millisecondOfYear(?int $millisecond = null)                                        Return the value of the millisecond starting from the beginning of the current year when called with no parameters, change the current millisecond when called with an integer value\n * @method        int              millisecondsInCentury()                                                            Return the number of milliseconds contained in the current century\n * @method        int              millisecondsInDay()                                                                Return the number of milliseconds contained in the current day\n * @method        int              millisecondsInDecade()                                                             Return the number of milliseconds contained in the current decade\n * @method        int              millisecondsInHour()                                                               Return the number of milliseconds contained in the current hour\n * @method        int              millisecondsInMillennium()                                                         Return the number of milliseconds contained in the current millennium\n * @method        int              millisecondsInMinute()                                                             Return the number of milliseconds contained in the current minute\n * @method        int              millisecondsInMonth()                                                              Return the number of milliseconds contained in the current month\n * @method        int              millisecondsInQuarter()                                                            Return the number of milliseconds contained in the current quarter\n * @method        int              millisecondsInSecond()                                                             Return the number of milliseconds contained in the current second\n * @method        int              millisecondsInWeek()                                                               Return the number of milliseconds contained in the current week\n * @method        int              millisecondsInYear()                                                               Return the number of milliseconds contained in the current year\n * @method        int|static       minuteOfCentury(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current century when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDay(?int $minute = null)                                                   Return the value of the minute starting from the beginning of the current day when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfDecade(?int $minute = null)                                                Return the value of the minute starting from the beginning of the current decade when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfHour(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current hour when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMillennium(?int $minute = null)                                            Return the value of the minute starting from the beginning of the current millennium when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfMonth(?int $minute = null)                                                 Return the value of the minute starting from the beginning of the current month when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfQuarter(?int $minute = null)                                               Return the value of the minute starting from the beginning of the current quarter when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfWeek(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current week when called with no parameters, change the current minute when called with an integer value\n * @method        int|static       minuteOfYear(?int $minute = null)                                                  Return the value of the minute starting from the beginning of the current year when called with no parameters, change the current minute when called with an integer value\n * @method        int              minutesInCentury()                                                                 Return the number of minutes contained in the current century\n * @method        int              minutesInDay()                                                                     Return the number of minutes contained in the current day\n * @method        int              minutesInDecade()                                                                  Return the number of minutes contained in the current decade\n * @method        int              minutesInHour()                                                                    Return the number of minutes contained in the current hour\n * @method        int              minutesInMillennium()                                                              Return the number of minutes contained in the current millennium\n * @method        int              minutesInMonth()                                                                   Return the number of minutes contained in the current month\n * @method        int              minutesInQuarter()                                                                 Return the number of minutes contained in the current quarter\n * @method        int              minutesInWeek()                                                                    Return the number of minutes contained in the current week\n * @method        int              minutesInYear()                                                                    Return the number of minutes contained in the current year\n * @method        int|static       monthOfCentury(?int $month = null)                                                 Return the value of the month starting from the beginning of the current century when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfDecade(?int $month = null)                                                  Return the value of the month starting from the beginning of the current decade when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfMillennium(?int $month = null)                                              Return the value of the month starting from the beginning of the current millennium when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfQuarter(?int $month = null)                                                 Return the value of the month starting from the beginning of the current quarter when called with no parameters, change the current month when called with an integer value\n * @method        int|static       monthOfYear(?int $month = null)                                                    Return the value of the month starting from the beginning of the current year when called with no parameters, change the current month when called with an integer value\n * @method        int              monthsInCentury()                                                                  Return the number of months contained in the current century\n * @method        int              monthsInDecade()                                                                   Return the number of months contained in the current decade\n * @method        int              monthsInMillennium()                                                               Return the number of months contained in the current millennium\n * @method        int              monthsInQuarter()                                                                  Return the number of months contained in the current quarter\n * @method        int              monthsInYear()                                                                     Return the number of months contained in the current year\n * @method        int|static       quarterOfCentury(?int $quarter = null)                                             Return the value of the quarter starting from the beginning of the current century when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfDecade(?int $quarter = null)                                              Return the value of the quarter starting from the beginning of the current decade when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfMillennium(?int $quarter = null)                                          Return the value of the quarter starting from the beginning of the current millennium when called with no parameters, change the current quarter when called with an integer value\n * @method        int|static       quarterOfYear(?int $quarter = null)                                                Return the value of the quarter starting from the beginning of the current year when called with no parameters, change the current quarter when called with an integer value\n * @method        int              quartersInCentury()                                                                Return the number of quarters contained in the current century\n * @method        int              quartersInDecade()                                                                 Return the number of quarters contained in the current decade\n * @method        int              quartersInMillennium()                                                             Return the number of quarters contained in the current millennium\n * @method        int              quartersInYear()                                                                   Return the number of quarters contained in the current year\n * @method        int|static       secondOfCentury(?int $second = null)                                               Return the value of the second starting from the beginning of the current century when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDay(?int $second = null)                                                   Return the value of the second starting from the beginning of the current day when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfDecade(?int $second = null)                                                Return the value of the second starting from the beginning of the current decade when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfHour(?int $second = null)                                                  Return the value of the second starting from the beginning of the current hour when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMillennium(?int $second = null)                                            Return the value of the second starting from the beginning of the current millennium when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMinute(?int $second = null)                                                Return the value of the second starting from the beginning of the current minute when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfMonth(?int $second = null)                                                 Return the value of the second starting from the beginning of the current month when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfQuarter(?int $second = null)                                               Return the value of the second starting from the beginning of the current quarter when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfWeek(?int $second = null)                                                  Return the value of the second starting from the beginning of the current week when called with no parameters, change the current second when called with an integer value\n * @method        int|static       secondOfYear(?int $second = null)                                                  Return the value of the second starting from the beginning of the current year when called with no parameters, change the current second when called with an integer value\n * @method        int              secondsInCentury()                                                                 Return the number of seconds contained in the current century\n * @method        int              secondsInDay()                                                                     Return the number of seconds contained in the current day\n * @method        int              secondsInDecade()                                                                  Return the number of seconds contained in the current decade\n * @method        int              secondsInHour()                                                                    Return the number of seconds contained in the current hour\n * @method        int              secondsInMillennium()                                                              Return the number of seconds contained in the current millennium\n * @method        int              secondsInMinute()                                                                  Return the number of seconds contained in the current minute\n * @method        int              secondsInMonth()                                                                   Return the number of seconds contained in the current month\n * @method        int              secondsInQuarter()                                                                 Return the number of seconds contained in the current quarter\n * @method        int              secondsInWeek()                                                                    Return the number of seconds contained in the current week\n * @method        int              secondsInYear()                                                                    Return the number of seconds contained in the current year\n * @method        int|static       weekOfCentury(?int $week = null)                                                   Return the value of the week starting from the beginning of the current century when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfDecade(?int $week = null)                                                    Return the value of the week starting from the beginning of the current decade when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMillennium(?int $week = null)                                                Return the value of the week starting from the beginning of the current millennium when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfMonth(?int $week = null)                                                     Return the value of the week starting from the beginning of the current month when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfQuarter(?int $week = null)                                                   Return the value of the week starting from the beginning of the current quarter when called with no parameters, change the current week when called with an integer value\n * @method        int|static       weekOfYear(?int $week = null)                                                      Return the value of the week starting from the beginning of the current year when called with no parameters, change the current week when called with an integer value\n * @method        int              weeksInCentury()                                                                   Return the number of weeks contained in the current century\n * @method        int              weeksInDecade()                                                                    Return the number of weeks contained in the current decade\n * @method        int              weeksInMillennium()                                                                Return the number of weeks contained in the current millennium\n * @method        int              weeksInMonth()                                                                     Return the number of weeks contained in the current month\n * @method        int              weeksInQuarter()                                                                   Return the number of weeks contained in the current quarter\n * @method        int|static       yearOfCentury(?int $year = null)                                                   Return the value of the year starting from the beginning of the current century when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfDecade(?int $year = null)                                                    Return the value of the year starting from the beginning of the current decade when called with no parameters, change the current year when called with an integer value\n * @method        int|static       yearOfMillennium(?int $year = null)                                                Return the value of the year starting from the beginning of the current millennium when called with no parameters, change the current year when called with an integer value\n * @method        int              yearsInCentury()                                                                   Return the number of years contained in the current century\n * @method        int              yearsInDecade()                                                                    Return the number of years contained in the current decade\n * @method        int              yearsInMillennium()                                                                Return the number of years contained in the current millennium\n *\n * </autodoc>\n */\ntrait Date\n{\n    use Boundaries;\n    use Comparison;\n    use Converter;\n    use Creator;\n    use Difference;\n    use Macro;\n    use MagicParameter;\n    use Modifiers;\n    use Mutability;\n    use ObjectInitialisation;\n    use Options;\n    use Rounding;\n    use Serialization;\n    use Test;\n    use Timestamp;\n    use Units;\n    use Week;\n\n    /**\n     * Names of days of the week.\n     *\n     * @var array\n     */\n    protected static $days = [\n        // @call isDayOfWeek\n        CarbonInterface::SUNDAY => 'Sunday',\n        // @call isDayOfWeek\n        CarbonInterface::MONDAY => 'Monday',\n        // @call isDayOfWeek\n        CarbonInterface::TUESDAY => 'Tuesday',\n        // @call isDayOfWeek\n        CarbonInterface::WEDNESDAY => 'Wednesday',\n        // @call isDayOfWeek\n        CarbonInterface::THURSDAY => 'Thursday',\n        // @call isDayOfWeek\n        CarbonInterface::FRIDAY => 'Friday',\n        // @call isDayOfWeek\n        CarbonInterface::SATURDAY => 'Saturday',\n    ];\n\n    /**\n     * List of unit and magic methods associated as doc-comments.\n     *\n     * @var array\n     */\n    protected static $units = [\n        // @call setUnit\n        // @call addUnit\n        'year',\n        // @call setUnit\n        // @call addUnit\n        'month',\n        // @call setUnit\n        // @call addUnit\n        'day',\n        // @call setUnit\n        // @call addUnit\n        'hour',\n        // @call setUnit\n        // @call addUnit\n        'minute',\n        // @call setUnit\n        // @call addUnit\n        'second',\n        // @call setUnit\n        // @call addUnit\n        'milli',\n        // @call setUnit\n        // @call addUnit\n        'millisecond',\n        // @call setUnit\n        // @call addUnit\n        'micro',\n        // @call setUnit\n        // @call addUnit\n        'microsecond',\n    ];\n\n    /**\n     * Creates a DateTimeZone from a string, DateTimeZone or integer offset.\n     *\n     * @param DateTimeZone|string|int|false|null $object     original value to get CarbonTimeZone from it.\n     * @param DateTimeZone|string|int|false|null $objectDump dump of the object for error messages.\n     *\n     * @throws InvalidTimeZoneException\n     *\n     * @return CarbonTimeZone|null\n     */\n    protected static function safeCreateDateTimeZone(\n        DateTimeZone|string|int|false|null $object,\n        DateTimeZone|string|int|false|null $objectDump = null,\n    ): ?CarbonTimeZone {\n        return CarbonTimeZone::instance($object, $objectDump);\n    }\n\n    /**\n     * Get the TimeZone associated with the Carbon instance (as CarbonTimeZone).\n     *\n     * @link https://php.net/manual/en/datetime.gettimezone.php\n     */\n    public function getTimezone(): CarbonTimeZone\n    {\n        return $this->transmitFactory(fn () => CarbonTimeZone::instance(parent::getTimezone()));\n    }\n\n    /**\n     * List of minimum and maximums for each unit.\n     */\n    protected static function getRangesByUnit(int $daysInMonth = 31): array\n    {\n        return [\n            // @call roundUnit\n            'year' => [1, 9999],\n            // @call roundUnit\n            'month' => [1, static::MONTHS_PER_YEAR],\n            // @call roundUnit\n            'day' => [1, $daysInMonth],\n            // @call roundUnit\n            'hour' => [0, static::HOURS_PER_DAY - 1],\n            // @call roundUnit\n            'minute' => [0, static::MINUTES_PER_HOUR - 1],\n            // @call roundUnit\n            'second' => [0, static::SECONDS_PER_MINUTE - 1],\n        ];\n    }\n\n    /**\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function copy()\n    {\n        return clone $this;\n    }\n\n    /**\n     * @alias copy\n     *\n     * Get a copy of the instance.\n     *\n     * @return static\n     */\n    public function clone()\n    {\n        return clone $this;\n    }\n\n    /**\n     * Clone the current instance if it's mutable.\n     *\n     * This method is convenient to ensure you don't mutate the initial object\n     * but avoid to make a useless copy of it if it's already immutable.\n     *\n     * @return static\n     */\n    public function avoidMutation(): static\n    {\n        if ($this instanceof DateTimeImmutable) {\n            return $this;\n        }\n\n        return clone $this;\n    }\n\n    /**\n     * Returns a present instance in the same timezone.\n     *\n     * @return static\n     */\n    public function nowWithSameTz(): static\n    {\n        $timezone = $this->getTimezone();\n\n        return $this->getClock()?->nowAs(static::class, $timezone) ?? static::now($timezone);\n    }\n\n    /**\n     * Return the Carbon instance passed through, a now instance in the same timezone\n     * if null given or parse the input if string given.\n     *\n     * @param Carbon|\\Carbon\\CarbonPeriod|\\Carbon\\CarbonInterval|\\DateInterval|\\DatePeriod|DateTimeInterface|string|null $date\n     *\n     * @return static\n     */\n    public function carbonize($date = null)\n    {\n        if ($date instanceof DateInterval) {\n            return $this->avoidMutation()->add($date);\n        }\n\n        if ($date instanceof DatePeriod || $date instanceof CarbonPeriod) {\n            $date = $date->getStartDate();\n        }\n\n        return $this->resolveCarbon($date);\n    }\n\n    ///////////////////////////////////////////////////////////////////\n    ///////////////////////// GETTERS AND SETTERS /////////////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Get a part of the Carbon object.\n     *\n     * @throws UnknownGetterException\n     *\n     * @return string|int|bool|DateTimeZone|null\n     */\n    public function __get(string $name): mixed\n    {\n        return $this->get($name);\n    }\n\n    /**\n     * Get a part of the Carbon object.\n     *\n     * @throws UnknownGetterException\n     *\n     * @return string|int|bool|DateTimeZone\n     */\n    public function get(Unit|string $name): mixed\n    {\n        static $localizedFormats = [\n            // @property string the day of week in current locale\n            'localeDayOfWeek' => 'dddd',\n            // @property string the abbreviated day of week in current locale\n            'shortLocaleDayOfWeek' => 'ddd',\n            // @property string the month in current locale\n            'localeMonth' => 'MMMM',\n            // @property string the abbreviated month in current locale\n            'shortLocaleMonth' => 'MMM',\n        ];\n\n        $name = Unit::toName($name);\n\n        if (isset($localizedFormats[$name])) {\n            return $this->isoFormat($localizedFormats[$name]);\n        }\n\n        static $formats = [\n            // @property int\n            'year' => 'Y',\n            // @property int\n            'yearIso' => 'o',\n            // @--property-read int\n            // @--property-write Month|int\n            // @property int\n            'month' => 'n',\n            // @property int\n            'day' => 'j',\n            // @property int\n            'hour' => 'G',\n            // @property int\n            'minute' => 'i',\n            // @property int\n            'second' => 's',\n            // @property int\n            'micro' => 'u',\n            // @property int\n            'microsecond' => 'u',\n            // @property int 0 (for Sunday) through 6 (for Saturday)\n            'dayOfWeek' => 'w',\n            // @property int 1 (for Monday) through 7 (for Sunday)\n            'dayOfWeekIso' => 'N',\n            // @property int ISO-8601 week number of year, weeks starting on Monday\n            'weekOfYear' => 'W',\n            // @property-read int number of days in the given month\n            'daysInMonth' => 't',\n            // @property int|float|string seconds since the Unix Epoch\n            'timestamp' => 'U',\n            // @property-read string \"am\"/\"pm\" (Ante meridiem or Post meridiem latin lowercase mark)\n            'latinMeridiem' => 'a',\n            // @property-read string \"AM\"/\"PM\" (Ante meridiem or Post meridiem latin uppercase mark)\n            'latinUpperMeridiem' => 'A',\n            // @property string the day of week in English\n            'englishDayOfWeek' => 'l',\n            // @property string the abbreviated day of week in English\n            'shortEnglishDayOfWeek' => 'D',\n            // @property string the month in English\n            'englishMonth' => 'F',\n            // @property string the abbreviated month in English\n            'shortEnglishMonth' => 'M',\n            // @property-read string $timezoneAbbreviatedName the current timezone abbreviated name\n            'timezoneAbbreviatedName' => 'T',\n            // @property-read string $tzAbbrName alias of $timezoneAbbreviatedName\n            'tzAbbrName' => 'T',\n        ];\n\n        switch (true) {\n            case isset($formats[$name]):\n                $value = $this->rawFormat($formats[$name]);\n\n                return is_numeric($value) ? (int) $value : $value;\n\n            // @property-read string long name of weekday translated according to Carbon locale, in english if no translation available for current language\n            case $name === 'dayName':\n                return $this->getTranslatedDayName();\n            // @property-read string short name of weekday translated according to Carbon locale, in english if no translation available for current language\n            case $name === 'shortDayName':\n                return $this->getTranslatedShortDayName();\n            // @property-read string very short name of weekday translated according to Carbon locale, in english if no translation available for current language\n            case $name === 'minDayName':\n                return $this->getTranslatedMinDayName();\n            // @property-read string long name of month translated according to Carbon locale, in english if no translation available for current language\n            case $name === 'monthName':\n                return $this->getTranslatedMonthName();\n            // @property-read string short name of month translated according to Carbon locale, in english if no translation available for current language\n            case $name === 'shortMonthName':\n                return $this->getTranslatedShortMonthName();\n            // @property-read string lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n            case $name === 'meridiem':\n                return $this->meridiem(true);\n            // @property-read string uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language\n            case $name === 'upperMeridiem':\n                return $this->meridiem();\n            // @property-read int current hour from 1 to 24\n            case $name === 'noZeroHour':\n                return $this->hour ?: 24;\n            // @property int\n            case $name === 'milliseconds':\n                // @property int\n            case $name === 'millisecond':\n            // @property int\n            case $name === 'milli':\n                return (int) floor(((int) $this->rawFormat('u')) / 1000);\n\n            // @property int 1 through 53\n            case $name === 'week':\n                return (int) $this->week();\n\n            // @property int 1 through 53\n            case $name === 'isoWeek':\n                return (int) $this->isoWeek();\n\n            // @property int year according to week format\n            case $name === 'weekYear':\n                return (int) $this->weekYear();\n\n            // @property int year according to ISO week format\n            case $name === 'isoWeekYear':\n                return (int) $this->isoWeekYear();\n\n            // @property-read int 51 through 53\n            case $name === 'weeksInYear':\n                return $this->weeksInYear();\n\n            // @property-read int 51 through 53\n            case $name === 'isoWeeksInYear':\n                return $this->isoWeeksInYear();\n\n            // @property int 1 through 5\n            case $name === 'weekOfMonth':\n                return (int) ceil($this->day / static::DAYS_PER_WEEK);\n\n            // @property-read int 1 through 5\n            case $name === 'weekNumberInMonth':\n                return (int) ceil(($this->day + $this->avoidMutation()->startOfMonth()->dayOfWeekIso - 1) / static::DAYS_PER_WEEK);\n\n            // @property-read int 0 through 6\n            case $name === 'firstWeekDay':\n                return (int) $this->getTranslationMessage('first_day_of_week');\n\n            // @property-read int 0 through 6\n            case $name === 'lastWeekDay':\n                return $this->transmitFactory(fn () => static::weekRotate((int) $this->getTranslationMessage('first_day_of_week'), -1));\n\n            // @property int 1 through 366\n            case $name === 'dayOfYear':\n                return 1 + (int) ($this->rawFormat('z'));\n\n            // @property-read int 365 or 366\n            case $name === 'daysInYear':\n                return static::DAYS_PER_YEAR + ($this->isLeapYear() ? 1 : 0);\n\n            // @property int does a diffInYears() with default parameters\n            case $name === 'age':\n                return (int) $this->diffInYears();\n\n            // @property-read int the quarter of this instance, 1 - 4\n            case $name === 'quarter':\n                return (int) ceil($this->month / static::MONTHS_PER_QUARTER);\n\n            // @property-read int the decade of this instance\n            // @call isSameUnit\n            case $name === 'decade':\n                return (int) ceil($this->year / static::YEARS_PER_DECADE);\n\n            // @property-read int the century of this instance\n            // @call isSameUnit\n            case $name === 'century':\n                $factor = 1;\n                $year = $this->year;\n\n                if ($year < 0) {\n                    $year = -$year;\n                    $factor = -1;\n                }\n\n                return (int) ($factor * ceil($year / static::YEARS_PER_CENTURY));\n\n            // @property-read int the millennium of this instance\n            // @call isSameUnit\n            case $name === 'millennium':\n                $factor = 1;\n                $year = $this->year;\n\n                if ($year < 0) {\n                    $year = -$year;\n                    $factor = -1;\n                }\n\n                return (int) ($factor * ceil($year / static::YEARS_PER_MILLENNIUM));\n\n            // @property int the timezone offset in seconds from UTC\n            case $name === 'offset':\n                return $this->getOffset();\n\n            // @property int the timezone offset in minutes from UTC\n            case $name === 'offsetMinutes':\n                return $this->getOffset() / static::SECONDS_PER_MINUTE;\n\n            // @property int the timezone offset in hours from UTC\n            case $name === 'offsetHours':\n                return $this->getOffset() / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR;\n\n            // @property-read bool daylight savings time indicator, true if DST, false otherwise\n            case $name === 'dst':\n                return $this->rawFormat('I') === '1';\n\n            // @property-read bool checks if the timezone is local, true if local, false otherwise\n            case $name === 'local':\n                return $this->getOffset() === $this->avoidMutation()->setTimezone(date_default_timezone_get())->getOffset();\n\n            // @property-read bool checks if the timezone is UTC, true if UTC, false otherwise\n            case $name === 'utc':\n                return $this->getOffset() === 0;\n\n            // @--property-write DateTimeZone|string|int $timezone the current timezone\n            // @--property-write DateTimeZone|string|int $tz alias of $timezone\n            // @--property-read CarbonTimeZone $timezone the current timezone\n            // @--property-read CarbonTimeZone $tz alias of $timezone\n            // @property CarbonTimeZone $timezone the current timezone\n            // @property CarbonTimeZone $tz alias of $timezone\n            case $name === 'timezone' || $name === 'tz':\n                return $this->getTimezone();\n\n            // @property-read string $timezoneName the current timezone name\n            // @property-read string $tzName alias of $timezoneName\n            case $name === 'timezoneName' || $name === 'tzName':\n                return $this->getTimezone()->getName();\n\n            // @property-read string locale of the current instance\n            case $name === 'locale':\n                return $this->getTranslatorLocale();\n\n            case preg_match('/^([a-z]{2,})(In|Of)([A-Z][a-z]+)$/', $name, $match):\n                [, $firstUnit, $operator, $secondUnit] = $match;\n\n                try {\n                    $start = $this->avoidMutation()->startOf($secondUnit);\n                    $value = $operator === 'Of'\n                        ? (\\in_array($firstUnit, [\n                            // Unit with indexes starting at 1 (other units start at 0)\n                            'day',\n                            'week',\n                            'month',\n                            'quarter',\n                        ], true) ? 1 : 0) + floor($start->diffInUnit($firstUnit, $this))\n                        : round($start->diffInUnit($firstUnit, $start->avoidMutation()->add($secondUnit, 1)));\n\n                    return (int) $value;\n                } catch (UnknownUnitException) {\n                    // default to macro\n                }\n\n            default:\n                $macro = $this->getLocalMacro('get'.ucfirst($name));\n\n                if ($macro) {\n                    return $this->executeCallableWithContext($macro);\n                }\n\n                throw new UnknownGetterException($name);\n        }\n    }\n\n    /**\n     * Check if an attribute exists on the object\n     *\n     * @param string $name\n     *\n     * @return bool\n     */\n    public function __isset($name)\n    {\n        try {\n            $this->__get($name);\n        } catch (UnknownGetterException | ReflectionException) {\n            return false;\n        }\n\n        return true;\n    }\n\n    /**\n     * Set a part of the Carbon object\n     *\n     * @param string                  $name\n     * @param string|int|DateTimeZone $value\n     *\n     * @throws UnknownSetterException|ReflectionException\n     *\n     * @return void\n     */\n    public function __set($name, $value)\n    {\n        if ($this->constructedObjectId === spl_object_hash($this)) {\n            $this->set($name, $value);\n\n            return;\n        }\n\n        $this->$name = $value;\n    }\n\n    /**\n     * Set a part of the Carbon object.\n     *\n     * @throws ImmutableException|UnknownSetterException\n     *\n     * @return $this\n     */\n    public function set(Unit|array|string $name, DateTimeZone|Month|string|int|float|null $value = null): static\n    {\n        if ($this->isImmutable()) {\n            throw new ImmutableException(\\sprintf('%s class', static::class));\n        }\n\n        if (\\is_array($name)) {\n            foreach ($name as $key => $value) {\n                $this->set($key, $value);\n            }\n\n            return $this;\n        }\n\n        $name = Unit::toName($name);\n\n        switch ($name) {\n            case 'milliseconds':\n            case 'millisecond':\n            case 'milli':\n            case 'microseconds':\n            case 'microsecond':\n            case 'micro':\n                if (str_starts_with($name, 'milli')) {\n                    $value *= 1000;\n                }\n\n                while ($value < 0) {\n                    $this->subSecond();\n                    $value += static::MICROSECONDS_PER_SECOND;\n                }\n\n                while ($value >= static::MICROSECONDS_PER_SECOND) {\n                    $this->addSecond();\n                    $value -= static::MICROSECONDS_PER_SECOND;\n                }\n\n                $this->modify($this->rawFormat('H:i:s.').str_pad((string) round($value), 6, '0', STR_PAD_LEFT));\n\n                break;\n\n            case 'year':\n            case 'month':\n            case 'day':\n            case 'hour':\n            case 'minute':\n            case 'second':\n                [$year, $month, $day, $hour, $minute, $second] = array_map('intval', explode('-', $this->rawFormat('Y-n-j-G-i-s')));\n                $$name = self::monthToInt($value, $name);\n                $this->setDateTime($year, $month, $day, $hour, $minute, $second);\n\n                break;\n\n            case 'week':\n                $this->week($value);\n\n                break;\n\n            case 'isoWeek':\n                $this->isoWeek($value);\n\n                break;\n\n            case 'weekYear':\n                $this->weekYear($value);\n\n                break;\n\n            case 'isoWeekYear':\n                $this->isoWeekYear($value);\n\n                break;\n\n            case 'dayOfYear':\n                $this->addDays($value - $this->dayOfYear);\n\n                break;\n\n            case 'dayOfWeek':\n                $this->addDays($value - $this->dayOfWeek);\n\n                break;\n\n            case 'dayOfWeekIso':\n                $this->addDays($value - $this->dayOfWeekIso);\n\n                break;\n\n            case 'timestamp':\n                $this->setTimestamp($value);\n\n                break;\n\n            case 'offset':\n                $this->setTimezone(static::safeCreateDateTimeZone($value / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR));\n\n                break;\n\n            case 'offsetMinutes':\n                $this->setTimezone(static::safeCreateDateTimeZone($value / static::MINUTES_PER_HOUR));\n\n                break;\n\n            case 'offsetHours':\n                $this->setTimezone(static::safeCreateDateTimeZone($value));\n\n                break;\n\n            case 'timezone':\n            case 'tz':\n                $this->setTimezone($value);\n\n                break;\n\n            default:\n                if (preg_match('/^([a-z]{2,})Of([A-Z][a-z]+)$/', $name, $match)) {\n                    [, $firstUnit, $secondUnit] = $match;\n\n                    try {\n                        $start = $this->avoidMutation()->startOf($secondUnit);\n                        $currentValue = (\\in_array($firstUnit, [\n                            // Unit with indexes starting at 1 (other units start at 0)\n                            'day',\n                            'week',\n                            'month',\n                            'quarter',\n                        ], true) ? 1 : 0) + (int) floor($start->diffInUnit($firstUnit, $this));\n\n                        // We check $value a posteriori to give precedence to UnknownUnitException\n                        if (!\\is_int($value)) {\n                            throw new UnitException(\"->$name expects integer value\");\n                        }\n\n                        $this->addUnit($firstUnit, $value - $currentValue);\n\n                        break;\n                    } catch (UnknownUnitException) {\n                        // default to macro\n                    }\n                }\n\n                $macro = $this->getLocalMacro('set'.ucfirst($name));\n\n                if ($macro) {\n                    $this->executeCallableWithContext($macro, $value);\n\n                    break;\n                }\n\n                if ($this->isLocalStrictModeEnabled()) {\n                    throw new UnknownSetterException($name);\n                }\n\n                $this->$name = $value;\n        }\n\n        return $this;\n    }\n\n    /**\n     * Get the translation of the current week day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context      whole format string\n     * @param string      $keySuffix    \"\", \"_short\" or \"_min\"\n     * @param string|null $defaultValue default value if translation missing\n     */\n    public function getTranslatedDayName(\n        ?string $context = null,\n        string $keySuffix = '',\n        ?string $defaultValue = null,\n    ): string {\n        return $this->getTranslatedFormByRegExp('weekdays', $keySuffix, $context, $this->dayOfWeek, $defaultValue ?: $this->englishDayOfWeek);\n    }\n\n    /**\n     * Get the translation of the current short week day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context whole format string\n     */\n    public function getTranslatedShortDayName(?string $context = null): string\n    {\n        return $this->getTranslatedDayName($context, '_short', $this->shortEnglishDayOfWeek);\n    }\n\n    /**\n     * Get the translation of the current abbreviated week day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context whole format string\n     */\n    public function getTranslatedMinDayName(?string $context = null): string\n    {\n        return $this->getTranslatedDayName($context, '_min', $this->shortEnglishDayOfWeek);\n    }\n\n    /**\n     * Get the translation of the current month day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context      whole format string\n     * @param string      $keySuffix    \"\" or \"_short\"\n     * @param string|null $defaultValue default value if translation missing\n     */\n    public function getTranslatedMonthName(\n        ?string $context = null,\n        string $keySuffix = '',\n        ?string $defaultValue = null,\n    ): string {\n        return $this->getTranslatedFormByRegExp('months', $keySuffix, $context, $this->month - 1, $defaultValue ?: $this->englishMonth);\n    }\n\n    /**\n     * Get the translation of the current short month day name (with context for languages with multiple forms).\n     *\n     * @param string|null $context whole format string\n     */\n    public function getTranslatedShortMonthName(?string $context = null): string\n    {\n        return $this->getTranslatedMonthName($context, '_short', $this->shortEnglishMonth);\n    }\n\n    /**\n     * Get/set the day of year.\n     *\n     * @template T of int|null\n     *\n     * @param int|null $value new value for day of year if using as setter.\n     *\n     * @psalm-param T $value\n     *\n     * @return static|int\n     *\n     * @psalm-return (T is int ? static : int)\n     */\n    public function dayOfYear(?int $value = null): static|int\n    {\n        $dayOfYear = $this->dayOfYear;\n\n        return $value === null ? $dayOfYear : $this->addDays($value - $dayOfYear);\n    }\n\n    /**\n     * Get/set the weekday from 0 (Sunday) to 6 (Saturday).\n     *\n     * @param WeekDay|int|null $value new value for weekday if using as setter.\n     */\n    public function weekday(WeekDay|int|null $value = null): static|int\n    {\n        if ($value === null) {\n            return $this->dayOfWeek;\n        }\n\n        $firstDay = (int) ($this->getTranslationMessage('first_day_of_week') ?? 0);\n        $dayOfWeek = ($this->dayOfWeek + 7 - $firstDay) % 7;\n\n        return $this->addDays(((WeekDay::int($value) + 7 - $firstDay) % 7) - $dayOfWeek);\n    }\n\n    /**\n     * Get/set the ISO weekday from 1 (Monday) to 7 (Sunday).\n     *\n     * @param WeekDay|int|null $value new value for weekday if using as setter.\n     */\n    public function isoWeekday(WeekDay|int|null $value = null): static|int\n    {\n        $dayOfWeekIso = $this->dayOfWeekIso;\n\n        return $value === null ? $dayOfWeekIso : $this->addDays(WeekDay::int($value) - $dayOfWeekIso);\n    }\n\n    /**\n     * Return the number of days since the start of the week (using the current locale or the first parameter\n     * if explicitly given).\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week,\n     *                                       if not provided, start of week is inferred from the locale\n     *                                       (Sunday for en_US, Monday for de_DE, etc.)\n     */\n    public function getDaysFromStartOfWeek(WeekDay|int|null $weekStartsAt = null): int\n    {\n        $firstDay = (int) (WeekDay::int($weekStartsAt) ?? $this->getTranslationMessage('first_day_of_week') ?? 0);\n\n        return ($this->dayOfWeek + 7 - $firstDay) % 7;\n    }\n\n    /**\n     * Set the day (keeping the current time) to the start of the week + the number of days passed as the first\n     * parameter. First day of week is driven by the locale unless explicitly set with the second parameter.\n     *\n     * @param int              $numberOfDays number of days to add after the start of the current week\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week,\n     *                                       if not provided, start of week is inferred from the locale\n     *                                       (Sunday for en_US, Monday for de_DE, etc.)\n     */\n    public function setDaysFromStartOfWeek(int $numberOfDays, WeekDay|int|null $weekStartsAt = null): static\n    {\n        return $this->addDays($numberOfDays - $this->getDaysFromStartOfWeek(WeekDay::int($weekStartsAt)));\n    }\n\n    /**\n     * Set any unit to a new value without overflowing current other unit given.\n     *\n     * @param string $valueUnit    unit name to modify\n     * @param int    $value        new value for the input unit\n     * @param string $overflowUnit unit name to not overflow\n     */\n    public function setUnitNoOverflow(string $valueUnit, int $value, string $overflowUnit): static\n    {\n        try {\n            $start = $this->avoidMutation()->startOf($overflowUnit);\n            $end = $this->avoidMutation()->endOf($overflowUnit);\n            /** @var static $date */\n            $date = $this->$valueUnit($value);\n\n            if ($date < $start) {\n                return $date->mutateIfMutable($start);\n            }\n\n            if ($date > $end) {\n                return $date->mutateIfMutable($end);\n            }\n\n            return $date;\n        } catch (BadMethodCallException | ReflectionException $exception) {\n            throw new UnknownUnitException($valueUnit, 0, $exception);\n        }\n    }\n\n    /**\n     * Add any unit to a new value without overflowing current other unit given.\n     *\n     * @param string $valueUnit    unit name to modify\n     * @param int    $value        amount to add to the input unit\n     * @param string $overflowUnit unit name to not overflow\n     */\n    public function addUnitNoOverflow(string $valueUnit, int $value, string $overflowUnit): static\n    {\n        return $this->setUnitNoOverflow($valueUnit, $this->$valueUnit + $value, $overflowUnit);\n    }\n\n    /**\n     * Subtract any unit to a new value without overflowing current other unit given.\n     *\n     * @param string $valueUnit    unit name to modify\n     * @param int    $value        amount to subtract to the input unit\n     * @param string $overflowUnit unit name to not overflow\n     */\n    public function subUnitNoOverflow(string $valueUnit, int $value, string $overflowUnit): static\n    {\n        return $this->setUnitNoOverflow($valueUnit, $this->$valueUnit - $value, $overflowUnit);\n    }\n\n    /**\n     * Returns the minutes offset to UTC if no arguments passed, else set the timezone with given minutes shift passed.\n     */\n    public function utcOffset(?int $minuteOffset = null): static|int\n    {\n        if ($minuteOffset === null) {\n            return $this->offsetMinutes;\n        }\n\n        return $this->setTimezone(CarbonTimeZone::createFromMinuteOffset($minuteOffset));\n    }\n\n    /**\n     * Set the date with gregorian year, month and day numbers.\n     *\n     * @see https://php.net/manual/en/datetime.setdate.php\n     */\n    public function setDate(int $year, int $month, int $day): static\n    {\n        return parent::setDate($year, $month, $day);\n    }\n\n    /**\n     * Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.\n     *\n     * @see https://php.net/manual/en/datetime.setisodate.php\n     */\n    public function setISODate(int $year, int $week, int $day = 1): static\n    {\n        return parent::setISODate($year, $week, $day);\n    }\n\n    /**\n     * Set the date and time all together.\n     */\n    public function setDateTime(\n        int $year,\n        int $month,\n        int $day,\n        int $hour,\n        int $minute,\n        int $second = 0,\n        int $microseconds = 0,\n    ): static {\n        return $this->setDate($year, $month, $day)->setTime($hour, $minute, $second, $microseconds);\n    }\n\n    /**\n     * Resets the current time of the DateTime object to a different time.\n     *\n     * @see https://php.net/manual/en/datetime.settime.php\n     */\n    public function setTime(int $hour, int $minute, int $second = 0, int $microseconds = 0): static\n    {\n        return parent::setTime($hour, $minute, $second, $microseconds);\n    }\n\n    /**\n     * Set the instance's timestamp.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public function setTimestamp(float|int|string $timestamp): static\n    {\n        [$seconds, $microseconds] = self::getIntegerAndDecimalParts($timestamp);\n\n        return parent::setTimestamp((int) $seconds)->setMicroseconds((int) $microseconds);\n    }\n\n    /**\n     * Set the time by time string.\n     */\n    public function setTimeFromTimeString(string $time): static\n    {\n        if (!str_contains($time, ':')) {\n            $time .= ':0';\n        }\n\n        return $this->modify($time);\n    }\n\n    /**\n     * @alias setTimezone\n     */\n    public function timezone(DateTimeZone|string|int $value): static\n    {\n        return $this->setTimezone($value);\n    }\n\n    /**\n     * Set the timezone or returns the timezone name if no arguments passed.\n     *\n     * @return ($value is null ? string : static)\n     */\n    public function tz(DateTimeZone|string|int|null $value = null): static|string\n    {\n        if ($value === null) {\n            return $this->tzName;\n        }\n\n        return $this->setTimezone($value);\n    }\n\n    /**\n     * Set the instance's timezone from a string or object.\n     */\n    public function setTimezone(DateTimeZone|string|int $timeZone): static\n    {\n        return parent::setTimezone(static::safeCreateDateTimeZone($timeZone));\n    }\n\n    /**\n     * Set the instance's timezone from a string or object and add/subtract the offset difference.\n     */\n    public function shiftTimezone(DateTimeZone|string $value): static\n    {\n        $dateTimeString = $this->format('Y-m-d H:i:s.u');\n\n        return $this\n            ->setTimezone($value)\n            ->modify($dateTimeString);\n    }\n\n    /**\n     * Set the instance's timezone to UTC.\n     */\n    public function utc(): static\n    {\n        return $this->setTimezone('UTC');\n    }\n\n    /**\n     * Set the year, month, and date for this instance to that of the passed instance.\n     */\n    public function setDateFrom(DateTimeInterface|string $date): static\n    {\n        $date = $this->resolveCarbon($date);\n\n        return $this->setDate($date->year, $date->month, $date->day);\n    }\n\n    /**\n     * Set the hour, minute, second and microseconds for this instance to that of the passed instance.\n     */\n    public function setTimeFrom(DateTimeInterface|string $date): static\n    {\n        $date = $this->resolveCarbon($date);\n\n        return $this->setTime($date->hour, $date->minute, $date->second, $date->microsecond);\n    }\n\n    /**\n     * Set the date and time for this instance to that of the passed instance.\n     */\n    public function setDateTimeFrom(DateTimeInterface|string $date): static\n    {\n        $date = $this->resolveCarbon($date);\n\n        return $this->modify($date->rawFormat('Y-m-d H:i:s.u'));\n    }\n\n    /**\n     * Get the days of the week.\n     */\n    public static function getDays(): array\n    {\n        return static::$days;\n    }\n\n    ///////////////////////////////////////////////////////////////////\n    /////////////////////// WEEK SPECIAL DAYS /////////////////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Get the first day of week.\n     *\n     * @return int\n     */\n    public static function getWeekStartsAt(?string $locale = null): int\n    {\n        return (int) static::getTranslationMessageWith(\n            $locale ? Translator::get($locale) : static::getTranslator(),\n            'first_day_of_week',\n        );\n    }\n\n    /**\n     * Get the last day of week.\n     *\n     * @param string $locale local to consider the last day of week.\n     *\n     * @return int\n     */\n    public static function getWeekEndsAt(?string $locale = null): int\n    {\n        return static::weekRotate(static::getWeekStartsAt($locale), -1);\n    }\n\n    /**\n     * Get weekend days\n     */\n    public static function getWeekendDays(): array\n    {\n        return FactoryImmutable::getInstance()->getWeekendDays();\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather consider week-end is always saturday and sunday, and if you have some custom\n     *             week-end days to handle, give to those days an other name and create a macro for them:\n     *\n     *             ```\n     *             Carbon::macro('isDayOff', function ($date) {\n     *                 return $date->isSunday() || $date->isMonday();\n     *             });\n     *             Carbon::macro('isNotDayOff', function ($date) {\n     *                 return !$date->isDayOff();\n     *             });\n     *             if ($someDate->isDayOff()) ...\n     *             if ($someDate->isNotDayOff()) ...\n     *             // Add 5 not-off days\n     *             $count = 5;\n     *             while ($someDate->isDayOff() || ($count-- > 0)) {\n     *                 $someDate->addDay();\n     *             }\n     *             ```\n     *\n     * Set weekend days\n     */\n    public static function setWeekendDays(array $days): void\n    {\n        FactoryImmutable::getDefaultInstance()->setWeekendDays($days);\n    }\n\n    /**\n     * Determine if a time string will produce a relative date.\n     *\n     * @return bool true if time match a relative date, false if absolute or invalid time string\n     */\n    public static function hasRelativeKeywords(?string $time): bool\n    {\n        if (!$time || strtotime($time) === false) {\n            return false;\n        }\n\n        $date1 = new DateTime('2000-01-01T00:00:00Z');\n        $date1->modify($time);\n        $date2 = new DateTime('2001-12-25T00:00:00Z');\n        $date2->modify($time);\n\n        return $date1 != $date2;\n    }\n\n    ///////////////////////////////////////////////////////////////////\n    /////////////////////// STRING FORMATTING /////////////////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Returns list of locale formats for ISO formatting.\n     *\n     * @param string|null $locale current locale used if null\n     */\n    public function getIsoFormats(?string $locale = null): array\n    {\n        return [\n            'LT' => $this->getTranslationMessage('formats.LT', $locale),\n            'LTS' => $this->getTranslationMessage('formats.LTS', $locale),\n            'L' => $this->getTranslationMessage('formats.L', $locale),\n            'LL' => $this->getTranslationMessage('formats.LL', $locale),\n            'LLL' => $this->getTranslationMessage('formats.LLL', $locale),\n            'LLLL' => $this->getTranslationMessage('formats.LLLL', $locale),\n            'l' => $this->getTranslationMessage('formats.l', $locale),\n            'll' => $this->getTranslationMessage('formats.ll', $locale),\n            'lll' => $this->getTranslationMessage('formats.lll', $locale),\n            'llll' => $this->getTranslationMessage('formats.llll', $locale),\n        ];\n    }\n\n    /**\n     * Returns list of calendar formats for ISO formatting.\n     *\n     * @param string|null $locale current locale used if null\n     */\n    public function getCalendarFormats(?string $locale = null): array\n    {\n        return [\n            'sameDay' => $this->getTranslationMessage('calendar.sameDay', $locale, '[Today at] LT'),\n            'nextDay' => $this->getTranslationMessage('calendar.nextDay', $locale, '[Tomorrow at] LT'),\n            'nextWeek' => $this->getTranslationMessage('calendar.nextWeek', $locale, 'dddd [at] LT'),\n            'lastDay' => $this->getTranslationMessage('calendar.lastDay', $locale, '[Yesterday at] LT'),\n            'lastWeek' => $this->getTranslationMessage('calendar.lastWeek', $locale, '[Last] dddd [at] LT'),\n            'sameElse' => $this->getTranslationMessage('calendar.sameElse', $locale, 'L'),\n        ];\n    }\n\n    /**\n     * Returns list of locale units for ISO formatting.\n     */\n    public static function getIsoUnits(): array\n    {\n        static $units = null;\n\n        $units ??= [\n            'OD' => ['getAltNumber', ['day']],\n            'OM' => ['getAltNumber', ['month']],\n            'OY' => ['getAltNumber', ['year']],\n            'OH' => ['getAltNumber', ['hour']],\n            'Oh' => ['getAltNumber', ['h']],\n            'Om' => ['getAltNumber', ['minute']],\n            'Os' => ['getAltNumber', ['second']],\n            'D' => 'day',\n            'DD' => ['rawFormat', ['d']],\n            'Do' => ['ordinal', ['day', 'D']],\n            'd' => 'dayOfWeek',\n            'dd' => static fn (CarbonInterface $date, $originalFormat = null) => $date->getTranslatedMinDayName(\n                $originalFormat,\n            ),\n            'ddd' => static fn (CarbonInterface $date, $originalFormat = null) => $date->getTranslatedShortDayName(\n                $originalFormat,\n            ),\n            'dddd' => static fn (CarbonInterface $date, $originalFormat = null) => $date->getTranslatedDayName(\n                $originalFormat,\n            ),\n            'DDD' => 'dayOfYear',\n            'DDDD' => ['getPaddedUnit', ['dayOfYear', 3]],\n            'DDDo' => ['ordinal', ['dayOfYear', 'DDD']],\n            'e' => ['weekday', []],\n            'E' => 'dayOfWeekIso',\n            'H' => ['rawFormat', ['G']],\n            'HH' => ['rawFormat', ['H']],\n            'h' => ['rawFormat', ['g']],\n            'hh' => ['rawFormat', ['h']],\n            'k' => 'noZeroHour',\n            'kk' => ['getPaddedUnit', ['noZeroHour']],\n            'hmm' => ['rawFormat', ['gi']],\n            'hmmss' => ['rawFormat', ['gis']],\n            'Hmm' => ['rawFormat', ['Gi']],\n            'Hmmss' => ['rawFormat', ['Gis']],\n            'm' => 'minute',\n            'mm' => ['rawFormat', ['i']],\n            'a' => 'meridiem',\n            'A' => 'upperMeridiem',\n            's' => 'second',\n            'ss' => ['getPaddedUnit', ['second']],\n            'S' => static fn (CarbonInterface $date) => (string) floor($date->micro / 100000),\n            'SS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro / 10000, 2),\n            'SSS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro / 1000, 3),\n            'SSSS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro / 100, 4),\n            'SSSSS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro / 10, 5),\n            'SSSSSS' => ['getPaddedUnit', ['micro', 6]],\n            'SSSSSSS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro * 10, 7),\n            'SSSSSSSS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro * 100, 8),\n            'SSSSSSSSS' => static fn (CarbonInterface $date) => self::floorZeroPad($date->micro * 1000, 9),\n            'M' => 'month',\n            'MM' => ['rawFormat', ['m']],\n            'MMM' => static function (CarbonInterface $date, $originalFormat = null) {\n                $month = $date->getTranslatedShortMonthName($originalFormat);\n                $suffix = $date->getTranslationMessage('mmm_suffix');\n                if ($suffix && $month !== $date->monthName) {\n                    $month .= $suffix;\n                }\n\n                return $month;\n            },\n            'MMMM' => static fn (CarbonInterface $date, $originalFormat = null) => $date->getTranslatedMonthName(\n                $originalFormat,\n            ),\n            'Mo' => ['ordinal', ['month', 'M']],\n            'Q' => 'quarter',\n            'Qo' => ['ordinal', ['quarter', 'M']],\n            'G' => 'isoWeekYear',\n            'GG' => ['getPaddedUnit', ['isoWeekYear']],\n            'GGG' => ['getPaddedUnit', ['isoWeekYear', 3]],\n            'GGGG' => ['getPaddedUnit', ['isoWeekYear', 4]],\n            'GGGGG' => ['getPaddedUnit', ['isoWeekYear', 5]],\n            'g' => 'weekYear',\n            'gg' => ['getPaddedUnit', ['weekYear']],\n            'ggg' => ['getPaddedUnit', ['weekYear', 3]],\n            'gggg' => ['getPaddedUnit', ['weekYear', 4]],\n            'ggggg' => ['getPaddedUnit', ['weekYear', 5]],\n            'W' => 'isoWeek',\n            'WW' => ['getPaddedUnit', ['isoWeek']],\n            'Wo' => ['ordinal', ['isoWeek', 'W']],\n            'w' => 'week',\n            'ww' => ['getPaddedUnit', ['week']],\n            'wo' => ['ordinal', ['week', 'w']],\n            'x' => ['valueOf', []],\n            'X' => 'timestamp',\n            'Y' => 'year',\n            'YY' => ['rawFormat', ['y']],\n            'YYYY' => ['getPaddedUnit', ['year', 4]],\n            'YYYYY' => ['getPaddedUnit', ['year', 5]],\n            'YYYYYY' => static fn (CarbonInterface $date) => ($date->year < 0 ? '' : '+').\n                $date->getPaddedUnit('year', 6),\n            'z' => ['rawFormat', ['T']],\n            'zz' => 'tzName',\n            'Z' => ['getOffsetString', []],\n            'ZZ' => ['getOffsetString', ['']],\n        ];\n\n        return $units;\n    }\n\n    /**\n     * Returns a unit of the instance padded with 0 by default or any other string if specified.\n     *\n     * @param string $unit      Carbon unit name\n     * @param int    $length    Length of the output (2 by default)\n     * @param string $padString String to use for padding (\"0\" by default)\n     * @param int    $padType   Side(s) to pad (STR_PAD_LEFT by default)\n     */\n    public function getPaddedUnit($unit, $length = 2, $padString = '0', $padType = STR_PAD_LEFT): string\n    {\n        return ($this->$unit < 0 ? '-' : '').str_pad((string) abs($this->$unit), $length, $padString, $padType);\n    }\n\n    /**\n     * Return a property with its ordinal.\n     */\n    public function ordinal(string $key, ?string $period = null): string\n    {\n        $number = $this->$key;\n        $result = $this->translate('ordinal', [\n            ':number' => $number,\n            ':period' => (string) $period,\n        ]);\n\n        return (string) ($result === 'ordinal' ? $number : $result);\n    }\n\n    /**\n     * Return the meridiem of the current time in the current locale.\n     *\n     * @param bool $isLower if true, returns lowercase variant if available in the current locale.\n     */\n    public function meridiem(bool $isLower = false): string\n    {\n        $hour = $this->hour;\n        $index = $hour < static::HOURS_PER_DAY / 2 ? 0 : 1;\n\n        if ($isLower) {\n            $key = 'meridiem.'.($index + 2);\n            $result = $this->translate($key);\n\n            if ($result !== $key) {\n                return $result;\n            }\n        }\n\n        $key = \"meridiem.$index\";\n        $result = $this->translate($key);\n        if ($result === $key) {\n            $result = $this->translate('meridiem', [\n                ':hour' => $this->hour,\n                ':minute' => $this->minute,\n                ':isLower' => $isLower,\n            ]);\n\n            if ($result === 'meridiem') {\n                return $isLower ? $this->latinMeridiem : $this->latinUpperMeridiem;\n            }\n        } elseif ($isLower) {\n            $result = mb_strtolower($result);\n        }\n\n        return $result;\n    }\n\n    /**\n     * Returns the alternative number for a given date property if available in the current locale.\n     *\n     * @param string $key date property\n     */\n    public function getAltNumber(string $key): string\n    {\n        return $this->translateNumber((int) (\\strlen($key) > 1 ? $this->$key : $this->rawFormat($key)));\n    }\n\n    /**\n     * Format in the current language using ISO replacement patterns.\n     *\n     * @param string|null $originalFormat provide context if a chunk has been passed alone\n     */\n    public function isoFormat(string $format, ?string $originalFormat = null): string\n    {\n        $result = '';\n        $length = mb_strlen($format);\n        $originalFormat ??= $format;\n        $inEscaped = false;\n        $formats = null;\n        $units = null;\n\n        for ($i = 0; $i < $length; $i++) {\n            $char = mb_substr($format, $i, 1);\n\n            if ($char === '\\\\') {\n                $result .= mb_substr($format, ++$i, 1);\n\n                continue;\n            }\n\n            if ($char === '[' && !$inEscaped) {\n                $inEscaped = true;\n\n                continue;\n            }\n\n            if ($char === ']' && $inEscaped) {\n                $inEscaped = false;\n\n                continue;\n            }\n\n            if ($inEscaped) {\n                $result .= $char;\n\n                continue;\n            }\n\n            $input = mb_substr($format, $i);\n\n            if (preg_match('/^(LTS|LT|l{1,4}|L{1,4})/', $input, $match)) {\n                if ($formats === null) {\n                    $formats = $this->getIsoFormats();\n                }\n\n                $code = $match[0];\n                $sequence = $formats[$code] ?? preg_replace_callback(\n                    '/MMMM|MM|DD|dddd/',\n                    static fn ($code) => mb_substr($code[0], 1),\n                    $formats[strtoupper($code)] ?? '',\n                );\n                $rest = mb_substr($format, $i + mb_strlen($code));\n                $format = mb_substr($format, 0, $i).$sequence.$rest;\n                $length = mb_strlen($format);\n                $input = $sequence.$rest;\n            }\n\n            if (preg_match('/^'.CarbonInterface::ISO_FORMAT_REGEXP.'/', $input, $match)) {\n                $code = $match[0];\n\n                if ($units === null) {\n                    $units = static::getIsoUnits();\n                }\n\n                $sequence = $units[$code] ?? '';\n\n                if ($sequence instanceof Closure) {\n                    $sequence = $sequence($this, $originalFormat);\n                } elseif (\\is_array($sequence)) {\n                    try {\n                        $sequence = $this->{$sequence[0]}(...$sequence[1]);\n                    } catch (ReflectionException | InvalidArgumentException | BadMethodCallException) {\n                        $sequence = '';\n                    }\n                } elseif (\\is_string($sequence)) {\n                    $sequence = $this->$sequence ?? $code;\n                }\n\n                $format = mb_substr($format, 0, $i).$sequence.mb_substr($format, $i + mb_strlen($code));\n                $i += mb_strlen((string) $sequence) - 1;\n                $length = mb_strlen($format);\n                $char = $sequence;\n            }\n\n            $result .= $char;\n        }\n\n        return $result;\n    }\n\n    /**\n     * List of replacements from date() format to isoFormat().\n     */\n    public static function getFormatsToIsoReplacements(): array\n    {\n        static $replacements = null;\n\n        $replacements ??= [\n            'd' => true,\n            'D' => 'ddd',\n            'j' => true,\n            'l' => 'dddd',\n            'N' => true,\n            'S' => static fn ($date) => str_replace((string) $date->rawFormat('j'), '', $date->isoFormat('Do')),\n            'w' => true,\n            'z' => true,\n            'W' => true,\n            'F' => 'MMMM',\n            'm' => true,\n            'M' => 'MMM',\n            'n' => true,\n            't' => true,\n            'L' => true,\n            'o' => true,\n            'Y' => true,\n            'y' => true,\n            'a' => 'a',\n            'A' => 'A',\n            'B' => true,\n            'g' => true,\n            'G' => true,\n            'h' => true,\n            'H' => true,\n            'i' => true,\n            's' => true,\n            'u' => true,\n            'v' => true,\n            'E' => true,\n            'I' => true,\n            'O' => true,\n            'P' => true,\n            'Z' => true,\n            'c' => true,\n            'r' => true,\n            'U' => true,\n            'T' => true,\n        ];\n\n        return $replacements;\n    }\n\n    /**\n     * Format as ->format() do (using date replacements patterns from https://php.net/manual/en/function.date.php)\n     * but translate words whenever possible (months, day names, etc.) using the current locale.\n     */\n    public function translatedFormat(string $format): string\n    {\n        $replacements = static::getFormatsToIsoReplacements();\n        $context = '';\n        $isoFormat = '';\n        $length = mb_strlen($format);\n\n        for ($i = 0; $i < $length; $i++) {\n            $char = mb_substr($format, $i, 1);\n\n            if ($char === '\\\\') {\n                $replacement = mb_substr($format, $i, 2);\n                $isoFormat .= $replacement;\n                $i++;\n\n                continue;\n            }\n\n            if (!isset($replacements[$char])) {\n                $replacement = preg_match('/^[A-Za-z]$/', $char) ? \"\\\\$char\" : $char;\n                $isoFormat .= $replacement;\n                $context .= $replacement;\n\n                continue;\n            }\n\n            $replacement = $replacements[$char];\n\n            if ($replacement === true) {\n                static $contextReplacements = null;\n\n                if ($contextReplacements === null) {\n                    $contextReplacements = [\n                        'm' => 'MM',\n                        'd' => 'DD',\n                        't' => 'D',\n                        'j' => 'D',\n                        'N' => 'e',\n                        'w' => 'e',\n                        'n' => 'M',\n                        'o' => 'YYYY',\n                        'Y' => 'YYYY',\n                        'y' => 'YY',\n                        'g' => 'h',\n                        'G' => 'H',\n                        'h' => 'hh',\n                        'H' => 'HH',\n                        'i' => 'mm',\n                        's' => 'ss',\n                    ];\n                }\n\n                $isoFormat .= '['.$this->rawFormat($char).']';\n                $context .= $contextReplacements[$char] ?? ' ';\n\n                continue;\n            }\n\n            if ($replacement instanceof Closure) {\n                $replacement = '['.$replacement($this).']';\n                $isoFormat .= $replacement;\n                $context .= $replacement;\n\n                continue;\n            }\n\n            $isoFormat .= $replacement;\n            $context .= $replacement;\n        }\n\n        return $this->isoFormat($isoFormat, $context);\n    }\n\n    /**\n     * Returns the offset hour and minute formatted with +/- and a given separator (\":\" by default).\n     * For example, if the time zone is 9 hours 30 minutes, you'll get \"+09:30\", with \"@@\" as first\n     * argument, \"+09@@30\", with \"\" as first argument, \"+0930\". Negative offset will return something\n     * like \"-12:00\".\n     *\n     * @param string $separator string to place between hours and minutes (\":\" by default)\n     */\n    public function getOffsetString(string $separator = ':'): string\n    {\n        $second = $this->getOffset();\n        $symbol = $second < 0 ? '-' : '+';\n        $minute = abs($second) / static::SECONDS_PER_MINUTE;\n        $hour = self::floorZeroPad($minute / static::MINUTES_PER_HOUR, 2);\n        $minute = self::floorZeroPad(((int) $minute) % static::MINUTES_PER_HOUR, 2);\n\n        return \"$symbol$hour$separator$minute\";\n    }\n\n    /**\n     * Dynamically handle calls to the class.\n     *\n     * @param string $method     magic method name called\n     * @param array  $parameters parameters list\n     *\n     * @throws BadMethodCallException\n     */\n    public static function __callStatic(string $method, array $parameters): mixed\n    {\n        if (!static::hasMacro($method)) {\n            foreach (static::getGenericMacros() as $callback) {\n                try {\n                    return static::executeStaticCallable($callback, $method, ...$parameters);\n                } catch (BadMethodCallException) {\n                    continue;\n                }\n            }\n\n            if (static::isStrictModeEnabled()) {\n                throw new UnknownMethodException(\\sprintf('%s::%s', static::class, $method));\n            }\n\n            return null;\n        }\n\n        return static::executeStaticCallable(static::getMacro($method), ...$parameters);\n    }\n\n    /**\n     * Set specified unit to new given value.\n     *\n     * @param string    $unit  year, month, day, hour, minute, second or microsecond\n     * @param Month|int $value new value for given unit\n     */\n    public function setUnit(string $unit, Month|int|float|null $value = null): static\n    {\n        if (\\is_float($value)) {\n            $int = (int) $value;\n\n            if ((float) $int !== $value) {\n                throw new InvalidArgumentException(\n                    \"$unit cannot be changed to float value $value, integer expected\",\n                );\n            }\n\n            $value = $int;\n        }\n\n        $unit = static::singularUnit($unit);\n        $value = self::monthToInt($value, $unit);\n        $dateUnits = ['year', 'month', 'day'];\n\n        if (\\in_array($unit, $dateUnits)) {\n            return $this->setDate(...array_map(\n                fn ($name) => (int) ($name === $unit ? $value : $this->$name),\n                $dateUnits,\n            ));\n        }\n\n        $units = ['hour', 'minute', 'second', 'micro'];\n\n        if ($unit === 'millisecond' || $unit === 'milli') {\n            $value *= 1000;\n            $unit = 'micro';\n        } elseif ($unit === 'microsecond') {\n            $unit = 'micro';\n        }\n\n        return $this->setTime(...array_map(\n            fn ($name) => (int) ($name === $unit ? $value : $this->$name),\n            $units,\n        ));\n    }\n\n    /**\n     * Returns standardized singular of a given singular/plural unit name (in English).\n     */\n    public static function singularUnit(string $unit): string\n    {\n        $unit = rtrim(mb_strtolower($unit), 's');\n\n        return match ($unit) {\n            'centurie' => 'century',\n            'millennia' => 'millennium',\n            default => $unit,\n        };\n    }\n\n    /**\n     * Returns standardized plural of a given singular/plural unit name (in English).\n     */\n    public static function pluralUnit(string $unit): string\n    {\n        $unit = rtrim(strtolower($unit), 's');\n\n        return match ($unit) {\n            'century' => 'centuries',\n            'millennium', 'millennia' => 'millennia',\n            default => \"{$unit}s\",\n        };\n    }\n\n    public static function sleep(int|float $seconds): void\n    {\n        if (static::hasTestNow()) {\n            static::setTestNow(static::getTestNow()->avoidMutation()->addSeconds($seconds));\n\n            return;\n        }\n\n        (new NativeClock('UTC'))->sleep($seconds);\n    }\n\n    /**\n     * Dynamically handle calls to the class.\n     *\n     * @param string $method     magic method name called\n     * @param array  $parameters parameters list\n     *\n     * @throws UnknownMethodException|BadMethodCallException|ReflectionException|Throwable\n     */\n    public function __call(string $method, array $parameters): mixed\n    {\n        $unit = rtrim($method, 's');\n\n        return $this->callDiffAlias($unit, $parameters)\n            ?? $this->callHumanDiffAlias($unit, $parameters)\n            ?? $this->callRoundMethod($unit, $parameters)\n            ?? $this->callIsMethod($unit, $parameters)\n            ?? $this->callModifierMethod($unit, $parameters)\n            ?? $this->callPeriodMethod($method, $parameters)\n            ?? $this->callGetOrSetMethod($method, $parameters)\n            ?? $this->callMacroMethod($method, $parameters);\n    }\n\n    /**\n     * Return the Carbon instance passed through, a now instance in the same timezone\n     * if null given or parse the input if string given.\n     */\n    protected function resolveCarbon(DateTimeInterface|string|null $date): self\n    {\n        if (!$date) {\n            return $this->nowWithSameTz();\n        }\n\n        if (\\is_string($date)) {\n            return $this->transmitFactory(fn () => static::parse($date, $this->getTimezone()));\n        }\n\n        return $date instanceof self ? $date : $this->transmitFactory(static fn () => static::instance($date));\n    }\n\n    protected static function weekRotate(int $day, int $rotation): int\n    {\n        return (static::DAYS_PER_WEEK + $rotation % static::DAYS_PER_WEEK + $day) % static::DAYS_PER_WEEK;\n    }\n\n    protected function executeCallable(callable $macro, ...$parameters)\n    {\n        if ($macro instanceof Closure) {\n            $boundMacro = @$macro->bindTo($this, static::class) ?: @$macro->bindTo(null, static::class);\n\n            return \\call_user_func_array($boundMacro ?: $macro, $parameters);\n        }\n\n        return \\call_user_func_array($macro, $parameters);\n    }\n\n    protected function executeCallableWithContext(callable $macro, ...$parameters)\n    {\n        return static::bindMacroContext($this, function () use (&$macro, &$parameters) {\n            return $this->executeCallable($macro, ...$parameters);\n        });\n    }\n\n    protected function getAllGenericMacros(): Generator\n    {\n        yield from $this->localGenericMacros ?? [];\n        yield from $this->transmitFactory(static fn () => static::getGenericMacros());\n    }\n\n    protected static function getGenericMacros(): Generator\n    {\n        foreach ((FactoryImmutable::getInstance()->getSettings()['genericMacros'] ?? []) as $list) {\n            foreach ($list as $macro) {\n                yield $macro;\n            }\n        }\n    }\n\n    protected static function executeStaticCallable(callable $macro, ...$parameters)\n    {\n        return static::bindMacroContext(null, function () use (&$macro, &$parameters) {\n            if ($macro instanceof Closure) {\n                $boundMacro = @Closure::bind($macro, null, static::class);\n\n                return \\call_user_func_array($boundMacro ?: $macro, $parameters);\n            }\n\n            return \\call_user_func_array($macro, $parameters);\n        });\n    }\n\n    protected function getTranslatedFormByRegExp($baseKey, $keySuffix, $context, $subKey, $defaultValue)\n    {\n        $key = $baseKey.$keySuffix;\n        $standaloneKey = $key.'_standalone';\n        $baseTranslation = $this->getTranslationMessage($key);\n\n        if ($baseTranslation instanceof Closure) {\n            return $baseTranslation($this, $context, $subKey) ?: $defaultValue;\n        }\n\n        if (\n            $this->getTranslationMessage(\"$standaloneKey.$subKey\") &&\n            (!$context || (($regExp = $this->getTranslationMessage($baseKey.'_regexp')) && !preg_match($regExp, $context)))\n        ) {\n            $key = $standaloneKey;\n        }\n\n        return $this->getTranslationMessage(\"$key.$subKey\", null, $defaultValue);\n    }\n\n    private function callGetOrSetMethod(string $method, array $parameters): mixed\n    {\n        if (preg_match('/^([a-z]{2,})(In|Of)([A-Z][a-z]+)$/', $method)) {\n            $localStrictModeEnabled = $this->localStrictModeEnabled;\n            $this->localStrictModeEnabled = true;\n\n            try {\n                return $this->callGetOrSet($method, $parameters[0] ?? null);\n            } catch (UnknownGetterException|UnknownSetterException|ImmutableException) {\n                // continue to macro\n            } finally {\n                $this->localStrictModeEnabled = $localStrictModeEnabled;\n            }\n        }\n\n        return null;\n    }\n\n    private function callGetOrSet(string $name, mixed $value): mixed\n    {\n        if ($value !== null) {\n            if (\\is_string($value) || \\is_int($value) || \\is_float($value) || $value instanceof DateTimeZone || $value instanceof Month) {\n                return $this->set($name, $value);\n            }\n\n            return null;\n        }\n\n        return $this->get($name);\n    }\n\n    private function getUTCUnit(string $unit): ?string\n    {\n        if (str_starts_with($unit, 'Real')) {\n            return substr($unit, 4);\n        }\n\n        if (str_starts_with($unit, 'UTC')) {\n            return substr($unit, 3);\n        }\n\n        return null;\n    }\n\n    private function callDiffAlias(string $method, array $parameters): mixed\n    {\n        if (preg_match('/^(diff|floatDiff)In(Real|UTC|Utc)?(.+)$/', $method, $match)) {\n            $mode = strtoupper($match[2] ?? '');\n            $betterMethod = $match[1] === 'floatDiff' ? str_replace('floatDiff', 'diff', $method) : null;\n\n            if ($mode === 'REAL') {\n                $mode = 'UTC';\n                $betterMethod = str_replace($match[2], 'UTC', $betterMethod ?? $method);\n            }\n\n            if ($betterMethod) {\n                @trigger_error(\n                    \"Use the method $betterMethod instead to make it more explicit about what it does.\\n\".\n                    'On next major version, \"float\" prefix will be removed (as all diff are now returning floating numbers)'.\n                    ' and \"Real\" methods will be removed in favor of \"UTC\" because what it actually does is to convert both'.\n                    ' dates to UTC timezone before comparison, while by default it does it only if both dates don\\'t have'.\n                    ' exactly the same timezone (Note: 2 timezones with the same offset but different names are considered'.\n                    \" different as it's not safe to assume they will always have the same offset).\",\n                    \\E_USER_DEPRECATED,\n                );\n            }\n\n            $unit = self::pluralUnit($match[3]);\n            $diffMethod = 'diffIn'.ucfirst($unit);\n\n            if (\\in_array($unit, ['days', 'weeks', 'months', 'quarters', 'years'])) {\n                $parameters['utc'] = ($mode === 'UTC');\n            }\n\n            if (method_exists($this, $diffMethod)) {\n                return $this->$diffMethod(...$parameters);\n            }\n        }\n\n        return null;\n    }\n\n    private function callHumanDiffAlias(string $method, array $parameters): ?string\n    {\n        $diffSizes = [\n            // @mode diffForHumans\n            'short' => true,\n            // @mode diffForHumans\n            'long' => false,\n        ];\n        $diffSyntaxModes = [\n            // @call diffForHumans\n            'Absolute' => CarbonInterface::DIFF_ABSOLUTE,\n            // @call diffForHumans\n            'Relative' => CarbonInterface::DIFF_RELATIVE_AUTO,\n            // @call diffForHumans\n            'RelativeToNow' => CarbonInterface::DIFF_RELATIVE_TO_NOW,\n            // @call diffForHumans\n            'RelativeToOther' => CarbonInterface::DIFF_RELATIVE_TO_OTHER,\n        ];\n        $sizePattern = implode('|', array_keys($diffSizes));\n        $syntaxPattern = implode('|', array_keys($diffSyntaxModes));\n\n        if (preg_match(\"/^(?<size>$sizePattern)(?<syntax>$syntaxPattern)DiffForHuman$/\", $method, $match)) {\n            $dates = array_filter($parameters, function ($parameter) {\n                return $parameter instanceof DateTimeInterface;\n            });\n            $other = null;\n\n            if (\\count($dates)) {\n                $key = key($dates);\n                $other = current($dates);\n                array_splice($parameters, $key, 1);\n            }\n\n            return $this->diffForHumans($other, $diffSyntaxModes[$match['syntax']], $diffSizes[$match['size']], ...$parameters);\n        }\n\n        return null;\n    }\n\n    private function callIsMethod(string $unit, array $parameters): ?bool\n    {\n        if (!str_starts_with($unit, 'is')) {\n            return null;\n        }\n\n        $word = substr($unit, 2);\n\n        if (\\in_array($word, static::$days, true)) {\n            return $this->isDayOfWeek($word);\n        }\n\n        return match ($word) {\n            // @call is Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.)\n            'Utc', 'UTC' => $this->utc,\n            // @call is Check if the current instance has non-UTC timezone.\n            'Local' => $this->local,\n            // @call is Check if the current instance is a valid date.\n            'Valid' => $this->year !== 0,\n            // @call is Check if the current instance is in a daylight saving time.\n            'DST' => $this->dst,\n            default => $this->callComparatorMethod($word, $parameters),\n        };\n    }\n\n    private function callComparatorMethod(string $unit, array $parameters): ?bool\n    {\n        $start = substr($unit, 0, 4);\n        $factor = -1;\n\n        if ($start === 'Last') {\n            $start = 'Next';\n            $factor = 1;\n        }\n\n        if ($start === 'Next') {\n            $lowerUnit = strtolower(substr($unit, 4));\n\n            if (static::isModifiableUnit($lowerUnit)) {\n                return $this->avoidMutation()->addUnit($lowerUnit, $factor, false)->isSameUnit($lowerUnit, ...($parameters ?: ['now']));\n            }\n        }\n\n        if ($start === 'Same') {\n            try {\n                return $this->isSameUnit(strtolower(substr($unit, 4)), ...$parameters);\n            } catch (BadComparisonUnitException) {\n                // Try next\n            }\n        }\n\n        if (str_starts_with($unit, 'Current')) {\n            try {\n                return $this->isCurrentUnit(strtolower(substr($unit, 7)));\n            } catch (BadComparisonUnitException | BadMethodCallException) {\n                // Try next\n            }\n        }\n\n        return null;\n    }\n\n    private function callModifierMethod(string $unit, array $parameters): ?static\n    {\n        $action = substr($unit, 0, 3);\n        $overflow = null;\n\n        if ($action === 'set') {\n            $unit = strtolower(substr($unit, 3));\n        }\n\n        if (\\in_array($unit, static::$units, true)) {\n            return $this->setUnit($unit, ...$parameters);\n        }\n\n        if ($action === 'add' || $action === 'sub') {\n            $unit = substr($unit, 3);\n            $utcUnit = $this->getUTCUnit($unit);\n\n            if ($utcUnit) {\n                $unit = static::singularUnit($utcUnit);\n\n                return $this->{\"{$action}UTCUnit\"}($unit, ...$parameters);\n            }\n\n            if (preg_match('/^(Month|Quarter|Year|Decade|Century|Centurie|Millennium|Millennia)s?(No|With|Without|WithNo)Overflow$/', $unit, $match)) {\n                $unit = $match[1];\n                $overflow = $match[2] === 'With';\n            }\n\n            $unit = static::singularUnit($unit);\n        }\n\n        if (static::isModifiableUnit($unit)) {\n            return $this->{\"{$action}Unit\"}($unit, $this->getMagicParameter($parameters, 0, 'value', 1), $overflow);\n        }\n\n        return null;\n    }\n\n    private function callPeriodMethod(string $method, array $parameters): ?CarbonPeriod\n    {\n        if (str_ends_with($method, 'Until')) {\n            try {\n                $unit = static::singularUnit(substr($method, 0, -5));\n\n                return $this->range(\n                    $this->getMagicParameter($parameters, 0, 'endDate', $this),\n                    $this->getMagicParameter($parameters, 1, 'factor', 1),\n                    $unit\n                );\n            } catch (InvalidArgumentException) {\n                // Try macros\n            }\n        }\n\n        return null;\n    }\n\n    private function callMacroMethod(string $method, array $parameters): mixed\n    {\n        return static::bindMacroContext($this, function () use (&$method, &$parameters) {\n            $macro = $this->getLocalMacro($method);\n\n            if (!$macro) {\n                foreach ($this->getAllGenericMacros() as $callback) {\n                    try {\n                        return $this->executeCallable($callback, $method, ...$parameters);\n                    } catch (BadMethodCallException) {\n                        continue;\n                    }\n                }\n\n                if ($this->isLocalStrictModeEnabled()) {\n                    throw new UnknownMethodException($method);\n                }\n\n                return null;\n            }\n\n            return $this->executeCallable($macro, ...$parameters);\n        });\n    }\n\n    private static function floorZeroPad(int|float $value, int $length): string\n    {\n        return str_pad((string) floor($value), $length, '0', STR_PAD_LEFT);\n    }\n\n    /**\n     * @template T of CarbonInterface\n     *\n     * @param T $date\n     *\n     * @return T\n     */\n    private function mutateIfMutable(CarbonInterface $date): CarbonInterface\n    {\n        return $this instanceof DateTimeImmutable\n            ? $date\n            : $this->modify('@'.$date->rawFormat('U.u'))->setTimezone($date->getTimezone());\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/DeprecatedPeriodProperties.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\n\ntrait DeprecatedPeriodProperties\n{\n    /**\n     * Period start in PHP < 8.2.\n     *\n     * @var CarbonInterface\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period start.\n     */\n    public $start;\n\n    /**\n     * Period end in PHP < 8.2.\n     *\n     * @var CarbonInterface|null\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period end.\n     */\n    public $end;\n\n    /**\n     * Period current iterated date in PHP < 8.2.\n     *\n     * @var CarbonInterface|null\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period current iterated date.\n     */\n    public $current;\n\n    /**\n     * Period interval in PHP < 8.2.\n     *\n     * @var CarbonInterval|null\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period interval.\n     */\n    public $interval;\n\n    /**\n     * Period recurrences in PHP < 8.2.\n     *\n     * @var int|float|null\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period recurrences.\n     */\n    public $recurrences;\n\n    /**\n     * Period start included option in PHP < 8.2.\n     *\n     * @var bool\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period start included option.\n     */\n    public $include_start_date;\n\n    /**\n     * Period end included option in PHP < 8.2.\n     *\n     * @var bool\n     *\n     * @deprecated PHP 8.2 this property is no longer in sync with the actual period end included option.\n     */\n    public $include_end_date;\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Difference.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Carbon\\Unit;\nuse Closure;\nuse DateInterval;\nuse DateTimeInterface;\n\n/**\n * Trait Difference.\n *\n * Depends on the following methods:\n *\n * @method bool lessThan($date)\n * @method static copy()\n * @method static resolveCarbon($date = null)\n */\ntrait Difference\n{\n    /**\n     * Get the difference as a DateInterval instance.\n     * Return relative interval (negative if $absolute flag is not set to true and the given date is before\n     * current one).\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return DateInterval\n     */\n    public function diffAsDateInterval($date = null, bool $absolute = false): DateInterval\n    {\n        $other = $this->resolveCarbon($date);\n\n        // Work-around for https://bugs.php.net/bug.php?id=81458\n        // It was initially introduced for https://bugs.php.net/bug.php?id=80998\n        // The very specific case of 80998 was fixed in PHP 8.1beta3, but it introduced 81458\n        // So we still need to keep this for now\n        if ($other->tz !== $this->tz) {\n            $other = $other->avoidMutation()->setTimezone($this->tz);\n        }\n\n        return parent::diff($other, $absolute);\n    }\n\n    /**\n     * Get the difference as a CarbonInterval instance.\n     * Return relative interval (negative if $absolute flag is not set to true and the given date is before\n     * current one).\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return CarbonInterval\n     */\n    public function diffAsCarbonInterval($date = null, bool $absolute = false, array $skip = []): CarbonInterval\n    {\n        return CarbonInterval::diff($this, $this->resolveCarbon($date), $absolute, $skip)\n            ->setLocalTranslator($this->getLocalTranslator());\n    }\n\n    /**\n     * @alias diffAsCarbonInterval\n     *\n     * Get the difference as a DateInterval instance.\n     * Return relative interval (negative if $absolute flag is not set to true and the given date is before\n     * current one).\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return CarbonInterval\n     */\n    public function diff($date = null, bool $absolute = false, array $skip = []): CarbonInterval\n    {\n        return $this->diffAsCarbonInterval($date, $absolute, $skip);\n    }\n\n    /**\n     * @param Unit|string                                            $unit     microsecond, millisecond, second, minute,\n     *                                                                         hour, day, week, month, quarter, year,\n     *                                                                         century, millennium\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInUnit(Unit|string $unit, $date = null, bool $absolute = false, bool $utc = false): float\n    {\n        $unit = static::pluralUnit($unit instanceof Unit ? $unit->value : rtrim($unit, 'z'));\n        $method = 'diffIn'.$unit;\n\n        if (!method_exists($this, $method)) {\n            throw new UnknownUnitException($unit);\n        }\n\n        return $this->$method($date, $absolute, $utc);\n    }\n\n    /**\n     * Get the difference in years\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInYears($date = null, bool $absolute = false, bool $utc = false): float\n    {\n        $start = $this;\n        $end = $this->resolveCarbon($date);\n\n        if ($utc) {\n            $start = $start->avoidMutation()->utc();\n            $end = $end->avoidMutation()->utc();\n        }\n\n        $ascending = ($start <= $end);\n        $sign = $absolute || $ascending ? 1 : -1;\n\n        if (!$ascending) {\n            [$start, $end] = [$end, $start];\n        }\n\n        $yearsDiff = (int) $start->diff($end, $absolute)->format('%r%y');\n        /** @var Carbon|CarbonImmutable $floorEnd */\n        $floorEnd = $start->avoidMutation()->addYears($yearsDiff);\n\n        if ($floorEnd >= $end) {\n            return $sign * $yearsDiff;\n        }\n\n        /** @var Carbon|CarbonImmutable $ceilEnd */\n        $ceilEnd = $start->avoidMutation()->addYears($yearsDiff + 1);\n\n        $daysToFloor = $floorEnd->diffInDays($end);\n        $daysToCeil = $end->diffInDays($ceilEnd);\n\n        return $sign * ($yearsDiff + $daysToFloor / ($daysToCeil + $daysToFloor));\n    }\n\n    /**\n     * Get the difference in quarters.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInQuarters($date = null, bool $absolute = false, bool $utc = false): float\n    {\n        return $this->diffInMonths($date, $absolute, $utc) / static::MONTHS_PER_QUARTER;\n    }\n\n    /**\n     * Get the difference in months.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInMonths($date = null, bool $absolute = false, bool $utc = false): float\n    {\n        $start = $this;\n        $end = $this->resolveCarbon($date);\n\n        // Compare using UTC\n        if ($utc || ($end->timezoneName !== $start->timezoneName)) {\n            $start = $start->avoidMutation()->utc();\n            $end = $end->avoidMutation()->utc();\n        }\n\n        [$yearStart, $monthStart, $dayStart] = explode('-', $start->format('Y-m-dHisu'));\n        [$yearEnd, $monthEnd, $dayEnd] = explode('-', $end->format('Y-m-dHisu'));\n\n        $monthsDiff = (((int) $yearEnd) - ((int) $yearStart)) * static::MONTHS_PER_YEAR +\n            ((int) $monthEnd) - ((int) $monthStart);\n\n        if ($monthsDiff > 0) {\n            $monthsDiff -= ($dayStart > $dayEnd ? 1 : 0);\n        } elseif ($monthsDiff < 0) {\n            $monthsDiff += ($dayStart < $dayEnd ? 1 : 0);\n        }\n\n        $ascending = ($start <= $end);\n        $sign = $absolute || $ascending ? 1 : -1;\n        $monthsDiff = abs($monthsDiff);\n\n        if (!$ascending) {\n            [$start, $end] = [$end, $start];\n        }\n\n        /** @var Carbon|CarbonImmutable $floorEnd */\n        $floorEnd = $start->avoidMutation()->addMonths($monthsDiff);\n\n        if ($floorEnd >= $end) {\n            return $sign * $monthsDiff;\n        }\n\n        /** @var Carbon|CarbonImmutable $ceilEnd */\n        $ceilEnd = $start->avoidMutation()->addMonths($monthsDiff + 1);\n\n        $daysToFloor = $floorEnd->diffInDays($end);\n        $daysToCeil = $end->diffInDays($ceilEnd);\n\n        return $sign * ($monthsDiff + $daysToFloor / ($daysToCeil + $daysToFloor));\n    }\n\n    /**\n     * Get the difference in weeks.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInWeeks($date = null, bool $absolute = false, bool $utc = false): float\n    {\n        return $this->diffInDays($date, $absolute, $utc) / static::DAYS_PER_WEEK;\n    }\n\n    /**\n     * Get the difference in days.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     * @param bool                                                   $utc      Always convert dates to UTC before comparing (if not set, it will do it only if timezones are different)\n     *\n     * @return float\n     */\n    public function diffInDays($date = null, bool $absolute = false, bool $utc = false): float\n    {\n        $date = $this->resolveCarbon($date);\n        $current = $this;\n\n        // Compare using UTC\n        if ($utc || ($date->timezoneName !== $current->timezoneName)) {\n            $date = $date->avoidMutation()->utc();\n            $current = $current->avoidMutation()->utc();\n        }\n\n        $negative = ($date < $current);\n        [$start, $end] = $negative ? [$date, $current] : [$current, $date];\n        $interval = $start->diffAsDateInterval($end);\n        $daysA = $this->getIntervalDayDiff($interval);\n        $floorEnd = $start->avoidMutation()->addDays($daysA);\n        $daysB = $daysA + ($floorEnd <= $end ? 1 : -1);\n        $ceilEnd = $start->avoidMutation()->addDays($daysB);\n        $microsecondsBetween = $floorEnd->diffInMicroseconds($ceilEnd);\n        $microsecondsToEnd = $floorEnd->diffInMicroseconds($end);\n\n        return ($negative && !$absolute ? -1 : 1)\n            * ($daysA * ($microsecondsBetween - $microsecondsToEnd) + $daysB * $microsecondsToEnd)\n            / $microsecondsBetween;\n    }\n\n    /**\n     * Get the difference in days using a filter closure.\n     *\n     * @param Closure                                                $callback\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInDaysFiltered(Closure $callback, $date = null, bool $absolute = false): int\n    {\n        return $this->diffFiltered(CarbonInterval::day(), $callback, $date, $absolute);\n    }\n\n    /**\n     * Get the difference in hours using a filter closure.\n     *\n     * @param Closure                                                $callback\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInHoursFiltered(Closure $callback, $date = null, bool $absolute = false): int\n    {\n        return $this->diffFiltered(CarbonInterval::hour(), $callback, $date, $absolute);\n    }\n\n    /**\n     * Get the difference by the given interval using a filter closure.\n     *\n     * @param CarbonInterval                                         $ci       An interval to traverse by\n     * @param Closure                                                $callback\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffFiltered(CarbonInterval $ci, Closure $callback, $date = null, bool $absolute = false): int\n    {\n        $start = $this;\n        $end = $this->resolveCarbon($date);\n        $inverse = false;\n\n        if ($end < $start) {\n            $start = $end;\n            $end = $this;\n            $inverse = true;\n        }\n\n        $options = CarbonPeriod::EXCLUDE_END_DATE | ($this->isMutable() ? 0 : CarbonPeriod::IMMUTABLE);\n        $diff = $ci->toPeriod($start, $end, $options)->filter($callback)->count();\n\n        return $inverse && !$absolute ? -$diff : $diff;\n    }\n\n    /**\n     * Get the difference in weekdays.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInWeekdays($date = null, bool $absolute = false): int\n    {\n        return $this->diffInDaysFiltered(\n            static fn (CarbonInterface $date) => $date->isWeekday(),\n            $this->resolveCarbon($date)->avoidMutation()->modify($this->format('H:i:s.u')),\n            $absolute,\n        );\n    }\n\n    /**\n     * Get the difference in weekend days using a filter.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return int\n     */\n    public function diffInWeekendDays($date = null, bool $absolute = false): int\n    {\n        return $this->diffInDaysFiltered(\n            static fn (CarbonInterface $date) => $date->isWeekend(),\n            $this->resolveCarbon($date)->avoidMutation()->modify($this->format('H:i:s.u')),\n            $absolute,\n        );\n    }\n\n    /**\n     * Get the difference in hours.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInHours($date = null, bool $absolute = false): float\n    {\n        return $this->diffInMinutes($date, $absolute) / static::MINUTES_PER_HOUR;\n    }\n\n    /**\n     * Get the difference in minutes.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInMinutes($date = null, bool $absolute = false): float\n    {\n        return $this->diffInSeconds($date, $absolute) / static::SECONDS_PER_MINUTE;\n    }\n\n    /**\n     * Get the difference in seconds.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInSeconds($date = null, bool $absolute = false): float\n    {\n        return $this->diffInMilliseconds($date, $absolute) / static::MILLISECONDS_PER_SECOND;\n    }\n\n    /**\n     * Get the difference in microseconds.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInMicroseconds($date = null, bool $absolute = false): float\n    {\n        /** @var CarbonInterface $date */\n        $date = $this->resolveCarbon($date);\n        $value = ($date->timestamp - $this->timestamp) * static::MICROSECONDS_PER_SECOND +\n            $date->micro - $this->micro;\n\n        return $absolute ? abs($value) : $value;\n    }\n\n    /**\n     * Get the difference in milliseconds.\n     *\n     * @param \\Carbon\\CarbonInterface|\\DateTimeInterface|string|null $date\n     * @param bool                                                   $absolute Get the absolute of the difference\n     *\n     * @return float\n     */\n    public function diffInMilliseconds($date = null, bool $absolute = false): float\n    {\n        return $this->diffInMicroseconds($date, $absolute) / static::MICROSECONDS_PER_MILLISECOND;\n    }\n\n    /**\n     * The number of seconds since midnight.\n     *\n     * @return float\n     */\n    public function secondsSinceMidnight(): float\n    {\n        return $this->diffInSeconds($this->copy()->startOfDay(), true);\n    }\n\n    /**\n     * The number of seconds until 23:59:59.\n     *\n     * @return float\n     */\n    public function secondsUntilEndOfDay(): float\n    {\n        return $this->diffInSeconds($this->copy()->endOfDay(), true);\n    }\n\n    /**\n     * Get the difference in a human readable format in the current locale from current instance to an other\n     * instance given (or now if null given).\n     *\n     * @example\n     * ```\n     * echo Carbon::tomorrow()->diffForHumans() . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(['parts' => 2]) . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(['parts' => 3, 'join' => true]) . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday()) . \"\\n\";\n     * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday(), ['short' => true]) . \"\\n\";\n     * ```\n     *\n     * @param Carbon|DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                            if null passed, now will be used as comparison reference;\n     *                                                            if any other type, it will be converted to date and used as reference.\n     * @param int|array                                  $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                            ⦿ 'syntax' entry (see below)\n     *                                                            ⦿ 'short' entry (see below)\n     *                                                            ⦿ 'parts' entry (see below)\n     *                                                            ⦿ 'options' entry (see below)\n     *                                                            ⦿ 'skip' entry, list of units to skip (array of strings or a single string,\n     *                                                            ` it can be the unit name (singular or plural) or its shortcut\n     *                                                            ` (y, m, w, d, h, min, s, ms, µs).\n     *                                                            ⦿ 'aUnit' entry, prefer \"an hour\" over \"1 hour\" if true\n     *                                                            ⦿ 'altNumbers' entry, use alternative numbers if available\n     *                                                            ` (from the current language if true is passed, from the given language(s)\n     *                                                            ` if array or string is passed)\n     *                                                            ⦿ 'join' entry determines how to join multiple parts of the string\n     *                                                            `  - if $join is a string, it's used as a joiner glue\n     *                                                            `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                            `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                            `    will be used instead of the glue for the last item\n     *                                                            `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                            `  - if $join is missing, a space will be used as glue\n     *                                                            ⦿ 'other' entry (see above)\n     *                                                            ⦿ 'minimumUnit' entry determines the smallest unit of time to display can be long or\n     *                                                            `  short form of the units, e.g. 'hour' or 'h' (default value: s)\n     *                                                            ⦿ 'locale' language in which the diff should be output (has no effect if 'translator' key is set)\n     *                                                            ⦿ 'translator' a custom translator to use to translator the output.\n     *                                                            if int passed, it adds modifiers:\n     *                                                            Possible values:\n     *                                                            - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                            - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                            - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                            Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                       $short   displays short format of time units\n     * @param int                                        $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                        $options human diff options\n     */\n    public function diffForHumans($other = null, $syntax = null, $short = false, $parts = 1, $options = null): string\n    {\n        /* @var CarbonInterface $this */\n        if (\\is_array($other)) {\n            $other['syntax'] = \\array_key_exists('syntax', $other) ? $other['syntax'] : $syntax;\n            $syntax = $other;\n            $other = $syntax['other'] ?? null;\n        }\n\n        $intSyntax = &$syntax;\n\n        if (\\is_array($syntax)) {\n            $syntax['syntax'] = $syntax['syntax'] ?? null;\n            $intSyntax = &$syntax['syntax'];\n        }\n\n        $intSyntax = (int) ($intSyntax ?? static::DIFF_RELATIVE_AUTO);\n        $intSyntax = $intSyntax === static::DIFF_RELATIVE_AUTO && $other === null ? static::DIFF_RELATIVE_TO_NOW : $intSyntax;\n\n        $parts = min(7, max(1, (int) $parts));\n        $skip = \\is_array($syntax) ? ($syntax['skip'] ?? []) : [];\n        $options ??= $this->localHumanDiffOptions ?? $this->transmitFactory(\n            static fn () => static::getHumanDiffOptions(),\n        );\n\n        return $this->diff($other, skip: (array) $skip)->forHumans($syntax, (bool) $short, $parts, $options);\n    }\n\n    /**\n     * @alias diffForHumans\n     *\n     * Get the difference in a human readable format in the current locale from current instance to an other\n     * instance given (or now if null given).\n     *\n     * @param Carbon|\\DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                             if null passed, now will be used as comparison reference;\n     *                                                             if any other type, it will be converted to date and used as reference.\n     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                             - 'syntax' entry (see below)\n     *                                                             - 'short' entry (see below)\n     *                                                             - 'parts' entry (see below)\n     *                                                             - 'options' entry (see below)\n     *                                                             - 'join' entry determines how to join multiple parts of the string\n     *                                                             `  - if $join is a string, it's used as a joiner glue\n     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                             `    will be used instead of the glue for the last item\n     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                             `  - if $join is missing, a space will be used as glue\n     *                                                             - 'other' entry (see above)\n     *                                                             if int passed, it add modifiers:\n     *                                                             Possible values:\n     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                        $short   displays short format of time units\n     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                         $options human diff options\n     *\n     * @return string\n     */\n    public function from($other = null, $syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        return $this->diffForHumans($other, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * @alias diffForHumans\n     *\n     * Get the difference in a human readable format in the current locale from current instance to an other\n     * instance given (or now if null given).\n     */\n    public function since($other = null, $syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        return $this->diffForHumans($other, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given (or now if null given) to current instance.\n     *\n     * When comparing a value in the past to default now:\n     * 1 hour from now\n     * 5 months from now\n     *\n     * When comparing a value in the future to default now:\n     * 1 hour ago\n     * 5 months ago\n     *\n     * When comparing a value in the past to another value:\n     * 1 hour after\n     * 5 months after\n     *\n     * When comparing a value in the future to another value:\n     * 1 hour before\n     * 5 months before\n     *\n     * @param Carbon|\\DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                             if null passed, now will be used as comparison reference;\n     *                                                             if any other type, it will be converted to date and used as reference.\n     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                             - 'syntax' entry (see below)\n     *                                                             - 'short' entry (see below)\n     *                                                             - 'parts' entry (see below)\n     *                                                             - 'options' entry (see below)\n     *                                                             - 'join' entry determines how to join multiple parts of the string\n     *                                                             `  - if $join is a string, it's used as a joiner glue\n     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                             `    will be used instead of the glue for the last item\n     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                             `  - if $join is missing, a space will be used as glue\n     *                                                             - 'other' entry (see above)\n     *                                                             if int passed, it add modifiers:\n     *                                                             Possible values:\n     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                        $short   displays short format of time units\n     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                         $options human diff options\n     *\n     * @return string\n     */\n    public function to($other = null, $syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        if (!$syntax && !$other) {\n            $syntax = CarbonInterface::DIFF_RELATIVE_TO_NOW;\n        }\n\n        return $this->resolveCarbon($other)->diffForHumans($this, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * @alias to\n     *\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given (or now if null given) to current instance.\n     *\n     * @param Carbon|\\DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;\n     *                                                             if null passed, now will be used as comparison reference;\n     *                                                             if any other type, it will be converted to date and used as reference.\n     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                                                             - 'syntax' entry (see below)\n     *                                                             - 'short' entry (see below)\n     *                                                             - 'parts' entry (see below)\n     *                                                             - 'options' entry (see below)\n     *                                                             - 'join' entry determines how to join multiple parts of the string\n     *                                                             `  - if $join is a string, it's used as a joiner glue\n     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item\n     *                                                             `    will be used instead of the glue for the last item\n     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                                                             `  - if $join is missing, a space will be used as glue\n     *                                                             - 'other' entry (see above)\n     *                                                             if int passed, it add modifiers:\n     *                                                             Possible values:\n     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool                                        $short   displays short format of time units\n     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int                                         $options human diff options\n     *\n     * @return string\n     */\n    public function until($other = null, $syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        return $this->to($other, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * Get the difference in a human readable format in the current locale from current\n     * instance to now.\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                           - 'syntax' entry (see below)\n     *                           - 'short' entry (see below)\n     *                           - 'parts' entry (see below)\n     *                           - 'options' entry (see below)\n     *                           - 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           if int passed, it add modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: 1: single unit)\n     * @param int       $options human diff options\n     *\n     * @return string\n     */\n    public function fromNow($syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        $other = null;\n\n        if ($syntax instanceof DateTimeInterface) {\n            [$other, $syntax, $short, $parts, $options] = array_pad(\\func_get_args(), 5, null);\n        }\n\n        return $this->from($other, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given to now\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                           - 'syntax' entry (see below)\n     *                           - 'short' entry (see below)\n     *                           - 'parts' entry (see below)\n     *                           - 'options' entry (see below)\n     *                           - 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           if int passed, it add modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: 1: single part)\n     * @param int       $options human diff options\n     *\n     * @return string\n     */\n    public function toNow($syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        return $this->to(null, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * Get the difference in a human readable format in the current locale from an other\n     * instance given to now\n     *\n     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:\n     *                           - 'syntax' entry (see below)\n     *                           - 'short' entry (see below)\n     *                           - 'parts' entry (see below)\n     *                           - 'options' entry (see below)\n     *                           - 'join' entry determines how to join multiple parts of the string\n     *                           `  - if $join is a string, it's used as a joiner glue\n     *                           `  - if $join is a callable/closure, it get the list of string and should return a string\n     *                           `  - if $join is an array, the first item will be the default glue, and the second item\n     *                           `    will be used instead of the glue for the last item\n     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)\n     *                           `  - if $join is missing, a space will be used as glue\n     *                           if int passed, it add modifiers:\n     *                           Possible values:\n     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier\n     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier\n     *                           Default value: CarbonInterface::DIFF_ABSOLUTE\n     * @param bool      $short   displays short format of time units\n     * @param int       $parts   maximum number of parts to display (default value: 1: single part)\n     * @param int       $options human diff options\n     *\n     * @return string\n     */\n    public function ago($syntax = null, $short = false, $parts = 1, $options = null)\n    {\n        $other = null;\n\n        if ($syntax instanceof DateTimeInterface) {\n            [$other, $syntax, $short, $parts, $options] = array_pad(\\func_get_args(), 5, null);\n        }\n\n        return $this->from($other, $syntax, $short, $parts, $options);\n    }\n\n    /**\n     * Get the difference in a human-readable format in the current locale from current instance to another\n     * instance given (or now if null given).\n     *\n     * @return string\n     */\n    public function timespan($other = null, $timezone = null): string\n    {\n        if (\\is_string($other)) {\n            $other = $this->transmitFactory(static fn () => static::parse($other, $timezone));\n        }\n\n        return $this->diffForHumans($other, [\n            'join' => ', ',\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'parts' => INF,\n        ]);\n    }\n\n    /**\n     * Returns either day of week + time (e.g. \"Last Friday at 3:30 PM\") if reference time is within 7 days,\n     * or a calendar date (e.g. \"10/29/2017\") otherwise.\n     *\n     * Language, date and time formats will change according to the current locale.\n     *\n     * @param Carbon|\\DateTimeInterface|string|null $referenceTime\n     * @param array                                 $formats\n     *\n     * @return string\n     */\n    public function calendar($referenceTime = null, array $formats = [])\n    {\n        /** @var CarbonInterface $current */\n        $current = $this->avoidMutation()->startOfDay();\n        /** @var CarbonInterface $other */\n        $other = $this->resolveCarbon($referenceTime)->avoidMutation()->setTimezone($this->getTimezone())->startOfDay();\n        $diff = $other->diffInDays($current, false);\n        $format = $diff <= -static::DAYS_PER_WEEK ? 'sameElse' : (\n            $diff < -1 ? 'lastWeek' : (\n                $diff < 0 ? 'lastDay' : (\n                    $diff < 1 ? 'sameDay' : (\n                        $diff < 2 ? 'nextDay' : (\n                            $diff < static::DAYS_PER_WEEK ? 'nextWeek' : 'sameElse'\n                        )\n                    )\n                )\n            )\n        );\n        $format = array_merge($this->getCalendarFormats(), $formats)[$format];\n        if ($format instanceof Closure) {\n            $format = $format($current, $other) ?? '';\n        }\n\n        return $this->isoFormat((string) $format);\n    }\n\n    private function getIntervalDayDiff(DateInterval $interval): int\n    {\n        return (int) $interval->format('%r%a');\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/IntervalRounding.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\InvalidIntervalException;\nuse DateInterval;\n\n/**\n * Trait to call rounding methods to interval or the interval of a period.\n */\ntrait IntervalRounding\n{\n    protected function callRoundMethod(string $method, array $parameters): ?static\n    {\n        $action = substr($method, 0, 4);\n\n        if ($action !== 'ceil') {\n            $action = substr($method, 0, 5);\n        }\n\n        if (\\in_array($action, ['round', 'floor', 'ceil'])) {\n            return $this->{$action.'Unit'}(substr($method, \\strlen($action)), ...$parameters);\n        }\n\n        return null;\n    }\n\n    protected function roundWith(DateInterval|string|float|int $precision, callable|string $function): ?static\n    {\n        $unit = 'second';\n\n        if ($precision instanceof DateInterval) {\n            $precision = CarbonInterval::instance($precision)->forHumans(['locale' => 'en']);\n        }\n\n        if (\\is_string($precision) && preg_match('/^\\s*(?<precision>\\d+)?\\s*(?<unit>\\w+)(?<other>\\W.*)?$/', $precision, $match)) {\n            if (trim($match['other'] ?? '') !== '') {\n                throw new InvalidIntervalException('Rounding is only possible with single unit intervals.');\n            }\n\n            $precision = (int) ($match['precision'] ?: 1);\n            $unit = $match['unit'];\n        }\n\n        return $this->roundUnit($unit, $precision, $function);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/IntervalStep.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Callback;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Closure;\nuse DateTimeImmutable;\nuse DateTimeInterface;\n\ntrait IntervalStep\n{\n    /**\n     * Step to apply instead of a fixed interval to get the new date.\n     *\n     * @var Closure|null\n     */\n    protected $step;\n\n    /**\n     * Get the dynamic step in use.\n     *\n     * @return Closure\n     */\n    public function getStep(): ?Closure\n    {\n        return $this->step;\n    }\n\n    /**\n     * Set a step to apply instead of a fixed interval to get the new date.\n     *\n     * Or pass null to switch to fixed interval.\n     *\n     * @param Closure|null $step\n     */\n    public function setStep(?Closure $step): void\n    {\n        $this->step = $step;\n    }\n\n    /**\n     * Take a date and apply either the step if set, or the current interval else.\n     *\n     * The interval/step is applied negatively (typically subtraction instead of addition) if $negated is true.\n     *\n     * @param DateTimeInterface $dateTime\n     * @param bool              $negated\n     *\n     * @return CarbonInterface\n     */\n    public function convertDate(DateTimeInterface $dateTime, bool $negated = false): CarbonInterface\n    {\n        /** @var CarbonInterface $carbonDate */\n        $carbonDate = $dateTime instanceof CarbonInterface ? $dateTime : $this->resolveCarbon($dateTime);\n\n        if ($this->step) {\n            $carbonDate = Callback::parameter($this->step, $carbonDate->avoidMutation());\n\n            return $carbonDate->modify(($this->step)($carbonDate, $negated)->format('Y-m-d H:i:s.u e O'));\n        }\n\n        if ($negated) {\n            return $carbonDate->rawSub($this);\n        }\n\n        return $carbonDate->rawAdd($this);\n    }\n\n    /**\n     * Convert DateTimeImmutable instance to CarbonImmutable instance and DateTime instance to Carbon instance.\n     */\n    private function resolveCarbon(DateTimeInterface $dateTime): Carbon|CarbonImmutable\n    {\n        if ($dateTime instanceof DateTimeImmutable) {\n            return CarbonImmutable::instance($dateTime);\n        }\n\n        return Carbon::instance($dateTime);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/LocalFactory.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Factory;\nuse Carbon\\FactoryImmutable;\nuse Carbon\\WrapperClock;\nuse Closure;\n\n/**\n * Remember the factory that was the current at the creation of the object.\n */\ntrait LocalFactory\n{\n    /**\n     * The clock that generated the current instance (or FactoryImmutable::getDefaultInstance() if none)\n     */\n    private ?WrapperClock $clock = null;\n\n    public function getClock(): ?WrapperClock\n    {\n        return $this->clock;\n    }\n\n    private function initLocalFactory(): void\n    {\n        $this->clock = FactoryImmutable::getCurrentClock();\n    }\n\n    /**\n     * Trigger the given action using the local factory of the object, so it will be transmitted\n     * to any object also using this trait and calling initLocalFactory() in its constructor.\n     *\n     * @template T\n     *\n     * @param Closure(): T $action\n     *\n     * @return T\n     */\n    private function transmitFactory(Closure $action): mixed\n    {\n        $previousClock = FactoryImmutable::getCurrentClock();\n        FactoryImmutable::setCurrentClock($this->clock);\n\n        try {\n            return $action();\n        } finally {\n            FactoryImmutable::setCurrentClock($previousClock);\n        }\n    }\n\n    private function getFactory(): Factory\n    {\n        return $this->getClock()?->getFactory() ?? FactoryImmutable::getDefaultInstance();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Localization.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\Exceptions\\InvalidTypeException;\nuse Carbon\\Exceptions\\NotLocaleAwareException;\nuse Carbon\\Language;\nuse Carbon\\Translator;\nuse Carbon\\TranslatorStrongTypeInterface;\nuse Closure;\nuse Symfony\\Component\\Translation\\TranslatorBagInterface;\nuse Symfony\\Contracts\\Translation\\LocaleAwareInterface;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\n\n/**\n * Trait Localization.\n *\n * Embed default and locale translators and translation base methods.\n */\ntrait Localization\n{\n    use StaticLocalization;\n\n    /**\n     * Specific translator of the current instance.\n     */\n    protected ?TranslatorInterface $localTranslator = null;\n\n    /**\n     * Return true if the current instance has its own translator.\n     */\n    public function hasLocalTranslator(): bool\n    {\n        return isset($this->localTranslator);\n    }\n\n    /**\n     * Get the translator of the current instance or the default if none set.\n     */\n    public function getLocalTranslator(): TranslatorInterface\n    {\n        return $this->localTranslator ?? $this->transmitFactory(static fn () => static::getTranslator());\n    }\n\n    /**\n     * Set the translator for the current instance.\n     */\n    public function setLocalTranslator(TranslatorInterface $translator): self\n    {\n        $this->localTranslator = $translator;\n\n        return $this;\n    }\n\n    /**\n     * Returns raw translation message for a given key.\n     *\n     * @param TranslatorInterface|null $translator the translator to use\n     * @param string                   $key        key to find\n     * @param string|null              $locale     current locale used if null\n     * @param string|null              $default    default value if translation returns the key\n     *\n     * @return string|Closure|null\n     */\n    public static function getTranslationMessageWith($translator, string $key, ?string $locale = null, ?string $default = null)\n    {\n        if (!($translator instanceof TranslatorBagInterface && $translator instanceof TranslatorInterface)) {\n            throw new InvalidTypeException(\n                'Translator does not implement '.TranslatorInterface::class.' and '.TranslatorBagInterface::class.'. '.\n                (\\is_object($translator) ? \\get_class($translator) : \\gettype($translator)).' has been given.',\n            );\n        }\n\n        if (!$locale && $translator instanceof LocaleAwareInterface) {\n            $locale = $translator->getLocale();\n        }\n\n        $result = self::getFromCatalogue($translator, $translator->getCatalogue($locale), $key);\n\n        return $result === $key ? $default : $result;\n    }\n\n    /**\n     * Returns raw translation message for a given key.\n     *\n     * @param string              $key        key to find\n     * @param string|null         $locale     current locale used if null\n     * @param string|null         $default    default value if translation returns the key\n     * @param TranslatorInterface $translator an optional translator to use\n     *\n     * @return string\n     */\n    public function getTranslationMessage(string $key, ?string $locale = null, ?string $default = null, $translator = null)\n    {\n        return static::getTranslationMessageWith($translator ?? $this->getLocalTranslator(), $key, $locale, $default);\n    }\n\n    /**\n     * Translate using translation string or callback available.\n     *\n     * @param TranslatorInterface $translator an optional translator to use\n     * @param string              $key        key to find\n     * @param array               $parameters replacement parameters\n     * @param int|float|null      $number     number if plural\n     *\n     * @return string\n     */\n    public static function translateWith(TranslatorInterface $translator, string $key, array $parameters = [], $number = null): string\n    {\n        $message = static::getTranslationMessageWith($translator, $key, null, $key);\n        if ($message instanceof Closure) {\n            return (string) $message(...array_values($parameters));\n        }\n\n        if ($number !== null) {\n            $parameters['%count%'] = $number;\n        }\n        if (isset($parameters['%count%'])) {\n            $parameters[':count'] = $parameters['%count%'];\n        }\n\n        return (string) $translator->trans($key, $parameters);\n    }\n\n    /**\n     * Translate using translation string or callback available.\n     *\n     * @param string                   $key        key to find\n     * @param array                    $parameters replacement parameters\n     * @param string|int|float|null    $number     number if plural\n     * @param TranslatorInterface|null $translator an optional translator to use\n     * @param bool                     $altNumbers pass true to use alternative numbers\n     *\n     * @return string\n     */\n    public function translate(\n        string $key,\n        array $parameters = [],\n        string|int|float|null $number = null,\n        ?TranslatorInterface $translator = null,\n        bool $altNumbers = false,\n    ): string {\n        $translation = static::translateWith($translator ?? $this->getLocalTranslator(), $key, $parameters, $number);\n\n        if ($number !== null && $altNumbers) {\n            return str_replace((string) $number, $this->translateNumber((int) $number), $translation);\n        }\n\n        return $translation;\n    }\n\n    /**\n     * Returns the alternative number for a given integer if available in the current locale.\n     *\n     * @param int $number\n     *\n     * @return string\n     */\n    public function translateNumber(int $number): string\n    {\n        $translateKey = \"alt_numbers.$number\";\n        $symbol = $this->translate($translateKey);\n\n        if ($symbol !== $translateKey) {\n            return $symbol;\n        }\n\n        if ($number > 99 && $this->translate('alt_numbers.99') !== 'alt_numbers.99') {\n            $start = '';\n            foreach ([10000, 1000, 100] as $exp) {\n                $key = \"alt_numbers_pow.$exp\";\n                if ($number >= $exp && $number < $exp * 10 && ($pow = $this->translate($key)) !== $key) {\n                    $unit = floor($number / $exp);\n                    $number -= $unit * $exp;\n                    $start .= ($unit > 1 ? $this->translate(\"alt_numbers.$unit\") : '').$pow;\n                }\n            }\n            $result = '';\n            while ($number) {\n                $chunk = $number % 100;\n                $result = $this->translate(\"alt_numbers.$chunk\").$result;\n                $number = floor($number / 100);\n            }\n\n            return \"$start$result\";\n        }\n\n        if ($number > 9 && $this->translate('alt_numbers.9') !== 'alt_numbers.9') {\n            $result = '';\n            while ($number) {\n                $chunk = $number % 10;\n                $result = $this->translate(\"alt_numbers.$chunk\").$result;\n                $number = floor($number / 10);\n            }\n\n            return $result;\n        }\n\n        return (string) $number;\n    }\n\n    /**\n     * Translate a time string from a locale to an other.\n     *\n     * @param string      $timeString date/time/duration string to translate (may also contain English)\n     * @param string|null $from       input locale of the $timeString parameter (`Carbon::getLocale()` by default)\n     * @param string|null $to         output locale of the result returned (`\"en\"` by default)\n     * @param int         $mode       specify what to translate with options:\n     *                                - CarbonInterface::TRANSLATE_ALL (default)\n     *                                - CarbonInterface::TRANSLATE_MONTHS\n     *                                - CarbonInterface::TRANSLATE_DAYS\n     *                                - CarbonInterface::TRANSLATE_UNITS\n     *                                - CarbonInterface::TRANSLATE_MERIDIEM\n     *                                You can use pipe to group: CarbonInterface::TRANSLATE_MONTHS | CarbonInterface::TRANSLATE_DAYS\n     *\n     * @return string\n     */\n    public static function translateTimeString(\n        string $timeString,\n        ?string $from = null,\n        ?string $to = null,\n        int $mode = CarbonInterface::TRANSLATE_ALL,\n    ): string {\n        // Fallback source and destination locales\n        $from = $from ?: static::getLocale();\n        $to = $to ?: CarbonInterface::DEFAULT_LOCALE;\n\n        if ($from === $to) {\n            return $timeString;\n        }\n\n        // Standardize apostrophe\n        $timeString = strtr($timeString, ['’' => \"'\"]);\n\n        $fromTranslations = [];\n        $toTranslations = [];\n\n        foreach (['from', 'to'] as $key) {\n            $language = $$key;\n            $translator = Translator::get($language);\n            $translations = $translator->getMessages();\n\n            if (!isset($translations[$language])) {\n                return $timeString;\n            }\n\n            $translationKey = $key.'Translations';\n            $messages = $translations[$language];\n            $months = $messages['months'] ?? [];\n            $weekdays = $messages['weekdays'] ?? [];\n            $meridiem = $messages['meridiem'] ?? ['AM', 'PM'];\n\n            if (isset($messages['ordinal_words'])) {\n                $timeString = self::replaceOrdinalWords(\n                    $timeString,\n                    $key === 'from' ? array_flip($messages['ordinal_words']) : $messages['ordinal_words']\n                );\n            }\n\n            if ($key === 'from') {\n                foreach (['months', 'weekdays'] as $variable) {\n                    $list = $messages[$variable.'_standalone'] ?? null;\n\n                    if ($list) {\n                        foreach ($$variable as $index => &$name) {\n                            $name .= '|'.$list[$index];\n                        }\n                    }\n                }\n            }\n\n            $$translationKey = array_merge(\n                $mode & CarbonInterface::TRANSLATE_MONTHS ? self::getTranslationArray($months, static::MONTHS_PER_YEAR, $timeString) : [],\n                $mode & CarbonInterface::TRANSLATE_MONTHS ? self::getTranslationArray($messages['months_short'] ?? [], static::MONTHS_PER_YEAR, $timeString) : [],\n                $mode & CarbonInterface::TRANSLATE_DAYS ? self::getTranslationArray($weekdays, static::DAYS_PER_WEEK, $timeString) : [],\n                $mode & CarbonInterface::TRANSLATE_DAYS ? self::getTranslationArray($messages['weekdays_short'] ?? [], static::DAYS_PER_WEEK, $timeString) : [],\n                $mode & CarbonInterface::TRANSLATE_DIFF ? self::translateWordsByKeys([\n                    'diff_now',\n                    'diff_today',\n                    'diff_yesterday',\n                    'diff_tomorrow',\n                    'diff_before_yesterday',\n                    'diff_after_tomorrow',\n                ], $messages, $key) : [],\n                $mode & CarbonInterface::TRANSLATE_UNITS ? self::translateWordsByKeys([\n                    'year',\n                    'month',\n                    'week',\n                    'day',\n                    'hour',\n                    'minute',\n                    'second',\n                ], $messages, $key) : [],\n                $mode & CarbonInterface::TRANSLATE_MERIDIEM ? array_map(function ($hour) use ($meridiem) {\n                    if (\\is_array($meridiem)) {\n                        return $meridiem[$hour < static::HOURS_PER_DAY / 2 ? 0 : 1];\n                    }\n\n                    return $meridiem($hour, 0, false);\n                }, range(0, 23)) : [],\n            );\n        }\n\n        return substr(preg_replace_callback('/(?<=[\\d\\s+.\\/,_-])('.implode('|', $fromTranslations).')(?=[\\d\\s+.\\/,_-])/iu', function ($match) use ($fromTranslations, $toTranslations) {\n            [$chunk] = $match;\n\n            foreach ($fromTranslations as $index => $word) {\n                if (preg_match(\"/^$word\\$/iu\", $chunk)) {\n                    return $toTranslations[$index] ?? '';\n                }\n            }\n\n            return $chunk; // @codeCoverageIgnore\n        }, \" $timeString \"), 1, -1);\n    }\n\n    /**\n     * Translate a time string from the current locale (`$date->locale()`) to another one.\n     *\n     * @param string      $timeString time string to translate\n     * @param string|null $to         output locale of the result returned (\"en\" by default)\n     *\n     * @return string\n     */\n    public function translateTimeStringTo(string $timeString, ?string $to = null): string\n    {\n        return static::translateTimeString($timeString, $this->getTranslatorLocale(), $to);\n    }\n\n    /**\n     * Get/set the locale for the current instance.\n     *\n     * @param string|null $locale\n     * @param string      ...$fallbackLocales\n     *\n     * @return $this|string\n     */\n    public function locale(?string $locale = null, string ...$fallbackLocales): static|string\n    {\n        if ($locale === null) {\n            return $this->getTranslatorLocale();\n        }\n\n        if (!$this->localTranslator || $this->getTranslatorLocale($this->localTranslator) !== $locale) {\n            $translator = Translator::get($locale);\n\n            if (!empty($fallbackLocales)) {\n                $translator->setFallbackLocales($fallbackLocales);\n\n                foreach ($fallbackLocales as $fallbackLocale) {\n                    $messages = Translator::get($fallbackLocale)->getMessages();\n\n                    if (isset($messages[$fallbackLocale])) {\n                        $translator->setMessages($fallbackLocale, $messages[$fallbackLocale]);\n                    }\n                }\n            }\n\n            $this->localTranslator = $translator;\n        }\n\n        return $this;\n    }\n\n    /**\n     * Get the current translator locale.\n     *\n     * @return string\n     */\n    public static function getLocale(): string\n    {\n        return static::getLocaleAwareTranslator()->getLocale();\n    }\n\n    /**\n     * Set the current translator locale and indicate if the source locale file exists.\n     * Pass 'auto' as locale to use the closest language to the current LC_TIME locale.\n     *\n     * @param string $locale locale ex. en\n     */\n    public static function setLocale(string $locale): void\n    {\n        static::getLocaleAwareTranslator()->setLocale($locale);\n    }\n\n    /**\n     * Set the fallback locale.\n     *\n     * @see https://symfony.com/doc/current/components/translation.html#fallback-locales\n     *\n     * @param string $locale\n     */\n    public static function setFallbackLocale(string $locale): void\n    {\n        $translator = static::getTranslator();\n\n        if (method_exists($translator, 'setFallbackLocales')) {\n            $translator->setFallbackLocales([$locale]);\n\n            if ($translator instanceof Translator) {\n                $preferredLocale = $translator->getLocale();\n                $fallbackMessages = [];\n                $preferredMessages = $translator->getMessages($preferredLocale);\n\n                foreach (Translator::get($locale)->getMessages()[$locale] ?? [] as $key => $value) {\n                    if (\n                        preg_match('/^(?:a_)?(.+)_(?:standalone|ago|from_now|before|after|short|min)$/', $key, $match)\n                        && isset($preferredMessages[$match[1]])\n                    ) {\n                        continue;\n                    }\n\n                    $fallbackMessages[$key] = $value;\n                }\n\n                $translator->setMessages($preferredLocale, array_replace_recursive(\n                    $translator->getMessages()[$locale] ?? [],\n                    $fallbackMessages,\n                    $preferredMessages,\n                ));\n            }\n        }\n    }\n\n    /**\n     * Get the fallback locale.\n     *\n     * @see https://symfony.com/doc/current/components/translation.html#fallback-locales\n     */\n    public static function getFallbackLocale(): ?string\n    {\n        $translator = static::getTranslator();\n\n        if (method_exists($translator, 'getFallbackLocales')) {\n            return $translator->getFallbackLocales()[0] ?? null;\n        }\n\n        return null;\n    }\n\n    /**\n     * Set the current locale to the given, execute the passed function, reset the locale to previous one,\n     * then return the result of the closure (or null if the closure was void).\n     *\n     * @param string   $locale locale ex. en\n     * @param callable $func\n     *\n     * @return mixed\n     */\n    public static function executeWithLocale(string $locale, callable $func): mixed\n    {\n        $currentLocale = static::getLocale();\n        static::setLocale($locale);\n        $newLocale = static::getLocale();\n        $result = $func(\n            $newLocale === 'en' && strtolower(substr((string) $locale, 0, 2)) !== 'en'\n                ? false\n                : $newLocale,\n            static::getTranslator(),\n        );\n        static::setLocale($currentLocale);\n\n        return $result;\n    }\n\n    /**\n     * Returns true if the given locale is internally supported and has short-units support.\n     * Support is considered enabled if either year, day or hour has a short variant translated.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasShortUnits(string $locale): bool\n    {\n        return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) {\n            return ($newLocale && (($y = static::translateWith($translator, 'y')) !== 'y' && $y !== static::translateWith($translator, 'year'))) || (\n                ($y = static::translateWith($translator, 'd')) !== 'd' &&\n                    $y !== static::translateWith($translator, 'day')\n            ) || (\n                ($y = static::translateWith($translator, 'h')) !== 'h' &&\n                    $y !== static::translateWith($translator, 'hour')\n            );\n        });\n    }\n\n    /**\n     * Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after).\n     * Support is considered enabled if the 4 sentences are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasDiffSyntax(string $locale): bool\n    {\n        return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) {\n            if (!$newLocale) {\n                return false;\n            }\n\n            foreach (['ago', 'from_now', 'before', 'after'] as $key) {\n                if ($translator instanceof TranslatorBagInterface &&\n                    self::getFromCatalogue($translator, $translator->getCatalogue($newLocale), $key) instanceof Closure\n                ) {\n                    continue;\n                }\n\n                if ($translator->trans($key) === $key) {\n                    return false;\n                }\n            }\n\n            return true;\n        });\n    }\n\n    /**\n     * Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow).\n     * Support is considered enabled if the 3 words are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasDiffOneDayWords(string $locale): bool\n    {\n        return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) {\n            return $newLocale &&\n                $translator->trans('diff_now') !== 'diff_now' &&\n                $translator->trans('diff_yesterday') !== 'diff_yesterday' &&\n                $translator->trans('diff_tomorrow') !== 'diff_tomorrow';\n        });\n    }\n\n    /**\n     * Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow).\n     * Support is considered enabled if the 2 words are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasDiffTwoDayWords(string $locale): bool\n    {\n        return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) {\n            return $newLocale &&\n                $translator->trans('diff_before_yesterday') !== 'diff_before_yesterday' &&\n                $translator->trans('diff_after_tomorrow') !== 'diff_after_tomorrow';\n        });\n    }\n\n    /**\n     * Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X).\n     * Support is considered enabled if the 4 sentences are translated in the given locale.\n     *\n     * @param string $locale locale ex. en\n     *\n     * @return bool\n     */\n    public static function localeHasPeriodSyntax($locale)\n    {\n        return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) {\n            return $newLocale &&\n                $translator->trans('period_recurrences') !== 'period_recurrences' &&\n                $translator->trans('period_interval') !== 'period_interval' &&\n                $translator->trans('period_start_date') !== 'period_start_date' &&\n                $translator->trans('period_end_date') !== 'period_end_date';\n        });\n    }\n\n    /**\n     * Returns the list of internally available locales and already loaded custom locales.\n     * (It will ignore custom translator dynamic loading.)\n     *\n     * @return array\n     */\n    public static function getAvailableLocales(): array\n    {\n        $translator = static::getLocaleAwareTranslator();\n\n        return $translator instanceof Translator\n            ? $translator->getAvailableLocales()\n            : [$translator->getLocale()];\n    }\n\n    /**\n     * Returns list of Language object for each available locale. This object allow you to get the ISO name, native\n     * name, region and variant of the locale.\n     *\n     * @return Language[]\n     */\n    public static function getAvailableLocalesInfo(): array\n    {\n        $languages = [];\n\n        foreach (static::getAvailableLocales() as $id) {\n            $languages[$id] = new Language($id);\n        }\n\n        return $languages;\n    }\n\n    /**\n     * Get the locale of a given translator.\n     *\n     * If null or omitted, current local translator is used.\n     * If no local translator is in use, current global translator is used.\n     */\n    protected function getTranslatorLocale($translator = null): ?string\n    {\n        if (\\func_num_args() === 0) {\n            $translator = $this->getLocalTranslator();\n        }\n\n        $translator = static::getLocaleAwareTranslator($translator);\n\n        return $translator?->getLocale();\n    }\n\n    /**\n     * Throw an error if passed object is not LocaleAwareInterface.\n     *\n     * @param LocaleAwareInterface|null $translator\n     *\n     * @return LocaleAwareInterface|null\n     */\n    protected static function getLocaleAwareTranslator($translator = null)\n    {\n        if (\\func_num_args() === 0) {\n            $translator = static::getTranslator();\n        }\n\n        if ($translator && !($translator instanceof LocaleAwareInterface || method_exists($translator, 'getLocale'))) {\n            throw new NotLocaleAwareException($translator); // @codeCoverageIgnore\n        }\n\n        return $translator;\n    }\n\n    /**\n     * @param mixed                                                    $translator\n     * @param \\Symfony\\Component\\Translation\\MessageCatalogueInterface $catalogue\n     *\n     * @return mixed\n     */\n    private static function getFromCatalogue($translator, $catalogue, string $id, string $domain = 'messages')\n    {\n        return $translator instanceof TranslatorStrongTypeInterface\n            ? $translator->getFromCatalogue($catalogue, $id, $domain)\n            : $catalogue->get($id, $domain); // @codeCoverageIgnore\n    }\n\n    /**\n     * Return the word cleaned from its translation codes.\n     *\n     * @param string $word\n     *\n     * @return string\n     */\n    private static function cleanWordFromTranslationString($word)\n    {\n        $word = str_replace([':count', '%count', ':time'], '', $word);\n        $word = strtr($word, ['’' => \"'\"]);\n        $word = preg_replace(\n            '/\\{(?:-?\\d+(?:\\.\\d+)?|-?Inf)(?:,(?:-?\\d+|-?Inf))?}|[\\[\\]](?:-?\\d+(?:\\.\\d+)?|-?Inf)(?:,(?:-?\\d+|-?Inf))?[\\[\\]]/',\n            '',\n            $word,\n        );\n\n        return trim($word);\n    }\n\n    /**\n     * Translate a list of words.\n     *\n     * @param string[] $keys     keys to translate.\n     * @param string[] $messages messages bag handling translations.\n     * @param string   $key      'to' (to get the translation) or 'from' (to get the detection RegExp pattern).\n     *\n     * @return string[]\n     */\n    private static function translateWordsByKeys($keys, $messages, $key): array\n    {\n        return array_map(function ($wordKey) use ($messages, $key) {\n            $message = $key === 'from' && isset($messages[$wordKey.'_regexp'])\n                ? $messages[$wordKey.'_regexp']\n                : ($messages[$wordKey] ?? null);\n\n            if (!$message) {\n                return '>>DO NOT REPLACE<<';\n            }\n\n            $parts = explode('|', $message);\n\n            return $key === 'to'\n                ? self::cleanWordFromTranslationString(end($parts))\n                : '(?:'.implode('|', array_map(static::cleanWordFromTranslationString(...), $parts)).')';\n        }, $keys);\n    }\n\n    /**\n     * Get an array of translations based on the current date.\n     *\n     * @param callable $translation\n     * @param int      $length\n     * @param string   $timeString\n     *\n     * @return string[]\n     */\n    private static function getTranslationArray($translation, $length, $timeString): array\n    {\n        $filler = '>>DO NOT REPLACE<<';\n\n        if (\\is_array($translation)) {\n            return array_pad($translation, $length, $filler);\n        }\n\n        $list = [];\n        $date = static::now();\n\n        for ($i = 0; $i < $length; $i++) {\n            $list[] = $translation($date, $timeString, $i) ?? $filler;\n        }\n\n        return $list;\n    }\n\n    private static function replaceOrdinalWords(string $timeString, array $ordinalWords): string\n    {\n        return preg_replace_callback('/(?<![a-z])[a-z]+(?![a-z])/i', function (array $match) use ($ordinalWords) {\n            return $ordinalWords[mb_strtolower($match[0])] ?? $match[0];\n        }, $timeString);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Macro.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\FactoryImmutable;\n\n/**\n * Trait Macros.\n *\n * Allows users to register macros within the Carbon class.\n */\ntrait Macro\n{\n    use Mixin;\n\n    /**\n     * Register a custom macro.\n     *\n     * Pass null macro to remove it.\n     *\n     * @example\n     * ```\n     * $userSettings = [\n     *   'locale' => 'pt',\n     *   'timezone' => 'America/Sao_Paulo',\n     * ];\n     * Carbon::macro('userFormat', function () use ($userSettings) {\n     *   return $this->copy()->locale($userSettings['locale'])->tz($userSettings['timezone'])->calendar();\n     * });\n     * echo Carbon::yesterday()->hours(11)->userFormat();\n     * ```\n     *\n     * @param-closure-this static $macro\n     */\n    public static function macro(string $name, ?callable $macro): void\n    {\n        FactoryImmutable::getDefaultInstance()->macro($name, $macro);\n    }\n\n    /**\n     * Remove all macros and generic macros.\n     */\n    public static function resetMacros(): void\n    {\n        FactoryImmutable::getDefaultInstance()->resetMacros();\n    }\n\n    /**\n     * Register a custom macro.\n     *\n     * @param callable $macro\n     * @param int      $priority marco with higher priority is tried first\n     *\n     * @return void\n     */\n    public static function genericMacro(callable $macro, int $priority = 0): void\n    {\n        FactoryImmutable::getDefaultInstance()->genericMacro($macro, $priority);\n    }\n\n    /**\n     * Checks if macro is registered globally.\n     *\n     * @param string $name\n     *\n     * @return bool\n     */\n    public static function hasMacro(string $name): bool\n    {\n        return FactoryImmutable::getInstance()->hasMacro($name);\n    }\n\n    /**\n     * Get the raw callable macro registered globally for a given name.\n     */\n    public static function getMacro(string $name): ?callable\n    {\n        return FactoryImmutable::getInstance()->getMacro($name);\n    }\n\n    /**\n     * Checks if macro is registered globally or locally.\n     */\n    public function hasLocalMacro(string $name): bool\n    {\n        return ($this->localMacros && isset($this->localMacros[$name])) || $this->transmitFactory(\n            static fn () => static::hasMacro($name),\n        );\n    }\n\n    /**\n     * Get the raw callable macro registered globally or locally for a given name.\n     */\n    public function getLocalMacro(string $name): ?callable\n    {\n        return ($this->localMacros ?? [])[$name] ?? $this->transmitFactory(\n            static fn () => static::getMacro($name),\n        );\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/MagicParameter.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\n/**\n * Trait MagicParameter.\n *\n * Allows to retrieve parameter in magic calls by index or name.\n */\ntrait MagicParameter\n{\n    private function getMagicParameter(array $parameters, int $index, string $key, $default)\n    {\n        if (\\array_key_exists($index, $parameters)) {\n            return $parameters[$index];\n        }\n\n        if (\\array_key_exists($key, $parameters)) {\n            return $parameters[$key];\n        }\n\n        return $default;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Mixin.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Closure;\nuse Generator;\nuse ReflectionClass;\nuse ReflectionException;\nuse ReflectionMethod;\nuse ReflectionNamedType;\nuse Throwable;\n\n/**\n * Trait Mixin.\n *\n * Allows mixing in entire classes with multiple macros.\n */\ntrait Mixin\n{\n    /**\n     * Stack of macro instance contexts.\n     */\n    protected static array $macroContextStack = [];\n\n    /**\n     * Mix another object into the class.\n     *\n     * @example\n     * ```\n     * Carbon::mixin(new class {\n     *   public function addMoon() {\n     *     return function () {\n     *       return $this->addDays(30);\n     *     };\n     *   }\n     *   public function subMoon() {\n     *     return function () {\n     *       return $this->subDays(30);\n     *     };\n     *   }\n     * });\n     * $fullMoon = Carbon::create('2018-12-22');\n     * $nextFullMoon = $fullMoon->addMoon();\n     * $blackMoon = Carbon::create('2019-01-06');\n     * $previousBlackMoon = $blackMoon->subMoon();\n     * echo \"$nextFullMoon\\n\";\n     * echo \"$previousBlackMoon\\n\";\n     * ```\n     *\n     * @throws ReflectionException\n     */\n    public static function mixin(object|string $mixin): void\n    {\n        \\is_string($mixin) && trait_exists($mixin)\n            ? self::loadMixinTrait($mixin)\n            : self::loadMixinClass($mixin);\n    }\n\n    /**\n     * @throws ReflectionException\n     */\n    private static function loadMixinClass(object|string $mixin): void\n    {\n        $methods = (new ReflectionClass($mixin))->getMethods(\n            ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PROTECTED,\n        );\n\n        foreach ($methods as $method) {\n            if (self::cannotBeAMixinMethod($method)) {\n                continue;\n            }\n\n            $macro = $method->invoke($mixin);\n\n            if (\\is_callable($macro)) {\n                static::macro($method->name, $macro);\n            }\n        }\n    }\n\n    private static function cannotBeAMixinMethod(ReflectionMethod $method): bool\n    {\n        if ($method->isConstructor() || $method->isDestructor()) {\n            return true;\n        }\n\n        $returnType = $method->getReturnType();\n\n        if ($returnType instanceof ReflectionNamedType) {\n            $returnedTypeName = $returnType->getName();\n\n            if ($returnType->isBuiltin()) {\n                return !\\in_array($returnedTypeName, [\n                    'callable',\n                    'object', // could have __invoke\n                    'array', // could be [MyClass::class, 'myMethod']\n                    'mixed', // could be one of the above\n                    // The other builtin types cannot be callable, so we can skip invoking them\n                ], true);\n            }\n\n            // If it returns a non-invokable object, it cannot be a mixin method\n            if (class_exists($returnedTypeName)) {\n                return !is_a($returnedTypeName, Closure::class, true) && !\\is_callable([$returnedTypeName, '__invoke']);\n            }\n        }\n\n        return false;\n    }\n\n    private static function loadMixinTrait(string $trait): void\n    {\n        $context = eval(self::getAnonymousClassCodeForTrait($trait));\n        $className = \\get_class($context);\n        $baseClass = static::class;\n\n        foreach (self::getMixableMethods($context) as $name) {\n            $closureBase = Closure::fromCallable([$context, $name]);\n\n            static::macro($name, function (...$parameters) use ($closureBase, $className, $baseClass) {\n                $downContext = isset($this) ? ($this) : new $baseClass();\n                $context = isset($this) ? $this->cast($className) : new $className();\n\n                try {\n                    // @ is required to handle error if not converted into exceptions\n                    $closure = @$closureBase->bindTo($context);\n                } catch (Throwable) { // @codeCoverageIgnore\n                    $closure = $closureBase; // @codeCoverageIgnore\n                }\n\n                // in case of errors not converted into exceptions\n                $closure = $closure ?: $closureBase;\n\n                $result = $closure(...$parameters);\n\n                if (!($result instanceof $className)) {\n                    return $result;\n                }\n\n                if ($downContext instanceof CarbonInterface && $result instanceof CarbonInterface) {\n                    if ($context !== $result) {\n                        $downContext = $downContext->copy();\n                    }\n\n                    return $downContext\n                        ->setTimezone($result->getTimezone())\n                        ->modify($result->format('Y-m-d H:i:s.u'))\n                        ->settings($result->getSettings());\n                }\n\n                if ($downContext instanceof CarbonInterval && $result instanceof CarbonInterval) {\n                    if ($context !== $result) {\n                        $downContext = $downContext->copy();\n                    }\n\n                    $downContext->copyProperties($result);\n                    self::copyStep($downContext, $result);\n                    self::copyNegativeUnits($downContext, $result);\n\n                    return $downContext->settings($result->getSettings());\n                }\n\n                if ($downContext instanceof CarbonPeriod && $result instanceof CarbonPeriod) {\n                    if ($context !== $result) {\n                        $downContext = $downContext->copy();\n                    }\n\n                    return $downContext\n                        ->setDates($result->getStartDate(), $result->getEndDate())\n                        ->setRecurrences($result->getRecurrences())\n                        ->setOptions($result->getOptions())\n                        ->settings($result->getSettings());\n                }\n\n                return $result;\n            });\n        }\n    }\n\n    private static function getAnonymousClassCodeForTrait(string $trait): string\n    {\n        return 'return new class() extends '.static::class.' {use '.$trait.';};';\n    }\n\n    private static function getMixableMethods(self $context): Generator\n    {\n        foreach (get_class_methods($context) as $name) {\n            if (method_exists(static::class, $name)) {\n                continue;\n            }\n\n            yield $name;\n        }\n    }\n\n    /**\n     * Stack a Carbon context from inside calls of self::this() and execute a given action.\n     */\n    protected static function bindMacroContext(?self $context, callable $callable): mixed\n    {\n        static::$macroContextStack[] = $context;\n\n        try {\n            return $callable();\n        } finally {\n            array_pop(static::$macroContextStack);\n        }\n    }\n\n    /**\n     * Return the current context from inside a macro callee or a null if static.\n     */\n    protected static function context(): ?static\n    {\n        return end(static::$macroContextStack) ?: null;\n    }\n\n    /**\n     * Return the current context from inside a macro callee or a new one if static.\n     */\n    protected static function this(): static\n    {\n        return end(static::$macroContextStack) ?: new static();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Modifiers.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse ReturnTypeWillChange;\n\n/**\n * Trait Modifiers.\n *\n * Returns dates relative to current date using modifier short-hand.\n */\ntrait Modifiers\n{\n    /**\n     * Midday/noon hour.\n     *\n     * @var int\n     */\n    protected static $midDayAt = 12;\n\n    /**\n     * get midday/noon hour\n     *\n     * @return int\n     */\n    public static function getMidDayAt()\n    {\n        return static::$midDayAt;\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather consider mid-day is always 12pm, then if you need to test if it's an other\n     *             hour, test it explicitly:\n     *                 $date->format('G') == 13\n     *             or to set explicitly to a given hour:\n     *                 $date->setTime(13, 0, 0, 0)\n     *\n     * Set midday/noon hour\n     *\n     * @param int $hour midday hour\n     *\n     * @return void\n     */\n    public static function setMidDayAt($hour)\n    {\n        static::$midDayAt = $hour;\n    }\n\n    /**\n     * Modify to midday, default to self::$midDayAt\n     *\n     * @return static\n     */\n    public function midDay()\n    {\n        return $this->setTime(static::$midDayAt, 0, 0, 0);\n    }\n\n    /**\n     * Modify to the next occurrence of a given modifier such as a day of\n     * the week. If no modifier is provided, modify to the next occurrence\n     * of the current day of the week. Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param string|int|null $modifier\n     *\n     * @return static\n     */\n    public function next($modifier = null)\n    {\n        if ($modifier === null) {\n            $modifier = $this->dayOfWeek;\n        }\n\n        return $this->change(\n            'next '.(\\is_string($modifier) ? $modifier : static::$days[$modifier]),\n        );\n    }\n\n    /**\n     * Go forward or backward to the next week- or weekend-day.\n     *\n     * @param bool $weekday\n     * @param bool $forward\n     *\n     * @return static\n     */\n    private function nextOrPreviousDay($weekday = true, $forward = true)\n    {\n        /** @var CarbonInterface $date */\n        $date = $this;\n        $step = $forward ? 1 : -1;\n\n        do {\n            $date = $date->addDays($step);\n        } while ($weekday ? $date->isWeekend() : $date->isWeekday());\n\n        return $date;\n    }\n\n    /**\n     * Go forward to the next weekday.\n     *\n     * @return static\n     */\n    public function nextWeekday()\n    {\n        return $this->nextOrPreviousDay();\n    }\n\n    /**\n     * Go backward to the previous weekday.\n     *\n     * @return static\n     */\n    public function previousWeekday()\n    {\n        return $this->nextOrPreviousDay(true, false);\n    }\n\n    /**\n     * Go forward to the next weekend day.\n     *\n     * @return static\n     */\n    public function nextWeekendDay()\n    {\n        return $this->nextOrPreviousDay(false);\n    }\n\n    /**\n     * Go backward to the previous weekend day.\n     *\n     * @return static\n     */\n    public function previousWeekendDay()\n    {\n        return $this->nextOrPreviousDay(false, false);\n    }\n\n    /**\n     * Modify to the previous occurrence of a given modifier such as a day of\n     * the week. If no dayOfWeek is provided, modify to the previous occurrence\n     * of the current day of the week. Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param string|int|null $modifier\n     *\n     * @return static\n     */\n    public function previous($modifier = null)\n    {\n        if ($modifier === null) {\n            $modifier = $this->dayOfWeek;\n        }\n\n        return $this->change(\n            'last '.(\\is_string($modifier) ? $modifier : static::$days[$modifier]),\n        );\n    }\n\n    /**\n     * Modify to the first occurrence of a given day of the week\n     * in the current month. If no dayOfWeek is provided, modify to the\n     * first day of the current month.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek\n     *\n     * @return static\n     */\n    public function firstOfMonth($dayOfWeek = null)\n    {\n        $date = $this->startOfDay();\n\n        if ($dayOfWeek === null) {\n            return $date->day(1);\n        }\n\n        return $date->modify('first '.static::$days[$dayOfWeek].' of '.$date->rawFormat('F').' '.$date->year);\n    }\n\n    /**\n     * Modify to the last occurrence of a given day of the week\n     * in the current month. If no dayOfWeek is provided, modify to the\n     * last day of the current month.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek\n     *\n     * @return static\n     */\n    public function lastOfMonth($dayOfWeek = null)\n    {\n        $date = $this->startOfDay();\n\n        if ($dayOfWeek === null) {\n            return $date->day($date->daysInMonth);\n        }\n\n        return $date->modify('last '.static::$days[$dayOfWeek].' of '.$date->rawFormat('F').' '.$date->year);\n    }\n\n    /**\n     * Modify to the given occurrence of a given day of the week\n     * in the current month. If the calculated occurrence is outside the scope\n     * of the current month, then return false and no modifications are made.\n     * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int $nth\n     * @param int $dayOfWeek\n     *\n     * @return mixed\n     */\n    public function nthOfMonth($nth, $dayOfWeek)\n    {\n        $date = $this->avoidMutation()->firstOfMonth();\n        $check = $date->rawFormat('Y-m');\n        $date = $date->modify('+'.$nth.' '.static::$days[$dayOfWeek]);\n\n        return $date->rawFormat('Y-m') === $check ? $this->modify((string) $date) : false;\n    }\n\n    /**\n     * Modify to the first occurrence of a given day of the week\n     * in the current quarter. If no dayOfWeek is provided, modify to the\n     * first day of the current quarter.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function firstOfQuarter($dayOfWeek = null)\n    {\n        return $this->setDate($this->year, $this->quarter * static::MONTHS_PER_QUARTER - 2, 1)->firstOfMonth($dayOfWeek);\n    }\n\n    /**\n     * Modify to the last occurrence of a given day of the week\n     * in the current quarter. If no dayOfWeek is provided, modify to the\n     * last day of the current quarter.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function lastOfQuarter($dayOfWeek = null)\n    {\n        return $this->setDate($this->year, $this->quarter * static::MONTHS_PER_QUARTER, 1)->lastOfMonth($dayOfWeek);\n    }\n\n    /**\n     * Modify to the given occurrence of a given day of the week\n     * in the current quarter. If the calculated occurrence is outside the scope\n     * of the current quarter, then return false and no modifications are made.\n     * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int $nth\n     * @param int $dayOfWeek\n     *\n     * @return mixed\n     */\n    public function nthOfQuarter($nth, $dayOfWeek)\n    {\n        $date = $this->avoidMutation()->day(1)->month($this->quarter * static::MONTHS_PER_QUARTER);\n        $lastMonth = $date->month;\n        $year = $date->year;\n        $date = $date->firstOfQuarter()->modify('+'.$nth.' '.static::$days[$dayOfWeek]);\n\n        return ($lastMonth < $date->month || $year !== $date->year) ? false : $this->modify((string) $date);\n    }\n\n    /**\n     * Modify to the first occurrence of a given day of the week\n     * in the current year. If no dayOfWeek is provided, modify to the\n     * first day of the current year.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function firstOfYear($dayOfWeek = null)\n    {\n        return $this->month(1)->firstOfMonth($dayOfWeek);\n    }\n\n    /**\n     * Modify to the last occurrence of a given day of the week\n     * in the current year. If no dayOfWeek is provided, modify to the\n     * last day of the current year.  Use the supplied constants\n     * to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int|null $dayOfWeek day of the week default null\n     *\n     * @return static\n     */\n    public function lastOfYear($dayOfWeek = null)\n    {\n        return $this->month(static::MONTHS_PER_YEAR)->lastOfMonth($dayOfWeek);\n    }\n\n    /**\n     * Modify to the given occurrence of a given day of the week\n     * in the current year. If the calculated occurrence is outside the scope\n     * of the current year, then return false and no modifications are made.\n     * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY.\n     *\n     * @param int $nth\n     * @param int $dayOfWeek\n     *\n     * @return mixed\n     */\n    public function nthOfYear($nth, $dayOfWeek)\n    {\n        $date = $this->avoidMutation()->firstOfYear()->modify('+'.$nth.' '.static::$days[$dayOfWeek]);\n\n        return $this->year === $date->year ? $this->modify((string) $date) : false;\n    }\n\n    /**\n     * Modify the current instance to the average of a given instance (default now) and the current instance\n     * (second-precision).\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|null $date\n     *\n     * @return static\n     */\n    public function average($date = null)\n    {\n        return $this->addRealMicroseconds((int) ($this->diffInMicroseconds($this->resolveCarbon($date), false) / 2));\n    }\n\n    /**\n     * Get the closest date from the instance (second-precision).\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date1\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date2\n     *\n     * @return static\n     */\n    public function closest($date1, $date2)\n    {\n        return $this->diffInMicroseconds($date1, true) < $this->diffInMicroseconds($date2, true) ? $date1 : $date2;\n    }\n\n    /**\n     * Get the farthest date from the instance (second-precision).\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date1\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date2\n     *\n     * @return static\n     */\n    public function farthest($date1, $date2)\n    {\n        return $this->diffInMicroseconds($date1, true) > $this->diffInMicroseconds($date2, true) ? $date1 : $date2;\n    }\n\n    /**\n     * Get the minimum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @return static\n     */\n    public function min($date = null)\n    {\n        $date = $this->resolveCarbon($date);\n\n        return $this->lt($date) ? $this : $date;\n    }\n\n    /**\n     * Get the minimum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @see min()\n     *\n     * @return static\n     */\n    public function minimum($date = null)\n    {\n        return $this->min($date);\n    }\n\n    /**\n     * Get the maximum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @return static\n     */\n    public function max($date = null)\n    {\n        $date = $this->resolveCarbon($date);\n\n        return $this->gt($date) ? $this : $date;\n    }\n\n    /**\n     * Get the maximum instance between a given instance (default now) and the current instance.\n     *\n     * @param \\Carbon\\Carbon|\\DateTimeInterface|mixed $date\n     *\n     * @see max()\n     *\n     * @return static\n     */\n    public function maximum($date = null)\n    {\n        return $this->max($date);\n    }\n\n    /**\n     * Calls \\DateTime::modify if mutable or \\DateTimeImmutable::modify else.\n     *\n     * @see https://php.net/manual/en/datetime.modify.php\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public function modify($modify)\n    {\n        return parent::modify((string) $modify)\n            ?: throw new InvalidFormatException('Could not modify with: '.var_export($modify, true));\n    }\n\n    /**\n     * Similar to native modify() method of DateTime but can handle more grammars.\n     *\n     * @example\n     * ```\n     * echo Carbon::now()->change('next 2pm');\n     * ```\n     *\n     * @link https://php.net/manual/en/datetime.modify.php\n     *\n     * @param string $modifier\n     *\n     * @return static\n     */\n    public function change($modifier)\n    {\n        return $this->modify(preg_replace_callback('/^(next|previous|last)\\s+(\\d{1,2}(h|am|pm|:\\d{1,2}(:\\d{1,2})?))$/i', function ($match) {\n            $match[2] = str_replace('h', ':00', $match[2]);\n            $test = $this->avoidMutation()->modify($match[2]);\n            $method = $match[1] === 'next' ? 'lt' : 'gt';\n            $match[1] = $test->$method($this) ? $match[1].' day' : 'today';\n\n            return $match[1].' '.$match[2];\n        }, strtr(trim($modifier), [\n            ' at ' => ' ',\n            'just now' => 'now',\n            'after tomorrow' => 'tomorrow +1 day',\n            'before yesterday' => 'yesterday -1 day',\n        ])));\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Mutability.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\n\n/**\n * Trait Mutability.\n *\n * Utils to know if the current object is mutable or immutable and convert it.\n */\ntrait Mutability\n{\n    use Cast;\n\n    /**\n     * Returns true if the current class/instance is mutable.\n     */\n    public static function isMutable(): bool\n    {\n        return false;\n    }\n\n    /**\n     * Returns true if the current class/instance is immutable.\n     */\n    public static function isImmutable(): bool\n    {\n        return !static::isMutable();\n    }\n\n    /**\n     * Return a mutable copy of the instance.\n     */\n    public function toMutable(): Carbon\n    {\n        return $this->cast(Carbon::class);\n    }\n\n    /**\n     * Return an immutable copy of the instance.\n     */\n    public function toImmutable(): CarbonImmutable\n    {\n        // Immutable objects are fine as is (uncloned)\n        if ($this::class === CarbonImmutable::class) {\n            return $this;\n        }\n\n        return $this->cast(CarbonImmutable::class);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/ObjectInitialisation.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\ntrait ObjectInitialisation\n{\n    /**\n     * True when parent::__construct has been called.\n     *\n     * @var string\n     */\n    protected $constructedObjectId;\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Options.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse DateTimeInterface;\nuse Throwable;\n\n/**\n * Trait Options.\n *\n * Embed base methods to change settings of Carbon classes.\n *\n * Depends on the following methods:\n *\n * @method static shiftTimezone($timezone) Set the timezone\n */\ntrait Options\n{\n    use StaticOptions;\n    use Localization;\n\n    /**\n     * Indicates if months should be calculated with overflow.\n     * Specific setting.\n     */\n    protected ?bool $localMonthsOverflow = null;\n\n    /**\n     * Indicates if years should be calculated with overflow.\n     * Specific setting.\n     */\n    protected ?bool $localYearsOverflow = null;\n\n    /**\n     * Indicates if the strict mode is in use.\n     * Specific setting.\n     */\n    protected ?bool $localStrictModeEnabled = null;\n\n    /**\n     * Options for diffForHumans and forHumans methods.\n     */\n    protected ?int $localHumanDiffOptions = null;\n\n    /**\n     * Format to use on string cast.\n     *\n     * @var string|callable|null\n     */\n    protected $localToStringFormat = null;\n\n    /**\n     * Format to use on JSON serialization.\n     *\n     * @var string|callable|null\n     */\n    protected $localSerializer = null;\n\n    /**\n     * Instance-specific macros.\n     */\n    protected ?array $localMacros = null;\n\n    /**\n     * Instance-specific generic macros.\n     */\n    protected ?array $localGenericMacros = null;\n\n    /**\n     * Function to call instead of format.\n     *\n     * @var string|callable|null\n     */\n    protected $localFormatFunction = null;\n\n    /**\n     * Set specific options.\n     *  - strictMode: true|false|null\n     *  - monthOverflow: true|false|null\n     *  - yearOverflow: true|false|null\n     *  - humanDiffOptions: int|null\n     *  - toStringFormat: string|Closure|null\n     *  - toJsonFormat: string|Closure|null\n     *  - locale: string|null\n     *  - timezone: \\DateTimeZone|string|int|null\n     *  - macros: array|null\n     *  - genericMacros: array|null\n     *\n     * @param array $settings\n     *\n     * @return $this|static\n     */\n    public function settings(array $settings): static\n    {\n        $this->localStrictModeEnabled = $settings['strictMode'] ?? null;\n        $this->localMonthsOverflow = $settings['monthOverflow'] ?? null;\n        $this->localYearsOverflow = $settings['yearOverflow'] ?? null;\n        $this->localHumanDiffOptions = $settings['humanDiffOptions'] ?? null;\n        $this->localToStringFormat = $settings['toStringFormat'] ?? null;\n        $this->localSerializer = $settings['toJsonFormat'] ?? null;\n        $this->localMacros = $settings['macros'] ?? null;\n        $this->localGenericMacros = $settings['genericMacros'] ?? null;\n        $this->localFormatFunction = $settings['formatFunction'] ?? null;\n\n        if (isset($settings['locale'])) {\n            $locales = $settings['locale'];\n\n            if (!\\is_array($locales)) {\n                $locales = [$locales];\n            }\n\n            $this->locale(...$locales);\n        } elseif (isset($settings['translator']) && property_exists($this, 'localTranslator')) {\n            $this->localTranslator = $settings['translator'];\n        }\n\n        if (isset($settings['innerTimezone'])) {\n            return $this->setTimezone($settings['innerTimezone']);\n        }\n\n        if (isset($settings['timezone'])) {\n            return $this->shiftTimezone($settings['timezone']);\n        }\n\n        return $this;\n    }\n\n    /**\n     * Returns current local settings.\n     */\n    public function getSettings(): array\n    {\n        $settings = [];\n        $map = [\n            'localStrictModeEnabled' => 'strictMode',\n            'localMonthsOverflow' => 'monthOverflow',\n            'localYearsOverflow' => 'yearOverflow',\n            'localHumanDiffOptions' => 'humanDiffOptions',\n            'localToStringFormat' => 'toStringFormat',\n            'localSerializer' => 'toJsonFormat',\n            'localMacros' => 'macros',\n            'localGenericMacros' => 'genericMacros',\n            'locale' => 'locale',\n            'tzName' => 'timezone',\n            'localFormatFunction' => 'formatFunction',\n        ];\n\n        foreach ($map as $property => $key) {\n            $value = $this->$property ?? null;\n\n            if ($value !== null && ($key !== 'locale' || $value !== 'en' || $this->localTranslator)) {\n                $settings[$key] = $value;\n            }\n        }\n\n        return $settings;\n    }\n\n    /**\n     * Show truthy properties on var_dump().\n     */\n    public function __debugInfo(): array\n    {\n        $infos = array_filter(get_object_vars($this), static function ($var) {\n            return $var;\n        });\n\n        foreach (['dumpProperties', 'constructedObjectId', 'constructed', 'originalInput'] as $property) {\n            if (isset($infos[$property])) {\n                unset($infos[$property]);\n            }\n        }\n\n        $this->addExtraDebugInfos($infos);\n\n        foreach ([\"\\0*\\0\", ''] as $prefix) {\n            $key = $prefix.'carbonRecurrences';\n\n            if (\\array_key_exists($key, $infos)) {\n                $infos['recurrences'] = $infos[$key];\n                unset($infos[$key]);\n            }\n        }\n\n        return $infos;\n    }\n\n    protected function isLocalStrictModeEnabled(): bool\n    {\n        return $this->localStrictModeEnabled\n            ?? $this->transmitFactory(static fn () => static::isStrictModeEnabled());\n    }\n\n    protected function addExtraDebugInfos(array &$infos): void\n    {\n        if ($this instanceof DateTimeInterface) {\n            try {\n                $infos['date'] ??= $this->format(CarbonInterface::MOCK_DATETIME_FORMAT);\n                $infos['timezone'] ??= $this->tzName ?? $this->timezoneSetting ?? $this->timezone ?? null;\n            } catch (Throwable) {\n                // noop\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Rounding.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Carbon\\WeekDay;\nuse DateInterval;\n\n/**\n * Trait Rounding.\n *\n * Round, ceil, floor units.\n *\n * Depends on the following methods:\n *\n * @method static copy()\n * @method static startOfWeek(int $weekStartsAt = null)\n */\ntrait Rounding\n{\n    use IntervalRounding;\n\n    /**\n     * Round the current instance at the given unit with given precision if specified and the given function.\n     */\n    public function roundUnit(\n        string $unit,\n        DateInterval|string|float|int $precision = 1,\n        callable|string $function = 'round',\n    ): static {\n        $metaUnits = [\n            // @call roundUnit\n            'millennium' => [static::YEARS_PER_MILLENNIUM, 'year'],\n            // @call roundUnit\n            'century' => [static::YEARS_PER_CENTURY, 'year'],\n            // @call roundUnit\n            'decade' => [static::YEARS_PER_DECADE, 'year'],\n            // @call roundUnit\n            'quarter' => [static::MONTHS_PER_QUARTER, 'month'],\n            // @call roundUnit\n            'millisecond' => [1000, 'microsecond'],\n        ];\n        $normalizedUnit = static::singularUnit($unit);\n        $ranges = array_merge(static::getRangesByUnit($this->daysInMonth), [\n            // @call roundUnit\n            'microsecond' => [0, 999999],\n        ]);\n        $factor = 1;\n\n        if ($normalizedUnit === 'week') {\n            $normalizedUnit = 'day';\n            $precision *= static::DAYS_PER_WEEK;\n        }\n\n        if (isset($metaUnits[$normalizedUnit])) {\n            [$factor, $normalizedUnit] = $metaUnits[$normalizedUnit];\n        }\n\n        $precision *= $factor;\n\n        if (!isset($ranges[$normalizedUnit])) {\n            throw new UnknownUnitException($unit);\n        }\n\n        $found = false;\n        $fraction = 0;\n        $arguments = null;\n        $initialValue = null;\n        $factor = $this->year < 0 ? -1 : 1;\n        $changes = [];\n        $minimumInc = null;\n\n        foreach ($ranges as $unit => [$minimum, $maximum]) {\n            if ($normalizedUnit === $unit) {\n                $arguments = [$this->$unit, $minimum];\n                $initialValue = $this->$unit;\n                $fraction = $precision - floor($precision);\n                $found = true;\n\n                continue;\n            }\n\n            if ($found) {\n                $delta = $maximum + 1 - $minimum;\n                $factor /= $delta;\n                $fraction *= $delta;\n                $inc = ($this->$unit - $minimum) * $factor;\n\n                if ($inc !== 0.0) {\n                    $minimumInc = $minimumInc ?? ($arguments[0] / pow(2, 52));\n\n                    // If value is still the same when adding a non-zero increment/decrement,\n                    // it means precision got lost in the addition\n                    if (abs($inc) < $minimumInc) {\n                        $inc = $minimumInc * ($inc < 0 ? -1 : 1);\n                    }\n\n                    // If greater than $precision, assume precision loss caused an overflow\n                    if ($function !== 'floor' || abs($arguments[0] + $inc - $initialValue) >= $precision) {\n                        $arguments[0] += $inc;\n                    }\n                }\n\n                $changes[$unit] = round(\n                    $minimum + ($fraction ? $fraction * $function(($this->$unit - $minimum) / $fraction) : 0),\n                );\n\n                // Cannot use modulo as it lose double precision\n                while ($changes[$unit] >= $delta) {\n                    $changes[$unit] -= $delta;\n                }\n\n                $fraction -= floor($fraction);\n            }\n        }\n\n        [$value, $minimum] = $arguments;\n        $normalizedValue = floor($function(($value - $minimum) / $precision) * $precision + $minimum);\n\n        /** @var CarbonInterface $result */\n        $result = $this;\n\n        foreach ($changes as $unit => $value) {\n            $result = $result->$unit($value);\n        }\n\n        return $result->$normalizedUnit($normalizedValue);\n    }\n\n    /**\n     * Truncate the current instance at the given unit with given precision if specified.\n     */\n    public function floorUnit(string $unit, DateInterval|string|float|int $precision = 1): static\n    {\n        return $this->roundUnit($unit, $precision, 'floor');\n    }\n\n    /**\n     * Ceil the current instance at the given unit with given precision if specified.\n     */\n    public function ceilUnit(string $unit, DateInterval|string|float|int $precision = 1): static\n    {\n        return $this->roundUnit($unit, $precision, 'ceil');\n    }\n\n    /**\n     * Round the current instance second with given precision if specified.\n     */\n    public function round(DateInterval|string|float|int $precision = 1, callable|string $function = 'round'): static\n    {\n        return $this->roundWith($precision, $function);\n    }\n\n    /**\n     * Round the current instance second with given precision if specified.\n     */\n    public function floor(DateInterval|string|float|int $precision = 1): static\n    {\n        return $this->round($precision, 'floor');\n    }\n\n    /**\n     * Ceil the current instance second with given precision if specified.\n     */\n    public function ceil(DateInterval|string|float|int $precision = 1): static\n    {\n        return $this->round($precision, 'ceil');\n    }\n\n    /**\n     * Round the current instance week.\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     */\n    public function roundWeek(WeekDay|int|null $weekStartsAt = null): static\n    {\n        return $this->closest(\n            $this->avoidMutation()->floorWeek($weekStartsAt),\n            $this->avoidMutation()->ceilWeek($weekStartsAt),\n        );\n    }\n\n    /**\n     * Truncate the current instance week.\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     */\n    public function floorWeek(WeekDay|int|null $weekStartsAt = null): static\n    {\n        return $this->startOfWeek($weekStartsAt);\n    }\n\n    /**\n     * Ceil the current instance week.\n     *\n     * @param WeekDay|int|null $weekStartsAt optional start allow you to specify the day of week to use to start the week\n     */\n    public function ceilWeek(WeekDay|int|null $weekStartsAt = null): static\n    {\n        if ($this->isMutable()) {\n            $startOfWeek = $this->avoidMutation()->startOfWeek($weekStartsAt);\n\n            return $startOfWeek != $this ?\n                $this->startOfWeek($weekStartsAt)->addWeek() :\n                $this;\n        }\n\n        $startOfWeek = $this->startOfWeek($weekStartsAt);\n\n        return $startOfWeek != $this ?\n            $startOfWeek->addWeek() :\n            $this->avoidMutation();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Serialization.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\FactoryImmutable;\nuse DateTimeZone;\nuse ReturnTypeWillChange;\nuse Throwable;\n\n/**\n * Trait Serialization.\n *\n * Serialization and JSON stuff.\n *\n * Depends on the following properties:\n *\n * @property int $year\n * @property int $month\n * @property int $daysInMonth\n * @property int $quarter\n *\n * Depends on the following methods:\n *\n * @method string|static locale(string $locale = null, string ...$fallbackLocales)\n * @method string        toJSON()\n */\ntrait Serialization\n{\n    use ObjectInitialisation;\n\n    /**\n     * List of key to use for dump/serialization.\n     *\n     * @var string[]\n     */\n    protected array $dumpProperties = ['date', 'timezone_type', 'timezone'];\n\n    /**\n     * Locale to dump comes here before serialization.\n     *\n     * @var string|null\n     */\n    protected $dumpLocale;\n\n    /**\n     * Embed date properties to dump in a dedicated variables so it won't overlap native\n     * DateTime ones.\n     *\n     * @var array|null\n     */\n    protected $dumpDateProperties;\n\n    /**\n     * Return a serialized string of the instance.\n     */\n    public function serialize(): string\n    {\n        return serialize($this);\n    }\n\n    /**\n     * Create an instance from a serialized string.\n     *\n     * If $value is not from a trusted source, consider using the allowed_classes option to limit\n     * the types of objects that can be built, for instance:\n     *\n     * @example\n     * ```php\n     * $object = Carbon::fromSerialized($value, ['allowed_classes' => [Carbon::class, CarbonImmutable::class]]);\n     * ```\n     *\n     * @param \\Stringable|string $value\n     * @param array              $options example: ['allowed_classes' => [CarbonImmutable::class]]\n     *\n     * @throws InvalidFormatException\n     *\n     * @return static\n     */\n    public static function fromSerialized($value, array $options = []): static\n    {\n        $instance = @unserialize((string) $value, $options);\n\n        if (!$instance instanceof static) {\n            throw new InvalidFormatException(\"Invalid serialized value: $value\");\n        }\n\n        return $instance;\n    }\n\n    /**\n     * The __set_state handler.\n     *\n     * @param string|array $dump\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public static function __set_state($dump): static\n    {\n        if (\\is_string($dump)) {\n            return static::parse($dump);\n        }\n\n        /** @var \\DateTimeInterface $date */\n        $date = get_parent_class(static::class) && method_exists(parent::class, '__set_state')\n            ? parent::__set_state((array) $dump)\n            : (object) $dump;\n\n        return static::instance($date);\n    }\n\n    /**\n     * Returns the values to dump on serialize() called on.\n     *\n     * @return array\n     */\n    public function __serialize(): array\n    {\n        // @codeCoverageIgnoreStart\n        if (isset($this->timezone_type, $this->timezone, $this->date)) {\n            return [\n                'date' => $this->date,\n                'timezone_type' => $this->timezone_type,\n                'timezone' => $this->dumpTimezone($this->timezone),\n            ];\n        }\n        // @codeCoverageIgnoreEnd\n\n        $timezone = $this->getTimezone();\n        $export = [\n            'date' => $this->format('Y-m-d H:i:s.u'),\n            'timezone_type' => $timezone->getType(),\n            'timezone' => $timezone->getName(),\n        ];\n\n        // @codeCoverageIgnoreStart\n        if (\\extension_loaded('msgpack') && isset($this->constructedObjectId)) {\n            $timezone = $this->timezone ?? null;\n            $export['dumpDateProperties'] = [\n                'date' => $this->format('Y-m-d H:i:s.u'),\n                'timezone' => $this->dumpTimezone($timezone),\n            ];\n        }\n        // @codeCoverageIgnoreEnd\n\n        if ($this->localTranslator ?? null) {\n            $export['dumpLocale'] = $this->locale ?? null;\n        }\n\n        return $export;\n    }\n\n    /**\n     * Set locale if specified on unserialize() called.\n     */\n    public function __unserialize(array $data): void\n    {\n        // @codeCoverageIgnoreStart\n        try {\n            $this->__construct($data['date'] ?? null, $data['timezone'] ?? null);\n        } catch (Throwable $exception) {\n            if (!isset($data['dumpDateProperties']['date'], $data['dumpDateProperties']['timezone'])) {\n                throw $exception;\n            }\n\n            try {\n                // FatalError occurs when calling msgpack_unpack() in PHP 7.4 or later.\n                ['date' => $date, 'timezone' => $timezone] = $data['dumpDateProperties'];\n                $this->__construct($date, $timezone);\n            } catch (Throwable) {\n                throw $exception;\n            }\n        }\n        // @codeCoverageIgnoreEnd\n\n        if (isset($data['dumpLocale'])) {\n            $this->locale($data['dumpLocale']);\n        }\n    }\n\n    /**\n     * Prepare the object for JSON serialization.\n     */\n    public function jsonSerialize(): mixed\n    {\n        $serializer = $this->localSerializer\n            ?? $this->getFactory()->getSettings()['toJsonFormat']\n            ?? null;\n\n        if ($serializer) {\n            return \\is_string($serializer)\n                ? $this->rawFormat($serializer)\n                : $serializer($this);\n        }\n\n        return $this->toJSON();\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather transform Carbon object before the serialization.\n     *\n     * JSON serialize all Carbon instances using the given callback.\n     */\n    public static function serializeUsing(string|callable|null $format): void\n    {\n        FactoryImmutable::getDefaultInstance()->serializeUsing($format);\n    }\n\n    /**\n     * Cleanup properties attached to the public scope of DateTime when a dump of the date is requested.\n     * foreach ($date as $_) {}\n     * serializer($date)\n     * var_export($date)\n     * get_object_vars($date)\n     */\n    public function cleanupDumpProperties(): self\n    {\n        // @codeCoverageIgnoreStart\n        if (PHP_VERSION < 8.2) {\n            foreach ($this->dumpProperties as $property) {\n                if (isset($this->$property)) {\n                    unset($this->$property);\n                }\n            }\n        }\n        // @codeCoverageIgnoreEnd\n\n        return $this;\n    }\n\n    /** @codeCoverageIgnore */\n    private function dumpTimezone(mixed $timezone): mixed\n    {\n        return $timezone instanceof DateTimeZone ? $timezone->getName() : $timezone;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/StaticLocalization.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\FactoryImmutable;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\n\n/**\n * Static config for localization.\n */\ntrait StaticLocalization\n{\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     */\n    public static function setHumanDiffOptions(int $humanDiffOptions): void\n    {\n        FactoryImmutable::getDefaultInstance()->setHumanDiffOptions($humanDiffOptions);\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     */\n    public static function enableHumanDiffOption(int $humanDiffOption): void\n    {\n        FactoryImmutable::getDefaultInstance()->enableHumanDiffOption($humanDiffOption);\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     */\n    public static function disableHumanDiffOption(int $humanDiffOption): void\n    {\n        FactoryImmutable::getDefaultInstance()->disableHumanDiffOption($humanDiffOption);\n    }\n\n    /**\n     * Return default humanDiff() options (merged flags as integer).\n     */\n    public static function getHumanDiffOptions(): int\n    {\n        return FactoryImmutable::getInstance()->getHumanDiffOptions();\n    }\n\n    /**\n     * Set the default translator instance to use.\n     *\n     * @param TranslatorInterface $translator\n     *\n     * @return void\n     */\n    public static function setTranslator(TranslatorInterface $translator): void\n    {\n        FactoryImmutable::getDefaultInstance()->setTranslator($translator);\n    }\n\n    /**\n     * Initialize the default translator instance if necessary.\n     */\n    public static function getTranslator(): TranslatorInterface\n    {\n        return FactoryImmutable::getInstance()->getTranslator();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/StaticOptions.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\FactoryImmutable;\n\n/**\n * Options related to a static variable.\n */\ntrait StaticOptions\n{\n    ///////////////////////////////////////////////////////////////////\n    ///////////// Behavior customization for sub-classes //////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Function to call instead of format.\n     *\n     * @var string|callable|null\n     */\n    protected static $formatFunction;\n\n    /**\n     * Function to call instead of createFromFormat.\n     *\n     * @var string|callable|null\n     */\n    protected static $createFromFormatFunction;\n\n    /**\n     * Function to call instead of parse.\n     *\n     * @var string|callable|null\n     */\n    protected static $parseFunction;\n\n    ///////////////////////////////////////////////////////////////////\n    ///////////// Use default factory for static options //////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     * @see settings\n     *\n     * Enable the strict mode (or disable with passing false).\n     *\n     * @param bool $strictModeEnabled\n     */\n    public static function useStrictMode(bool $strictModeEnabled = true): void\n    {\n        FactoryImmutable::getDefaultInstance()->useStrictMode($strictModeEnabled);\n    }\n\n    /**\n     * Returns true if the strict mode is globally in use, false else.\n     * (It can be overridden in specific instances.)\n     *\n     * @return bool\n     */\n    public static function isStrictModeEnabled(): bool\n    {\n        return FactoryImmutable::getInstance()->isStrictModeEnabled();\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Indicates if months should be calculated with overflow.\n     *\n     * @param bool $monthsOverflow\n     *\n     * @return void\n     */\n    public static function useMonthsOverflow(bool $monthsOverflow = true): void\n    {\n        FactoryImmutable::getDefaultInstance()->useMonthsOverflow($monthsOverflow);\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Reset the month overflow behavior.\n     *\n     * @return void\n     */\n    public static function resetMonthsOverflow(): void\n    {\n        FactoryImmutable::getDefaultInstance()->resetMonthsOverflow();\n    }\n\n    /**\n     * Get the month overflow global behavior (can be overridden in specific instances).\n     *\n     * @return bool\n     */\n    public static function shouldOverflowMonths(): bool\n    {\n        return FactoryImmutable::getInstance()->shouldOverflowMonths();\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Indicates if years should be calculated with overflow.\n     *\n     * @param bool $yearsOverflow\n     *\n     * @return void\n     */\n    public static function useYearsOverflow(bool $yearsOverflow = true): void\n    {\n        FactoryImmutable::getDefaultInstance()->useYearsOverflow($yearsOverflow);\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather use the ->settings() method.\n     *             Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants\n     *             are available for quarters, years, decade, centuries, millennia (singular and plural forms).\n     * @see settings\n     *\n     * Reset the month overflow behavior.\n     *\n     * @return void\n     */\n    public static function resetYearsOverflow(): void\n    {\n        FactoryImmutable::getDefaultInstance()->resetYearsOverflow();\n    }\n\n    /**\n     * Get the month overflow global behavior (can be overridden in specific instances).\n     *\n     * @return bool\n     */\n    public static function shouldOverflowYears(): bool\n    {\n        return FactoryImmutable::getInstance()->shouldOverflowYears();\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Test.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonTimeZone;\nuse Carbon\\Factory;\nuse Carbon\\FactoryImmutable;\nuse Closure;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\n\ntrait Test\n{\n    ///////////////////////////////////////////////////////////////////\n    ///////////////////////// TESTING AIDS ////////////////////////////\n    ///////////////////////////////////////////////////////////////////\n\n    /**\n     * Set a Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.  The provided instance will be returned\n     * specifically under the following conditions:\n     *   - A call to the static now() method, ex. Carbon::now()\n     *   - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null)\n     *   - When the string \"now\" is passed to the constructor or parse(), ex. new Carbon('now')\n     *   - When a string containing the desired time is passed to Carbon::parse().\n     *\n     * Note the timezone parameter was left out of the examples above and\n     * has no affect as the mock value will be returned regardless of its value.\n     *\n     * Only the moment is mocked with setTestNow(), the timezone will still be the one passed\n     * as parameter of date_default_timezone_get() as a fallback (see setTestNowAndTimezone()).\n     *\n     * To clear the test instance call this method using the default\n     * parameter of null.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow real or mock Carbon instance\n     */\n    public static function setTestNow(mixed $testNow = null): void\n    {\n        FactoryImmutable::getDefaultInstance()->setTestNow($testNow);\n    }\n\n    /**\n     * Set a Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.  The provided instance will be returned\n     * specifically under the following conditions:\n     *   - A call to the static now() method, ex. Carbon::now()\n     *   - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null)\n     *   - When the string \"now\" is passed to the constructor or parse(), ex. new Carbon('now')\n     *   - When a string containing the desired time is passed to Carbon::parse().\n     *\n     * It will also align default timezone (e.g. call date_default_timezone_set()) with\n     * the second argument or if null, with the timezone of the given date object.\n     *\n     * To clear the test instance call this method using the default\n     * parameter of null.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow real or mock Carbon instance\n     */\n    public static function setTestNowAndTimezone($testNow = null, $timezone = null): void\n    {\n        FactoryImmutable::getDefaultInstance()->setTestNowAndTimezone($testNow, $timezone);\n    }\n\n    /**\n     * Temporarily sets a static date to be used within the callback.\n     * Using setTestNow to set the date, executing the callback, then\n     * clearing the test instance.\n     *\n     * /!\\ Use this method for unit tests only.\n     *\n     * @template T\n     *\n     * @param DateTimeInterface|Closure|static|string|false|null $testNow  real or mock Carbon instance\n     * @param Closure(): T                                       $callback\n     *\n     * @return T\n     */\n    public static function withTestNow(mixed $testNow, callable $callback): mixed\n    {\n        return FactoryImmutable::getDefaultInstance()->withTestNow($testNow, $callback);\n    }\n\n    /**\n     * Get the Carbon instance (real or mock) to be returned when a \"now\"\n     * instance is created.\n     *\n     * @return Closure|CarbonInterface|null the current instance used for testing\n     */\n    public static function getTestNow(): Closure|CarbonInterface|null\n    {\n        return FactoryImmutable::getInstance()->getTestNow();\n    }\n\n    /**\n     * Determine if there is a valid test instance set. A valid test instance\n     * is anything that is not null.\n     *\n     * @return bool true if there is a test instance, otherwise false\n     */\n    public static function hasTestNow(): bool\n    {\n        return FactoryImmutable::getInstance()->hasTestNow();\n    }\n\n    /**\n     * Get the mocked date passed in setTestNow() and if it's a Closure, execute it.\n     */\n    protected static function getMockedTestNow(DateTimeZone|string|int|null $timezone): ?CarbonInterface\n    {\n        $testNow = FactoryImmutable::getInstance()->handleTestNowClosure(static::getTestNow(), $timezone);\n\n        if ($testNow === null) {\n            return null;\n        }\n\n        $testNow = $testNow->avoidMutation();\n\n        return $timezone ? $testNow->setTimezone($timezone) : $testNow;\n    }\n\n    private function mockConstructorParameters(&$time, ?CarbonTimeZone $timezone): void\n    {\n        $clock = $this->clock?->unwrap();\n        $now = $clock instanceof Factory\n            ? $clock->getTestNow()\n            : $this->nowFromClock($timezone);\n        $testInstance = $now ?? self::getMockedTestNowClone($timezone);\n\n        if (!$testInstance) {\n            return;\n        }\n\n        if ($testInstance instanceof DateTimeInterface) {\n            $testInstance = $testInstance->setTimezone($timezone ?? date_default_timezone_get());\n        }\n\n        if (static::hasRelativeKeywords($time)) {\n            $testInstance = $testInstance->modify($time);\n        }\n\n        $factory = $this->getClock()?->unwrap();\n\n        if (!($factory instanceof Factory)) {\n            $factory = FactoryImmutable::getInstance();\n        }\n\n        $testInstance = $factory->handleTestNowClosure($testInstance, $timezone);\n\n        $time = $testInstance instanceof self\n            ? $testInstance->rawFormat(static::MOCK_DATETIME_FORMAT)\n            : $testInstance->format(static::MOCK_DATETIME_FORMAT);\n    }\n\n    private static function getMockedTestNowClone($timezone): CarbonInterface|self|null\n    {\n        $mock = static::getMockedTestNow($timezone);\n\n        return $mock ? clone $mock : null;\n    }\n\n    private function nowFromClock(?CarbonTimeZone $timezone): ?DateTimeImmutable\n    {\n        $now = $this->clock?->now();\n\n        return $now && $timezone ? $now->setTimezone($timezone) : null;\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Timestamp.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse DateTimeZone;\n\n/**\n * Trait Timestamp.\n */\ntrait Timestamp\n{\n    /**\n     * Create a Carbon instance from a timestamp and set the timezone (UTC by default).\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    #[\\ReturnTypeWillChange]\n    public static function createFromTimestamp(\n        float|int|string $timestamp,\n        DateTimeZone|string|int|null $timezone = null,\n    ): static {\n        $date = static::createFromTimestampUTC($timestamp);\n\n        return $timezone === null ? $date : $date->setTimezone($timezone);\n    }\n\n    /**\n     * Create a Carbon instance from a timestamp keeping the timezone to UTC.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public static function createFromTimestampUTC(float|int|string $timestamp): static\n    {\n        [$integer, $decimal] = self::getIntegerAndDecimalParts($timestamp);\n        $delta = floor($decimal / static::MICROSECONDS_PER_SECOND);\n        $integer += $delta;\n        $decimal -= $delta * static::MICROSECONDS_PER_SECOND;\n        $decimal = str_pad((string) $decimal, 6, '0', STR_PAD_LEFT);\n\n        return static::rawCreateFromFormat('U u', \"$integer $decimal\");\n    }\n\n    /**\n     * Create a Carbon instance from a timestamp in milliseconds.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     *\n     * @param float|int|string $timestamp\n     *\n     * @return static\n     */\n    public static function createFromTimestampMsUTC($timestamp): static\n    {\n        [$milliseconds, $microseconds] = self::getIntegerAndDecimalParts($timestamp, 3);\n        $sign = $milliseconds < 0 || ($milliseconds === 0.0 && $microseconds < 0) ? -1 : 1;\n        $milliseconds = abs($milliseconds);\n        $microseconds = $sign * abs($microseconds) + static::MICROSECONDS_PER_MILLISECOND * ($milliseconds % static::MILLISECONDS_PER_SECOND);\n        $seconds = $sign * floor($milliseconds / static::MILLISECONDS_PER_SECOND);\n        $delta = floor($microseconds / static::MICROSECONDS_PER_SECOND);\n        $seconds = (int) ($seconds + $delta);\n        $microseconds -= $delta * static::MICROSECONDS_PER_SECOND;\n        $microseconds = str_pad((string) (int) $microseconds, 6, '0', STR_PAD_LEFT);\n\n        return static::rawCreateFromFormat('U u', \"$seconds $microseconds\");\n    }\n\n    /**\n     * Create a Carbon instance from a timestamp in milliseconds.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public static function createFromTimestampMs(\n        float|int|string $timestamp,\n        DateTimeZone|string|int|null $timezone = null,\n    ): static {\n        $date = static::createFromTimestampMsUTC($timestamp);\n\n        return $timezone === null ? $date : $date->setTimezone($timezone);\n    }\n\n    /**\n     * Set the instance's timestamp.\n     *\n     * Timestamp input can be given as int, float or a string containing one or more numbers.\n     */\n    public function timestamp(float|int|string $timestamp): static\n    {\n        return $this->setTimestamp($timestamp);\n    }\n\n    /**\n     * Returns a timestamp rounded with the given precision (6 by default).\n     *\n     * @example getPreciseTimestamp()   1532087464437474 (microsecond maximum precision)\n     * @example getPreciseTimestamp(6)  1532087464437474\n     * @example getPreciseTimestamp(5)  153208746443747  (1/100000 second precision)\n     * @example getPreciseTimestamp(4)  15320874644375   (1/10000 second precision)\n     * @example getPreciseTimestamp(3)  1532087464437    (millisecond precision)\n     * @example getPreciseTimestamp(2)  153208746444     (1/100 second precision)\n     * @example getPreciseTimestamp(1)  15320874644      (1/10 second precision)\n     * @example getPreciseTimestamp(0)  1532087464       (second precision)\n     * @example getPreciseTimestamp(-1) 153208746        (10 second precision)\n     * @example getPreciseTimestamp(-2) 15320875         (100 second precision)\n     *\n     * @param int $precision\n     *\n     * @return float\n     */\n    public function getPreciseTimestamp($precision = 6): float\n    {\n        return round(((float) $this->rawFormat('Uu')) / pow(10, 6 - $precision));\n    }\n\n    /**\n     * Returns the milliseconds timestamps used amongst other by Date javascript objects.\n     *\n     * @return float\n     */\n    public function valueOf(): float\n    {\n        return $this->getPreciseTimestamp(3);\n    }\n\n    /**\n     * Returns the timestamp with millisecond precision.\n     *\n     * @return int\n     */\n    public function getTimestampMs(): int\n    {\n        return (int) $this->getPreciseTimestamp(3);\n    }\n\n    /**\n     * @alias getTimestamp\n     *\n     * Returns the UNIX timestamp for the current date.\n     *\n     * @return int\n     */\n    public function unix(): int\n    {\n        return $this->getTimestamp();\n    }\n\n    /**\n     * Return an array with integer part digits and decimals digits split from one or more positive numbers\n     * (such as timestamps) as string with the given number of decimals (6 by default).\n     *\n     * By splitting integer and decimal, this method obtain a better precision than\n     * number_format when the input is a string.\n     *\n     * @param float|int|string $numbers  one or more numbers\n     * @param int              $decimals number of decimals precision (6 by default)\n     *\n     * @return array 0-index is integer part, 1-index is decimal part digits\n     */\n    private static function getIntegerAndDecimalParts($numbers, $decimals = 6): array\n    {\n        if (\\is_int($numbers) || \\is_float($numbers)) {\n            $numbers = number_format($numbers, $decimals, '.', '');\n        }\n\n        $sign = str_starts_with($numbers, '-') ? -1 : 1;\n        $integer = 0;\n        $decimal = 0;\n\n        foreach (preg_split('`[^\\d.]+`', $numbers) as $chunk) {\n            [$integerPart, $decimalPart] = explode('.', \"$chunk.\");\n\n            $integer += (int) $integerPart;\n            $decimal += (float) (\"0.$decimalPart\");\n        }\n\n        $overflow = floor($decimal);\n        $integer += $overflow;\n        $decimal -= $overflow;\n\n        return [$sign * $integer, $decimal === 0.0 ? 0.0 : $sign * round($decimal * pow(10, $decimals))];\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/ToStringFormat.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\FactoryImmutable;\nuse Closure;\n\n/**\n * Trait ToStringFormat.\n *\n * Handle global format customization for string cast of the object.\n */\ntrait ToStringFormat\n{\n    /**\n     * Reset the format used to the default when type juggling a Carbon instance to a string\n     *\n     * @return void\n     */\n    public static function resetToStringFormat(): void\n    {\n        FactoryImmutable::getDefaultInstance()->resetToStringFormat();\n    }\n\n    /**\n     * @deprecated To avoid conflict between different third-party libraries, static setters should not be used.\n     *             You should rather let Carbon object being cast to string with DEFAULT_TO_STRING_FORMAT, and\n     *             use other method or custom format passed to format() method if you need to dump another string\n     *             format.\n     *\n     * Set the default format used when type juggling a Carbon instance to a string.\n     *\n     * @param string|Closure|null $format\n     *\n     * @return void\n     */\n    public static function setToStringFormat(string|Closure|null $format): void\n    {\n        FactoryImmutable::getDefaultInstance()->setToStringFormat($format);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Units.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonConverterInterface;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\InvalidIntervalException;\nuse Carbon\\Exceptions\\UnitException;\nuse Carbon\\Exceptions\\UnsupportedUnitException;\nuse Carbon\\Unit;\nuse Closure;\nuse DateInterval;\nuse DateMalformedStringException;\nuse ReturnTypeWillChange;\n\n/**\n * Trait Units.\n *\n * Add, subtract and set units.\n */\ntrait Units\n{\n    /**\n     * @deprecated Prefer to use add addUTCUnit() which more accurately defines what it's doing.\n     *\n     * Add seconds to the instance using timestamp. Positive $value travels\n     * forward while negative $value travels into the past.\n     *\n     * @param string         $unit\n     * @param int|float|null $value\n     *\n     * @return static\n     */\n    public function addRealUnit(string $unit, $value = 1): static\n    {\n        return $this->addUTCUnit($unit, $value);\n    }\n\n    /**\n     * Add seconds to the instance using timestamp. Positive $value travels\n     * forward while negative $value travels into the past.\n     *\n     * @param string         $unit\n     * @param int|float|null $value\n     *\n     * @return static\n     */\n    public function addUTCUnit(string $unit, $value = 1): static\n    {\n        $value ??= 0;\n\n        switch ($unit) {\n            // @call addUTCUnit\n            case 'micro':\n\n            // @call addUTCUnit\n            case 'microsecond':\n                /* @var CarbonInterface $this */\n                $diff = $this->microsecond + $value;\n                $time = $this->getTimestamp();\n                $seconds = (int) floor($diff / static::MICROSECONDS_PER_SECOND);\n                $time += $seconds;\n                $diff -= $seconds * static::MICROSECONDS_PER_SECOND;\n                $microtime = str_pad((string) $diff, 6, '0', STR_PAD_LEFT);\n                $timezone = $this->tz;\n\n                return $this->tz('UTC')->modify(\"@$time.$microtime\")->setTimezone($timezone);\n\n            // @call addUTCUnit\n            case 'milli':\n            // @call addUTCUnit\n            case 'millisecond':\n                return $this->addUTCUnit('microsecond', $value * static::MICROSECONDS_PER_MILLISECOND);\n\n            // @call addUTCUnit\n            case 'second':\n                break;\n\n            // @call addUTCUnit\n            case 'minute':\n                $value *= static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'hour':\n                $value *= static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'day':\n                $value *= static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'week':\n                $value *= static::DAYS_PER_WEEK * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'month':\n                $value *= 30 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'quarter':\n                $value *= static::MONTHS_PER_QUARTER * 30 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'year':\n                $value *= 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'decade':\n                $value *= static::YEARS_PER_DECADE * 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'century':\n                $value *= static::YEARS_PER_CENTURY * 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            // @call addUTCUnit\n            case 'millennium':\n                $value *= static::YEARS_PER_MILLENNIUM * 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE;\n\n                break;\n\n            default:\n                if ($this->isLocalStrictModeEnabled()) {\n                    throw new UnitException(\"Invalid unit for real timestamp add/sub: '$unit'\");\n                }\n\n                return $this;\n        }\n\n        $seconds = (int) $value;\n        $microseconds = (int) round(\n            (abs($value) - abs($seconds)) * ($value < 0 ? -1 : 1) * static::MICROSECONDS_PER_SECOND,\n        );\n        $date = $this->setTimestamp($this->getTimestamp() + $seconds);\n\n        return $microseconds ? $date->addUTCUnit('microsecond', $microseconds) : $date;\n    }\n\n    /**\n     * @deprecated Prefer to use add subUTCUnit() which more accurately defines what it's doing.\n     *\n     * Subtract seconds to the instance using timestamp. Positive $value travels\n     * into the past while negative $value travels forward.\n     *\n     * @param string $unit\n     * @param int    $value\n     *\n     * @return static\n     */\n    public function subRealUnit($unit, $value = 1): static\n    {\n        return $this->addUTCUnit($unit, -$value);\n    }\n\n    /**\n     * Subtract seconds to the instance using timestamp. Positive $value travels\n     * into the past while negative $value travels forward.\n     *\n     * @param string $unit\n     * @param int    $value\n     *\n     * @return static\n     */\n    public function subUTCUnit($unit, $value = 1): static\n    {\n        return $this->addUTCUnit($unit, -$value);\n    }\n\n    /**\n     * Returns true if a property can be changed via setter.\n     *\n     * @param string $unit\n     *\n     * @return bool\n     */\n    public static function isModifiableUnit($unit): bool\n    {\n        static $modifiableUnits = [\n            // @call addUnit\n            'millennium',\n            // @call addUnit\n            'century',\n            // @call addUnit\n            'decade',\n            // @call addUnit\n            'quarter',\n            // @call addUnit\n            'week',\n            // @call addUnit\n            'weekday',\n        ];\n\n        return \\in_array($unit, $modifiableUnits, true) || \\in_array($unit, static::$units, true);\n    }\n\n    /**\n     * Call native PHP DateTime/DateTimeImmutable add() method.\n     *\n     * @param DateInterval $interval\n     *\n     * @return static\n     */\n    public function rawAdd(DateInterval $interval): static\n    {\n        return parent::add($interval);\n    }\n\n    /**\n     * Add given units or interval to the current instance.\n     *\n     * @example $date->add('hour', 3)\n     * @example $date->add(15, 'days')\n     * @example $date->add(CarbonInterval::days(4))\n     *\n     * @param Unit|int|string|DateInterval|Closure|CarbonConverterInterface $unit\n     * @param Unit|int|float|string                                         $value\n     * @param bool|null                                                     $overflow\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public function add($unit, $value = 1, ?bool $overflow = null): static\n    {\n        $unit = Unit::toNameIfUnit($unit);\n        $value = Unit::toNameIfUnit($value);\n\n        if (\\is_string($unit) && \\func_num_args() === 1) {\n            $unit = CarbonInterval::make($unit, [], true);\n        }\n\n        if ($unit instanceof CarbonConverterInterface) {\n            $unit = Closure::fromCallable([$unit, 'convertDate']);\n        }\n\n        if ($unit instanceof Closure) {\n            $result = $this->resolveCarbon($unit($this, false));\n\n            if ($this !== $result && $this->isMutable()) {\n                return $this->modify($result->rawFormat('Y-m-d H:i:s.u e O'));\n            }\n\n            return $result;\n        }\n\n        if ($unit instanceof DateInterval) {\n            return parent::add($unit);\n        }\n\n        if (is_numeric($unit)) {\n            [$value, $unit] = [$unit, $value];\n        }\n\n        return $this->addUnit((string) $unit, $value, $overflow);\n    }\n\n    /**\n     * Add given units to the current instance.\n     */\n    public function addUnit(Unit|string $unit, $value = 1, ?bool $overflow = null): static\n    {\n        $unit = Unit::toName($unit);\n\n        $originalArgs = \\func_get_args();\n\n        $date = $this;\n\n        if (!is_numeric($value) || !(float) $value) {\n            return $date->isMutable() ? $date : $date->copy();\n        }\n\n        $unit = self::singularUnit($unit);\n        $metaUnits = [\n            'millennium' => [static::YEARS_PER_MILLENNIUM, 'year'],\n            'century' => [static::YEARS_PER_CENTURY, 'year'],\n            'decade' => [static::YEARS_PER_DECADE, 'year'],\n            'quarter' => [static::MONTHS_PER_QUARTER, 'month'],\n        ];\n\n        if (isset($metaUnits[$unit])) {\n            [$factor, $unit] = $metaUnits[$unit];\n            $value *= $factor;\n        }\n\n        if ($unit === 'weekday') {\n            $weekendDays = $this->transmitFactory(static fn () => static::getWeekendDays());\n\n            if ($weekendDays !== [static::SATURDAY, static::SUNDAY]) {\n                $absoluteValue = abs($value);\n                $sign = $value / max(1, $absoluteValue);\n                $weekDaysCount = static::DAYS_PER_WEEK - min(static::DAYS_PER_WEEK - 1, \\count(array_unique($weekendDays)));\n                $weeks = floor($absoluteValue / $weekDaysCount);\n\n                for ($diff = $absoluteValue % $weekDaysCount; $diff; $diff--) {\n                    /** @var static $date */\n                    $date = $date->addDays($sign);\n\n                    while (\\in_array($date->dayOfWeek, $weekendDays, true)) {\n                        $date = $date->addDays($sign);\n                    }\n                }\n\n                $value = $weeks * $sign;\n                $unit = 'week';\n            }\n\n            $timeString = $date->toTimeString();\n        } elseif ($canOverflow = (\\in_array($unit, [\n                'month',\n                'year',\n            ]) && ($overflow === false || (\n                $overflow === null &&\n                ($ucUnit = ucfirst($unit).'s') &&\n                !($this->{'local'.$ucUnit.'Overflow'} ?? static::{'shouldOverflow'.$ucUnit}())\n            )))) {\n            $day = $date->day;\n        }\n\n        if ($unit === 'milli' || $unit === 'millisecond') {\n            $unit = 'microsecond';\n            $value *= static::MICROSECONDS_PER_MILLISECOND;\n        }\n\n        $previousException = null;\n\n        try {\n            $date = self::rawAddUnit($date, $unit, $value);\n\n            if (isset($timeString)) {\n                $date = $date?->setTimeFromTimeString($timeString);\n            } elseif (isset($canOverflow, $day) && $canOverflow && $day !== $date?->day) {\n                $date = $date?->modify('last day of previous month');\n            }\n        } catch (DateMalformedStringException|InvalidFormatException|UnsupportedUnitException $exception) {\n            $date = null;\n            $previousException = $exception;\n        }\n\n        return $date ?? throw new UnitException(\n            'Unable to add unit '.var_export($originalArgs, true),\n            previous: $previousException,\n        );\n    }\n\n    /**\n     * Subtract given units to the current instance.\n     */\n    public function subUnit(Unit|string $unit, $value = 1, ?bool $overflow = null): static\n    {\n        return $this->addUnit($unit, -$value, $overflow);\n    }\n\n    /**\n     * Call native PHP DateTime/DateTimeImmutable sub() method.\n     */\n    public function rawSub(DateInterval $interval): static\n    {\n        return parent::sub($interval);\n    }\n\n    /**\n     * Subtract given units or interval to the current instance.\n     *\n     * @example $date->sub('hour', 3)\n     * @example $date->sub(15, 'days')\n     * @example $date->sub(CarbonInterval::days(4))\n     *\n     * @param Unit|int|string|DateInterval|Closure|CarbonConverterInterface $unit\n     * @param Unit|int|float|string                                         $value\n     * @param bool|null                                                     $overflow\n     *\n     * @return static\n     */\n    #[ReturnTypeWillChange]\n    public function sub($unit, $value = 1, ?bool $overflow = null): static\n    {\n        $unit = Unit::toNameIfUnit($unit);\n        $value = Unit::toNameIfUnit($value);\n\n        if (\\is_string($unit) && \\func_num_args() === 1) {\n            $unit = CarbonInterval::make($unit, [], true);\n        }\n\n        if ($unit instanceof CarbonConverterInterface) {\n            $unit = Closure::fromCallable([$unit, 'convertDate']);\n        }\n\n        if ($unit instanceof Closure) {\n            $result = $this->resolveCarbon($unit($this, true));\n\n            if ($this !== $result && $this->isMutable()) {\n                return $this->modify($result->rawFormat('Y-m-d H:i:s.u e O'));\n            }\n\n            return $result;\n        }\n\n        if ($unit instanceof DateInterval) {\n            return parent::sub($unit);\n        }\n\n        if (is_numeric($unit)) {\n            [$value, $unit] = [$unit, $value];\n        }\n\n        return $this->addUnit((string) $unit, -(float) $value, $overflow);\n    }\n\n    /**\n     * Subtract given units or interval to the current instance.\n     *\n     * @see sub()\n     *\n     * @param Unit|int|string|DateInterval $unit\n     * @param Unit|int|float|string        $value\n     * @param bool|null                    $overflow\n     *\n     * @return static\n     */\n    public function subtract($unit, $value = 1, ?bool $overflow = null): static\n    {\n        if (\\is_string($unit) && \\func_num_args() === 1) {\n            $unit = CarbonInterval::make($unit, [], true);\n        }\n\n        return $this->sub($unit, $value, $overflow);\n    }\n\n    private static function rawAddUnit(self $date, string $unit, int|float $value): ?static\n    {\n        try {\n            return $date->rawAdd(\n                CarbonInterval::fromString(abs($value).\" $unit\")->invert($value < 0),\n            );\n        } catch (InvalidIntervalException $exception) {\n            try {\n                return $date->modify(\"$value $unit\");\n            } catch (InvalidFormatException) {\n                throw new UnsupportedUnitException($unit, previous: $exception);\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Traits/Week.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon\\Traits;\n\nuse Carbon\\CarbonInterval;\n\n/**\n * Trait Week.\n *\n * week and ISO week number, year and count in year.\n *\n * Depends on the following properties:\n *\n * @property int $daysInYear\n * @property int $dayOfWeek\n * @property int $dayOfYear\n * @property int $year\n *\n * Depends on the following methods:\n *\n * @method static addWeeks(int $weeks = 1)\n * @method static copy()\n * @method static dayOfYear(int $dayOfYear)\n * @method string getTranslationMessage(string $key, ?string $locale = null, ?string $default = null, $translator = null)\n * @method static next(int|string $modifier = null)\n * @method static startOfWeek(int $day = null)\n * @method static subWeeks(int $weeks = 1)\n * @method static year(int $year = null)\n */\ntrait Week\n{\n    /**\n     * Set/get the week number of year using given first day of week and first\n     * day of year included in the first week. Or use ISO format if no settings\n     * given.\n     *\n     * @param int|null $year      if null, act as a getter, if not null, set the year and return current instance.\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int|static\n     */\n    public function isoWeekYear($year = null, $dayOfWeek = null, $dayOfYear = null)\n    {\n        return $this->weekYear(\n            $year,\n            $dayOfWeek ?? static::MONDAY,\n            $dayOfYear ?? static::THURSDAY,\n        );\n    }\n\n    /**\n     * Set/get the week number of year using given first day of week and first\n     * day of year included in the first week. Or use US format if no settings\n     * given (Sunday / Jan 6).\n     *\n     * @param int|null $year      if null, act as a getter, if not null, set the year and return current instance.\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int|static\n     */\n    public function weekYear($year = null, $dayOfWeek = null, $dayOfYear = null)\n    {\n        $dayOfWeek = $dayOfWeek ?? $this->getTranslationMessage('first_day_of_week') ?? static::SUNDAY;\n        $dayOfYear = $dayOfYear ?? $this->getTranslationMessage('day_of_first_week_of_year') ?? 1;\n\n        if ($year !== null) {\n            $year = (int) round($year);\n\n            if ($this->weekYear(null, $dayOfWeek, $dayOfYear) === $year) {\n                return $this->avoidMutation();\n            }\n\n            $week = $this->week(null, $dayOfWeek, $dayOfYear);\n            $day = $this->dayOfWeek;\n            $date = $this->year($year);\n\n            $date = match ($date->weekYear(null, $dayOfWeek, $dayOfYear) - $year) {\n                CarbonInterval::POSITIVE => $date->subWeeks(static::WEEKS_PER_YEAR / 2),\n                CarbonInterval::NEGATIVE => $date->addWeeks(static::WEEKS_PER_YEAR / 2),\n                default => $date,\n            };\n\n            $date = $date\n                ->addWeeks($week - $date->week(null, $dayOfWeek, $dayOfYear))\n                ->startOfWeek($dayOfWeek);\n\n            if ($date->dayOfWeek === $day) {\n                return $date;\n            }\n\n            return $date->next($day);\n        }\n\n        $year = $this->year;\n        $day = $this->dayOfYear;\n        $date = $this->avoidMutation()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek);\n\n        if ($date->year === $year && $day < $date->dayOfYear) {\n            return $year - 1;\n        }\n\n        $date = $this->avoidMutation()->addYear()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek);\n\n        if ($date->year === $year && $day >= $date->dayOfYear) {\n            return $year + 1;\n        }\n\n        return $year;\n    }\n\n    /**\n     * Get the number of weeks of the current week-year using given first day of week and first\n     * day of year included in the first week. Or use ISO format if no settings\n     * given.\n     *\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int\n     */\n    public function isoWeeksInYear($dayOfWeek = null, $dayOfYear = null)\n    {\n        return $this->weeksInYear(\n            $dayOfWeek ?? static::MONDAY,\n            $dayOfYear ?? static::THURSDAY,\n        );\n    }\n\n    /**\n     * Get the number of weeks of the current week-year using given first day of week and first\n     * day of year included in the first week. Or use US format if no settings\n     * given (Sunday / Jan 6).\n     *\n     * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday)\n     * @param int|null $dayOfYear first day of year included in the week #1\n     *\n     * @return int\n     */\n    public function weeksInYear($dayOfWeek = null, $dayOfYear = null)\n    {\n        $dayOfWeek = $dayOfWeek ?? $this->getTranslationMessage('first_day_of_week') ?? static::SUNDAY;\n        $dayOfYear = $dayOfYear ?? $this->getTranslationMessage('day_of_first_week_of_year') ?? 1;\n        $year = $this->year;\n        $start = $this->avoidMutation()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek);\n        $startDay = $start->dayOfYear;\n        if ($start->year !== $year) {\n            $startDay -= $start->daysInYear;\n        }\n        $end = $this->avoidMutation()->addYear()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek);\n        $endDay = $end->dayOfYear;\n        if ($end->year !== $year) {\n            $endDay += $this->daysInYear;\n        }\n\n        return (int) round(($endDay - $startDay) / static::DAYS_PER_WEEK);\n    }\n\n    /**\n     * Get/set the week number using given first day of week and first\n     * day of year included in the first week. Or use US format if no settings\n     * given (Sunday / Jan 6).\n     *\n     * @param int|null $week\n     * @param int|null $dayOfWeek\n     * @param int|null $dayOfYear\n     *\n     * @return int|static\n     */\n    public function week($week = null, $dayOfWeek = null, $dayOfYear = null)\n    {\n        $date = $this;\n        $dayOfWeek = $dayOfWeek ?? $this->getTranslationMessage('first_day_of_week') ?? 0;\n        $dayOfYear = $dayOfYear ?? $this->getTranslationMessage('day_of_first_week_of_year') ?? 1;\n\n        if ($week !== null) {\n            return $date->addWeeks(round($week) - $this->week(null, $dayOfWeek, $dayOfYear));\n        }\n\n        $start = $date->avoidMutation()->shiftTimezone('UTC')->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek);\n        $end = $date->avoidMutation()->shiftTimezone('UTC')->startOfWeek($dayOfWeek);\n\n        if ($start > $end) {\n            $start = $start->subWeeks(static::WEEKS_PER_YEAR / 2)->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek);\n        }\n\n        $week = (int) ($start->diffInDays($end) / static::DAYS_PER_WEEK + 1);\n\n        return $week > $end->weeksInYear($dayOfWeek, $dayOfYear) ? 1 : $week;\n    }\n\n    /**\n     * Get/set the week number using given first day of week and first\n     * day of year included in the first week. Or use ISO format if no settings\n     * given.\n     *\n     * @param int|null $week\n     * @param int|null $dayOfWeek\n     * @param int|null $dayOfYear\n     *\n     * @return int|static\n     */\n    public function isoWeek($week = null, $dayOfWeek = null, $dayOfYear = null)\n    {\n        return $this->week(\n            $week,\n            $dayOfWeek ?? static::MONDAY,\n            $dayOfYear ?? static::THURSDAY,\n        );\n    }\n}\n"
  },
  {
    "path": "src/Carbon/Translator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse ReflectionMethod;\nuse Symfony\\Component\\Translation;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\n\n$transMethod = new ReflectionMethod(\n    class_exists(TranslatorInterface::class)\n        ? TranslatorInterface::class\n        : Translation\\Translator::class,\n    'trans',\n);\n\nrequire $transMethod->hasReturnType()\n    ? __DIR__.'/../../lazy/Carbon/TranslatorStrongType.php'\n    : __DIR__.'/../../lazy/Carbon/TranslatorWeakType.php';\n\nclass Translator extends LazyTranslator\n{\n    // Proxy dynamically loaded LazyTranslator in a static way\n}\n"
  },
  {
    "path": "src/Carbon/TranslatorImmutable.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Exceptions\\ImmutableException;\nuse Symfony\\Component\\Config\\ConfigCacheFactoryInterface;\nuse Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface;\n\nclass TranslatorImmutable extends Translator\n{\n    private bool $constructed = false;\n\n    public function __construct($locale, ?MessageFormatterInterface $formatter = null, $cacheDir = null, $debug = false)\n    {\n        parent::__construct($locale, $formatter, $cacheDir, $debug);\n        $this->constructed = true;\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    public function setDirectories(array $directories): static\n    {\n        $this->disallowMutation(__METHOD__);\n\n        return parent::setDirectories($directories);\n    }\n\n    public function setLocale($locale): void\n    {\n        $this->disallowMutation(__METHOD__);\n\n        parent::setLocale($locale);\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    public function setMessages(string $locale, array $messages): static\n    {\n        $this->disallowMutation(__METHOD__);\n\n        return parent::setMessages($locale, $messages);\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    public function setTranslations(array $messages): static\n    {\n        $this->disallowMutation(__METHOD__);\n\n        return parent::setTranslations($messages);\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    public function setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory): void\n    {\n        $this->disallowMutation(__METHOD__);\n\n        parent::setConfigCacheFactory($configCacheFactory);\n    }\n\n    public function resetMessages(?string $locale = null): bool\n    {\n        $this->disallowMutation(__METHOD__);\n\n        return parent::resetMessages($locale);\n    }\n\n    /**\n     * @codeCoverageIgnore\n     */\n    public function setFallbackLocales(array $locales): void\n    {\n        $this->disallowMutation(__METHOD__);\n\n        parent::setFallbackLocales($locales);\n    }\n\n    private function disallowMutation($method)\n    {\n        if ($this->constructed) {\n            throw new ImmutableException($method.' not allowed on '.static::class);\n        }\n    }\n}\n"
  },
  {
    "path": "src/Carbon/TranslatorStrongTypeInterface.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Symfony\\Component\\Translation\\MessageCatalogueInterface;\n\n/**\n * Mark translator using strong type from symfony/translation >= 6.\n */\ninterface TranslatorStrongTypeInterface\n{\n    public function getFromCatalogue(MessageCatalogueInterface $catalogue, string $id, string $domain = 'messages');\n}\n"
  },
  {
    "path": "src/Carbon/Unit.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nenum Unit: string\n{\n    case Microsecond = 'microsecond';\n    case Millisecond = 'millisecond';\n    case Second = 'second';\n    case Minute = 'minute';\n    case Hour = 'hour';\n    case Day = 'day';\n    case Week = 'week';\n    case Month = 'month';\n    case Quarter = 'quarter';\n    case Year = 'year';\n    case Decade = 'decade';\n    case Century = 'century';\n    case Millennium = 'millennium';\n\n    public static function toName(self|string $unit): string\n    {\n        return $unit instanceof self ? $unit->value : $unit;\n    }\n\n    /** @internal */\n    public static function toNameIfUnit(mixed $unit): mixed\n    {\n        return $unit instanceof self ? $unit->value : $unit;\n    }\n\n    public static function fromName(string $name, ?string $locale = null): self\n    {\n        if ($locale !== null) {\n            $messages = Translator::get($locale)->getMessages($locale) ?? [];\n\n            if ($messages !== []) {\n                $lowerName = mb_strtolower($name);\n\n                foreach (self::cases() as $unit) {\n                    foreach (['', '_from_now', '_ago', '_after', '_before'] as $suffix) {\n                        $message = $messages[$unit->value.$suffix] ?? null;\n\n                        if (\\is_string($message)) {\n                            $words = explode('|', mb_strtolower(preg_replace(\n                                '/[{\\[\\]].+?[}\\[\\]]/',\n                                '',\n                                str_replace(':count', '', $message),\n                            )));\n\n                            foreach ($words as $word) {\n                                if (trim($word) === $lowerName) {\n                                    return $unit;\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n\n        return self::from(CarbonImmutable::singularUnit($name));\n    }\n\n    public function singular(?string $locale = null): string\n    {\n        if ($locale !== null) {\n            return trim(Translator::get($locale)->trans($this->value, [\n                '%count%' => 1,\n                ':count' => 1,\n            ]), \"1 \\n\\r\\t\\v\\0\");\n        }\n\n        return $this->value;\n    }\n\n    public function plural(?string $locale = null): string\n    {\n        if ($locale !== null) {\n            return trim(Translator::get($locale)->trans($this->value, [\n                '%count%' => 9,\n                ':count' => 9,\n            ]), \"9 \\n\\r\\t\\v\\0\");\n        }\n\n        return CarbonImmutable::pluralUnit($this->value);\n    }\n\n    public function interval(int|float $value = 1): CarbonInterval\n    {\n        return CarbonInterval::fromString(\"$value $this->name\");\n    }\n\n    public function locale(string $locale): CarbonInterval\n    {\n        return $this->interval()->locale($locale);\n    }\n\n    public function toPeriod(...$params): CarbonPeriod\n    {\n        return $this->interval()->toPeriod(...$params);\n    }\n\n    public function stepBy(mixed $interval, Unit|string|null $unit = null): CarbonPeriod\n    {\n        return $this->interval()->stepBy($interval, $unit);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/WeekDay.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse Carbon\\Exceptions\\InvalidFormatException;\n\nenum WeekDay: int\n{\n    // Using constants is only safe starting from PHP 8.2\n    case Sunday = 0; // CarbonInterface::SUNDAY\n    case Monday = 1; // CarbonInterface::MONDAY\n    case Tuesday = 2; // CarbonInterface::TUESDAY\n    case Wednesday = 3; // CarbonInterface::WEDNESDAY\n    case Thursday = 4; // CarbonInterface::THURSDAY\n    case Friday = 5; // CarbonInterface::FRIDAY\n    case Saturday = 6; // CarbonInterface::SATURDAY\n\n    public static function int(self|int|null $value): ?int\n    {\n        return $value instanceof self ? $value->value : $value;\n    }\n\n    public static function fromNumber(int $number): self\n    {\n        $day = $number % CarbonInterface::DAYS_PER_WEEK;\n\n        return self::from($day + ($day < 0 ? CarbonInterface::DAYS_PER_WEEK : 0));\n    }\n\n    public static function fromName(string $name, ?string $locale = null): self\n    {\n        try {\n            return self::from(CarbonImmutable::parseFromLocale($name, $locale)->dayOfWeek);\n        } catch (InvalidFormatException $exception) {\n            // Possibly current language expect a dot after short name, but it's missing\n            if ($locale !== null && !mb_strlen($name) < 4 && !str_ends_with($name, '.')) {\n                try {\n                    return self::from(CarbonImmutable::parseFromLocale($name.'.', $locale)->dayOfWeek);\n                } catch (InvalidFormatException) {\n                    // Throw previous error\n                }\n            }\n\n            throw $exception;\n        }\n    }\n\n    public function next(?CarbonImmutable $now = null): CarbonImmutable\n    {\n        return $now?->modify($this->name) ?? new CarbonImmutable($this->name);\n    }\n\n    public function locale(string $locale, ?CarbonImmutable $now = null): CarbonImmutable\n    {\n        return $this->next($now)->locale($locale);\n    }\n}\n"
  },
  {
    "path": "src/Carbon/WrapperClock.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Psr\\Clock\\ClockInterface as PsrClockInterface;\nuse RuntimeException;\nuse Symfony\\Component\\Clock\\ClockInterface;\n\nfinal class WrapperClock implements ClockInterface\n{\n    public function __construct(\n        private PsrClockInterface|Factory|DateTimeInterface $currentClock,\n    ) {\n    }\n\n    public function unwrap(): PsrClockInterface|Factory|DateTimeInterface\n    {\n        return $this->currentClock;\n    }\n\n    public function getFactory(): Factory\n    {\n        if ($this->currentClock instanceof Factory) {\n            return $this->currentClock;\n        }\n\n        if ($this->currentClock instanceof DateTime) {\n            $factory = new Factory();\n            $factory->setTestNowAndTimezone($this->currentClock);\n\n            return $factory;\n        }\n\n        if ($this->currentClock instanceof DateTimeImmutable) {\n            $factory = new FactoryImmutable();\n            $factory->setTestNowAndTimezone($this->currentClock);\n\n            return $factory;\n        }\n\n        $factory = new FactoryImmutable();\n        $factory->setTestNowAndTimezone(fn () => $this->currentClock->now());\n\n        return $factory;\n    }\n\n    private function nowRaw(): DateTimeInterface\n    {\n        if ($this->currentClock instanceof DateTimeInterface) {\n            return $this->currentClock;\n        }\n\n        if ($this->currentClock instanceof Factory) {\n            return $this->currentClock->__call('now', []);\n        }\n\n        return $this->currentClock->now();\n    }\n\n    public function now(): DateTimeImmutable\n    {\n        $now = $this->nowRaw();\n\n        return $now instanceof DateTimeImmutable\n            ? $now\n            : new CarbonImmutable($now);\n    }\n\n    /**\n     * @template T of CarbonInterface\n     *\n     * @param class-string<T> $class\n     *\n     * @return T\n     */\n    public function nowAs(string $class, DateTimeZone|string|int|null $timezone = null): CarbonInterface\n    {\n        $now = $this->nowRaw();\n        $date = $now instanceof $class ? $now : $class::instance($now);\n\n        return $timezone === null ? $date : $date->setTimezone($timezone);\n    }\n\n    public function nowAsCarbon(DateTimeZone|string|int|null $timezone = null): CarbonInterface\n    {\n        $now = $this->nowRaw();\n\n        return $now instanceof CarbonInterface\n            ? ($timezone === null ? $now : $now->setTimezone($timezone))\n            : $this->dateAsCarbon($now, $timezone);\n    }\n\n    private function dateAsCarbon(DateTimeInterface $date, DateTimeZone|string|int|null $timezone): CarbonInterface\n    {\n        return $date instanceof DateTimeImmutable\n            ? new CarbonImmutable($date, $timezone)\n            : new Carbon($date, $timezone);\n    }\n\n    public function sleep(float|int $seconds): void\n    {\n        if ($seconds === 0 || $seconds === 0.0) {\n            return;\n        }\n\n        if ($seconds < 0) {\n            throw new RuntimeException('Expected positive number of seconds, '.$seconds.' given');\n        }\n\n        if ($this->currentClock instanceof DateTimeInterface) {\n            $this->currentClock = $this->addSeconds($this->currentClock, $seconds);\n\n            return;\n        }\n\n        if ($this->currentClock instanceof ClockInterface) {\n            $this->currentClock->sleep($seconds);\n\n            return;\n        }\n\n        $this->currentClock = $this->addSeconds($this->currentClock->now(), $seconds);\n    }\n\n    public function withTimeZone(DateTimeZone|string $timezone): static\n    {\n        if ($this->currentClock instanceof ClockInterface) {\n            return new self($this->currentClock->withTimeZone($timezone));\n        }\n\n        $now = $this->currentClock instanceof DateTimeInterface\n            ? $this->currentClock\n            : $this->currentClock->now();\n\n        if (!($now instanceof DateTimeImmutable)) {\n            $now = clone $now;\n        }\n\n        if (\\is_string($timezone)) {\n            $timezone = new DateTimeZone($timezone);\n        }\n\n        return new self($now->setTimezone($timezone));\n    }\n\n    private function addSeconds(DateTimeInterface $date, float|int $seconds): DateTimeInterface\n    {\n        $secondsPerHour = CarbonInterface::SECONDS_PER_MINUTE * CarbonInterface::MINUTES_PER_HOUR;\n        $hours = number_format(\n            floor($seconds / $secondsPerHour),\n            thousands_separator: '',\n        );\n        $microseconds = number_format(\n            ($seconds - $hours * $secondsPerHour) * CarbonInterface::MICROSECONDS_PER_SECOND,\n            thousands_separator: '',\n        );\n\n        if (!($date instanceof DateTimeImmutable)) {\n            $date = clone $date;\n        }\n\n        if ($hours !== '0') {\n            $date = $date->modify(\"$hours hours\");\n        }\n\n        if ($microseconds !== '0') {\n            $date = $date->modify(\"$microseconds microseconds\");\n        }\n\n        return $date;\n    }\n}\n"
  },
  {
    "path": "tests/AbstractTestCase.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonPeriodImmutable;\nuse Carbon\\CarbonTimeZone;\nuse Carbon\\Translator;\nuse Closure;\nuse DateTime;\nuse ErrorException;\nuse LogicException;\nuse PHPUnit\\Framework\\TestCase;\nuse PHPUnit\\Runner\\Version;\nuse RecursiveDirectoryIterator;\nuse RecursiveIteratorIterator;\nuse ReflectionProperty;\nuse Tests\\PHPUnit\\AssertObjectHasPropertyTrait;\nuse Throwable;\n\n/**\n * @SuppressWarnings(NumberOfChildren)\n */\nabstract class AbstractTestCase extends TestCase\n{\n    use AssertObjectHasPropertyTrait;\n\n    private ?string $saveTz = null;\n    protected ?Carbon $now = null;\n    protected ?CarbonImmutable $immutableNow = null;\n    protected bool $oldNow = false;\n    protected bool $oldImmutableNow = false;\n\n    /** @var class-string<CarbonPeriod> */\n    protected static string $periodClass = CarbonPeriod::class;\n    protected int $initialOptions = 0;\n\n    protected function getTimestamp(): int\n    {\n        return (new DateTime())->getTimestamp();\n    }\n\n    protected function setUp(): void\n    {\n        $this->initialOptions = static::$periodClass === CarbonPeriodImmutable::class ? CarbonPeriod::IMMUTABLE : 0;\n\n        //save current timezone\n        $this->saveTz = date_default_timezone_get();\n\n        date_default_timezone_set('America/Toronto');\n\n        /** @var Carbon $now */\n        $now = $this->oldNow\n            ? Carbon::create(2017, 6, 27, 13, 14, 15, 'UTC')\n            : Carbon::now();\n\n        /** @var CarbonImmutable $immutableNow */\n        $immutableNow = $this->oldImmutableNow\n            ? CarbonImmutable::create(2017, 6, 27, 13, 14, 15, 'UTC')\n            : CarbonImmutable::now();\n\n        Carbon::setTestNowAndTimezone($this->now = $now);\n        CarbonImmutable::setTestNowAndTimezone($this->immutableNow = $immutableNow);\n\n        Carbon::useStrictMode(true);\n        CarbonImmutable::useStrictMode(true);\n    }\n\n    protected function tearDown(): void\n    {\n        date_default_timezone_set($this->saveTz);\n\n        Carbon::setTestNow();\n        Carbon::resetToStringFormat();\n        Carbon::resetMonthsOverflow();\n        Carbon::setTranslator(new Translator('en'));\n        Carbon::setLocale('en');\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->resetMessages();\n\n        CarbonImmutable::setTestNow();\n        CarbonImmutable::resetToStringFormat();\n        CarbonImmutable::resetMonthsOverflow();\n        CarbonImmutable::setTranslator(new Translator('en'));\n        CarbonImmutable::setLocale('en');\n        /** @var Translator $translator */\n        $translator = CarbonImmutable::getTranslator();\n        $translator->resetMessages();\n    }\n\n    public function assertCarbon(CarbonInterface $d, $year, $month, $day, $hour = null, $minute = null, $second = null, $micro = null): void\n    {\n        $expected = [\n            'years' => $year,\n            'months' => $month,\n            'day' => $day,\n        ];\n\n        $actual = [\n            'years' => $d->year,\n            'months' => $d->month,\n            'day' => $d->day,\n        ];\n\n        if ($hour !== null) {\n            $actual['hours'] = $d->hour;\n            $expected['hours'] = $hour;\n        }\n\n        if ($minute !== null) {\n            $actual['minutes'] = $d->minute;\n            $expected['minutes'] = $minute;\n        }\n\n        if ($second !== null) {\n            $actual['seconds'] = $d->second;\n            $expected['seconds'] = $second;\n        }\n\n        if ($micro !== null) {\n            $actual['micro'] = $d->micro;\n            $expected['micro'] = $micro;\n        }\n\n        $this->assertSame($expected, $actual);\n    }\n\n    public function assertCarbonTime(CarbonInterface $d, $hour = null, $minute = null, $second = null, $micro = null): void\n    {\n        $actual = [];\n\n        $expected = [];\n\n        if ($hour !== null) {\n            $actual['hours'] = $d->hour;\n            $expected['hours'] = $hour;\n        }\n\n        if ($minute !== null) {\n            $actual['minutes'] = $d->minute;\n            $expected['minutes'] = $minute;\n        }\n\n        if ($second !== null) {\n            $actual['seconds'] = $d->second;\n            $expected['seconds'] = $second;\n        }\n\n        if ($micro !== null) {\n            $actual['micro'] = $d->micro;\n            $expected['micro'] = $micro;\n        }\n\n        $this->assertSame($expected, $actual);\n    }\n\n    /**\n     * @phpstan-assert CarbonInterface $d\n     */\n    public function assertInstanceOfCarbon($d): void\n    {\n        $this->assertInstanceOf(CarbonInterface::class, $d);\n    }\n\n    public function assertCarbonInterval(CarbonInterval $ci, $years, $months = null, $days = null, $hours = null, $minutes = null, $seconds = null, $microseconds = null, $inverted = null): void\n    {\n        $actual = ['years' => $ci->years];\n\n        $expected = ['years' => $years];\n\n        if ($months !== null) {\n            $actual['months'] = $ci->months;\n            $expected['months'] = $months;\n        }\n\n        if ($days !== null) {\n            $actual['days'] = $ci->dayz;\n            $expected['days'] = $days;\n        }\n\n        if ($hours !== null) {\n            $actual['hours'] = $ci->hours;\n            $expected['hours'] = $hours;\n        }\n\n        if ($minutes !== null) {\n            $actual['minutes'] = $ci->minutes;\n            $expected['minutes'] = $minutes;\n        }\n\n        if ($seconds !== null) {\n            $actual['seconds'] = $ci->seconds;\n            $expected['seconds'] = $seconds;\n        }\n\n        if ($microseconds !== null) {\n            $actual['microseconds'] = $ci->microseconds;\n            $expected['microseconds'] = $microseconds;\n        }\n\n        $this->assertSame($expected, $actual);\n\n        if ($inverted !== null) {\n            $this->assertSame((bool) $inverted, (bool) $ci->invert);\n        }\n    }\n\n    /**\n     * @phpstan-assert CarbonInterval $d\n     */\n    public function assertInstanceOfCarbonInterval($d): void\n    {\n        $this->assertInstanceOf(CarbonInterval::class, $d);\n    }\n\n    public function wrapWithTestNow(Closure $func, ?CarbonInterface $dt = null): void\n    {\n        $test = Carbon::getTestNow();\n        $immutableTest = CarbonImmutable::getTestNow();\n        $dt = $dt ?: Carbon::now();\n        Carbon::setTestNowAndTimezone($dt);\n        CarbonImmutable::setTestNowAndTimezone($dt);\n        $func();\n        Carbon::setTestNowAndTimezone($test);\n        CarbonImmutable::setTestNowAndTimezone($immutableTest);\n    }\n\n    public function wrapWithNonDstDate(Closure $func): void\n    {\n        $this->wrapWithTestNow($func, Carbon::now()->startOfYear());\n    }\n\n    public function wrapWithUtf8LcTimeLocale($locale, Closure $func): void\n    {\n        $currentLocale = setlocale(LC_TIME, '0');\n        $locales = [\"$locale.UTF-8\", \"$locale.utf8\"];\n        $mapping = [\n            'fr_FR' => 'French_France',\n        ];\n        $windowsLocale = $mapping[$locale] ?? null;\n\n        if ($windowsLocale) {\n            $locales[] = \"$windowsLocale.UTF8\";\n        }\n\n        if (setlocale(LC_TIME, ...$locales) === false) {\n            $this->markTestSkipped(\"UTF-8 test need $locale.UTF-8 (a locale with accents).\");\n        }\n\n        try {\n            $func();\n        } finally {\n            setlocale(LC_TIME, $currentLocale);\n        }\n    }\n\n    public function withErrorAsException(Closure $func): void\n    {\n        $previous = set_error_handler(static function (int $code, string $message, string $file, int $line) {\n            throw new ErrorException($message, $code, $code, $file, $line);\n        });\n\n        $errorReporting = error_reporting();\n\n        try {\n            error_reporting(E_ALL);\n\n            $func();\n        } finally {\n            error_reporting($errorReporting);\n            restore_error_handler();\n        }\n    }\n\n    /**\n     * Standardize given set of dates (or period) before assertion.\n     *\n     * @param array|\\DatePeriod $dates\n     *\n     * @return array\n     */\n    public function standardizeDates($dates)\n    {\n        $result = [];\n\n        foreach ($dates as $date) {\n            if ($date instanceof DateTime) {\n                $date = Carbon::instance($date);\n            } elseif (\\is_string($date)) {\n                $date = Carbon::parse($date);\n            }\n\n            $result[] = $date->format('Y-m-d H:i:s P');\n        }\n\n        return $result;\n    }\n\n    protected function areSameLocales($a, $b): bool\n    {\n        static $aliases = null;\n\n        if ($aliases === null) {\n            $property = new ReflectionProperty(Translator::class, 'aliases');\n            $aliases = $property->getValue(Translator::get());\n        }\n\n        $a = $aliases[$a] ?? $a;\n        $b = $aliases[$b] ?? $b;\n\n        return $a === $b;\n    }\n\n    protected function firstValidTimezoneAmong(array $timezones): CarbonTimeZone\n    {\n        $firstError = null;\n\n        foreach ($timezones as $timezone) {\n            try {\n                return new CarbonTimeZone($timezone);\n            } catch (Throwable $exception) {\n                $firstError = $firstError ?? $exception;\n            }\n        }\n\n        throw $firstError;\n    }\n\n    protected function assertPeriodOptions(int $options, CarbonPeriod $period): void\n    {\n        $this->assertSame($this->initialOptions | $options, $period->getOptions());\n    }\n\n    protected function assertVeryClose(mixed $expected, mixed $actual, string $message = ''): void\n    {\n        $this->assertEqualsWithDelta(\n            $expected,\n            $actual,\n            0.000000000000001,\n            $message,\n        );\n    }\n\n    protected function assertSameIntervals(CarbonInterval $expected, CarbonInterval $actual, int $microsecondApproximation = 0): void\n    {\n        if (\n            $expected->microseconds !== $actual->microseconds\n            && $microsecondApproximation > 0\n            && $actual->microseconds >= $expected->microseconds - $microsecondApproximation\n            && $actual->microseconds <= $expected->microseconds + $microsecondApproximation\n        ) {\n            $actual->optimize();\n            $expected->optimize();\n            $expected->microseconds = $actual->microseconds;\n        }\n\n        $expectedProperties = $this->fetchProperties($expected);\n        $actualProperties = $this->fetchProperties($actual);\n\n        if (\n            isset($expectedProperties['f'], $actualProperties['f'])\n            && $expectedProperties['f'] !== $actualProperties['f']\n            && (abs($expectedProperties['f'] - $actualProperties['f']) * 1_000_000) < ($microsecondApproximation * 1.2)\n        ) {\n            $expectedProperties['f'] = $actualProperties['f'];\n        }\n\n        if (PHP_VERSION < 8.2) {\n            unset($expectedProperties['days']);\n            unset($actualProperties['days']);\n        }\n\n        if (\n            isset($expectedProperties['rawInterval'], $actualProperties['rawInterval'])\n            && $expectedProperties['rawInterval']->f !== $actualProperties['rawInterval']->f\n            && $microsecondApproximation > 0\n            && $actualProperties['rawInterval']->f >= $expectedProperties['rawInterval']->f - $microsecondApproximation\n            && $actualProperties['rawInterval']->f <= $expectedProperties['rawInterval']->f + $microsecondApproximation\n        ) {\n            unset($expectedProperties['rawInterval']);\n            unset($expectedProperties['originalInput']);\n            unset($actualProperties['rawInterval']);\n            unset($actualProperties['originalInput']);\n        }\n\n        if (Version::id() >= 12 && isset($expectedProperties['localTranslator'])) {\n            /** @var Translator $expectedTranslator */\n            $expectedTranslator = $expectedProperties['localTranslator'];\n            /** @var Translator $actualTranslator */\n            $actualTranslator = $actualProperties['localTranslator'] ?? null;\n            $this->assertInstanceOf(Translator::class, $actualTranslator);\n            $this->assertSame($expectedTranslator->getLocale(), $actualTranslator->getLocale());\n            $this->assertSameWithClosures($expectedTranslator->getMessages(), $actualTranslator->getMessages());\n            unset($expectedProperties['localTranslator'], $actualProperties['localTranslator']);\n        }\n\n        $this->assertEquals($expectedProperties, $actualProperties);\n    }\n\n    protected function assertSameWithClosures(array $expected, array $actual): void\n    {\n        $expected = $this->acceptClosuresFrom($expected, $actual);\n\n        $this->assertSame($expected, $actual);\n    }\n\n    protected function setLocaleOrSkip(string ...$locales): void\n    {\n        if (setlocale(LC_ALL, ...$locales) === false) {\n            $this->markTestSkipped(\"testSetLocaleToAuto test need $locales[0].\");\n        }\n\n        $currentLocale = setlocale(LC_TIME, '0');\n\n        if (!\\in_array($currentLocale, $locales, true)) {\n            throw new LogicException(\n                'setlocale(LC_ALL, \"'.implode('\", \"', $locales).'\") failed, '.\n                'current locale is unexpected: '.$currentLocale,\n            );\n        }\n    }\n\n    protected function remove(string $path): void\n    {\n        if (is_file($path)) {\n            unlink($path);\n\n            return;\n        }\n\n        $files = new RecursiveIteratorIterator(\n            new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::SKIP_DOTS),\n            RecursiveIteratorIterator::CHILD_FIRST\n        );\n\n        foreach ($files as $fileinfo) {\n            ($fileinfo->isDir() ? rmdir(...) : unlink(...))($fileinfo->getRealPath());\n        }\n\n        rmdir($path);\n    }\n\n    private function acceptClosuresFrom(array $destination, array $source): array\n    {\n        foreach ($source as $key => $value) {\n            if (\\is_array($value) && \\is_array($destination[$key])) {\n                $destination[$key] = $this->acceptClosuresFrom($destination[$key], $value);\n\n                continue;\n            }\n\n            if (($value instanceof Closure) && ($destination[$key] instanceof Closure)) {\n                if ($destination[$key] !== $value && $this->captureVarDump($value) === $this->captureVarDump($destination[$key])) {\n                    $destination[$key] = $value;\n                }\n            }\n        }\n\n        return $destination;\n    }\n\n    /** @SuppressWarnings(DevelopmentCodeFragment) */\n    private function captureVarDump(mixed $value): string\n    {\n        ob_start();\n        var_dump($value);\n        $content = ob_get_contents();\n        ob_end_clean();\n\n        return preg_replace('/(Closure.*)#\\d+(\\s)/', '$1$2', \"$content\");\n    }\n\n    private function fetchProperties(object $object): array\n    {\n        $properties = (array) $object;\n\n        return array_combine(\n            array_map(\n                static fn (string $property): string => preg_replace('/^\\0\\*\\0/', '', $property),\n                array_keys($properties),\n            ),\n            $properties,\n        );\n    }\n}\n"
  },
  {
    "path": "tests/AbstractTestCaseWithOldNow.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\n\nabstract class AbstractTestCaseWithOldNow extends AbstractTestCase\n{\n    protected bool $oldNow = true;\n    protected bool $oldImmutableNow = true;\n\n    protected function tearDown(): void\n    {\n        Carbon::resetMacros();\n        Carbon::serializeUsing(null);\n\n        CarbonImmutable::resetMacros();\n        CarbonImmutable::serializeUsing(null);\n\n        parent::tearDown();\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/AddMonthsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass AddMonthsTest extends AbstractTestCase\n{\n    /**\n     * @var \\Carbon\\Carbon\n     */\n    private $carbon;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $date = Carbon::create(2016, 1, 31);\n\n        $this->carbon = $date;\n    }\n\n    public static function dataForTestAddMonthNoOverflow(): Generator\n    {\n        yield [-2, 2015, 11, 30];\n        yield [-1, 2015, 12, 31];\n        yield [0, 2016, 1, 31];\n        yield [1, 2016, 2, 29];\n        yield [2, 2016, 3, 31];\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testAddMonthNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthNoOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testAddMonthsNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthsNoOverflow($months), $y, $m, $d);\n    }\n\n    public static function dataForTestSubMonthNoOverflow(): Generator\n    {\n        yield [-2, 2016, 3, 31];\n        yield [-1, 2016, 2, 29];\n        yield [0, 2016, 1, 31];\n        yield [1, 2015, 12, 31];\n        yield [2, 2015, 11, 30];\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSubMonthNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthNoOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSubMonthsNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthsNoOverflow($months), $y, $m, $d);\n    }\n\n    public static function dataForTestAddMonthWithOverflow(): Generator\n    {\n        yield [-2, 2015, 12, 1];\n        yield [-1, 2015, 12, 31];\n        yield [0, 2016, 1, 31];\n        yield [1, 2016, 3, 2];\n        yield [2, 2016, 3, 31];\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testAddMonthWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthWithOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testAddMonthsWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthsWithOverflow($months), $y, $m, $d);\n    }\n\n    public static function dataForTestSubMonthWithOverflow(): Generator\n    {\n        yield [-2, 2016, 3, 31];\n        yield [-1, 2016, 3, 2];\n        yield [0, 2016, 1, 31];\n        yield [1, 2015, 12, 31];\n        yield [2, 2015, 12, 1];\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testSubMonthWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthWithOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testSubMonthsWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthsWithOverflow($months), $y, $m, $d);\n    }\n\n    public function testSetOverflowIsTrue()\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertTrue(Carbon::shouldOverflowMonths());\n    }\n\n    public function testSetOverflowIsFalse()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::shouldOverflowMonths());\n    }\n\n    public function testSetOverflowIsResetInTests()\n    {\n        $this->assertTrue(Carbon::shouldOverflowMonths());\n    }\n\n    public function testSetOverflowIsReset()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::shouldOverflowMonths());\n\n        Carbon::resetMonthsOverflow();\n        $this->assertTrue(Carbon::shouldOverflowMonths());\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testUseOverflowAddMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->addMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testUseOverflowAddMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->addMonths($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testUseOverflowSubMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->subMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testUseOverflowSubMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->subMonths($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testSkipOverflowAddMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->addMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testSkipOverflowAddMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->addMonths($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSkipOverflowSubMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->subMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSkipOverflowSubMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->subMonths($months), $y, $m, $d);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/AddTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Unit;\nuse DateTime;\nuse Tests\\AbstractTestCase;\n\nclass AddTest extends AbstractTestCase\n{\n    public function testAddMethod()\n    {\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, 'year')->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add('year', 2)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, Unit::Year)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(Unit::Year, 2)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add('2 years')->year);\n        $lastNegated = null;\n        $date = Carbon::createFromDate(1975)->add(\n            function (DateTime $date, bool $negated = false) use (&$lastNegated): DateTime {\n                $lastNegated = $negated;\n\n                return new DateTime($date->format('Y-m-d H:i:s').' + 2 years');\n            },\n        );\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(1977, $date->year);\n        $this->assertFalse($lastNegated);\n        /** @var CarbonInterval $interval */\n        $interval = include __DIR__.'/../Fixtures/dynamicInterval.php';\n        $originalDate = Carbon::parse('2020-06-04');\n        $date = $originalDate->add($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-06-08', $date->format('Y-m-d'));\n        $this->assertSame($date, $originalDate);\n        $date = Carbon::parse('2020-06-23')->add($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-07-16', $date->format('Y-m-d'));\n    }\n\n    public function testAddYearsPositive()\n    {\n        $this->assertSame(1976, Carbon::createFromDate(1975)->addYears(1)->year);\n    }\n\n    public function testAddYearsZero()\n    {\n        $this->assertSame(1975, Carbon::createFromDate(1975)->addYears(0)->year);\n    }\n\n    public function testAddYearsNegative()\n    {\n        $this->assertSame(1974, Carbon::createFromDate(1975)->addYears(-1)->year);\n    }\n\n    public function testAddYear()\n    {\n        $this->assertSame(1976, Carbon::createFromDate(1975)->addYear()->year);\n    }\n\n    public function testAddDaysPositive()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 5, 31)->addDays(1)->day);\n    }\n\n    public function testAddDaysZero()\n    {\n        $this->assertSame(31, Carbon::createFromDate(1975, 5, 31)->addDays(0)->day);\n    }\n\n    public function testAddDaysNegative()\n    {\n        $this->assertSame(30, Carbon::createFromDate(1975, 5, 31)->addDays(-1)->day);\n    }\n\n    public function testAddDay()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 5, 31)->addDay()->day);\n    }\n\n    public function testAddOverflow()\n    {\n        $this->assertSame(\n            '2021-03-03',\n            Carbon::parse('2021-01-31')->add(1, 'months', true)->format('Y-m-d'),\n        );\n        $this->assertSame(\n            '2021-03-03',\n            Carbon::parse('2021-01-31')->add(1, 'months')->format('Y-m-d'),\n        );\n        $this->assertSame(\n            '2021-02-28',\n            Carbon::parse('2021-01-31')->add(1, 'months', false)->format('Y-m-d'),\n        );\n    }\n\n    public function testAddWeekdaysPositive()\n    {\n        $dt = Carbon::create(2012, 1, 4, 13, 2, 1)->addWeekdays(9);\n\n        $this->assertSame(17, $dt->day);\n\n        // test for https://bugs.php.net/bug.php?id=54909\n        $this->assertSame(13, $dt->hour);\n        $this->assertSame(2, $dt->minute);\n        $this->assertSame(1, $dt->second);\n    }\n\n    public function testAddCustomWeekdays()\n    {\n        $date = Carbon::createMidnightDate(2018, 5, 25);\n\n        $weekendDays = Carbon::getWeekendDays();\n        Carbon::setWeekendDays([\n            Carbon::WEDNESDAY,\n        ]);\n\n        $date->addWeekdays(2);\n        $this->assertSame(27, $date->day);\n        $date->subWeekdays(-3);\n        $this->assertSame(31, $date->day);\n        $date->addWeekdays(-3);\n        $this->assertSame(27, $date->day);\n        $date->subWeekdays(2);\n        $this->assertSame(25, $date->day);\n        $date->addWeekdays(14);\n        $this->assertSame(10, $date->day);\n        $date->subWeekdays(14);\n        $this->assertSame(25, $date->day);\n        $date->addWeekdays(12);\n        $this->assertSame(8, $date->day);\n        $date->subWeekdays(12);\n        $this->assertSame(25, $date->day);\n\n        Carbon::setWeekendDays($weekendDays);\n    }\n\n    public function testAddWeekdaysZero()\n    {\n        $this->assertSame(4, Carbon::createFromDate(2012, 1, 4)->addWeekdays(0)->day);\n    }\n\n    public function testAddWeekdaysNegative()\n    {\n        $this->assertSame(18, Carbon::createFromDate(2012, 1, 31)->addWeekdays(-9)->day);\n    }\n\n    public function testAddWeekday()\n    {\n        $this->assertSame(9, Carbon::createFromDate(2012, 1, 6)->addWeekday()->day);\n    }\n\n    public function testAddWeekdayDuringWeekend()\n    {\n        $this->assertSame(9, Carbon::createFromDate(2012, 1, 7)->addWeekday()->day);\n    }\n\n    public function testAddWeeksPositive()\n    {\n        $this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->addWeeks(1)->day);\n    }\n\n    public function testAddWeeksZero()\n    {\n        $this->assertSame(21, Carbon::createFromDate(1975, 5, 21)->addWeeks(0)->day);\n    }\n\n    public function testAddWeeksNegative()\n    {\n        $this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->addWeeks(-1)->day);\n    }\n\n    public function testAddWeek()\n    {\n        $this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->addWeek()->day);\n    }\n\n    public function testAddHoursPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0)->addHours(1)->hour);\n    }\n\n    public function testAddHoursZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0)->addHours(0)->hour);\n    }\n\n    public function testAddHoursNegative()\n    {\n        $this->assertSame(23, Carbon::createFromTime(0)->addHours(-1)->hour);\n    }\n\n    public function testAddHour()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0)->addHour()->hour);\n    }\n\n    public function testAddMinutesPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0)->addMinutes(1)->minute);\n    }\n\n    public function testAddMinutesZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0)->addMinutes(0)->minute);\n    }\n\n    public function testAddMinutesNegative()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0)->addMinutes(-1)->minute);\n    }\n\n    public function testAddMinute()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0)->addMinute()->minute);\n    }\n\n    public function testAddSecondsPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addSeconds(1)->second);\n    }\n\n    public function testAddSecondsZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0, 0)->addSeconds(0)->second);\n    }\n\n    public function testAddSecondsNegative()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0, 0)->addSeconds(-1)->second);\n    }\n\n    public function testAddDecimalSeconds()\n    {\n        $this->assertSame(\n            '1999-12-31 23:59:58.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addSeconds(-1.5)->format('Y-m-d H:i:s.u'),\n        );\n        $this->assertSame(\n            '2000-01-01 00:00:01.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addSeconds(1.5)->format('Y-m-d H:i:s.u'),\n        );\n        $this->assertSame(\n            '1999-12-31 23:59:58.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addRealSeconds(-1.5)->format('Y-m-d H:i:s.u'),\n        );\n        $this->assertSame(\n            '2000-01-01 00:00:01.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addRealSeconds(1.5)->format('Y-m-d H:i:s.u'),\n        );\n    }\n\n    public function testAddSecond()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addSecond()->second);\n    }\n\n    public function testAddMillisecondsPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addMilliseconds(1)->millisecond);\n    }\n\n    public function testAddMillisecondsZero()\n    {\n        $this->assertSame(100, Carbon::createFromTime(0, 0, 0.1)->addMilliseconds(0)->millisecond);\n    }\n\n    public function testAddMillisecondsNegative()\n    {\n        $this->assertSame(999, Carbon::createFromTime(0, 0, 0)->addMilliseconds(-1)->millisecond);\n        $this->assertSame(99, Carbon::createFromTime(0, 0, 0.1)->addMilliseconds(-1)->millisecond);\n    }\n\n    public function testAddMillisecond()\n    {\n        $this->assertSame(101, Carbon::createFromTime(0, 0, 0.1)->addMillisecond()->millisecond);\n    }\n\n    public function testAddMicrosecondsPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addMicroseconds(1)->microsecond);\n    }\n\n    public function testAddMicrosecondsZero()\n    {\n        $this->assertSame(100000, Carbon::createFromTime(0, 0, 0.1)->addMicroseconds(0)->microsecond);\n    }\n\n    public function testAddMicrosecondsNegative()\n    {\n        $this->assertSame(999999, Carbon::createFromTime(0, 0, 0)->addMicroseconds(-1)->microsecond);\n        $this->assertSame(99999, Carbon::createFromTime(0, 0, 0.1)->addMicroseconds(-1)->microsecond);\n    }\n\n    public function testAddMicrosecond()\n    {\n        $this->assertSame(100001, Carbon::createFromTime(0, 0, 0.1)->addMicrosecond()->microsecond);\n    }\n\n    /**\n     * Test non plural methods with non default args.\n     */\n    public function testAddYearPassingArg()\n    {\n        // addYear should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1977, $date->addYear(2)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, 'year')->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, 'years')->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(CarbonInterval::years(2))->year);\n    }\n\n    public function testAddDayPassingArg()\n    {\n        // addDay should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 10);\n        $this->assertSame(12, $date->addDay(2)->day);\n    }\n\n    public function testAddHourPassingArg()\n    {\n        // addHour should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(10);\n        $this->assertSame(12, $date->addHour(2)->hour);\n    }\n\n    public function testAddMinutePassingArg()\n    {\n        // addMinute should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(2, $date->addMinute(2)->minute);\n    }\n\n    public function testAddSecondPassingArg()\n    {\n        // addSecond should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(2, $date->addSecond(2)->second);\n    }\n\n    public function testAddQuarter()\n    {\n        $this->assertSame(8, Carbon::createFromDate(1975, 5, 6)->addQuarter()->month);\n    }\n\n    public function testAddQuarterNegative()\n    {\n        // addQuarter should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 6);\n        $this->assertSame(2, $date->addQuarter(-1)->month);\n    }\n\n    public function testSubQuarter()\n    {\n        $this->assertSame(2, Carbon::createFromDate(1975, 5, 6)->subQuarter()->month);\n    }\n\n    public function testSubQuarterNegative()\n    {\n        $this->assertCarbon(Carbon::createFromDate(1975, 5, 6)->subQuarters(2), 1974, 11, 6);\n    }\n\n    public function testAddCentury()\n    {\n        $this->assertSame(2075, Carbon::createFromDate(1975)->addCentury()->year);\n        // addCentury should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2075, $date->addCentury(1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2175, $date->addCentury(2)->year);\n    }\n\n    public function testAddCenturyNegative()\n    {\n        // addCentury should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1875, $date->addCentury(-1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1775, $date->addCentury(-2)->year);\n    }\n\n    public function testAddCenturies()\n    {\n        $this->assertSame(2075, Carbon::createFromDate(1975)->addCenturies(1)->year);\n        $this->assertSame(2175, Carbon::createFromDate(1975)->addCenturies(2)->year);\n    }\n\n    public function testAddCenturiesNegative()\n    {\n        $this->assertSame(1875, Carbon::createFromDate(1975)->addCenturies(-1)->year);\n        $this->assertSame(1775, Carbon::createFromDate(1975)->addCenturies(-2)->year);\n    }\n\n    public function testSubCentury()\n    {\n        $this->assertSame(1875, Carbon::createFromDate(1975)->subCentury()->year);\n        // subCentury should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1875, $date->subCentury(1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1775, $date->subCentury(2)->year);\n    }\n\n    public function testSubCenturyNegative()\n    {\n        // subCentury should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2075, $date->subCentury(-1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2175, $date->subCentury(-2)->year);\n    }\n\n    public function testSubCenturies()\n    {\n        $this->assertSame(1875, Carbon::createFromDate(1975)->subCenturies(1)->year);\n        $this->assertSame(1775, Carbon::createFromDate(1975)->subCenturies(2)->year);\n    }\n\n    public function testSubCenturiesNegative()\n    {\n        $this->assertSame(2075, Carbon::createFromDate(1975)->subCenturies(-1)->year);\n        $this->assertSame(2175, Carbon::createFromDate(1975)->subCenturies(-2)->year);\n    }\n\n    public function testAddYearNoOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearNoOverflow(), 2017, 2, 28);\n    }\n\n    public function testAddYearWithOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearWithOverflow(), 2017, 3, 1);\n    }\n\n    public function testAddYearNoOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearsNoOverflow(2), 2018, 2, 28);\n    }\n\n    public function testAddYearWithOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearsWithOverflow(2), 2018, 3, 1);\n    }\n\n    public function testSubYearNoOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearsNoOverflow(2), 2014, 2, 28);\n    }\n\n    public function testSubYearWithOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearsWithOverflow(2), 2014, 3, 1);\n    }\n\n    public function testSubYearNoOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearNoOverflow(), 2015, 2, 28);\n    }\n\n    public function testSubYearWithOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearWithOverflow(), 2015, 3, 1);\n    }\n\n    public function testUseYearsOverflow()\n    {\n        $this->assertTrue(Carbon::shouldOverflowYears());\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYears(2), 2018, 3, 1);\n        Carbon::useYearsOverflow(false);\n        $this->assertFalse(Carbon::shouldOverflowYears());\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYears(2), 2018, 2, 28);\n        Carbon::resetYearsOverflow();\n        $this->assertTrue(Carbon::shouldOverflowYears());\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYears(2), 2018, 3, 1);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ArraysTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Translator;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\DumpCarbon;\n\nclass ArraysTest extends AbstractTestCase\n{\n    public function testToArray()\n    {\n        $dt = Carbon::now();\n        $dtToArray = $dt->toArray();\n\n        $this->assertIsArray($dtToArray);\n\n        $this->assertArrayHasKey('year', $dtToArray);\n        $this->assertSame($dt->year, $dtToArray['year']);\n\n        $this->assertArrayHasKey('month', $dtToArray);\n        $this->assertSame($dt->month, $dtToArray['month']);\n\n        $this->assertArrayHasKey('day', $dtToArray);\n        $this->assertSame($dt->day, $dtToArray['day']);\n\n        $this->assertArrayHasKey('dayOfWeek', $dtToArray);\n        $this->assertSame($dt->dayOfWeek, $dtToArray['dayOfWeek']);\n\n        $this->assertArrayHasKey('dayOfYear', $dtToArray);\n        $this->assertSame($dt->dayOfYear, $dtToArray['dayOfYear']);\n\n        $this->assertArrayHasKey('hour', $dtToArray);\n        $this->assertSame($dt->hour, $dtToArray['hour']);\n\n        $this->assertArrayHasKey('minute', $dtToArray);\n        $this->assertSame($dt->minute, $dtToArray['minute']);\n\n        $this->assertArrayHasKey('second', $dtToArray);\n        $this->assertSame($dt->second, $dtToArray['second']);\n\n        $this->assertArrayHasKey('micro', $dtToArray);\n        $this->assertSame($dt->micro, $dtToArray['micro']);\n\n        $this->assertArrayHasKey('timestamp', $dtToArray);\n        $this->assertSame($dt->timestamp, $dtToArray['timestamp']);\n\n        $this->assertArrayHasKey('timezone', $dtToArray);\n        $this->assertEquals($dt->timezone, $dtToArray['timezone']);\n\n        $this->assertArrayHasKey('formatted', $dtToArray);\n        $this->assertSame($dt->format(Carbon::DEFAULT_TO_STRING_FORMAT), $dtToArray['formatted']);\n    }\n\n    public function testDebugInfo()\n    {\n        $dt = Carbon::parse('2019-04-09 11:10:10.667952');\n        $debug = $dt->__debugInfo();\n\n        // Ignored as not in PHP 8\n        if (isset($debug['timezone_type'])) {\n            unset($debug['timezone_type']);\n        }\n\n        $this->assertSame([\n            'date' => '2019-04-09 11:10:10.667952',\n            'timezone' => 'America/Toronto',\n        ], $debug);\n\n        $dt = Carbon::parse('2019-04-09 11:10:10.667952')->locale('fr_FR');\n        $debug = $dt->__debugInfo();\n\n        // Ignored as not in PHP 8\n        if (isset($debug['timezone_type'])) {\n            unset($debug['timezone_type']);\n        }\n\n        $this->assertSame([\n            'localTranslator' => Translator::get('fr_FR'),\n            'date' => '2019-04-09 11:10:10.667952',\n            'timezone' => 'America/Toronto',\n        ], $debug);\n    }\n\n    public function testDebuggingWithFormatException()\n    {\n        $date = new DumpCarbon();\n        $date->breakFormat();\n        $this->assertIsArray($date->__debugInfo());\n    }\n\n    public function testDebuggingUninitializedInstances()\n    {\n        $date = new DumpCarbon();\n        $this->assertStringContainsString(DumpCarbon::class, $date->getDump());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTime;\nuse Tests\\AbstractTestCase;\n\nclass ComparisonTest extends AbstractTestCase\n{\n    public function testEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->eq(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->eq(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testEqualWithTimezoneTrue()\n    {\n        $this->assertTrue(Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto')->eq(Carbon::create(2000, 1, 1, 9, 0, 0, 'America/Vancouver')));\n    }\n\n    public function testEqualWithTimezoneFalse()\n    {\n        $timezones = ['Europe/London', 'America/Toronto', 'America/Vancouver', 'Asia/Tokyo'];\n\n        foreach ($timezones as $a) {\n            foreach ($timezones as $b) {\n                $from = Carbon::createFromDate(2000, 1, 1, $a);\n                $to = Carbon::createFromDate(2000, 1, 1, $b);\n                $diff = $from->floatDiffInHours($to, false) + Carbon::now($a)->dst - Carbon::now($b)->dst;\n\n                $this->assertTrue(\\in_array($diff, $a === $b ? [0.0] : [0.0, 24.0, -24.0], true));\n            }\n        }\n\n        Carbon::setTestNow();\n\n        foreach ($timezones as $a) {\n            foreach ($timezones as $b) {\n                $from = Carbon::createFromDate(2000, 1, 1, $a);\n                $to = Carbon::createFromDate(2000, 1, 1, $b);\n                $diff = $from->floatDiffInHours($to, false) + Carbon::now($a)->dst - Carbon::now($b)->dst;\n                $diff = round($diff * 1800) / 1800; // 2-seconds precision\n\n                $this->assertTrue(\\in_array($diff, $a === $b ? [0.0] : [0.0, 24.0, -24.0], true));\n            }\n        }\n    }\n\n    public function testNotEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->ne(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testNotEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->ne(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->gt(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->gt(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testGreaterThanWithTimezoneTrue()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 8, 59, 59, 'America/Vancouver');\n        $this->assertTrue($dt1->gt($dt2));\n    }\n\n    public function testGreaterThanWithString()\n    {\n        Carbon::setToStringFormat('d.m.Y \\a\\t h:i a');\n        $this->assertTrue(Carbon::parse('2022-05-03')->gt('2021-05-03'));\n        $this->assertFalse(Carbon::parse('2021-05-03')->gt('2022-05-03'));\n        Carbon::setToStringFormat(null);\n    }\n\n    public function testGreaterThanWithTimezoneFalse()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 9, 0, 1, 'America/Vancouver');\n        $this->assertFalse($dt1->gt($dt2));\n    }\n\n    public function testGreaterThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->gte(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->gte(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->gte(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lt(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lt(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testLessThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lte(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lte(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testLessThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lte(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testBetweenEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 15), true));\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->isBetween(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 15), true));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(new DateTime('2000-01-01'), new DateTime('2000-01-31'), true));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(new DateTime('2000-01-01'), new DateTime('2000-01-31'), true));\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->between(new DateTime('2000-01-15'), new DateTime('2000-01-31'), true));\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->isBetween(new DateTime('2000-01-15'), new DateTime('2000-01-31'), true));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between('2000-01-01', '2000-01-31', true));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween('2000-01-01', '2000-01-31', true));\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->between('2000-01-01', '2000-01-15', true));\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->isBetween('2000-01-01', '2000-01-15', true));\n\n        $this->assertTrue(Carbon::create(2000, 1, 15, 17, 20, 54)->between('2000-01-15 17:20:50', '2000-01-15 17:20:54', true));\n        $this->assertTrue(Carbon::create(2000, 1, 15, 17, 20, 54)->isBetween('2000-01-15 17:20:50', '2000-01-15 17:20:54', true));\n        $this->assertTrue(Carbon::create(2000, 1, 15, 17, 20, 54)->between('2000-01-15 17:20:54', '2000-01-15 17:20:56', true));\n        $this->assertTrue(Carbon::create(2000, 1, 15, 17, 20, 54)->isBetween('2000-01-15 17:20:54', '2000-01-15 17:20:56', true));\n    }\n\n    public function testBetweenNotEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 15), false));\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 15)->isBetween(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 15), false));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(new DateTime('2000-01-01'), new DateTime('2000-01-31'), false));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(new DateTime('2000-01-01'), new DateTime('2000-01-31'), false));\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 15)->between(new DateTime('2000-01-01'), new DateTime('2000-01-15'), false));\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 15)->isBetween(new DateTime('2000-01-01'), new DateTime('2000-01-15'), false));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between('2000-01-01', '2000-01-31', false));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween('2000-01-01', '2000-01-31', false));\n        $this->assertFalse(Carbon::createMidnightDate(2000, 1, 15)->between('2000-01-15', '2000-01-31', false));\n        $this->assertFalse(Carbon::createMidnightDate(2000, 1, 15)->isBetween('2000-01-15', '2000-01-31', false));\n\n        $this->assertTrue(Carbon::create(2000, 1, 15, 17, 20, 54)->between('2000-01-15 17:20:50', '2000-01-15 17:20:55', false));\n        $this->assertTrue(Carbon::create(2000, 1, 15, 17, 20, 54)->isBetween('2000-01-15 17:20:50', '2000-01-15 17:20:55', false));\n        $this->assertFalse(Carbon::create(2000, 1, 15, 17, 20, 54)->between('2000-01-15 17:20:50', '2000-01-15 17:20:54', false));\n        $this->assertFalse(Carbon::create(2000, 1, 15, 17, 20, 54)->isBetween('2000-01-15 17:20:50', '2000-01-15 17:20:54', false));\n        $this->assertFalse(Carbon::create(2000, 1, 15, 17, 20, 54)->between('2000-01-15 17:20:54', '2000-01-15 17:20:56', false));\n        $this->assertFalse(Carbon::create(2000, 1, 15, 17, 20, 54)->isBetween('2000-01-15 17:20:54', '2000-01-15 17:20:56', false));\n    }\n\n    public function testBetweenExcludedTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->betweenExcluded(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31)));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->betweenExcluded(new DateTime('2000-01-01'), new DateTime('2000-01-31')));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->betweenExcluded('2000-01-01', '2000-01-31'));\n    }\n\n    public function testBetweenIncludedTrue()\n    {\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31)));\n\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded(new DateTime('2000-01-01'), new DateTime('2000-01-31')));\n\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded('2000-01-15', '2000-01-31'));\n\n        $this->assertTrue(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded('2000-01-01', '2000-01-15'));\n    }\n\n    public function testBetweenIncludedFalse()\n    {\n        $this->assertFalse(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded(Carbon::createFromDate(2000, 1, 16), Carbon::createFromDate(2000, 1, 31)));\n\n        $this->assertFalse(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded(new DateTime('2000-01-16'), new DateTime('2000-01-31')));\n\n        $this->assertFalse(Carbon::createMidnightDate(2000, 1, 15)->betweenIncluded('2000-01-16', '2000-01-31'));\n    }\n\n    public function testBetweenEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n    }\n\n    public function testBetweenNotEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n    }\n\n    public function testBetweenEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testBetweenEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testMinIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->min());\n    }\n\n    public function testMinWithNow()\n    {\n        $dt = Carbon::create(2012, 1, 1, 0, 0, 0)->min();\n        $this->assertCarbon($dt, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMinWithInstance()\n    {\n        $dt1 = Carbon::create(2013, 12, 31, 23, 59, 59);\n        $dt2 = Carbon::create(2012, 1, 1, 0, 0, 0)->min($dt1);\n        $this->assertCarbon($dt2, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMaxIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->max());\n    }\n\n    public function testMaxWithNow()\n    {\n        $dt = Carbon::create(2099, 12, 31, 23, 59, 59)->max();\n        $this->assertCarbon($dt, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testMaxWithInstance()\n    {\n        $dt1 = Carbon::create(2012, 1, 1, 0, 0, 0);\n        $dt2 = Carbon::create(2099, 12, 31, 23, 59, 59)->max($dt1);\n        $this->assertCarbon($dt2, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testIsBirthday()\n    {\n        $dt = Carbon::now();\n\n        // Birthday test can't work on February 29th\n        if ($dt->format('m-d') === '02-29') {\n            Carbon::setTestNowAndTimezone($dt->subDay());\n            $dt = Carbon::now();\n        }\n\n        $aBirthday = $dt->subYear();\n        $this->assertTrue($aBirthday->isBirthday());\n        $notABirthday = $dt->subDay();\n        $this->assertFalse($notABirthday->isBirthday());\n        $alsoNotABirthday = $dt->addDays(2);\n        $this->assertFalse($alsoNotABirthday->isBirthday());\n\n        $dt1 = Carbon::createFromDate(1987, 4, 23);\n        $dt2 = Carbon::createFromDate(2014, 9, 26);\n        $dt3 = Carbon::createFromDate(2014, 4, 23);\n        $this->assertFalse($dt2->isBirthday($dt1));\n        $this->assertTrue($dt3->isBirthday($dt1));\n    }\n\n    public function testClosest()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 11, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $closest = $instance->closest($dt1, $dt2);\n        $this->assertSame($dt1, $closest);\n    }\n\n    public function testClosestWithEquals()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $closest = $instance->closest($dt1, $dt2);\n        $this->assertSame($dt1, $closest);\n    }\n\n    public function testClosestWithMicroseconds()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('2018-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('2018-10-11 20:59:06.300000');\n\n        $this->assertSame('06.600000', $baseDate->closest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testClosestWithFarDates()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('-4025-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('9995-10-11 20:59:06.300000');\n\n        $this->assertSame('06.600000', $baseDate->closest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testFarthest()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 11, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $farthest = $instance->farthest($dt1, $dt2);\n        $this->assertSame($dt2, $farthest);\n    }\n\n    public function testFarthestWithEquals()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $farthest = $instance->farthest($dt1, $dt2);\n        $this->assertSame($dt2, $farthest);\n    }\n\n    public function testFarthestWithMicroseconds()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('2018-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('2018-10-11 20:59:06.300000');\n\n        $this->assertSame('06.300000', $baseDate->farthest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testFarthestWithFarDates()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('-4025-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('9995-10-11 20:59:06.300000');\n\n        $this->assertSame('06.300000', $baseDate->farthest($closestDate, $farthestDate)->format('s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ConstructTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse DateTime;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse SubCarbon;\nuse Tests\\AbstractTestCase;\n\nclass ConstructTest extends AbstractTestCase\n{\n    public function testCreatesAnInstanceDefaultToNow()\n    {\n        $c = new Carbon();\n        $now = Carbon::now();\n        $this->assertInstanceOfCarbon($c);\n        $this->assertInstanceOf(DateTime::class, $c);\n        $this->assertInstanceOf(DateTimeInterface::class, $c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n    }\n\n    public function testCreatesAnInstanceFromADateTime()\n    {\n        $c = new Carbon(Carbon::parse('2009-09-09 09:09:09'));\n\n        $this->assertSame('2009-09-09 09:09:09 America/Toronto', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09'));\n\n        $this->assertSame('2009-09-09 09:09:09 America/Toronto', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09', new DateTimeZone('Europe/Paris')));\n\n        $this->assertSame('2009-09-09 09:09:09 Europe/Paris', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09'), 'Europe/Paris');\n\n        $this->assertSame('2009-09-09 15:09:09 Europe/Paris', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09', new DateTimeZone('Asia/Tokyo')), 'Europe/Paris');\n\n        $this->assertSame('2009-09-09 02:09:09 Europe/Paris', $c->format('Y-m-d H:i:s e'));\n    }\n\n    public function testCreatesAnInstanceFromADateTimeException()\n    {\n        $this->expectException(InvalidTimeZoneException::class);\n\n        Carbon::useStrictMode(false);\n\n        new Carbon(\n            new DateTime('2009-09-09 09:09:09', new DateTimeZone('Asia/Tokyo')),\n            '¤¤ Incorrect Timezone ¤¤',\n        );\n    }\n\n    public function testParseWithEmptyStringCreatesAnInstanceDefaultToNow()\n    {\n        $c = Carbon::parse('');\n        $now = Carbon::now();\n        $this->assertInstanceOfCarbon($c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n\n        $c = new Carbon('');\n        $now = Carbon::now();\n        $this->assertInstanceOfCarbon($c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n    }\n\n    public function testParseZeroCreatesAnInstanceDefaultToUnixAreaStartUtc()\n    {\n        $c = Carbon::parse(0);\n        $now = Carbon::createFromTimestamp(0, '+00:00');\n        $this->assertInstanceOfCarbon($c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n\n        $c = new Carbon(0);\n        $now = Carbon::createFromTimestamp(0, '+00:00');\n        $this->assertInstanceOfCarbon($c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n    }\n\n    public function testWithFancyString()\n    {\n        Carbon::setTestNowAndTimezone(Carbon::today());\n        $c = new Carbon('first day of January 2008');\n        $this->assertCarbon($c, 2008, 1, 1, 0, 0, 0);\n    }\n\n    public function testParseWithFancyString()\n    {\n        Carbon::setTestNowAndTimezone(Carbon::today());\n        $c = Carbon::parse('first day of January 2008');\n        $this->assertCarbon($c, 2008, 1, 1, 0, 0, 0);\n    }\n\n    public function testParseWithYYYMMDD()\n    {\n        $c = Carbon::parse('20201128');\n        $this->assertCarbon($c, 2020, 11, 28, 0, 0, 0);\n    }\n\n    public function testParseWithYYYMMDDHHMMSS()\n    {\n        $c = Carbon::parse('20201128192533');\n        $this->assertCarbon($c, 2020, 11, 28, 19, 25, 33);\n    }\n\n    public function testDefaultTimezone()\n    {\n        $c = new Carbon('now');\n        $this->assertSame('America/Toronto', $c->tzName);\n    }\n\n    public function testParseWithDefaultTimezone()\n    {\n        $c = Carbon::parse('now');\n        $this->assertSame('America/Toronto', $c->tzName);\n    }\n\n    public function testSettingTimezone()\n    {\n        $timezone = 'Europe/London';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = new Carbon('now', $dtz);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame($dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testParseSettingTimezone()\n    {\n        $timezone = 'Europe/London';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = Carbon::parse('now', $dtz);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame($dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testSettingTimezoneWithString()\n    {\n        $timezone = 'Asia/Tokyo';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = new Carbon('now', $timezone);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame(9 + $dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testParseSettingTimezoneWithString()\n    {\n        $timezone = 'Asia/Tokyo';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = Carbon::parse('now', $timezone);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame(9 + $dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testSettingTimezoneWithInteger()\n    {\n        Carbon::useStrictMode(false);\n        $timezone = 5;\n        $c = new Carbon('2019-02-12 23:00:00', $timezone);\n        $this->assertSame('+05:00', $c->tzName);\n    }\n\n    public function testMockingWithMicroseconds()\n    {\n        $c = new Carbon(Carbon::now()->toDateTimeString().'.123456');\n        Carbon::setTestNow($c);\n\n        $mockedC = Carbon::now();\n        $this->assertTrue($c->eq($mockedC));\n\n        Carbon::setTestNow();\n    }\n\n    public function testTimestamp()\n    {\n        $date = new Carbon(1367186296);\n        $this->assertSame('Sunday 28 April 2013 21:58:16.000000', $date->format('l j F Y H:i:s.u'));\n\n        $date = new Carbon(123);\n        $this->assertSame('Thursday 1 January 1970 00:02:03.000000', $date->format('l j F Y H:i:s.u'));\n    }\n\n    public function testFloatTimestamp()\n    {\n        $date = new Carbon(1367186296.654321);\n        $this->assertSame('Sunday 28 April 2013 21:58:16.654321', $date->format('l j F Y H:i:s.u'));\n\n        $date = new Carbon(123.5);\n        $this->assertSame('Thursday 1 January 1970 00:02:03.500000', $date->format('l j F Y H:i:s.u'));\n    }\n\n    public function testDifferentType()\n    {\n        require_once __DIR__.'/../Fixtures/SubCarbon.php';\n\n        $subCarbon = new SubCarbon('2024-01-24 00:00');\n        $carbon = new Carbon('2024-01-24 00:00');\n        $this->assertTrue($subCarbon->equalTo($carbon));\n        $this->assertTrue($carbon->equalTo($subCarbon));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CopyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass CopyTest extends AbstractTestCase\n{\n    public function testCopy()\n    {\n        $dating = Carbon::now();\n        $dating2 = $dating->copy();\n        $this->assertNotSame($dating, $dating2);\n    }\n\n    public function testClone()\n    {\n        $dating = Carbon::now();\n        $dating2 = $dating->clone();\n        $this->assertNotSame($dating, $dating2);\n    }\n\n    public function testCopyEnsureTzIsCopied()\n    {\n        $dating = Carbon::createFromDate(2000, 1, 1, 'Europe/London');\n        $dating2 = $dating->copy();\n        $this->assertSame($dating->tzName, $dating2->tzName);\n        $this->assertSame($dating->offset, $dating2->offset);\n    }\n\n    public function testCopyEnsureMicrosAreCopied()\n    {\n        $micro = 254687;\n        $dating = Carbon::createFromFormat('Y-m-d H:i:s.u', '2014-02-01 03:45:27.'.$micro);\n        $dating2 = $dating->copy();\n        $this->assertSame($micro, $dating2->micro);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateFromDateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromDateTest extends AbstractTestCase\n{\n    public function testCreateFromDateWithDefaults()\n    {\n        $d = Carbon::createFromDate();\n        $this->assertSame($d->timestamp, Carbon::create(null, null, null, null, null, null)->timestamp);\n    }\n\n    public function testCreateFromDate()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21);\n        $this->assertCarbon($d, 1975, 5, 21);\n    }\n\n    public function testCreateFromDateWithYear()\n    {\n        $d = Carbon::createFromDate(1975);\n        $this->assertSame(1975, $d->year);\n    }\n\n    public function testCreateFromDateWithMonth()\n    {\n        $d = Carbon::createFromDate(null, 5);\n        $this->assertSame(5, $d->month);\n    }\n\n    public function testCreateFromDateWithDay()\n    {\n        $d = Carbon::createFromDate(null, null, 21);\n        $this->assertSame(21, $d->day);\n    }\n\n    public function testCreateFromDateWithTimezone()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21, 'Europe/London');\n        $this->assertCarbon($d, 1975, 5, 21);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromDateWithDateTimeZone()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21, new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, 1975, 5, 21);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateFromFormatTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTime;\nuse DateTimeZone;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhp;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\n\nclass CreateFromFormatTest extends AbstractTestCase\n{\n    /**\n     * @var array\n     */\n    protected $lastErrors;\n\n    /**\n     * @var array\n     */\n    protected $noErrors;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->lastErrors = [\n            'warning_count' => 1,\n            'warnings' => ['10' => 'The parsed date was invalid'],\n            'error_count' => 0,\n            'errors' => [],\n        ];\n    }\n\n    public function testCreateFromFormatReturnsCarbon()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertInstanceOfCarbon($d);\n    }\n\n    public function testCreateFromFormatWithNamedArguments()\n    {\n        $d = Carbon::createFromFormat(\n            format: 'Y-m-d H:i:s',\n            time: '1975-05-21 22:32:11',\n            timezone: 'Asia/tokyo',\n        );\n        $this->assertSame('1975-05-21 22:32:11 Asia/tokyo', $d->format('Y-m-d H:i:s e'));\n    }\n\n    public function testCreateFromFalseTimezone()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s.u', '1975-05-21 22:32:11.123456', false);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertSame('1975-05-21 22:32:11.123456 America/Toronto', $d->format('Y-m-d H:i:s.u e'));\n    }\n\n    /**\n     * Work-around for https://bugs.php.net/bug.php?id=80141\n     */\n    public function testCFormat()\n    {\n        $d = Carbon::createFromFormat('c', Carbon::parse('2020-02-02')->format('c'));\n        $this->assertCarbon($d, 2020, 2, 2, 0, 0, 0, 0);\n        $d = Carbon::createFromFormat('c', '2020-02-02T23:45:12+09:00');\n        $this->assertSame('+09:00', $d->tzName);\n        $this->assertCarbon($d, 2020, 2, 2, 23, 45, 12, 0);\n        $d = Carbon::createFromFormat('l c', 'Sunday 2020-02-02T23:45:12+09:00');\n        $this->assertSame('+09:00', $d->tzName);\n        $this->assertCarbon($d, 2020, 2, 2, 23, 45, 12, 0);\n        $d = Carbon::createFromFormat('l \\\\\\\\c', 'Sunday \\\\2020-02-02T23:45:12+09:00');\n        $this->assertSame('+09:00', $d->tzName);\n        $this->assertCarbon($d, 2020, 2, 2, 23, 45, 12, 0);\n        $d = Carbon::createFromFormat('Y-m-d\\\\cH:i:s', '2020-02-02c23:45:12');\n        $this->assertCarbon($d, 2020, 2, 2, 23, 45, 12, 0);\n    }\n\n    public function testCreateFromFormatWithMillisecondsAlone()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s.v', '1975-05-21 22:32:11.321');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11, 321000);\n        $this->assertInstanceOfCarbon($d);\n    }\n\n    /**\n     * Due to https://bugs.php.net/bug.php?id=75577, proper \"v\" format support can only work from PHP 7.3.0.\n     */\n    public function testCreateFromFormatWithMillisecondsMerged()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:s.vi', '1975-05-21 22:11.32132');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11, 321000);\n        $this->assertInstanceOfCarbon($d);\n    }\n\n    public function testCreateFromFormatWithTimezoneString()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11', 'Europe/London');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromFormatWithTimezone()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11', new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromFormatWithMillis()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s.u', '1975-05-21 22:32:11.254687');\n        $this->assertSame(254687, $d->micro);\n    }\n\n    public function testCreateFromFormatWithTestNow()\n    {\n        Carbon::setTestNow();\n        $nativeDate = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11');\n        Carbon::setTestNow(Carbon::now());\n        $mockedDate = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11');\n\n        $this->assertSame($mockedDate->micro === 0, $nativeDate->micro === 0);\n    }\n\n    #[RequiresPhp('>=8.2')]\n    public function testCreateLastErrorsCanBeAccessedByExtendingClass()\n    {\n        $this->assertFalse(MyCarbon::getLastErrors());\n    }\n\n    public function testCreateFromFormatHandlesLastErrors()\n    {\n        $carbon = Carbon::createFromFormat('d/m/Y', '41/02/1900');\n        $datetime = DateTime::createFromFormat('d/m/Y', '41/02/1900');\n\n        $this->assertSame($this->lastErrors, $carbon->getLastErrors());\n        $this->assertSame($carbon->getLastErrors(), $datetime->getLastErrors());\n    }\n\n    #[RequiresPhp('>=8.2')]\n    public function testCreateFromFormatResetLastErrors()\n    {\n        $carbon = Carbon::createFromFormat('d/m/Y', '41/02/1900');\n        $this->assertSame($this->lastErrors, $carbon->getLastErrors());\n\n        $carbon = Carbon::createFromFormat('d/m/Y', '11/03/2016');\n        $this->assertFalse($carbon->getLastErrors());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateFromTimeStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromTimeStringTest extends AbstractTestCase\n{\n    protected function setUp(): void\n    {\n        parent::setUp();\n        Carbon::setTestNow();\n    }\n\n    public function testCreateFromTimeString()\n    {\n        $d = Carbon::createFromTimeString('22:45');\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(45, $d->minute);\n        $this->assertSame(0, $d->second);\n        $this->assertSame(0, $d->micro);\n    }\n\n    public function testCreateFromTimeStringWithSecond()\n    {\n        $d = Carbon::createFromTimeString('22:45:12');\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(45, $d->minute);\n        $this->assertSame(12, $d->second);\n        $this->assertSame(0, $d->micro);\n    }\n\n    public function testCreateFromTimeStringWithMicroSecond()\n    {\n        $d = Carbon::createFromTimeString('22:45:00.625341');\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(45, $d->minute);\n        $this->assertSame(0, $d->second);\n        $this->assertSame(625341, $d->micro);\n    }\n\n    public function testCreateFromTimeStringWithDateTimeZone()\n    {\n        $d = Carbon::createFromTimeString('12:20:30', new DateTimeZone('Europe/London'));\n        $this->assertCarbonTime($d, 12, 20, 30, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromTimeStringWithTimeZoneString()\n    {\n        $d = Carbon::createFromTimeString('12:20:30', 'Europe/London');\n        $this->assertCarbonTime($d, 12, 20, 30, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateFromTimeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse DateTimeImmutable;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromTimeTest extends AbstractTestCase\n{\n    public function testCreateWithTestNow()\n    {\n        Carbon::setTestNow($testNow = Carbon::create(2011, 1, 1, 12, 13, 14));\n        $dt = Carbon::create(null, null, null, null, null, null);\n\n        $this->assertCarbon($dt, 2011, 1, 1, 12, 13, 14);\n        $this->assertTrue($testNow->eq($dt));\n    }\n\n    public function testCreateFromDateWithDefaults()\n    {\n        $d = Carbon::createFromTime();\n        $this->assertSame($d->timestamp, Carbon::create(null, null, null, 0, 0, 0)->timestamp);\n    }\n\n    public function testCreateFromDateWithNull()\n    {\n        $d = Carbon::createFromTime(null, null, null);\n        $this->assertSame($d->timestamp, Carbon::create(null, null, null, null, null, null)->timestamp);\n    }\n\n    public function testCreateFromTime()\n    {\n        $d = Carbon::createFromTime(23, 5, 21);\n        $this->assertCarbon($d, Carbon::now()->year, Carbon::now()->month, Carbon::now()->day, 23, 5, 21);\n    }\n\n    public function testCreateFromTimeWithTestNow()\n    {\n        Carbon::setTestNow();\n        $testTime = Carbon::createFromTime(12, 0, 0, 'GMT-25');\n        $today = Carbon::today('GMT-25')->modify('12:00');\n        $this->assertSame('12:00 -25:00', $testTime->format('H:i e'));\n        $this->assertSame($testTime->toIso8601String(), $today->toIso8601String());\n\n        $knownDate = Carbon::instance(new DateTimeImmutable('now UTC'));\n        Carbon::setTestNow($knownDate);\n\n        $testTime = Carbon::createFromTime(12, 0, 0, 'GMT-25');\n        $today = Carbon::today('GMT-25')->modify('12:00');\n        $this->assertSame('12:00 -25:00', $testTime->format('H:i e'));\n        $this->assertSame($testTime->toIso8601String(), $today->toIso8601String());\n    }\n\n    public function testCreateFromTimeGreaterThan99()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'second must be between 0 and 99, 100 given',\n        ));\n\n        Carbon::createFromTime(23, 5, 100);\n    }\n\n    public function testCreateFromTimeWithHour()\n    {\n        $d = Carbon::createFromTime(22);\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(0, $d->minute);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testCreateFromTimeWithMinute()\n    {\n        $d = Carbon::createFromTime(null, 5);\n        $this->assertSame(5, $d->minute);\n    }\n\n    public function testCreateFromTimeWithSecond()\n    {\n        $d = Carbon::createFromTime(null, null, 21);\n        $this->assertSame(21, $d->second);\n    }\n\n    public function testCreateFromTimeWithDateTimeZone()\n    {\n        $d = Carbon::createFromTime(12, 0, 0, new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, Carbon::now('Europe/London')->year, Carbon::now('Europe/London')->month, Carbon::now('Europe/London')->day, 12, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromTimeWithTimeZoneString()\n    {\n        $d = Carbon::createFromTime(12, 0, 0, 'Europe/London');\n        $this->assertCarbon($d, Carbon::now('Europe/London')->year, Carbon::now('Europe/London')->month, Carbon::now('Europe/London')->day, 12, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromTimeWithTimeZoneOnNow()\n    {\n        // disable test for now\n        // because we need Carbon::now() in Carbon::create() to work with given TZ\n        $test = Carbon::getTestNow();\n        Carbon::setTestNow();\n\n        $tz = 'Etc/GMT+12';\n\n        try {\n            $now = Carbon::now($tz);\n        } catch (InvalidFormatException $exception) {\n            if ($exception->getMessage() !== 'Unknown or bad timezone (Etc/GMT+12)') {\n                throw $exception;\n            }\n\n            $tz = 'GMT+12';\n            $now = Carbon::now($tz);\n        }\n\n        $dt = Carbon::createFromTime($now->hour, $now->minute, $now->second, $tz);\n\n        // re-enable test\n        Carbon::setTestNow($test);\n\n        // tested without microseconds\n        // because they appear within calls to Carbon\n        $this->assertSame($now->format('c'), $dt->format('c'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateFromTimestampTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromTimestampTest extends AbstractTestCase\n{\n    public function testCreateReturnsDatingInstance()\n    {\n        $d = Carbon::createFromTimestamp(Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5);\n    }\n\n    public function testCreateFromTimestampMs()\n    {\n        $baseTimestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000;\n\n        $timestamp = $baseTimestamp + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        $timestamp = $baseTimestamp + 321.8;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321800);\n\n        $timestamp = $baseTimestamp + 321.84;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321840);\n\n        $timestamp = $baseTimestamp + 321.847;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8474;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8479;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321848);\n    }\n\n    public function testCreateFromTimestampMsUTC()\n    {\n        // Toronto is GMT-04:00 in May\n        $baseTimestamp = Carbon::create(1975, 5, 21, 22, 32, 5)->timestamp * 1000;\n\n        $timestamp = $baseTimestamp + 321;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321000);\n\n        $timestamp = $baseTimestamp + 321.8;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321800);\n\n        $timestamp = $baseTimestamp + 321.84;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321840);\n\n        $timestamp = $baseTimestamp + 321.847;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8474;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8479;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321848);\n\n        $d = Carbon::createFromTimestampMsUTC(1);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0, 1000);\n\n        $d = Carbon::createFromTimestampMsUTC(60);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0, 60000);\n\n        $d = Carbon::createFromTimestampMsUTC(1000);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 1, 0);\n\n        $d = Carbon::createFromTimestampMsUTC(-0.04);\n        $this->assertCarbon($d, 1969, 12, 31, 23, 59, 59, 999960);\n    }\n\n    public function testComaDecimalSeparatorLocale()\n    {\n        $date = new Carbon('2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n\n        $date = Carbon::createFromFormat('Y-m-d\\TH:i:s.uT', '2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n        $timestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000 + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        $locale = setlocale(LC_ALL, '0');\n        if (setlocale(LC_ALL, 'fr_FR.UTF-8', 'fr_FR.utf8', 'French_France.UTF8') === false) {\n            $this->markTestSkipped('testComaDecimalSeparatorLocale test need fr_FR.UTF-8.');\n        }\n\n        $timestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000 + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        $date = new Carbon('2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n\n        $date = Carbon::createFromFormat('Y-m-d\\TH:i:s.uT', '2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n        $timestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000 + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        setlocale(LC_ALL, $locale);\n    }\n\n    public function testCreateFromTimestampWithTimezone()\n    {\n        $carbon = Carbon::createFromTimestamp((int) '468370800', '+0100');\n\n        $this->assertSame(468370800, $carbon->getTimestamp());\n        $this->assertSame('+01:00', $carbon->tzName);\n    }\n\n    public function testCreateFromTimestampUsesDefaultTimezone()\n    {\n        $d = Carbon::createFromTimestamp(0, 'America/Toronto');\n\n        // We know Toronto is -5 since no DST in Jan\n        $this->assertSame(1969, $d->year);\n        $this->assertSame(-5 * 3600, $d->offset);\n    }\n\n    public function testCreateFromTimestampWithDateTimeZone()\n    {\n        $d = Carbon::createFromTimestamp(0, new DateTimeZone('UTC'));\n        $this->assertSame('UTC', $d->tzName);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0);\n    }\n\n    public function testCreateFromTimestampWithString()\n    {\n        $d = Carbon::createFromTimestamp(0, 'UTC');\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0);\n        $this->assertSame(0, $d->offset);\n        $this->assertSame('UTC', $d->tzName);\n    }\n\n    public function testCreateFromTimestampGMTDoesNotUseDefaultTimezone()\n    {\n        $d = Carbon::createFromTimestampUTC(0);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0);\n        $this->assertSame(0, $d->offset);\n    }\n\n    /**\n     * Ensures DST php bug does not affect createFromTimestamp in DST change.\n     *\n     * @see https://github.com/briannesbitt/Carbon/issues/1951\n     */\n    public function testCreateFromTimestampInDstChange()\n    {\n        $this->assertSame(\n            '2019-11-03T01:00:00-04:00',\n            Carbon::createFromTimestamp(1572757200, 'America/New_York')->toIso8601String(),\n        );\n        $this->assertSame(\n            '2019-11-03T01:00:00-05:00',\n            Carbon::createFromTimestamp(1572757200 + 3600, 'America/New_York')->toIso8601String(),\n        );\n        $this->assertSame(\n            '2019-11-03T01:00:00-04:00',\n            Carbon::createFromTimestampMs(1572757200000, 'America/New_York')->toIso8601String(),\n        );\n        $this->assertSame(\n            '2019-11-03T01:00:00-05:00',\n            Carbon::createFromTimestampMs(1572757200000 + 3600000, 'America/New_York')->toIso8601String(),\n        );\n    }\n\n    public function testCreateFromMicrotimeFloat()\n    {\n        $microtime = 1600887164.88952298;\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889523', $d->format('U.u'));\n    }\n\n    public function testCreateFromMicrotimeStrings()\n    {\n        $microtime = '0.88951247 1600887164';\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889512', $d->format('U.u'));\n\n        $microtime = '0.88951247/1600887164/12.56';\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887177.449512', $d->format('U.u'));\n\n        $d = Carbon::createFromTimestamp('-10.6', 'America/Toronto');\n        $this->assertSame('1969-12-31 18:59:49.400000 -05:00', $d->format('Y-m-d H:i:s.u P'));\n\n        $d = new Carbon('@-10.6');\n        $this->assertSame('1969-12-31 23:59:49.400000 +00:00', $d->format('Y-m-d H:i:s.u P'));\n    }\n\n    public function testCreateFromMicrotimeUTCFloat()\n    {\n        $microtime = 1600887164.88952298;\n        $d = Carbon::createFromTimestampUTC($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889523', $d->format('U.u'));\n    }\n\n    public function testCreateFromMicrotimeUTCStrings()\n    {\n        $microtime = '0.88951247 1600887164';\n        $d = Carbon::createFromTimestampUTC($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889512', $d->format('U.u'));\n\n        $microtime = '0.88951247/1600887164/12.56';\n        $d = Carbon::createFromTimestampUTC($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887177.449512', $d->format('U.u'));\n    }\n\n    public function testNegativeIntegerTimestamp()\n    {\n        $this->assertSame(\n            '1969-12-31 18:59:59.000000 -05:00',\n            Carbon::createFromTimestamp(-1, 'America/Toronto')->format('Y-m-d H:i:s.u P'),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateSafeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\InvalidDateException;\nuse Tests\\AbstractTestCase;\n\nclass CreateSafeTest extends AbstractTestCase\n{\n    public function testInvalidDateExceptionProperties()\n    {\n        $e = new InvalidDateException('day', 'foo');\n        $this->assertSame('day', $e->getField());\n        $this->assertSame('foo', $e->getValue());\n    }\n\n    public function testCreateSafeThrowsExceptionForSecondLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('second', -1));\n\n        Carbon::createSafe(null, null, null, null, null, -1);\n    }\n\n    public function testCreateSafeThrowsExceptionForSecondLowerThanZeroInStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertNull(Carbon::createSafe(null, null, null, null, null, -1));\n    }\n\n    public function testCreateSafeThrowsExceptionForSecondGreaterThan59()\n    {\n        $this->expectExceptionObject(new InvalidDateException('second', 60));\n\n        Carbon::createSafe(null, null, null, null, null, 60);\n    }\n\n    public function testCreateSafeThrowsExceptionForMinuteLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('minute', -1));\n\n        Carbon::createSafe(null, null, null, null, -1);\n    }\n\n    public function testCreateSafeThrowsExceptionForMinuteGreaterThan59()\n    {\n        $this->expectExceptionObject(new InvalidDateException('minute', 60));\n\n        Carbon::createSafe(null, null, null, null, 60, 25);\n    }\n\n    public function testCreateSafeThrowsExceptionForHourLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('hour', -6));\n\n        Carbon::createSafe(null, null, null, -6);\n    }\n\n    public function testCreateSafeThrowsExceptionForHourGreaterThan24()\n    {\n        $this->expectExceptionObject(new InvalidDateException('hour', 25));\n\n        Carbon::createSafe(null, null, null, 25, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForDayLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', -5));\n\n        Carbon::createSafe(null, null, -5);\n    }\n\n    public function testCreateSafeThrowsExceptionForDayGreaterThan31()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 32));\n\n        Carbon::createSafe(null, null, 32, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForMonthLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('month', -4));\n\n        Carbon::createSafe(null, -4);\n    }\n\n    public function testCreateSafeThrowsExceptionForMonthGreaterThan12()\n    {\n        $this->expectExceptionObject(new InvalidDateException('month', 13));\n\n        Carbon::createSafe(null, 13, 5, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForYearEqualToZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('year', 0));\n\n        Carbon::createSafe(0);\n    }\n\n    public function testCreateSafeThrowsExceptionForYearLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('year', -5));\n\n        Carbon::createSafe(-5);\n    }\n\n    public function testCreateSafeThrowsExceptionForYearGreaterThan12()\n    {\n        $this->expectExceptionObject(new InvalidDateException('year', 10000));\n\n        Carbon::createSafe(10000, 12, 5, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayInShortMonth()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 31));\n\n        // 30 days in April\n        Carbon::createSafe(2016, 4, 31, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInLeapYear()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 30));\n\n        // 29 days in February for a leap year\n        $this->assertTrue(Carbon::create(2016, 2)->isLeapYear());\n        Carbon::createSafe(2016, 2, 30, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInLeapYearInStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertNull(Carbon::createSafe(2016, 2, 30, 17, 16, 15));\n    }\n\n    public function testCreateSafePassesForFebruaryInLeapYear()\n    {\n        // 29 days in February for a leap year\n        $this->assertSame(29, Carbon::createSafe(2016, 2, 29, 17, 16, 15)->day);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInNonLeapYear()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 29));\n\n        // 28 days in February for a non-leap year\n        $this->assertFalse(Carbon::create(2015, 2)->isLeapYear());\n        Carbon::createSafe(2015, 2, 29, 17, 16, 15);\n    }\n\n    public function testCreateSafePassesForInvalidDSTTime()\n    {\n        $message = '';\n\n        try {\n            // 1h jumped to 2h because of the DST, so 1h30 is not a safe date in PHP 5.4+\n            Carbon::createSafe(2014, 3, 30, 1, 30, 0, 'Europe/London');\n        } catch (InvalidDateException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertStringContainsString('hour : 1 is not a valid value.', $message);\n    }\n\n    public function testCreateSafePassesForValidDSTTime()\n    {\n        $this->assertSame(0, Carbon::createSafe(2014, 3, 30, 0, 30, 0, 'Europe/London')->hour);\n        $this->assertSame(2, Carbon::createSafe(2014, 3, 30, 2, 30, 0, 'Europe/London')->hour);\n        $this->assertSame(1, Carbon::createSafe(2014, 3, 30, 1, 30, 0, 'UTC')->hour);\n    }\n\n    public function testCreateSafeThrowsExceptionForWithNonIntegerValue()\n    {\n        $this->expectExceptionObject(new InvalidDateException('second', 15.1));\n\n        Carbon::createSafe(2015, 2, 10, 17, 16, 15.1);\n    }\n\n    public function testCreateSafePassesForFebruaryInNonLeapYear()\n    {\n        // 28 days in February for a non-leap year\n        $this->assertSame(28, Carbon::createSafe(2015, 2, 28, 17, 16, 15)->day);\n    }\n\n    public function testCreateSafePasses()\n    {\n        $sd = Carbon::createSafe(2015, 2, 15, 17, 16, 15);\n        $d = Carbon::create(2015, 2, 15, 17, 16, 15);\n        $this->assertEquals($d, $sd);\n        $this->assertCarbon($sd, 2015, 2, 15, 17, 16, 15);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateStrictTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\OutOfRangeException;\nuse Tests\\AbstractTestCase;\nuse TypeError;\n\nclass CreateStrictTest extends AbstractTestCase\n{\n    public function testCreateStrictThrowsExceptionForSecondLowerThanZero()\n    {\n        $this->expectExceptionObject(new OutOfRangeException('second', 0, 99, -1));\n\n        Carbon::createStrict(null, null, null, null, null, -1);\n    }\n\n    public function testCreateStrictThrowsExceptionForMonthOverRange()\n    {\n        $this->expectExceptionObject(new OutOfRangeException('month', 0, 99, 9001));\n\n        Carbon::createStrict(null, 9001);\n    }\n\n    public function testCreateStrictDoesNotAllowFormatString()\n    {\n        $this->expectException(TypeError::class);\n\n        Carbon::createStrict('2021-05-25', 'Y-m-d');\n    }\n\n    public function testCreateStrictResetsStrictModeOnSuccess()\n    {\n        Carbon::useStrictMode(false);\n\n        $this->assertInstanceOfCarbon(Carbon::createStrict());\n\n        $this->assertFalse(Carbon::isStrictModeEnabled());\n    }\n\n    public function testCreateStrictResetsStrictModeOnFailure()\n    {\n        Carbon::useStrictMode(false);\n\n        $exception = null;\n\n        try {\n            Carbon::createStrict(null, -1);\n        } catch (OutOfRangeException $e) {\n            $exception = $e;\n        }\n        $this->assertInstanceOf(OutOfRangeException::class, $exception);\n\n        $this->assertFalse(Carbon::isStrictModeEnabled());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/CreateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse Carbon\\Exceptions\\OutOfRangeException;\nuse DateTime;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse Tests\\AbstractTestCase;\n\nclass CreateTest extends AbstractTestCase\n{\n    public function testCreateReturnsDatingInstance()\n    {\n        $d = Carbon::create();\n        $this->assertInstanceOfCarbon($d);\n    }\n\n    public function testCreateWithDefaults()\n    {\n        $d = Carbon::create();\n        $this->assertSame($d->getTimestamp(), Carbon::create('0000-01-01 00:00:00')->getTimestamp());\n    }\n\n    public function testCreateWithNull()\n    {\n        $d = Carbon::create(null, null, null, null, null, null);\n        $this->assertSame($d->getTimestamp(), Carbon::now()->getTimestamp());\n    }\n\n    public function testCreateWithYear()\n    {\n        $d = Carbon::create(2012);\n        $this->assertSame(2012, $d->year);\n    }\n\n    public function testCreateHandlesNegativeYear()\n    {\n        $c = Carbon::create(-1, 10, 12, 1, 2, 3);\n        $this->assertCarbon($c, -1, 10, 12, 1, 2, 3);\n    }\n\n    public function testCreateHandlesFiveDigitsPositiveYears()\n    {\n        $c = Carbon::create(999999999, 10, 12, 1, 2, 3);\n        $this->assertCarbon($c, 999999999, 10, 12, 1, 2, 3);\n    }\n\n    public function testCreateHandlesFiveDigitsNegativeYears()\n    {\n        $c = Carbon::create(-999999999, 10, 12, 1, 2, 3);\n        $this->assertCarbon($c, -999999999, 10, 12, 1, 2, 3);\n    }\n\n    public function testCreateWithMonth()\n    {\n        $d = Carbon::create(null, 3);\n        $this->assertSame(3, $d->month);\n    }\n\n    public function testCreateWithInvalidMonth()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'month must be between 0 and 99, -5 given',\n        ));\n\n        Carbon::create(null, -5);\n    }\n\n    public function testOutOfRangeException()\n    {\n        /** @var OutOfRangeException $error */\n        $error = null;\n\n        try {\n            Carbon::create(null, -5);\n        } catch (OutOfRangeException $exception) {\n            $error = $exception;\n        }\n\n        $this->assertInstanceOf(OutOfRangeException::class, $error);\n        $this->assertSame('month', $error->getUnit());\n        $this->assertSame(-5, $error->getValue());\n        $this->assertSame(0, $error->getMin());\n        $this->assertSame(99, $error->getMax());\n    }\n\n    public function testCreateWithInvalidMonthNonStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertFalse(Carbon::isStrictModeEnabled());\n        $this->assertNull(Carbon::create(null, -5));\n        Carbon::useStrictMode(true);\n        $this->assertTrue(Carbon::isStrictModeEnabled());\n    }\n\n    public function testCreateMonthWraps()\n    {\n        $d = Carbon::create(2011, 0, 1, 0, 0, 0);\n        $this->assertCarbon($d, 2010, 12, 1, 0, 0, 0);\n    }\n\n    public function testCreateWithDay()\n    {\n        $d = Carbon::create(null, null, 21);\n        $this->assertSame(21, $d->day);\n    }\n\n    public function testCreateWithInvalidDay()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'day must be between 0 and 99, -4 given',\n        ));\n\n        Carbon::create(null, null, -4);\n    }\n\n    public function testCreateDayWraps()\n    {\n        $d = Carbon::create(2011, 1, 40, 0, 0, 0);\n        $this->assertCarbon($d, 2011, 2, 9, 0, 0, 0);\n    }\n\n    public function testCreateWithHourAndDefaultMinSecToZero()\n    {\n        $d = Carbon::create(null, null, null, 14);\n        $this->assertSame(14, $d->hour);\n        $this->assertSame(0, $d->minute);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testCreateWithInvalidHour()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'hour must be between 0 and 99, -1 given',\n        ));\n\n        Carbon::create(null, null, null, -1);\n    }\n\n    public function testCreateHourWraps()\n    {\n        $d = Carbon::create(2011, 1, 1, 24, 0, 0);\n        $this->assertCarbon($d, 2011, 1, 2, 0, 0, 0);\n    }\n\n    public function testCreateWithMinute()\n    {\n        $d = Carbon::create(null, null, null, null, 58);\n        $this->assertSame(58, $d->minute);\n    }\n\n    public function testCreateWithInvalidMinute()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'minute must be between 0 and 99, -2 given',\n        ));\n\n        Carbon::create(2011, 1, 1, 0, -2, 0);\n    }\n\n    public function testCreateMinuteWraps()\n    {\n        $d = Carbon::create(2011, 1, 1, 0, 62, 0);\n        $this->assertCarbon($d, 2011, 1, 1, 1, 2, 0);\n    }\n\n    public function testCreateWithSecond()\n    {\n        $d = Carbon::create(null, null, null, null, null, 59);\n        $this->assertSame(59, $d->second);\n    }\n\n    public function testCreateWithInvalidSecond()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'second must be between 0 and 99, -2 given',\n        ));\n\n        Carbon::create(null, null, null, null, null, -2);\n    }\n\n    public function testCreateSecondsWrap()\n    {\n        $d = Carbon::create(2012, 1, 1, 0, 0, 61);\n        $this->assertCarbon($d, 2012, 1, 1, 0, 1, 1);\n    }\n\n    public function testCreateWithDateTimeZone()\n    {\n        $d = Carbon::create(2012, 1, 1, 0, 0, 0, new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, 2012, 1, 1, 0, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateWithTimeZoneString()\n    {\n        $d = Carbon::create(2012, 1, 1, 0, 0, 0, 'Europe/London');\n        $this->assertCarbon($d, 2012, 1, 1, 0, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testMake()\n    {\n        $this->assertCarbon(Carbon::make('2017-01-05'), 2017, 1, 5, 0, 0, 0);\n        $this->assertCarbon(Carbon::make(new DateTime('2017-01-05')), 2017, 1, 5, 0, 0, 0);\n        $this->assertCarbon(Carbon::make(new Carbon('2017-01-05')), 2017, 1, 5, 0, 0, 0);\n        $this->assertNull(Carbon::make(3));\n    }\n\n    public function testCreateWithInvalidTimezoneOffset()\n    {\n        $this->expectExceptionObject(new InvalidTimeZoneException(\n            'Unknown or bad timezone (-28236)',\n        ));\n\n        Carbon::createFromDate(2000, 1, 1, -28236);\n    }\n\n    public function testCreateWithValidTimezoneOffset()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, -4);\n        $this->assertSame('America/New_York', $dt->tzName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-4');\n        $this->assertSame('-04:00', $dt->tzName);\n    }\n\n    public function testParseFromLocale()\n    {\n        $dateToday = Carbon::parseFromLocale('now', 'en');\n        $dateTest = Carbon::parseFromLocale('à l\\'instant', 'fr');\n\n        $this->assertSame($dateToday->format('Y-m-d H:i:s'), $dateTest->format('Y-m-d H:i:s'));\n\n        $dateToday = Carbon::parseFromLocale('today', 'en');\n        $dateTest = Carbon::parseFromLocale('Aujourd\\'hui', 'fr');\n\n        $this->assertSame($dateToday->format('Y-m-d'), $dateTest->format('Y-m-d'));\n\n        $dateTest = Carbon::parseFromLocale('Aujourd\\'hui à 19:34', 'fr');\n\n        $this->assertSame($dateToday->format('Y-m-d').' 19:34', $dateTest->format('Y-m-d H:i'));\n\n        $dateTest = Carbon::parseFromLocale('Heute', 'de');\n\n        $this->assertSame($dateToday->format('Y-m-d'), $dateTest->format('Y-m-d'));\n\n        $dateTest = Carbon::parseFromLocale('Heute um 19:34', 'de');\n\n        $this->assertSame($dateToday->format('Y-m-d').' 19:34', $dateTest->format('Y-m-d H:i'));\n\n        $date = date('Y-m-d', strtotime($dateToday.' + 1 days'));\n        $dateTest = Carbon::parseFromLocale('demain', 'fr');\n\n        $this->assertSame($date, $dateTest->format('Y-m-d'));\n\n        $date = date('Y-m-d', strtotime($dateToday.' + 2 days'));\n        $dateTest = Carbon::parseFromLocale('après-demain', 'fr');\n\n        $this->assertSame($date, $dateTest->format('Y-m-d'));\n\n        $date = date('Y-m-d', strtotime($dateToday.' - 1 days'));\n        $dateTest = Carbon::parseFromLocale('hier', 'fr');\n\n        $this->assertSame($date, $dateTest->format('Y-m-d'));\n\n        $date = date('Y-m-d', strtotime($dateToday.' - 2 days'));\n        $dateTest = Carbon::parseFromLocale('avant-hier', 'fr');\n\n        $this->assertSame($date, $dateTest->format('Y-m-d'));\n\n        $date = Carbon::parseFromLocale('23 Okt 2019', 'de');\n\n        $this->assertSame('Wednesday, October 23, 2019 12:00 AM America/Toronto', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::parseFromLocale('23 Okt 2019', 'de', 'Europe/Berlin')->locale('de');\n\n        $this->assertSame('Mittwoch, 23. Oktober 2019 00:00 Europe/Berlin', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::parseFromLocale('23 červenec 2019', 'cs');\n\n        $this->assertSame('2019-07-23', $date->format('Y-m-d'));\n\n        $date = Carbon::parseFromLocale('23 červen 2019', 'cs');\n\n        $this->assertSame('2019-06-23', $date->format('Y-m-d'));\n\n        Carbon::setTestNow('2021-01-26 15:45:13');\n\n        $date = Carbon::parseFromLocale('завтра', 'ru');\n\n        $this->assertSame('2021-01-27 00:00:00', $date->format('Y-m-d H:i:s'));\n    }\n\n    #[Group('localization')]\n    #[DataProvider('dataForLocales')]\n    public function testParseFromLocaleForEachLocale($locale)\n    {\n        $expectedDate = Carbon::parse('today 4:26');\n\n        $date = Carbon::parseFromLocale($expectedDate->locale($locale)->calendar(), $locale);\n\n        $this->assertSame($expectedDate->format('Y-m-d H:i'), $date->format('Y-m-d H:i'));\n    }\n\n    public function testParseFromLocaleWithDefaultLocale()\n    {\n        Carbon::setLocale('fr');\n\n        $date = Carbon::parseFromLocale('Dimanche');\n\n        $this->assertSame('dimanche', $date->dayName);\n\n        $date = Carbon::parseFromLocale('Lundi');\n\n        $this->assertSame('lundi', $date->dayName);\n\n        $date = Carbon::parseFromLocale('à l’instant');\n\n        $this->assertEquals(Carbon::now(), $date);\n\n        $date = Carbon::parseFromLocale('après-demain');\n\n        $this->assertEquals(Carbon::today()->addDays(2), $date);\n    }\n\n    public function testCreateFromLocaleFormat()\n    {\n        $date = Carbon::createFromLocaleFormat('Y M d H,i,s', 'zh_CN', '2019 四月 4 12,04,21');\n\n        $this->assertSame('Thursday, April 4, 2019 12:04 PM America/Toronto', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::createFromLocaleFormat('Y M d H,i,s', 'zh_TW', '2019 四月 4 12,04,21', 'Asia/Shanghai')->locale('zh');\n\n        $this->assertSame('2019年4月4日星期四 中午 12点04分 Asia/Shanghai', $date->isoFormat('LLLL zz'));\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d * F * Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\of F \\of Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\o\\f F \\o\\f Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\d\\e F \\d\\e Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\n\\o\\t F \\n\\o\\t Y', 'es', '05 not diciembre not 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n    }\n\n    public function testCreateFromIsoFormat()\n    {\n        $date = Carbon::createFromIsoFormat('!YYYYY MMMM D', '2019 April 4');\n\n        $this->assertSame('Thursday, April 4, 2019 12:00 AM America/Toronto', $date->isoFormat('LLLL zz'));\n    }\n\n    public function testCreateFromIsoFormatException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Format wo not supported for creation.',\n        ));\n\n        Carbon::createFromIsoFormat('YY D wo', '2019 April 4');\n    }\n\n    public function testCreateFromLocaleIsoFormat()\n    {\n        $date = Carbon::createFromLocaleIsoFormat('YYYY MMMM D HH,mm,ss', 'zh_TW', '2019 四月 4 12,04,21');\n\n        $this->assertSame('Thursday, April 4, 2019 12:04 PM America/Toronto', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::createFromLocaleIsoFormat('LLL zz', 'zh', '2019年4月4日 下午 2点04分 Asia/Shanghai');\n\n        $this->assertSame('Thursday, April 4, 2019 2:04 PM Asia/Shanghai', $date->isoFormat('LLLL zz'));\n\n        $this->assertSame('2019年4月4日星期四 下午 2点04分 Asia/Shanghai', $date->locale('zh')->isoFormat('LLLL zz'));\n\n        $date = Carbon::createFromLocaleIsoFormat('llll', 'fr_CA', 'mar. 24 juil. 2018 08:34');\n\n        $this->assertSame('2018-07-24 08:34', $date->format('Y-m-d H:i'));\n    }\n\n    public static function dataForLocales(): array\n    {\n        $locales = [\n            'aa_ER',\n            'aa_ER@saaho',\n            'aa_ET',\n            'af',\n            'af_NA',\n            'af_ZA',\n            'agq',\n            'agr',\n            'agr_PE',\n            'ak',\n            'ak_GH',\n            'am',\n            'am_ET',\n            'an',\n            'an_ES',\n            'anp',\n            'anp_IN',\n            'ar',\n            'ar_AE',\n            'ar_BH',\n            'ar_DJ',\n            'ar_DZ',\n            'ar_EG',\n            'ar_EH',\n            'ar_ER',\n            'ar_IL',\n            'ar_IN',\n            'ar_IQ',\n            'ar_JO',\n            'ar_KM',\n            'ar_KW',\n            'ar_LB',\n            'ar_LY',\n            'ar_MA',\n            'ar_MR',\n            'ar_OM',\n            'ar_PS',\n            'ar_QA',\n            'ar_SA',\n            'ar_SD',\n            'ar_SO',\n            'ar_SS',\n            'ar_SY',\n            'ar_Shakl',\n            'ar_TD',\n            'ar_TN',\n            'ar_YE',\n            'as',\n            'as_IN',\n            'asa',\n            'ast',\n            'ast_ES',\n            'ayc',\n            'ayc_PE',\n            'az',\n            'az_AZ',\n            'az_Cyrl',\n            'az_Latn',\n            'bas',\n            'be',\n            'be_BY',\n            'bem',\n            'bem_ZM',\n            'ber',\n            'ber_DZ',\n            'ber_MA',\n            'bez',\n            'bg',\n            'bg_BG',\n            'bhb',\n            'bhb_IN',\n            'bho',\n            'bho_IN',\n            'bi',\n            'bi_VU',\n            'bm',\n            'bo_IN',\n            'br',\n            'br_FR',\n            'brx',\n            'brx_IN',\n            'bs',\n            'bs_BA',\n            'bs_Cyrl',\n            'bs_Latn',\n            'ca',\n            'ca_AD',\n            'ca_ES',\n            'ca_ES_Valencia',\n            'ca_FR',\n            'ca_IT',\n            'ccp',\n            'ccp_IN',\n            'ce',\n            'ce_RU',\n            'cgg',\n            'chr',\n            'chr_US',\n            'cmn',\n            'cmn_TW',\n            'crh',\n            'crh_UA',\n            'cu',\n            'cy',\n            'cy_GB',\n            'da',\n            'da_DK',\n            'da_GL',\n            'dav',\n            'dje',\n            'doi',\n            'doi_IN',\n            'dsb',\n            'dsb_DE',\n            'dua',\n            'dv',\n            'dv_MV',\n            'dyo',\n            'dz',\n            'dz_BT',\n            'ebu',\n            'ee_TG',\n            'el',\n            'el_CY',\n            'el_GR',\n            'en',\n            'en_001',\n            'en_150',\n            'en_AG',\n            'en_AI',\n            'en_AS',\n            'en_AT',\n            'en_AU',\n            'en_BB',\n            'en_BE',\n            'en_BI',\n            'en_BM',\n            'en_BS',\n            'en_BW',\n            'en_BZ',\n            'en_CA',\n            'en_CC',\n            'en_CH',\n            'en_CK',\n            'en_CM',\n            'en_CX',\n            'en_CY',\n            'en_DE',\n            'en_DG',\n            'en_DK',\n            'en_DM',\n            'en_ER',\n            'en_FI',\n            'en_FJ',\n            'en_FK',\n            'en_FM',\n            'en_GB',\n            'en_GD',\n            'en_GG',\n            'en_GH',\n            'en_GI',\n            'en_GM',\n            'en_GU',\n            'en_GY',\n            'en_HK',\n            'en_IE',\n            'en_IL',\n            'en_IM',\n            'en_IN',\n            'en_IO',\n            'en_ISO',\n            'en_JE',\n            'en_JM',\n            'en_KE',\n            'en_KI',\n            'en_KN',\n            'en_KY',\n            'en_LC',\n            'en_LR',\n            'en_LS',\n            'en_MG',\n            'en_MH',\n            'en_MO',\n            'en_MP',\n            'en_MS',\n            'en_MT',\n            'en_MU',\n            'en_MW',\n            'en_MY',\n            'en_NA',\n            'en_NF',\n            'en_NG',\n            'en_NL',\n            'en_NR',\n            'en_NU',\n            'en_NZ',\n            'en_PG',\n            'en_PH',\n            'en_PK',\n            'en_PN',\n            'en_PR',\n            'en_PW',\n            'en_RW',\n            'en_SB',\n            'en_SC',\n            'en_SD',\n            'en_SE',\n            'en_SG',\n            'en_SH',\n            'en_SI',\n            'en_SL',\n            'en_SS',\n            'en_SX',\n            'en_SZ',\n            'en_TC',\n            'en_TK',\n            'en_TO',\n            'en_TT',\n            'en_TV',\n            'en_TZ',\n            'en_UG',\n            'en_UM',\n            'en_US',\n            'en_US_Posix',\n            'en_VC',\n            'en_VG',\n            'en_VI',\n            'en_VU',\n            'en_WS',\n            'en_ZA',\n            'en_ZM',\n            'en_ZW',\n            'eo',\n            'es',\n            'es_419',\n            'es_AR',\n            'es_BO',\n            'es_BR',\n            'es_BZ',\n            'es_CL',\n            'es_CO',\n            'es_CR',\n            'es_CU',\n            'es_DO',\n            'es_EA',\n            'es_EC',\n            'es_ES',\n            'es_GQ',\n            'es_GT',\n            'es_HN',\n            'es_IC',\n            'es_MX',\n            'es_NI',\n            'es_PA',\n            'es_PE',\n            'es_PH',\n            'es_PR',\n            'es_PY',\n            'es_SV',\n            'es_US',\n            'es_UY',\n            'es_VE',\n            'et',\n            'et_EE',\n            'ewo',\n            'ff',\n            'ff_CM',\n            'ff_GN',\n            'ff_MR',\n            'ff_SN',\n            'fil',\n            'fil_PH',\n            'fo',\n            'fo_DK',\n            'fo_FO',\n            'fr',\n            'fr_BE',\n            'fr_BF',\n            'fr_BI',\n            'fr_BJ',\n            'fr_BL',\n            'fr_CA',\n            'fr_CD',\n            'fr_CF',\n            'fr_CG',\n            'fr_CH',\n            'fr_CI',\n            'fr_CM',\n            'fr_DJ',\n            'fr_DZ',\n            'fr_FR',\n            'fr_GA',\n            'fr_GF',\n            'fr_GN',\n            'fr_GP',\n            'fr_GQ',\n            'fr_HT',\n            'fr_KM',\n            'fr_LU',\n            'fr_MA',\n            'fr_MC',\n            'fr_MF',\n            'fr_MG',\n            'fr_ML',\n            'fr_MQ',\n            'fr_MR',\n            'fr_MU',\n            'fr_NC',\n            'fr_NE',\n            'fr_PF',\n            'fr_PM',\n            'fr_RE',\n            'fr_RW',\n            'fr_SC',\n            'fr_SN',\n            'fr_SY',\n            'fr_TD',\n            'fr_TG',\n            'fr_TN',\n            'fr_VU',\n            'fr_WF',\n            'fr_YT',\n            'fy',\n            'fy_NL',\n            'ga',\n            'ga_IE',\n            'gd',\n            'gd_GB',\n            'gez',\n            'gez_ER',\n            'gez_ET',\n            'gl',\n            'gl_ES',\n            'guz',\n            'gv',\n            'gv_GB',\n            'ha',\n            'ha_GH',\n            'ha_NE',\n            'ha_NG',\n            'hak',\n            'hak_TW',\n            'haw',\n            'he',\n            'he_IL',\n            'hif',\n            'hif_FJ',\n            'hne',\n            'hne_IN',\n            'hr',\n            'hr_BA',\n            'hr_HR',\n            'hsb',\n            'hsb_DE',\n            'ht',\n            'ht_HT',\n            'hy',\n            'hy_AM',\n            'ia',\n            'ia_FR',\n            'id',\n            'id_ID',\n            'ig',\n            'ig_NG',\n            'ii',\n            'ik',\n            'ik_CA',\n            'in',\n            'it',\n            'it_CH',\n            'it_IT',\n            'it_SM',\n            'it_VA',\n            'iu',\n            'iu_CA',\n            'iw',\n            'ja',\n            'ja_JP',\n            'jgo',\n            'jmc',\n            'jv',\n            'kab',\n            'kab_DZ',\n            'kam',\n            'kde',\n            'kea',\n            'khq',\n            'ki',\n            'kk',\n            'kk_KZ',\n            'kkj',\n            'kl',\n            'kl_GL',\n            'kln',\n            'km',\n            'km_KH',\n            'kok',\n            'kok_IN',\n            'ks',\n            'ks_IN',\n            'ks_IN@devanagari',\n            'ksb',\n            'ksf',\n            'ksh',\n            'kw',\n            'kw_GB',\n            'ky',\n            'ky_KG',\n            'lag',\n            'lg',\n            'lg_UG',\n            'li',\n            'li_NL',\n            'lij',\n            'lij_IT',\n            'lkt',\n            'ln',\n            'ln_AO',\n            'ln_CD',\n            'ln_CF',\n            'ln_CG',\n            'lo',\n            'lo_LA',\n            'lrc',\n            'lrc_IQ',\n            'lt',\n            'lt_LT',\n            'lu',\n            'luo',\n            'luy',\n            'lzh',\n            'lzh_TW',\n            'mag',\n            'mag_IN',\n            'mai',\n            'mai_IN',\n            'mas',\n            'mas_TZ',\n            'mer',\n            'mfe',\n            'mfe_MU',\n            'mg',\n            'mg_MG',\n            'mgh',\n            'mgo',\n            'mhr',\n            'mhr_RU',\n            'mi',\n            'mi_NZ',\n            'miq',\n            'miq_NI',\n            'mjw',\n            'mjw_IN',\n            'mk',\n            'mk_MK',\n            'mni',\n            'mni_IN',\n            'mo',\n            'ms',\n            'ms_BN',\n            'ms_MY',\n            'ms_SG',\n            'mt',\n            'mt_MT',\n            'mua',\n            'mzn',\n            'nan',\n            'nan_TW',\n            'nan_TW@latin',\n            'naq',\n            'nb',\n            'nb_NO',\n            'nb_SJ',\n            'nd',\n            'nds',\n            'nds_DE',\n            'nds_NL',\n            'ne_IN',\n            'nhn',\n            'nhn_MX',\n            'niu',\n            'niu_NU',\n            'nl',\n            'nl_AW',\n            'nl_BE',\n            'nl_BQ',\n            'nl_CW',\n            'nl_NL',\n            'nl_SR',\n            'nl_SX',\n            'nmg',\n            'nn',\n            'nn_NO',\n            'nnh',\n            'no',\n            'nr',\n            'nr_ZA',\n            'nso',\n            'nso_ZA',\n            'nus',\n            'nyn',\n            'oc',\n            'oc_FR',\n            'om',\n            'om_ET',\n            'om_KE',\n            'os',\n            'os_RU',\n            'pa_Arab',\n            'pa_Guru',\n            'pl',\n            'pl_PL',\n            'prg',\n            'pt',\n            'pt_AO',\n            'pt_BR',\n            'pt_CH',\n            'pt_CV',\n            'pt_GQ',\n            'pt_GW',\n            'pt_LU',\n            'pt_MO',\n            'pt_MZ',\n            'pt_PT',\n            'pt_ST',\n            'pt_TL',\n            'qu',\n            'qu_BO',\n            'qu_EC',\n            'quz',\n            'quz_PE',\n            'raj',\n            'raj_IN',\n            'rm',\n            'rn',\n            'ro',\n            'ro_MD',\n            'ro_RO',\n            'rof',\n            'ru',\n            'ru_BY',\n            'ru_KG',\n            'ru_KZ',\n            'ru_MD',\n            'ru_RU',\n            'ru_UA',\n            'rw',\n            'rw_RW',\n            'rwk',\n            'sa',\n            'sa_IN',\n            'sah',\n            'sah_RU',\n            'saq',\n            'sat',\n            'sat_IN',\n            'sbp',\n            'sd',\n            'sd_IN',\n            'sd_IN@devanagari',\n            'se',\n            'se_FI',\n            'se_NO',\n            'se_SE',\n            'seh',\n            'ses',\n            'sg',\n            'sgs',\n            'sgs_LT',\n            'shi',\n            'shi_Latn',\n            'shi_Tfng',\n            'shn',\n            'shn_MM',\n            'shs',\n            'shs_CA',\n            'sid',\n            'sid_ET',\n            'sl',\n            'sl_SI',\n            'sm',\n            'sm_WS',\n            'smn',\n            'sn',\n            'so',\n            'so_DJ',\n            'so_ET',\n            'so_KE',\n            'so_SO',\n            'sq',\n            'sq_AL',\n            'sq_MK',\n            'sq_XK',\n            'sr',\n            'sr_Cyrl',\n            'sr_Cyrl_BA',\n            'sr_Cyrl_ME',\n            'sr_Cyrl_XK',\n            'sr_Latn',\n            'sr_Latn_BA',\n            'sr_Latn_ME',\n            'sr_Latn_XK',\n            'sr_ME',\n            'sr_RS',\n            'sr_RS@latin',\n            'ss',\n            'ss_ZA',\n            'st',\n            'st_ZA',\n            'sv',\n            'sv_AX',\n            'sv_FI',\n            'sv_SE',\n            'sw',\n            'sw_CD',\n            'sw_KE',\n            'sw_TZ',\n            'sw_UG',\n            'szl',\n            'szl_PL',\n            'ta',\n            'ta_IN',\n            'ta_LK',\n            'tcy',\n            'tcy_IN',\n            'teo',\n            'teo_KE',\n            'tet',\n            'tg',\n            'tg_TJ',\n            'th',\n            'th_TH',\n            'the',\n            'the_NP',\n            'ti',\n            'ti_ER',\n            'ti_ET',\n            'tk',\n            'tk_TM',\n            'tlh',\n            'tn',\n            'tn_ZA',\n            'to',\n            'to_TO',\n            'tpi',\n            'tpi_PG',\n            'tr',\n            'tr_TR',\n            'ts',\n            'ts_ZA',\n            'tt_RU@iqtelif',\n            'twq',\n            'tzl',\n            'tzm',\n            'tzm_Latn',\n            'ug',\n            'ug_CN',\n            'uk',\n            'uk_UA',\n            'unm',\n            'unm_US',\n            'ur',\n            'ur_IN',\n            'ur_PK',\n            'uz_Arab',\n            'vai',\n            'vai_Vaii',\n            've',\n            've_ZA',\n            'vi',\n            'vi_VN',\n            'vo',\n            'vun',\n            'wa',\n            'wa_BE',\n            'wae',\n            'wae_CH',\n            'wal',\n            'wal_ET',\n            'xh',\n            'xh_ZA',\n            'xog',\n            'yav',\n            'yi',\n            'yi_US',\n            'yo',\n            'yo_BJ',\n            'yo_NG',\n            'yue',\n            'yue_HK',\n            'yue_Hans',\n            'yue_Hant',\n            'yuw',\n            'yuw_PG',\n            'zh',\n            'zh_CN',\n            'zh_HK',\n            'zh_Hans',\n            'zh_Hans_HK',\n            'zh_Hans_MO',\n            'zh_Hans_SG',\n            'zh_Hant',\n            'zh_Hant_HK',\n            'zh_Hant_MO',\n            'zh_Hant_TW',\n            'zh_MO',\n            'zh_SG',\n            'zh_TW',\n            'zh_YUE',\n            'zu',\n            'zu_ZA',\n        ];\n\n        return array_combine(\n            $locales,\n            array_map(\n                static fn (string $locale) => [$locale],\n                $locales,\n            ),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/DayOfWeekModifiersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass DayOfWeekModifiersTest extends AbstractTestCase\n{\n    public function testGetWeekendDays()\n    {\n        $this->assertSame([Carbon::SATURDAY, Carbon::SUNDAY], Carbon::getWeekendDays());\n    }\n\n    public function testSetWeekendDays()\n    {\n        Carbon::setWeekendDays([Carbon::THURSDAY, Carbon::FRIDAY]);\n        $this->assertSame([Carbon::THURSDAY, Carbon::FRIDAY], Carbon::getWeekendDays());\n        $this->assertTrue(Carbon::createFromDate(2018, 2, 16)->isWeekend());\n        Carbon::setWeekendDays([Carbon::SATURDAY, Carbon::SUNDAY]);\n        $this->assertSame([Carbon::SATURDAY, Carbon::SUNDAY], Carbon::getWeekendDays());\n        $this->assertFalse(Carbon::createFromDate(2018, 2, 16)->isWeekend());\n    }\n\n    public function testStartOfWeek()\n    {\n        $d = Carbon::create(1980, 8, 7, 12, 11, 9)->startOfWeek();\n        $this->assertCarbon($d, 1980, 8, 4, 0, 0, 0);\n\n        Carbon::setLocale('en_UM');\n        $this->assertSame('Sunday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en');\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('es_US');\n        $this->assertSame('domingo', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en_GB');\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n    }\n\n    public function testStartOfWeekFromWeekStart()\n    {\n        $d = Carbon::createFromDate(1980, 8, 4)->startOfWeek();\n        $this->assertCarbon($d, 1980, 8, 4, 0, 0, 0);\n    }\n\n    public function testStartOfWeekCrossingYearBoundary()\n    {\n        $d = Carbon::createFromDate(2013, 12, 31, 'GMT');\n        $d->startOfWeek();\n        $this->assertCarbon($d, 2013, 12, 30, 0, 0, 0);\n    }\n\n    public function testEndOfWeek()\n    {\n        $d = Carbon::create(1980, 8, 7, 11, 12, 13)->endOfWeek();\n        $this->assertCarbon($d, 1980, 8, 10, 23, 59, 59);\n    }\n\n    public function testEndOfWeekFromWeekEnd()\n    {\n        $d = Carbon::createFromDate(1980, 8, 9)->endOfWeek();\n        $this->assertCarbon($d, 1980, 8, 10, 23, 59, 59);\n    }\n\n    public function testEndOfWeekCrossingYearBoundary()\n    {\n        $d = Carbon::createFromDate(2013, 12, 31, 'GMT');\n        $d->endOfWeek();\n        $this->assertCarbon($d, 2014, 1, 5, 23, 59, 59);\n    }\n\n    /**\n     * @see https://github.com/briannesbitt/Carbon/issues/735\n     */\n    public function testStartOrEndOfWeekFromWeekWithUTC()\n    {\n        $d = Carbon::create(2016, 7, 27, 17, 13, 7, 'UTC');\n        $this->assertCarbon($d->copy()->startOfWeek(), 2016, 7, 25, 0, 0, 0);\n        $this->assertCarbon($d->copy()->endOfWeek(), 2016, 7, 31, 23, 59, 59);\n    }\n\n    /**\n     * @see https://github.com/briannesbitt/Carbon/issues/735\n     */\n    public function testStartOrEndOfWeekFromWeekWithOtherTimezone()\n    {\n        $d = Carbon::create(2016, 7, 27, 17, 13, 7, 'America/New_York');\n        $this->assertCarbon($d->copy()->startOfWeek(), 2016, 7, 25, 0, 0, 0);\n        $this->assertCarbon($d->copy()->endOfWeek(), 2016, 7, 31, 23, 59, 59);\n    }\n\n    public function testNext()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->next();\n        $this->assertCarbon($d, 1975, 5, 28, 0, 0, 0);\n    }\n\n    public function testNextMonday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->next(Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 5, 26, 0, 0, 0);\n\n        $d = Carbon::createFromDate(1975, 5, 21)->next('Monday');\n        $this->assertCarbon($d, 1975, 5, 26, 0, 0, 0);\n    }\n\n    public function testNextSaturday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->next(6);\n        $this->assertCarbon($d, 1975, 5, 24, 0, 0, 0);\n    }\n\n    public function testNextTimestamp()\n    {\n        $d = Carbon::createFromDate(1975, 11, 14)->next();\n        $this->assertCarbon($d, 1975, 11, 21, 0, 0, 0);\n    }\n\n    public function testPrevious()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->previous();\n        $this->assertCarbon($d, 1975, 5, 14, 0, 0, 0);\n    }\n\n    public function testPreviousMonday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->previous(Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 5, 19, 0, 0, 0);\n    }\n\n    public function testPreviousSaturday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->previous(6);\n        $this->assertCarbon($d, 1975, 5, 17, 0, 0, 0);\n    }\n\n    public function testPreviousTimestamp()\n    {\n        $d = Carbon::createFromDate(1975, 11, 28)->previous();\n        $this->assertCarbon($d, 1975, 11, 21, 0, 0, 0);\n    }\n\n    public function testFirstDayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfMonth();\n        $this->assertCarbon($d, 1975, 11, 1, 0, 0, 0);\n    }\n\n    public function testFirstWednesdayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfMonth(Carbon::WEDNESDAY);\n        $this->assertCarbon($d, 1975, 11, 5, 0, 0, 0);\n    }\n\n    public function testFirstFridayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfMonth(5);\n        $this->assertCarbon($d, 1975, 11, 7, 0, 0, 0);\n    }\n\n    public function testLastDayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->lastOfMonth();\n        $this->assertCarbon($d, 1975, 12, 31, 0, 0, 0);\n    }\n\n    public function testLastTuesdayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 1)->lastOfMonth(Carbon::TUESDAY);\n        $this->assertCarbon($d, 1975, 12, 30, 0, 0, 0);\n    }\n\n    public function testLastFridayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->lastOfMonth(5);\n        $this->assertCarbon($d, 1975, 12, 26, 0, 0, 0);\n    }\n\n    public function testNthOfMonthOutsideScope()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 12, 5)->nthOfMonth(6, Carbon::MONDAY));\n    }\n\n    public function testNthOfMonthOutsideYear()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 12, 5)->nthOfMonth(55, Carbon::MONDAY));\n    }\n\n    public function test2ndMondayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->nthOfMonth(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 12, 8, 0, 0, 0);\n    }\n\n    public function test3rdWednesdayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->nthOfMonth(3, 3);\n        $this->assertCarbon($d, 1975, 12, 17, 0, 0, 0);\n    }\n\n    public function testFirstDayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfQuarter();\n        $this->assertCarbon($d, 1975, 10, 1, 0, 0, 0);\n    }\n\n    public function testFirstWednesdayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfQuarter(Carbon::WEDNESDAY);\n        $this->assertCarbon($d, 1975, 10, 1, 0, 0, 0);\n    }\n\n    public function testFirstFridayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfQuarter(5);\n        $this->assertCarbon($d, 1975, 10, 3, 0, 0, 0);\n    }\n\n    public function testFirstOfQuarterFromADayThatWillNotExistInTheFirstMonth()\n    {\n        $d = Carbon::createFromDate(2014, 5, 31)->firstOfQuarter();\n        $this->assertCarbon($d, 2014, 4, 1, 0, 0, 0);\n    }\n\n    public function testLastDayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->lastOfQuarter();\n        $this->assertCarbon($d, 1975, 9, 30, 0, 0, 0);\n    }\n\n    public function testLastTuesdayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 1)->lastOfQuarter(Carbon::TUESDAY);\n        $this->assertCarbon($d, 1975, 9, 30, 0, 0, 0);\n    }\n\n    public function testLastFridayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 7, 5)->lastOfQuarter(5);\n        $this->assertCarbon($d, 1975, 9, 26, 0, 0, 0);\n    }\n\n    public function testLastOfQuarterFromADayThatWillNotExistInTheLastMonth()\n    {\n        $d = Carbon::createFromDate(2014, 5, 31)->lastOfQuarter();\n        $this->assertCarbon($d, 2014, 6, 30, 0, 0, 0);\n    }\n\n    public function testNthOfQuarterOutsideScope()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 1, 5)->nthOfQuarter(20, Carbon::MONDAY));\n    }\n\n    public function testNthOfQuarterOutsideYear()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 1, 5)->nthOfQuarter(55, Carbon::MONDAY));\n    }\n\n    public function testNthOfQuarterFromADayThatWillNotExistInTheFirstMonth()\n    {\n        $d = Carbon::createFromDate(2014, 5, 31)->nthOfQuarter(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 2014, 4, 14, 0, 0, 0);\n    }\n\n    public function test2ndMondayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfQuarter(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 7, 14, 0, 0, 0);\n    }\n\n    public function test3rdWednesdayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfQuarter(3, 3);\n        $this->assertCarbon($d, 1975, 7, 16, 0, 0, 0);\n    }\n\n    public function testFirstDayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfYear();\n        $this->assertCarbon($d, 1975, 1, 1, 0, 0, 0);\n    }\n\n    public function testFirstWednesdayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfYear(Carbon::WEDNESDAY);\n        $this->assertCarbon($d, 1975, 1, 1, 0, 0, 0);\n    }\n\n    public function testFirstFridayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfYear(5);\n        $this->assertCarbon($d, 1975, 1, 3, 0, 0, 0);\n    }\n\n    public function testLastDayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->lastOfYear();\n        $this->assertCarbon($d, 1975, 12, 31, 0, 0, 0);\n    }\n\n    public function testLastTuesdayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 1)->lastOfYear(Carbon::TUESDAY);\n        $this->assertCarbon($d, 1975, 12, 30, 0, 0, 0);\n    }\n\n    public function testLastFridayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 7, 5)->lastOfYear(5);\n        $this->assertCarbon($d, 1975, 12, 26, 0, 0, 0);\n    }\n\n    public function testNthOfYearOutsideScope()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 1, 5)->nthOfYear(55, Carbon::MONDAY));\n    }\n\n    public function test2ndMondayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfYear(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 1, 13, 0, 0, 0);\n    }\n\n    public function test3rdWednesdayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfYear(3, 3);\n        $this->assertCarbon($d, 1975, 1, 15, 0, 0, 0);\n    }\n\n    public function testNextWeekday()\n    {\n        // Friday to Monday\n        $d = Carbon::create(2016, 7, 15)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Saturday to Monday\n        $d = Carbon::create(2016, 7, 16)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Sunday to Monday\n        $d = Carbon::create(2016, 7, 16)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Monday to Tuesday\n        $d = Carbon::create(2016, 7, 17)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n    }\n\n    public function testPreviousWeekday()\n    {\n        // Tuesday to Monday\n        $d = Carbon::create(2016, 7, 19)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Monday to Friday\n        $d = Carbon::create(2016, 7, 18)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 15);\n\n        // Sunday to Friday\n        $d = Carbon::create(2016, 7, 17)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 15);\n\n        // Saturday to Friday\n        $d = Carbon::create(2016, 7, 16)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 15);\n    }\n\n    public function testNextWeekendDay()\n    {\n        // Thursday to Saturday\n        $d = Carbon::create(2016, 7, 14)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 16);\n\n        // Friday to Saturday\n        $d = Carbon::create(2016, 7, 15)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 16);\n\n        // Saturday to Sunday\n        $d = Carbon::create(2016, 7, 16)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 17);\n\n        // Sunday to Saturday\n        $d = Carbon::create(2016, 7, 17)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 23);\n    }\n\n    public function testPreviousWeekendDay()\n    {\n        // Thursday to Sunday\n        $d = Carbon::create(2016, 7, 14)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 10);\n\n        // Friday to Sunday\n        $d = Carbon::create(2016, 7, 15)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 10);\n\n        // Saturday to Sunday\n        $d = Carbon::create(2016, 7, 16)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 10);\n\n        // Sunday to Saturday\n        $d = Carbon::create(2016, 7, 17)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 16);\n    }\n\n    public function testWeekStartAndEndWithAutoMode()\n    {\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n\n        Carbon::setLocale('en_UM');\n        $this->assertSame('Sunday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en_US');\n        $this->assertSame('Sunday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en');\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('es_US');\n        $this->assertSame('domingo', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en_GB');\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n\n        Carbon::setLocale('en_UM');\n        $this->assertSame('Saturday', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('en_US');\n        $this->assertSame('Saturday', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('en');\n        $this->assertSame('Sunday', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('es_US');\n        $this->assertSame('sábado', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('en_GB');\n        $this->assertSame('Sunday', Carbon::now()->endOfWeek()->dayName);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/DiffTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Carbon\\Unit;\nuse Closure;\nuse DateTime;\nuse DateTimeImmutable;\nuse Tests\\AbstractTestCase;\nuse TypeError;\n\nclass DiffTest extends AbstractTestCase\n{\n    public function wrapWithTestNow(Closure $func, ?CarbonInterface $dt = null): void\n    {\n        parent::wrapWithTestNow($func, $dt ?: Carbon::createMidnightDate(2012, 1, 1));\n    }\n\n    public function testDiffAsCarbonInterval()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertCarbonInterval($dt->diff($dt->copy()->addYear()), 1, 0, 0, 0, 0, 0);\n        $this->assertTrue($dt->diff($dt)->isEmpty());\n    }\n\n    public function testDiffInYearsPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInYears($dt->copy()->addYear()));\n    }\n\n    public function testDiffInYearsNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-1, (int) $dt->diffInYears($dt->copy()->subYear()));\n    }\n\n    public function testDiffInYearsNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInYears($dt->copy()->subYear(), true));\n    }\n\n    public function testDiffInYearsVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(1, (int) Carbon::now()->subYear()->diffInYears());\n        });\n    }\n\n    public function testDiffInYearsEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInYears($dt->copy()->addYear()->addMonths(7)));\n    }\n\n    public function testDiffInQuartersPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInQuarters($dt->copy()->addQuarter()->addDay()));\n    }\n\n    public function testDiffInQuartersNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-4, (int) $dt->diffInQuarters($dt->copy()->subQuarters(4)));\n    }\n\n    public function testDiffInQuartersNegativeWithNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(4, (int) $dt->diffInQuarters($dt->copy()->subQuarters(4), true));\n    }\n\n    public function testDiffInQuartersVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(4, (int) Carbon::now()->subYear()->diffInQuarters());\n        });\n    }\n\n    public function testDiffInQuartersEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInQuarters($dt->copy()->addQuarter()->addDays(12)));\n    }\n\n    public function testDiffInMonthsPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(13, (int) $dt->diffInMonths($dt->copy()->addYear()->addMonth()));\n    }\n\n    public function testDiffInMonthsNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-11, (int) $dt->diffInMonths($dt->copy()->subYear()->addMonth()));\n    }\n\n    public function testDiffInMonthsWithTimezone()\n    {\n        $first = new Carbon('2022-12-01 00:00:00.0 Africa/Nairobi');\n        $second = new Carbon('2022-11-01 00:00:00.0 Africa/Nairobi');\n\n        $this->assertSame(-1, (int) $first->diffInMonths($second, false));\n        $this->assertSame(1, (int) $second->diffInMonths($first, false));\n        $this->assertSame(-1.0, $first->diffInMonths($second));\n        $this->assertSame(1.0, $second->diffInMonths($first));\n\n        $first = new Carbon('2022-02-01 16:00 America/Toronto');\n        $second = new Carbon('2022-01-01 20:00 Europe/Berlin');\n\n        $this->assertSame(-1, (int) $first->diffInMonths($second, false));\n        $this->assertSame(1, (int) $second->diffInMonths($first, false));\n        $this->assertVeryClose(-1.002976190476190, $first->diffInMonths($second));\n        $this->assertVeryClose(1.002976190476190, $second->diffInMonths($first));\n\n        $first = new Carbon('2022-02-01 01:00 America/Toronto');\n        $second = new Carbon('2022-01-01 00:00 Europe/Berlin');\n\n        $this->assertSame(-1, (int) $first->diffInMonths($second, false));\n        $this->assertSame(1, (int) $second->diffInMonths($first, false));\n        $this->assertSame($first->copy()->utc()->diffInMonths($second->copy()->utc()), $first->diffInMonths($second));\n        $this->assertSame($second->copy()->utc()->diffInMonths($first->copy()->utc()), $second->diffInMonths($first));\n        $this->assertVeryClose(-(1 + 7 / 24 / 31), $first->diffInMonths($second));\n        // $second date in Toronto is 2021-12-31 18:00, so we have 6 hours in December (a 31 days month), and 1 hour in February (28 days month)\n        $this->assertVeryClose(1 + 7 / 24 / 31, $second->diffInMonths($first));\n        // Considered in Berlin timezone, the 7 extra hours are in February (28 days month)\n\n        $first = new Carbon('2022-02-01 01:00 Europe/Berlin');\n        $second = new Carbon('2022-01-01 00:00 America/Toronto');\n\n        $this->assertSame(0, (int) $first->diffInMonths($second, false));\n        $this->assertSame(0, (int) $second->diffInMonths($first, false));\n        $this->assertSame($first->copy()->utc()->diffInMonths($second->copy()->utc()), $first->diffInMonths($second));\n        $this->assertSame($second->copy()->utc()->diffInMonths($first->copy()->utc()), $second->diffInMonths($first));\n        $this->assertVeryClose(-(1 - 5 / 24 / 31), $first->diffInMonths($second));\n        $this->assertVeryClose(1 - 5 / 24 / 31, $second->diffInMonths($first));\n    }\n\n    public function testDiffInMonthsNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(11, (int) $dt->diffInMonths($dt->copy()->subYear()->addMonth(), true));\n    }\n\n    public function testDiffInMonthsVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(12, (int) Carbon::now()->subYear()->diffInMonths());\n        });\n    }\n\n    public function testDiffInMonthsEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInMonths($dt->copy()->addMonth()->addDays(16)));\n    }\n\n    public function testDiffInDaysPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(366, (int) $dt->diffInDays($dt->copy()->addYear()));\n    }\n\n    public function testDiffInDaysNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-365, (int) $dt->diffInDays($dt->copy()->subYear(), false));\n    }\n\n    public function testDiffInDaysNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-365, (int) $dt->diffInDays($dt->copy()->subYear()));\n    }\n\n    public function testDiffInDaysVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(7, (int) Carbon::now()->subWeek()->diffInDays());\n        });\n    }\n\n    public function testDiffInDaysEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInDays($dt->copy()->addDay()->addHours(13)));\n    }\n\n    public function testDiffInDaysFilteredPositiveWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(5, (int) $dt->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === 1;\n        }, $dt->copy()->endOfMonth()));\n    }\n\n    public function testDiffInDaysFilteredPositiveWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 1);\n        $dt2 = Carbon::createFromDate(2000, 1, 31);\n\n        $this->assertSame(5, $dt1->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt2));\n    }\n\n    public function testDiffInDaysFilteredNegativeNoSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-5, $dt->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInDaysFilteredNegativeNoSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31);\n        $dt2 = Carbon::createFromDate(2000, 1, 1);\n\n        $this->assertSame(5, $dt1->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt2, true));\n    }\n\n    public function testDiffInDaysFilteredNegativeWithSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-5, $dt->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === 1;\n        }, $dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInDaysFilteredNegativeWithSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31);\n        $dt2 = Carbon::createFromDate(2000, 1, 1);\n\n        $this->assertSame(-5, $dt1->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt2));\n    }\n\n    public function testDiffInHoursFiltered()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31)->endOfDay();\n        $dt2 = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n\n        $this->assertSame(-31, $dt1->diffInHoursFiltered(function (Carbon $date) {\n            return $date->hour === 9;\n        }, $dt2));\n    }\n\n    public function testDiffInHoursFilteredNegative()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31)->endOfDay();\n        $dt2 = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n\n        $this->assertSame(-31, $dt1->diffInHoursFiltered(function (Carbon $date) {\n            return $date->hour === 9;\n        }, $dt2));\n    }\n\n    public function testDiffInHoursFilteredWorkHoursPerWeek()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 5)->endOfDay();\n        $dt2 = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n\n        $this->assertSame(-40, $dt1->diffInHoursFiltered(function (Carbon $date) {\n            return $date->hour > 8 && $date->hour < 17;\n        }, $dt2));\n    }\n\n    public function testDiffFilteredUsingMinutesPositiveWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n        $this->assertSame(60, $dt->diffFiltered(CarbonInterval::minute(), function (Carbon $date) {\n            return $date->hour === 12;\n        }, Carbon::createFromDate(2000, 1, 1)->endOfDay()));\n    }\n\n    public function testDiffFilteredPositiveWithSecondObject()\n    {\n        $dt1 = Carbon::create(2000, 1, 1);\n        $dt2 = $dt1->copy()->addSeconds(80);\n\n        $this->assertSame(40, $dt1->diffFiltered(CarbonInterval::second(), function (Carbon $date) {\n            return $date->second % 2 === 0;\n        }, $dt2));\n    }\n\n    public function testDiffFilteredNegativeNoSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n\n        $this->assertSame(-2, $dt->diffFiltered(CarbonInterval::days(2), function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffFilteredNegativeNoSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2006, 1, 31);\n        $dt2 = Carbon::createFromDate(2000, 1, 1);\n\n        $this->assertSame(-7, $dt1->diffFiltered(CarbonInterval::year(), function (Carbon $date) {\n            return $date->month === 1;\n        }, $dt2));\n    }\n\n    public function testDiffFilteredNegativeWithSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-4, $dt->diffFiltered(CarbonInterval::week(), function (Carbon $date) {\n            return $date->month === 12;\n        }, $dt->copy()->subMonths(3), false));\n    }\n\n    public function testDiffFilteredNegativeWithSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2001, 1, 31);\n        $dt2 = Carbon::createFromDate(1999, 1, 1);\n\n        $this->assertSame(-12, $dt1->diffFiltered(CarbonInterval::month(), function (Carbon $date) {\n            return $date->year === 2000;\n        }, $dt2, false));\n    }\n\n    public function testBug188DiffWithSameDates()\n    {\n        $start = Carbon::create(2014, 10, 8, 15, 20, 0);\n        $end = $start->copy();\n\n        $this->assertSame(0.0, $start->diffInDays($end));\n        $this->assertSame(0, $start->diffInWeekdays($end));\n    }\n\n    public function testBug188DiffWithDatesOnlyHoursApart()\n    {\n        $start = Carbon::create(2014, 10, 8, 15, 20, 0);\n        $end = $start->copy();\n\n        $this->assertSame(0, (int) $start->diffInDays($end));\n        $this->assertSame(0, $start->diffInWeekdays($end));\n    }\n\n    public function testBug188DiffWithSameDates1DayApart()\n    {\n        $start = Carbon::create(2014, 10, 8, 15, 20, 0);\n        $end = $start->copy()->addDay();\n\n        $this->assertSame(1, (int) $start->diffInDays($end));\n        $this->assertSame(1, $start->diffInWeekdays($end));\n    }\n\n    public function testBug188DiffWithDatesOnTheWeekend()\n    {\n        $start = Carbon::create(2014, 1, 1, 0, 0, 0);\n        $start->next(Carbon::SATURDAY);\n        $end = $start->copy()->addDay();\n\n        $this->assertSame(1, (int) $start->diffInDays($end));\n        $this->assertSame(0, $start->diffInWeekdays($end));\n    }\n\n    public function testNearlyOneDayDiff()\n    {\n        $this->assertVeryClose(\n            -0.9999999999884258,\n            Carbon::parse('2020-09-15 23:29:59.123456')->diffInDays('2020-09-14 23:29:59.123457'),\n        );\n        $this->assertVeryClose(\n            0.9999999999884258,\n            Carbon::parse('2020-09-14 23:29:59.123457')->diffInDays('2020-09-15 23:29:59.123456'),\n        );\n    }\n\n    public function testBug2798ConsistencyWithDiffInDays()\n    {\n        // 0 hour diff\n        $s1 = Carbon::create(2023, 6, 6, 15, 0, 0);\n        $e1 = Carbon::create(2023, 6, 6, 15, 0, 0);\n\n        $this->assertSame(0, $s1->diffInWeekdays($e1));\n        $this->assertSame(0, (int) $s1->diffInDays($e1));\n\n        // 1 hour diff\n        $s2 = Carbon::create(2023, 6, 6, 15, 0, 0);\n        $e2 = Carbon::create(2023, 6, 6, 16, 0, 0);\n\n        $this->assertSame(0, $s2->diffInWeekdays($e2));\n        $this->assertSame(0, $e2->diffInWeekdays($s2));\n        $this->assertSame('2023-06-06 15:00:00', $s2->format('Y-m-d H:i:s'));\n        $this->assertSame('2023-06-06 16:00:00', $e2->format('Y-m-d H:i:s'));\n        $this->assertSame(0, (int) $s2->diffInDays($e2));\n\n        // 23 hour diff\n        $s3 = Carbon::create(2023, 6, 6, 15, 0, 0);\n        $e3 = Carbon::create(2023, 6, 7, 14, 0, 0);\n\n        $this->assertSame(1, $s3->diffInWeekdays($e3));\n        $this->assertSame(-1, $e3->diffInWeekdays($s3));\n        $this->assertSame('2023-06-06 15:00:00', $s3->format('Y-m-d H:i:s'));\n        $this->assertSame('2023-06-07 14:00:00', $e3->format('Y-m-d H:i:s'));\n        $this->assertSame(0, (int) $s3->diffInDays($e3));\n\n        // 24 hour diff\n        $s4 = Carbon::create(2023, 6, 6, 15, 0, 0);\n        $e4 = Carbon::create(2023, 6, 7, 15, 0, 0);\n\n        $this->assertSame(1, $s4->diffInWeekdays($e4));\n        $this->assertSame(-1, $e4->diffInWeekdays($s4));\n        $this->assertSame(1, (int) $s4->diffInDays($e4));\n\n        // 25 hour diff\n        $s5 = Carbon::create(2023, 6, 6, 15, 0, 0);\n        $e5 = Carbon::create(2023, 6, 7, 16, 0, 0);\n\n        $this->assertSame(1, $s5->diffInWeekdays($e5));\n        $this->assertSame(-1, $e5->diffInWeekdays($s5));\n        $this->assertSame('2023-06-06 15:00:00', $s5->format('Y-m-d H:i:s'));\n        $this->assertSame('2023-06-07 16:00:00', $e5->format('Y-m-d H:i:s'));\n        $this->assertSame(1, (int) $s5->diffInDays($e5));\n    }\n\n    public function testDiffInWeekdaysPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(21, $dt->diffInWeekdays($dt->copy()->addMonth()));\n    }\n\n    public function testDiffInWeekdaysNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(20, $dt->diffInWeekdays($dt->copy()->startOfMonth(), true));\n    }\n\n    public function testDiffInWeekdaysNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-20, $dt->diffInWeekdays($dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInWeekendDaysPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(10, $dt->diffInWeekendDays($dt->copy()->addMonth()));\n    }\n\n    public function testDiffInWeekendDaysNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(10, $dt->diffInWeekendDays($dt->copy()->startOfMonth(), true));\n    }\n\n    public function testDiffInWeekendDaysNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-10, $dt->diffInWeekendDays($dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInWeeksPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(52, (int) $dt->diffInWeeks($dt->copy()->addYear()));\n    }\n\n    public function testDiffInWeeksNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-52, (int) $dt->diffInWeeks($dt->copy()->subYear()));\n    }\n\n    public function testDiffInWeeksNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(52, (int) $dt->diffInWeeks($dt->copy()->subYear(), true));\n    }\n\n    public function testDiffInWeeksVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(1, (int) Carbon::now()->subWeek()->diffInWeeks());\n        });\n    }\n\n    public function testDiffInWeeksEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(0, (int) $dt->diffInWeeks($dt->copy()->addWeek()->subDay()));\n    }\n\n    public function testDiffInHoursPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(26, (int) $dt->diffInHours($dt->copy()->addDay()->addHours(2)));\n    }\n\n    public function testDiffInHoursNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-22.0, $dt->diffInHours($dt->copy()->subDay()->addHours(2)));\n    }\n\n    public function testDiffInHoursNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(22.0, $dt->diffInHours($dt->copy()->subDay()->addHours(2), true));\n    }\n\n    public function testDiffInHoursVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(48, (int) Carbon::now()->subDays(2)->diffInHours());\n        }, Carbon::create(2012, 1, 15));\n    }\n\n    public function testDiffInHoursEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInHours($dt->copy()->addHour()->addMinutes(31)));\n    }\n\n    public function testDiffInHoursWithTimezones()\n    {\n        date_default_timezone_set('Africa/Algiers');\n        Carbon::setTestNow();\n\n        $dtToronto = Carbon::create(2012, 1, 1, 0, 0, 0, 'America/Toronto');\n        $dtVancouver = Carbon::create(2012, 1, 1, 0, 0, 0, 'America/Vancouver');\n\n        $this->assertSame(-3.0, $dtVancouver->diffInHours($dtToronto), 'Midnight in Toronto is 3 hours from midnight in Vancouver');\n\n        $dtToronto = Carbon::createFromDate(2012, 1, 1, 'America/Toronto');\n        usleep(2);\n        $dtVancouver = Carbon::createFromDate(2012, 1, 1, 'America/Vancouver');\n\n        $this->assertSame(0, ((int) round($dtVancouver->diffInHours($dtToronto))) % 24);\n\n        $dtToronto = Carbon::createMidnightDate(2012, 1, 1, 'America/Toronto');\n        $dtVancouver = Carbon::createMidnightDate(2012, 1, 1, 'America/Vancouver');\n\n        $this->assertSame(-3.0, $dtVancouver->diffInHours($dtToronto), 'Midnight in Toronto is 3 hours from midnight in Vancouver');\n    }\n\n    public function testDiffInMinutesPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(62, (int) $dt->diffInMinutes($dt->copy()->addHour()->addMinutes(2)));\n    }\n\n    public function testDiffInMinutesPositiveALot()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1502, (int) $dt->diffInMinutes($dt->copy()->addHours(25)->addMinutes(2)));\n    }\n\n    public function testDiffInMinutesNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-58.0, $dt->diffInMinutes($dt->copy()->subHour()->addMinutes(2)));\n    }\n\n    public function testDiffInMinutesNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(58.0, $dt->diffInMinutes($dt->copy()->subHour()->addMinutes(2), true));\n    }\n\n    public function testDiffInMinutesVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(60, (int) Carbon::now()->subHour()->diffInMinutes());\n        });\n    }\n\n    public function testDiffInMinutesEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInMinutes($dt->copy()->addMinute()->addSeconds(31)));\n    }\n\n    public function testDiffInSecondsPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(62, (int) $dt->diffInSeconds($dt->copy()->addMinute()->addSeconds(2)));\n    }\n\n    public function testDiffInSecondsPositiveALot()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(7202, (int) $dt->diffInSeconds($dt->copy()->addHours(2)->addSeconds(2)));\n    }\n\n    public function testDiffInSecondsNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-58.0, $dt->diffInSeconds($dt->copy()->subMinute()->addSeconds(2)));\n    }\n\n    public function testDiffInSecondsNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(58.0, $dt->diffInSeconds($dt->copy()->subMinute()->addSeconds(2), true));\n    }\n\n    public function testDiffInSecondsVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(3600, (int) Carbon::now()->subHour()->diffInSeconds());\n        });\n    }\n\n    public function testDiffInSecondsEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1.0, $dt->diffInSeconds($dt->copy()->addSeconds((int) 1.9)));\n    }\n\n    public function testDiffInSecondsWithTimezones()\n    {\n        $dtOttawa = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $dtVancouver = Carbon::createFromDate(2000, 1, 1, 'America/Vancouver');\n        $this->assertSame(0, $dtOttawa->diffInSeconds($dtVancouver) % (24 * 3600));\n\n        $dtOttawa = Carbon::createMidnightDate(2000, 1, 1, 'America/Toronto');\n        $dtVancouver = Carbon::createMidnightDate(2000, 1, 1, 'America/Vancouver');\n        $this->assertSame(3 * 60 * 60, (int) $dtOttawa->diffInSeconds($dtVancouver));\n    }\n\n    public function testDiffInSecondsWithTimezonesAndVsDefault()\n    {\n        $vanNow = Carbon::now('America/Vancouver');\n        $hereNow = $vanNow->copy()->setTimezone(Carbon::now()->tz);\n        $this->wrapWithTestNow(function () use ($vanNow) {\n            $this->assertSame(0, (int) $vanNow->diffInSeconds());\n        }, $hereNow);\n    }\n\n    public function testDiffForHumansNowAndSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('0 seconds ago', Carbon::now()->diffForHumans());\n        });\n    }\n\n    /**\n     * @see https://github.com/briannesbitt/Carbon/issues/2136\n     */\n    public function testDiffInTheFuture()\n    {\n        Carbon::setTestNow('2020-07-22 09:15');\n\n        $this->assertSame(\n            '1 week from now',\n            Carbon::parse('2020-07-30 13:51:15')\n                ->diffForHumans(['options' => CarbonInterface::ROUND]),\n        );\n    }\n\n    public function testDiffWithSkippedUnits()\n    {\n        Carbon::setTestNow('2021-11-04 15:42');\n\n        $this->assertSame(\n            '28 weeks from now',\n            Carbon::parse('2022-05-25')\n                ->diffForHumans(['skip' => ['y', 'm']])\n        );\n        $this->assertSame(\n            '201 days from now',\n            Carbon::parse('2022-05-25')\n                ->diffForHumans(['skip' => ['y', 'm', 'w']])\n        );\n        $this->assertSame(\n            '4 hours from now',\n            Carbon::parse('2021-11-04 20:00')\n                ->diffForHumans(['skip' => ['y', 'm', 'w']])\n        );\n        $this->assertSame(\n            '6 hours ago',\n            Carbon::parse('2021-11-04 09:00')\n                ->diffForHumans(['skip' => ['y', 'm', 'w']])\n        );\n        $this->assertSame(\n            '528 days ago',\n            Carbon::parse('2020-05-25')\n                ->diffForHumans(['skip' => ['y', 'm', 'w']])\n        );\n\n        Carbon::setTestNow('2023-01-02 16:57');\n        $this->assertSame(\n            '1 day 16 hours 57 minutes',\n            Carbon::yesterday()->diffForHumans([\n                'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n                'parts' => 3,\n                'skip' => 's',\n            ])\n        );\n\n        $this->assertSame(\n            '2 days 190 minutes ago',\n            Carbon::parse('-2 days -3 hours -10 minutes')->diffForHumans(['parts' => 3, 'skip' => [Unit::Hour]]),\n        );\n    }\n\n    public function testDiffForHumansNowAndSecondWithTimezone()\n    {\n        $vanNow = Carbon::now('America/Vancouver');\n        $hereNow = $vanNow->copy()->setTimezone(Carbon::now()->tz);\n        $this->wrapWithTestNow(function () use ($vanNow) {\n            $this->assertSame('0 seconds ago', $vanNow->diffForHumans());\n        }, $hereNow);\n    }\n\n    public function testDiffForHumansNowAndSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds ago', Carbon::now()->subSeconds(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds ago', Carbon::now()->subSeconds(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute ago', Carbon::now()->subMinute()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes ago', Carbon::now()->subMinutes(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes ago', Carbon::now()->subMinutes(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour ago', Carbon::now()->subHour()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours ago', Carbon::now()->subHours(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours ago', Carbon::now()->subHours(23)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day ago', Carbon::now()->subDay()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days ago', Carbon::now()->subDays(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days ago', Carbon::now()->subDays(6)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week ago', Carbon::now()->subWeek()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks ago', Carbon::now()->subWeeks(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks ago', Carbon::now()->subWeeks(3)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndMonth()\n    {\n        Carbon::setTestNow('2018-12-01');\n        $this->assertSame('4 weeks ago', Carbon::now()->subWeeks(4)->diffForHumans());\n        $this->assertSame('1 month ago', Carbon::now()->subMonth()->diffForHumans());\n    }\n\n    public function testDiffForHumansNowAndMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months ago', Carbon::now()->subMonthsNoOverflow(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months ago', Carbon::now()->subMonthsNoOverflow(11)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year ago', Carbon::now()->subYear()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years ago', Carbon::now()->subYears(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 second from now', Carbon::now()->addSecond()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds from now', Carbon::now()->addSeconds(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds from now', Carbon::now()->addSeconds(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute from now', Carbon::now()->addMinute()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes from now', Carbon::now()->addMinutes(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes from now', Carbon::now()->addMinutes(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour from now', Carbon::now()->addHour()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours from now', Carbon::now()->addHours(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours from now', Carbon::now()->addHours(23)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day from now', Carbon::now()->addDay()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days from now', Carbon::now()->addDays(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days from now', Carbon::now()->addDays(6)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week from now', Carbon::now()->addWeek()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks from now', Carbon::now()->addWeeks(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks from now', Carbon::now()->addWeeks(3)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('4 weeks from now', Carbon::now()->addWeeks(4)->diffForHumans());\n            $this->assertSame('1 month from now', Carbon::now()->addMonth()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months from now', Carbon::now()->addMonths(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months from now', Carbon::now()->addMonths(11)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year from now', Carbon::now()->addYear()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years from now', Carbon::now()->addYears(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansOtherAndSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 second before', Carbon::now()->diffForHumans(Carbon::now()->addSecond()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds before', Carbon::now()->diffForHumans(Carbon::now()->addSeconds(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds before', Carbon::now()->diffForHumans(Carbon::now()->addSeconds(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute before', Carbon::now()->diffForHumans(Carbon::now()->addMinute()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes before', Carbon::now()->diffForHumans(Carbon::now()->addMinutes(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes before', Carbon::now()->diffForHumans(Carbon::now()->addMinutes(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour before', Carbon::now()->diffForHumans(Carbon::now()->addHour()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours before', Carbon::now()->diffForHumans(Carbon::now()->addHours(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours before', Carbon::now()->diffForHumans(Carbon::now()->addHours(23)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day before', Carbon::now()->diffForHumans(Carbon::now()->addDay()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days before', Carbon::now()->diffForHumans(Carbon::now()->addDays(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days before', Carbon::now()->diffForHumans(Carbon::now()->addDays(6)));\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithDefaultPartsCount()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week ago', Carbon::now()->subDays(8)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithPartsCount1()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(\n                '1 week ago',\n                Carbon::now()->subDays(8)->diffForHumans(null, false, false, 1)\n            );\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithPartsCount2()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(\n                '1 week 1 day ago',\n                Carbon::now()->subDays(8)->diffForHumans(null, false, false, 2)\n            );\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithMicrosecondsBuggyGap()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(\n                '23 hours 59 minutes 59 seconds after',\n                Carbon::parse('2018-12-03 12:34:45.123456')\n                    ->diffForHumans('2018-12-02 12:34:45.123476', ['parts' => 3])\n            );\n        });\n    }\n\n    public function testDiffForHumansOtherAndWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week before', Carbon::now()->diffForHumans(Carbon::now()->addWeek()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks before', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks before', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(3)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('4 weeks before', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(4)));\n            $this->assertSame('1 month before', Carbon::now()->diffForHumans(Carbon::now()->addMonth()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months before', Carbon::now()->diffForHumans(Carbon::now()->addMonths(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months before', Carbon::now()->diffForHumans(Carbon::now()->addMonths(11)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year before', Carbon::now()->diffForHumans(Carbon::now()->addYear()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years before', Carbon::now()->diffForHumans(Carbon::now()->addYears(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 second after', Carbon::now()->diffForHumans(Carbon::now()->subSecond()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds after', Carbon::now()->diffForHumans(Carbon::now()->subSeconds(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds after', Carbon::now()->diffForHumans(Carbon::now()->subSeconds(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute after', Carbon::now()->diffForHumans(Carbon::now()->subMinute()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes after', Carbon::now()->diffForHumans(Carbon::now()->subMinutes(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes after', Carbon::now()->diffForHumans(Carbon::now()->subMinutes(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour after', Carbon::now()->diffForHumans(Carbon::now()->subHour()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours after', Carbon::now()->diffForHumans(Carbon::now()->subHours(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours after', Carbon::now()->diffForHumans(Carbon::now()->subHours(23)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day after', Carbon::now()->diffForHumans(Carbon::now()->subDay()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days after', Carbon::now()->diffForHumans(Carbon::now()->subDays(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days after', Carbon::now()->diffForHumans(Carbon::now()->subDays(6)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week after', Carbon::now()->diffForHumans(Carbon::now()->subWeek()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks after', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks after', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(3)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureMonth()\n    {\n        Carbon::setTestNow('2018-12-01');\n        $this->assertSame('4 weeks after', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(4)));\n        $this->assertSame('1 month after', Carbon::now()->diffForHumans(Carbon::now()->subMonth()));\n    }\n\n    public function testDiffForHumansOtherAndFutureMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months after', Carbon::now()->diffForHumans(Carbon::now()->subMonthsNoOverflow(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months after', Carbon::now()->diffForHumans(Carbon::now()->subMonthsNoOverflow(11)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year after', Carbon::now()->diffForHumans(Carbon::now()->subYear()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years after', Carbon::now()->diffForHumans(Carbon::now()->subYears(2)));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds', Carbon::now()->diffForHumans(Carbon::now()->subSeconds(59), true));\n            $this->assertSame('59 seconds', Carbon::now()->diffForHumans(Carbon::now()->addSeconds(59), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('30 minutes', Carbon::now()->diffForHumans(Carbon::now()->subMinutes(30), true));\n            $this->assertSame('30 minutes', Carbon::now()->diffForHumans(Carbon::now()->addMinutes(30), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 hours', Carbon::now()->diffForHumans(Carbon::now()->subHours(3), true));\n            $this->assertSame('3 hours', Carbon::now()->diffForHumans(Carbon::now()->addHours(3), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days', Carbon::now()->diffForHumans(Carbon::now()->subDays(2), true));\n            $this->assertSame('2 days', Carbon::now()->diffForHumans(Carbon::now()->addDays(2), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(2), true));\n            $this->assertSame('2 weeks', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(2), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months', Carbon::now()->diffForHumans(Carbon::now()->subMonthsNoOverflow(2), true));\n            $this->assertSame('2 months', Carbon::now()->diffForHumans(Carbon::now()->addMonthsNoOverflow(2), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), true));\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), true));\n        });\n    }\n\n    public function testDiffForHumansWithOptions()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year after', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year before', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year from now', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year ago', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year after', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n            $this->assertSame('1 year before', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n            $this->assertSame('1 year', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year before', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n            $this->assertSame('1 year after', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n        });\n    }\n\n    public function testDiffForHumansWithMagicMethods()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->subYears(1)->subMonth()));\n            $this->assertSame('1 year 1 month', Carbon::now()->longAbsoluteDiffForHumans(2, Carbon::now()->subYears(1)->subMonth()));\n            $this->assertSame('1 year 1 month', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->subYears(1)->subMonth(), 2));\n            $this->assertSame('1 year', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr', Carbon::now()->shortAbsoluteDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr', Carbon::now()->shortAbsoluteDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year after', Carbon::now()->longRelativeDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year before', Carbon::now()->longRelativeDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr after', Carbon::now()->shortRelativeDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr before', Carbon::now()->shortRelativeDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year from now', Carbon::now()->longRelativeToNowDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year ago', Carbon::now()->longRelativeToNowDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr from now', Carbon::now()->shortRelativeToNowDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr ago', Carbon::now()->shortRelativeToNowDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year after', Carbon::now()->longRelativeToOtherDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year before', Carbon::now()->longRelativeToOtherDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr after', Carbon::now()->shortRelativeToOtherDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr before', Carbon::now()->shortRelativeToOtherDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year', Carbon::now()->subYears(1)->longAbsoluteDiffForHumans());\n            $this->assertSame('1 year', Carbon::now()->addYears(1)->longAbsoluteDiffForHumans());\n            $this->assertSame('1yr', Carbon::now()->subYears(1)->shortAbsoluteDiffForHumans());\n            $this->assertSame('1yr', Carbon::now()->addYears(1)->shortAbsoluteDiffForHumans());\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->longRelativeDiffForHumans());\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->longRelativeDiffForHumans());\n            $this->assertSame('1yr ago', Carbon::now()->subYears(1)->shortRelativeDiffForHumans());\n            $this->assertSame('1yr from now', Carbon::now()->addYears(1)->shortRelativeDiffForHumans());\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->longRelativeToNowDiffForHumans());\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->longRelativeToNowDiffForHumans());\n            $this->assertSame('1yr ago', Carbon::now()->subYears(1)->shortRelativeToNowDiffForHumans());\n            $this->assertSame('1yr from now', Carbon::now()->addYears(1)->shortRelativeToNowDiffForHumans());\n            $this->assertSame('1 year before', Carbon::now()->subYears(1)->longRelativeToOtherDiffForHumans());\n            $this->assertSame('1 year after', Carbon::now()->addYears(1)->longRelativeToOtherDiffForHumans());\n            $this->assertSame('1yr before', Carbon::now()->subYears(1)->shortRelativeToOtherDiffForHumans());\n            $this->assertSame('1yr after', Carbon::now()->addYears(1)->shortRelativeToOtherDiffForHumans());\n        });\n    }\n\n    public function testDiffForHumansWithShorterMonthShouldStillBeAMonth()\n    {\n        $feb15 = Carbon::parse('2015-02-15');\n        $mar15 = Carbon::parse('2015-03-15');\n        $this->assertSame('1 month after', $mar15->diffForHumans($feb15));\n    }\n\n    public function testDiffForHumansWithDateTimeInstance()\n    {\n        $feb15 = new DateTime('2015-02-15');\n        $mar15 = Carbon::parse('2015-03-15');\n        $this->assertSame('1 month after', $mar15->diffForHumans($feb15));\n    }\n\n    public function testDiffForHumansWithDateString()\n    {\n        $mar13 = Carbon::parse('2018-03-13');\n        $this->assertSame('1 month before', $mar13->diffForHumans('2018-04-13'));\n    }\n\n    public function testDiffForHumansWithDateTimeString()\n    {\n        $mar13 = Carbon::parse('2018-03-13');\n        $this->assertSame('1 month before', $mar13->diffForHumans('2018-04-13 08:00:00'));\n    }\n\n    public function testDiffWithString()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 25)->endOfDay();\n\n        $this->assertSame(384.0, round($dt1->diffInHours('2000-01-10', true)));\n        $this->assertSame(383.0, floor($dt1->diffInHours('2000-01-10', true)));\n    }\n\n    public function testDiffWithDateTime()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 25)->endOfDay();\n        $dt2 = new DateTime('2000-01-10');\n\n        $this->assertSame(-384.0, round($dt1->diffInHours($dt2)));\n    }\n\n    public function testDiffOptions()\n    {\n        $this->assertSame(1, Carbon::NO_ZERO_DIFF);\n        $this->assertSame(2, Carbon::JUST_NOW);\n        $this->assertSame(4, Carbon::ONE_DAY_WORDS);\n        $this->assertSame(8, Carbon::TWO_DAY_WORDS);\n        $this->assertSame(16, Carbon::SEQUENTIAL_PARTS_ONLY);\n\n        $options = Carbon::getHumanDiffOptions();\n        $this->assertSame(0, $options);\n\n        $date = Carbon::create(2018, 3, 12, 2, 5, 6, 'UTC');\n        $this->assertSame('0 seconds before', $date->diffForHumans($date));\n\n        Carbon::setHumanDiffOptions(0);\n        $this->assertSame(0, Carbon::getHumanDiffOptions());\n\n        $this->assertSame('0 seconds before', $date->diffForHumans($date));\n\n        Carbon::setLocale('fr');\n        $this->assertSame('0 seconde avant', $date->diffForHumans($date));\n\n        Carbon::setLocale('en');\n        Carbon::setHumanDiffOptions(Carbon::JUST_NOW);\n        $this->assertSame(2, Carbon::getHumanDiffOptions());\n        $this->assertSame('0 seconds before', $date->diffForHumans($date));\n        $this->assertSame('just now', Carbon::now()->diffForHumans());\n\n        Carbon::setHumanDiffOptions(Carbon::ONE_DAY_WORDS | Carbon::TWO_DAY_WORDS | Carbon::NO_ZERO_DIFF | Carbon::SEQUENTIAL_PARTS_ONLY);\n        $this->assertSame(29, Carbon::getHumanDiffOptions());\n\n        Carbon::disableHumanDiffOption(Carbon::SEQUENTIAL_PARTS_ONLY);\n\n        $oneDayAfter = Carbon::create(2018, 3, 13, 2, 5, 6, 'UTC');\n        $oneDayBefore = Carbon::create(2018, 3, 11, 2, 5, 6, 'UTC');\n        $twoDayAfter = Carbon::create(2018, 3, 14, 2, 5, 6, 'UTC');\n        $twoDayBefore = Carbon::create(2018, 3, 10, 2, 5, 6, 'UTC');\n\n        $this->assertSame('1 day after', $oneDayAfter->diffForHumans($date));\n        $this->assertSame('1 day before', $oneDayBefore->diffForHumans($date));\n        $this->assertSame('2 days after', $twoDayAfter->diffForHumans($date));\n        $this->assertSame('2 days before', $twoDayBefore->diffForHumans($date));\n\n        $this->assertSame('tomorrow', Carbon::now()->addDay()->diffForHumans());\n        $this->assertSame('yesterday', Carbon::now()->subDay()->diffForHumans());\n        $this->assertSame('after tomorrow', Carbon::now()->addDays(2)->diffForHumans());\n        $this->assertSame('before yesterday', Carbon::now()->subDays(2)->diffForHumans());\n\n        Carbon::disableHumanDiffOption(Carbon::TWO_DAY_WORDS);\n        $this->assertSame(5, Carbon::getHumanDiffOptions());\n        Carbon::disableHumanDiffOption(Carbon::TWO_DAY_WORDS);\n        $this->assertSame(5, Carbon::getHumanDiffOptions());\n\n        $this->assertSame('tomorrow', Carbon::now()->addDay()->diffForHumans());\n        $this->assertSame('yesterday', Carbon::now()->subDay()->diffForHumans());\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->diffForHumans());\n        $this->assertSame('2 days ago', Carbon::now()->subDays(2)->diffForHumans());\n\n        Carbon::enableHumanDiffOption(Carbon::JUST_NOW);\n        $this->assertSame(7, Carbon::getHumanDiffOptions());\n        Carbon::enableHumanDiffOption(Carbon::JUST_NOW);\n        $this->assertSame(7, Carbon::getHumanDiffOptions());\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 4, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 11, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 12, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n        $this->assertSame('1 month 1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n        ]));\n        $this->assertSame('1 month 1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2020, 1, 11, 0, 0, 0, 'UTC');\n        $this->assertSame('1 year 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 year before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 5, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 1, 12, 0, 1, 0, 'UTC');\n        $this->assertSame('1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n        $this->assertSame('1 week 1 day 1 minute before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n        ]));\n        $this->assertSame('1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        Carbon::setHumanDiffOptions($options);\n    }\n\n    public function testDiffForHumansArrayParameter()\n    {\n        Carbon::setTestNow('2000-01-01 00:00:00');\n        $date = Carbon::now()->subtract('2 days, 3 hours and 40 minutes');\n        $this->assertSame('2 days ago', $date->diffForHumans([\n            'parts' => 1,\n            'join' => true,\n        ]));\n        $this->assertSame('2 days and 3 hours ago', $date->diffForHumans([\n            'parts' => 2,\n            'join' => true,\n        ]));\n        $this->assertSame('hace 2 días y 3 horas', $date->copy()->locale('es')->diffForHumans([\n            'parts' => 2,\n            'join' => true,\n        ]));\n        $this->assertSame('2 days, 3 hours and 40 minutes ago', $date->diffForHumans([\n            'parts' => -1,\n            'join' => true,\n        ]));\n        $this->assertSame('3 days, 3 hours and 40 minutes before', $date->diffForHumans(Carbon::now()->addDay(), [\n            'parts' => -1,\n            'join' => true,\n        ]));\n        $this->assertSame('3 days, 3 hours and 40 minutes before', $date->diffForHumans([\n            'other' => Carbon::now()->addDay(),\n            'parts' => -1,\n            'join' => true,\n        ]));\n        $this->assertSame('2 days, 3 hours ago', $date->diffForHumans([\n            'parts' => 2,\n            'join' => ', ',\n        ]));\n        $this->assertSame('2d, 3h ago', $date->diffForHumans([\n            'parts' => 2,\n            'join' => ', ',\n            'short' => true,\n        ]));\n        $this->assertSame('2 days, 3 hours before', $date->diffForHumans([\n            'parts' => 2,\n            'join' => ', ',\n            'syntax' => CarbonInterface::DIFF_RELATIVE_TO_OTHER,\n        ]));\n        $this->assertSame('yesterday', Carbon::yesterday()->diffForHumans([\n            'options' => CarbonInterface::ONE_DAY_WORDS,\n        ]));\n        $this->assertSame('1 day ago', Carbon::yesterday()->diffForHumans([\n            'options' => 0,\n        ]));\n    }\n\n    public function testFromNow()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now('UTC')->addDays(2)->fromNow());\n        Carbon::setLocale('fr');\n        $this->assertSame('dans 2 jours', Carbon::now('UTC')->addDays(2)->fromNow());\n        Carbon::setLocale('en');\n        $this->assertSame('2 days after', Carbon::now('UTC')->addDays(2)->fromNow(CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n        $this->assertSame('2d from now', Carbon::now('UTC')->addDays(2)->addHours(5)->fromNow(null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now('UTC')->addDays(2)->addHours(5)->fromNow(true, false, 2));\n    }\n\n    public function testFromNowBackwardCompatibleSyntax()\n    {\n        $date = Carbon::parse('-5 days');\n        $this->assertSame('5 days', $date->fromNow(Carbon::now(), true));\n\n        $date = Carbon::parse('+5 days');\n        $this->assertSame('5 days', $date->fromNow(Carbon::now(), true));\n    }\n\n    public function testFrom()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->from());\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->from(null));\n        $this->assertSame('2 days after', Carbon::now()->addDay()->from(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours après', Carbon::now()->addDay()->from(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDay()->from(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d after', Carbon::now()->addDay()->addHours(5)->from(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->from(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testSince()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->since());\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->since(null));\n        $this->assertSame('2 days after', Carbon::now()->addDay()->since(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours après', Carbon::now()->addDay()->since(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDay()->since(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d after', Carbon::now()->addDay()->addHours(5)->since(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->since(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testToNow()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now('UTC')->addDays(2)->toNow());\n        Carbon::setLocale('fr');\n        $this->assertSame('il y a 2 jours', Carbon::now('UTC')->addDays(2)->toNow());\n        Carbon::setLocale('en');\n        $this->assertSame('2 days before', Carbon::now('UTC')->addDays(2)->toNow(CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n        $this->assertSame('2d ago', Carbon::now('UTC')->addDays(2)->addHours(5)->toNow(null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now('UTC')->addDays(2)->addHours(5)->toNow(true, false, 2));\n    }\n\n    public function testTo()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->to());\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->to(null));\n        $this->assertSame('2 days before', Carbon::now()->addDay()->to(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours avant', Carbon::now()->addDay()->to(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDay()->to(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d before', Carbon::now()->addDay()->addHours(5)->to(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->to(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testUntil()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->until());\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->until(null));\n        $this->assertSame('2 days before', Carbon::now()->addDay()->until(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours avant', Carbon::now()->addDay()->until(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDay()->until(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d before', Carbon::now()->addDay()->addHours(5)->until(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->until(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testDiffWithInvalidType()\n    {\n        $this->expectException(TypeError::class);\n\n        Carbon::createFromDate(2000, 1, 25)->diffInHours(10);\n    }\n\n    public function testDiffWithInvalidObject()\n    {\n        $this->expectException(TypeError::class);\n\n        Carbon::createFromDate(2000, 1, 25)->diffInHours(new CarbonInterval());\n    }\n\n    public function testDiffForHumansWithIncorrectDateTimeStringWhichIsNotACarbonInstance()\n    {\n        $this->expectException(InvalidFormatException::class);\n        $this->expectExceptionMessage('Failed to parse time string (2018-04-13---08:00:00) at position 10');\n\n        $mar13 = Carbon::parse('2018-03-13');\n        $mar13->diffForHumans('2018-04-13---08:00:00');\n    }\n\n    public function testFloatDiff()\n    {\n        date_default_timezone_set('UTC');\n\n        $this->assertSame(8986.665965, Carbon::parse('2018-03-31 23:55:12.321456')->floatDiffInSeconds(Carbon::parse('2018-04-01 02:24:58.987421')));\n\n        $this->assertVeryClose(\n            1.0006944444444443,\n            Carbon::parse('2018-12-01 00:00')->floatDiffInDays(Carbon::parse('2018-12-02 00:01')),\n        );\n        $this->assertVeryClose(\n            1.0006944444444443 / 7,\n            Carbon::parse('2018-12-01 00:00')->floatDiffInWeeks(Carbon::parse('2018-12-02 00:01')),\n        );\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2018-04-12 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-03-13 20:55:12.321456'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2018-04-12 14:24:58.987421')));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-03-13 20:55:12.321456')));\n\n        $this->assertVeryClose(16.557633744585264, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(15.959000397985738, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(15.959000397985738, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(15.959000397985738, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-15.959000397985738, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3746000338015283, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9609014036645421, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-01-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2023-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2023-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00')->floatDiffInMonths(Carbon::parse('2018-11-28 00:00:00'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris'), true));\n\n        $this->assertVeryClose(-0.9999999999884258, Carbon::parse('2020-12-17 00:00:00.000001')->floatDiffInDays('2020-12-16 00:00:00.000002'));\n\n        $this->assertSame(-1.0, Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00')->floatDiffInMonths(Carbon::parse('2018-10-28 00:00:00')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')));\n    }\n\n    public function testDiffDayMinusOneMicrosecond()\n    {\n        $now = new Carbon('2019-07-29 14:02:54.000000 UTC');\n        $then1 = new Carbon('2019-07-28 14:02:54.000001 UTC');\n        $then2 = new Carbon('2019-07-27 14:02:54.000001 UTC');\n\n        $this->assertVeryClose(-0.9999999999884258, $now->floatDiffInDays($then1, false));\n        $this->assertVeryClose(-1.9999999999884257, $now->floatDiffInDays($then2, false));\n        $this->assertVeryClose(-0.9999999999884258, $now->diffInDays($then1, false));\n        $this->assertVeryClose(-1.9999999999884257, $now->diffInDays($then2, false));\n\n        $this->assertVeryClose(\n            6.99999273113426,\n            Carbon::parse('2022-01-04 13:32:30.628030')->floatDiffInDays('2022-01-11 13:32:30.000000'),\n        );\n        $this->assertVeryClose(\n            6.999734949884259,\n            Carbon::parse('2022-01-04 13:32:52.900330')->floatDiffInDays('2022-01-11 13:32:30.000000'),\n        );\n    }\n\n    public function testFloatDiffWithRealUnits()\n    {\n        $from = Carbon::parse('2021-03-27 20:00 Europe/Warsaw');\n        $to = Carbon::parse('2021-03-27 20:00 Europe/London');\n        $from->floatDiffInRealDays($to);\n\n        $this->assertSame('2021-03-27 20:00:00 Europe/Warsaw', $from->format('Y-m-d H:i:s e'));\n        $this->assertSame('2021-03-27 20:00:00 Europe/London', $to->format('Y-m-d H:i:s e'));\n\n        date_default_timezone_set('UTC');\n        $this->assertVeryClose(1.0006944444444446, Carbon::parse('2018-12-01 00:00')->floatDiffInRealDays(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-26 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-03-29 20:00'));\n        $this->assertVeryClose(1.0416666666666667, Carbon::parse('2021-10-30 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-10-31 20:00'));\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInRealDays(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInRealDays(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInRealWeeks(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2018-04-12 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-03-13 20:55:12.321456'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2018-04-12 14:24:58.987421'), false));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-03-13 20:55:12.321456'), false));\n\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInRealWeeks(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInRealWeeks(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2018-04-12 14:24:58.987421')));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-03-13 20:55:12.321456')));\n\n        $this->assertVeryClose(16.557633744585264, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3746000338015283, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9609014036645421, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-01-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2023-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2023-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(1.0336021505376345, Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00')->floatDiffInRealMonths(Carbon::parse('2018-11-28 00:00:00'), true));\n        $this->assertVeryClose(1.0013888888888889, Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris'), true));\n\n        $this->assertVeryClose(-1.0336021505376345, Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00')->floatDiffInRealMonths(Carbon::parse('2018-10-28 00:00:00')));\n        $this->assertVeryClose(-1.0013888888888889, Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')));\n\n        Carbon::setTestNow('2021-03-28 20:00 Europe/Warsaw');\n        $this->assertSame(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInRealDays());\n    }\n\n    public function testFloatDiffWithUTCUnits()\n    {\n        $from = Carbon::parse('2021-03-27 20:00 Europe/Warsaw');\n        $to = Carbon::parse('2021-03-27 20:00 Europe/London');\n        $from->floatDiffInUtcDays($to);\n\n        $this->assertSame('2021-03-27 20:00:00 Europe/Warsaw', $from->format('Y-m-d H:i:s e'));\n        $this->assertSame('2021-03-27 20:00:00 Europe/London', $to->format('Y-m-d H:i:s e'));\n\n        date_default_timezone_set('UTC');\n        $this->assertVeryClose(1.0006944444444446, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcDays(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-26 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-03-29 20:00'));\n        $this->assertVeryClose(1.0416666666666667, Carbon::parse('2021-10-30 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-10-31 20:00'));\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcDays(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcDays(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcWeeks(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2018-04-12 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-03-13 20:55:12.321456'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2018-04-12 14:24:58.987421'), false));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-03-13 20:55:12.321456'), false));\n\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcWeeks(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcWeeks(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2018-04-12 14:24:58.987421')));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-03-13 20:55:12.321456')));\n\n        $this->assertVeryClose(16.557633744585264, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3746000338015283, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9609014036645421, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-01-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2023-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2023-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(1.0336021505376345, Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00')->floatDiffInUtcMonths(Carbon::parse('2018-11-28 00:00:00'), true));\n        $this->assertVeryClose(1.0013888888888889, Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris'), true));\n\n        $this->assertVeryClose(-1.0336021505376345, Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00')->floatDiffInUtcMonths(Carbon::parse('2018-10-28 00:00:00')));\n        $this->assertVeryClose(-1.0013888888888889, Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')));\n\n        Carbon::setTestNow('2021-03-28 20:00 Europe/Warsaw');\n        $this->assertSame(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInUtcDays());\n    }\n\n    /**\n     * https://bugs.php.net/bug.php?id=77007\n     * https://github.com/briannesbitt/Carbon/issues/1503\n     */\n    public function testPhpBug77007()\n    {\n        $this->assertSame(-3.0, Carbon::now()->addMinutes(3)->diffInMinutes());\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:07.237419');\n\n        $this->assertSame(0.322766, $startDate->diffInSeconds($endDate));\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:07.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:00.322766', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(0.322766, $startDate->diffInSeconds($endDate));\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:05.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:01.677234', $startDate->diff($endDate, true)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(1.677234, $startDate->diffInSeconds($endDate, true));\n\n        $this->assertSame('- 00-00-00 00:00:01.677234', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(-1.677234, $startDate->diffInSeconds($endDate, false));\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:06.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:00.677234', $startDate->diff($endDate, true)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(0.677234, $startDate->diffInSeconds($endDate, true));\n\n        $this->assertSame('- 00-00-00 00:00:00.677234', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(-0.677234, $startDate->diffInSeconds($endDate, false));\n\n        $startDate = Carbon::parse('2017-12-31 23:59:59.914653');\n        $endDate = Carbon::parse('2018-01-01 00:00:00.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:00.322766', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(0.322766, $startDate->diffInSeconds($endDate));\n    }\n\n    public function testPHPBug80974()\n    {\n        $this->assertSame(3, Carbon::parse('2018-07-01 America/Toronto')->diffAsDateInterval('2018-07-02 America/Vancouver')->h);\n        $this->assertSame(0, Carbon::parse('2018-07-01')->utc()->diffAsDateInterval('2018-07-02')->days);\n        $this->assertSame(1, Carbon::parse('2018-07-01')->utc()->diffAsDateInterval(Carbon::parse('2018-07-02'))->days);\n        $this->assertSame(1, Carbon::parse('2018-07-01')->diffAsDateInterval(Carbon::parse('2018-07-02')->utc())->days);\n    }\n\n    public function testThreeMonthMinusOneDay()\n    {\n        $start = new Carbon('2022-11-11 22:29:50.000000');\n        $end = $start->copy()->addMonths(3);\n        $now = $start->copy()->addDay();\n\n        $this->assertSame(3.0, $start->diffInMonths($end));\n        $this->assertSame(3 - 1 / 31, $now->diffInMonths($end));\n\n        $start = new Carbon('2022-04-11 22:29:50.000000');\n        $end = $start->copy()->addMonths(3);\n        $now = $start->copy()->addDay();\n\n        $this->assertSame(3.0, $start->diffInMonths($end));\n        $this->assertSame(3 - 1 / 30, $now->diffInMonths($end));\n    }\n\n    public function testDiffWithZeroAndNonZeroMicroseconds()\n    {\n        $requestTime = new Carbon('2018-11-14 18:23:12.0 +00:00');\n        $serverTime = new Carbon('2018-11-14 18:23:12.307628 +00:00');\n\n        $this->assertSame(-0.307628, $serverTime->diffInSeconds($requestTime));\n\n        $requestTime = new Carbon('2019-02-10 18:23:12.0 +00:00');\n        $serverTime = new Carbon('2019-02-10 18:23:12.307628 +00:00');\n\n        $this->assertSame(-0.307628, $serverTime->diffInSeconds($requestTime));\n    }\n\n    public function testNearlyFullDayDiffInSeconds()\n    {\n        $d1 = Carbon::parse('2019-06-15 12:34:56.123456');\n        $d2 = Carbon::parse('2019-06-16 12:34:56.123455');\n\n        $this->assertVeryClose(-86399.99999899999, $d2->diffInSeconds($d1));\n    }\n\n    public function testNearlyFullDayDiffInMicroseconds()\n    {\n        $d1 = Carbon::parse('2019-06-15 12:34:56.123456');\n        $d2 = Carbon::parse('2019-06-16 12:34:56.123455');\n\n        $this->assertVeryClose(-86399999999.0, $d2->diffInMicroseconds($d1));\n    }\n\n    public function testExactMonthDiffInSeconds()\n    {\n        $d1 = Carbon::make('2019-01-23 12:00:00');\n        $d2 = Carbon::make('2019-02-23 12:00:00');\n\n        $this->assertSame(-2678400.0, $d2->diffInSeconds($d1));\n    }\n\n    public function testDiffInUnit()\n    {\n        $this->assertSame(5.5, Carbon::make('2020-08-13 05:00')->diffInUnit('hour', '2020-08-13 10:30'));\n        $this->assertSame(4.5, Carbon::make('2020-08-13 06:00')->diffInUnit(Unit::Hour, '2020-08-13 10:30'));\n    }\n\n    public function testDiffInUnitException()\n    {\n        $this->expectException(UnknownUnitException::class);\n        $this->expectExceptionMessage(\"Unknown unit 'moons'.\");\n        $this->assertSame(5.5, Carbon::make('2020-08-13 05:00')->diffInUnit('moon', '2020-08-13 10:30'));\n    }\n\n    public function testDaysDiffPreservation()\n    {\n        $deletedDate = Carbon::now()->startOfDay()->addDays(31);\n\n        $this->assertSame('31 days', $deletedDate->diffForHumans(Carbon::now()->startOfDay(), [\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'skip' => ['m', 'w'],\n            'minimumUnit' => 'd',\n        ]));\n\n        $this->assertSame('31 days', $deletedDate->diffForHumans(Carbon::now()->startOfDay()->subHours(5), [\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'skip' => ['m', 'w'],\n            'minimumUnit' => 'd',\n        ]));\n\n        $this->assertSame('30 days', $deletedDate->diffForHumans(Carbon::now()->startOfDay()->addHours(5), [\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'skip' => ['m', 'w'],\n            'minimumUnit' => 'd',\n        ]));\n    }\n\n    /**\n     * DST will be ignored (i.e. a day will be considered 23 hours/25 hours if it has a DST)\n     * only if the date the object is compared to is on the exact same timezone (or is a string\n     * with no timezone specified).\n     *\n     * Same cities being currently on the same offset (Europe/Rome and Europe/Berlin for\n     * instance) are not considered the same timezone because they may potentially become\n     * different in the future.\n     */\n    public function testDiffWithTimezones()\n    {\n        $this->assertSame(\n            -132.0,\n            Carbon::parse('2024-02-06', 'Europe/Rome')->diffInDays('2023-09-27'),\n        );\n        $this->assertSame(\n            -132.0,\n            Carbon::parse('2024-02-06 Europe/Rome')->diffInDays('2023-09-27 Europe/Rome'),\n        );\n        $this->assertSame(\n            -132.0,\n            Carbon::parse('2024-02-06 22:12', 'Europe/Rome')->diffInDays('2023-09-27 22:12'),\n        );\n        $this->assertSame(\n            -132.0,\n            Carbon::parse('2024-02-06', 'Europe/Rome')->diffInDays(Carbon::parse('2023-09-27', 'Europe/Rome')),\n        );\n        $this->assertSame(\n            -132.0,\n            Carbon::parse('2024-02-06 Europe/Rome')->diffInDays(new DateTimeImmutable('2023-09-27 Europe/Rome')),\n        );\n        $this->assertVeryClose(\n            -132.04166666666666,\n            Carbon::parse('2024-02-06', 'Europe/Rome')->diffInDays('2023-09-27 Europe/Berlin'),\n        );\n        $this->assertVeryClose(\n            -132.04166666666666,\n            Carbon::parse('2024-02-06', 'Europe/Rome')->diffInDays(Carbon::parse('2023-09-27', 'Europe/Berlin')),\n        );\n        $this->assertVeryClose(\n            -132.04166666666666,\n            Carbon::parse('2024-02-06 Europe/Rome')->diffInDays(Carbon::parse('2023-09-27 Europe/Berlin')),\n        );\n        $this->assertSame(\n            -10.0,\n            Carbon::parse('2024-03-01', 'America/New_York')->addDays(10)\n                ->diffInDays(Carbon::parse('2024-03-01', 'America/New_York')),\n        );\n        $this->assertSame(\n            -10.0,\n            Carbon::parse('2024-04-01', 'America/New_York')->addDays(10)\n                ->diffInDays(Carbon::parse('2024-04-01', 'America/New_York')),\n        );\n    }\n\n    public function testBigGapInDays()\n    {\n        $start = Carbon::parse('2030-11-03 01:24:22.848816', 'UTC');\n        $end = Carbon::parse('2027-05-02 01:24:22.848816', 'UTC');\n\n        $this->assertSame(-1281.0, $start->diffInDays($end));\n\n        $start = Carbon::parse('2030-11-03 01:24:22.848816', 'America/Toronto');\n        $end = Carbon::parse('2027-05-02 01:24:22.848816', 'America/Toronto');\n\n        $this->assertSame(-1281.0, $start->diffInDays($end));\n\n        $start = Carbon::parse('2030-11-03 01:24:22.848811', 'America/Toronto');\n        $end = Carbon::parse('2027-05-02 01:24:22.848816', 'America/Toronto');\n\n        $this->assertVeryClose(-1280.999999999942, $start->diffInDays($end));\n\n        $start = Carbon::parse('2024-11-03 00:24:22.848816', 'America/Toronto');\n        $end = Carbon::parse('2024-11-03 23:24:22.848816', 'America/Toronto');\n\n        // November 3rd is a 25-hours day in Toronto because of the DST\n        $this->assertVeryClose(24 / 25, $start->diffInDays($end));\n    }\n\n    public function testAFormat()\n    {\n        $past = new Carbon('-3 Days');\n        $today = new Carbon('today');\n        $interval = $today->diff($past);\n\n        $this->assertSame('2', $interval->format('%a'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/BadComparisonUnitExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\BadComparisonUnitException;\nuse Tests\\AbstractTestCase;\n\nclass BadComparisonUnitExceptionTest extends AbstractTestCase\n{\n    public function testComparisonUnitException(): void\n    {\n        $exception = new BadComparisonUnitException($unit = 'foo');\n\n        $this->assertSame($unit, $exception->getUnit());\n\n        $this->assertSame(\"Bad comparison unit: 'foo'\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/BadFluentConstructorExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\BadFluentConstructorException;\nuse Tests\\AbstractTestCase;\n\nclass BadFluentConstructorExceptionTest extends AbstractTestCase\n{\n    public function testBadFluentConstructorException(): void\n    {\n        $exception = new BadFluentConstructorException($method = 'foo');\n\n        $this->assertSame($method, $exception->getMethod());\n\n        $this->assertSame(\"Unknown fluent constructor 'foo'.\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/BadFluentSetterExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\BadFluentSetterException;\nuse Tests\\AbstractTestCase;\n\nclass BadFluentSetterExceptionTest extends AbstractTestCase\n{\n    public function testBadFluentSetterException(): void\n    {\n        $exception = new BadFluentSetterException($setter = 'foo');\n\n        $this->assertSame($setter, $exception->getSetter());\n\n        $this->assertSame(\"Unknown fluent setter 'foo'\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/ImmutableExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\ImmutableException;\nuse Tests\\AbstractTestCase;\n\nclass ImmutableExceptionTest extends AbstractTestCase\n{\n    public function testImmutableException(): void\n    {\n        $exception = new ImmutableException($value = 'foo');\n\n        $this->assertSame($value, $exception->getValue());\n\n        $this->assertSame('foo is immutable.', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidCastExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidCastException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidCastExceptionTest extends AbstractTestCase\n{\n    public function testInvalidCastException(): void\n    {\n        $exception = new InvalidCastException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidDateExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidDateException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidDateExceptionTest extends AbstractTestCase\n{\n    public function testInvalidCastException(): void\n    {\n        $exception = new InvalidDateException('month', 13);\n\n        $this->assertSame('month', $exception->getField());\n        $this->assertSame(13, $exception->getValue());\n\n        $this->assertSame('month : 13 is not a valid value.', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidFormatExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidFormatExceptionTest extends AbstractTestCase\n{\n    public function testInvalidFormatException(): void\n    {\n        $exception = new InvalidFormatException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidIntervalExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidIntervalException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidIntervalExceptionTest extends AbstractTestCase\n{\n    public function testInvalidIntervalException(): void\n    {\n        $exception = new InvalidIntervalException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidPeriodDateExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidPeriodDateException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidPeriodDateExceptionTest extends AbstractTestCase\n{\n    public function testInvalidPeriodDateException(): void\n    {\n        $exception = new InvalidPeriodDateException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidPeriodParameterExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidPeriodParameterException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidPeriodParameterExceptionTest extends AbstractTestCase\n{\n    public function testInvalidPeriodParameterException(): void\n    {\n        $exception = new InvalidPeriodParameterException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidTimeZoneExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidTimeZoneExceptionTest extends AbstractTestCase\n{\n    public function testInvalidTimeZoneException(): void\n    {\n        $exception = new InvalidTimeZoneException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/InvalidTypeExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\InvalidTypeException;\nuse Tests\\AbstractTestCase;\n\nclass InvalidTypeExceptionTest extends AbstractTestCase\n{\n    public function testInvalidTypeException(): void\n    {\n        $exception = new InvalidTypeException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/NotACarbonClassExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\NotACarbonClassException;\nuse Tests\\AbstractTestCase;\n\nclass NotACarbonClassExceptionTest extends AbstractTestCase\n{\n    public function testNotACarbonClassException(): void\n    {\n        $exception = new NotACarbonClassException($className = 'foo');\n\n        $this->assertSame($className, $exception->getClassName());\n\n        $this->assertSame('Given class does not implement Carbon\\CarbonInterface: foo', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/NotAPeriodExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\NotAPeriodException;\nuse Tests\\AbstractTestCase;\n\nclass NotAPeriodExceptionTest extends AbstractTestCase\n{\n    public function testNotAPeriodException(): void\n    {\n        $exception = new NotAPeriodException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/NotLocaleAwareExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\NotLocaleAwareException;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse stdClass;\nuse Tests\\AbstractTestCase;\n\nclass NotLocaleAwareExceptionTest extends AbstractTestCase\n{\n    public static function dataForTestNotAPeriodException(): Generator\n    {\n        yield [\n            new stdClass(),\n            'stdClass does neither implements Symfony\\Contracts\\Translation\\LocaleAwareInterface nor getLocale() method.',\n        ];\n        yield [\n            'foo',\n            'string does neither implements Symfony\\Contracts\\Translation\\LocaleAwareInterface nor getLocale() method.',\n        ];\n    }\n\n    #[DataProvider('dataForTestNotAPeriodException')]\n    public function testNotAPeriodException(mixed $object, string $message): void\n    {\n        $exception = new NotLocaleAwareException($object);\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/OutOfRangeExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\OutOfRangeException;\nuse Tests\\AbstractTestCase;\n\nclass OutOfRangeExceptionTest extends AbstractTestCase\n{\n    public function testOutOfRangeException(): void\n    {\n        $exception = new OutOfRangeException('month', 1, 12, -1);\n\n        $this->assertSame('month', $exception->getUnit());\n        $this->assertSame(1, $exception->getMin());\n        $this->assertSame(12, $exception->getMax());\n        $this->assertSame(-1, $exception->getValue());\n\n        $this->assertSame('month must be between 1 and 12, -1 given', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/ParseErrorExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\ParseErrorException;\nuse Tests\\AbstractTestCase;\n\nclass ParseErrorExceptionTest extends AbstractTestCase\n{\n    public function testParseErrorException(): void\n    {\n        $exception = new ParseErrorException($expected = 'string', $actual = '');\n\n        $this->assertSame($expected, $exception->getExpected());\n        $this->assertSame($actual, $exception->getActual());\n        $this->assertSame('', $exception->getHelp());\n\n        $this->assertSame('Format expected string but data is missing', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n\n    public function testParseErrorExceptionWithActualAndHelp(): void\n    {\n        $exception = new ParseErrorException($expected = 'string', $actual = 'int', $help = 'help message');\n\n        $this->assertSame($expected, $exception->getExpected());\n        $this->assertSame($actual, $exception->getActual());\n        $this->assertSame($help, $exception->getHelp());\n\n        $this->assertSame(\"Format expected string but get 'int'\\nhelp message\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnitExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnitException;\nuse Tests\\AbstractTestCase;\n\nclass UnitExceptionTest extends AbstractTestCase\n{\n    public function testUnitException(): void\n    {\n        $exception = new UnitException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnitNotConfiguredExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnitNotConfiguredException;\nuse Tests\\AbstractTestCase;\n\nclass UnitNotConfiguredExceptionTest extends AbstractTestCase\n{\n    public function testUnitNotConfiguredException(): void\n    {\n        $exception = new UnitNotConfiguredException($unit = 'foo');\n\n        $this->assertSame($unit, $exception->getUnit());\n\n        $this->assertSame('Unit foo have no configuration to get total from other units.', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnknownGetterExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnknownGetterException;\nuse Tests\\AbstractTestCase;\n\nclass UnknownGetterExceptionTest extends AbstractTestCase\n{\n    public function testUnknownGetterException(): void\n    {\n        $exception = new UnknownGetterException($getter = 'foo');\n\n        $this->assertSame($getter, $exception->getGetter());\n\n        $this->assertSame(\"Unknown getter 'foo'\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnknownMethodExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnknownMethodException;\nuse Tests\\AbstractTestCase;\n\nclass UnknownMethodExceptionTest extends AbstractTestCase\n{\n    public function testUnknownMethodException(): void\n    {\n        $exception = new UnknownMethodException($method = 'foo');\n\n        $this->assertSame($method, $exception->getMethod());\n\n        $this->assertSame('Method foo does not exist.', $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnknownSetterExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnknownSetterException;\nuse Tests\\AbstractTestCase;\n\nclass UnknownSetterExceptionTest extends AbstractTestCase\n{\n    public function testUnknownSetterException(): void\n    {\n        $exception = new UnknownSetterException($setter = 'foo');\n\n        $this->assertSame($setter, $exception->getSetter());\n\n        $this->assertSame(\"Unknown setter 'foo'\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnknownUnitExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Tests\\AbstractTestCase;\n\nclass UnknownUnitExceptionTest extends AbstractTestCase\n{\n    public function testUnknownUnitException(): void\n    {\n        $exception = new UnknownUnitException($unit = 'foo');\n\n        $this->assertSame($unit, $exception->getUnit());\n\n        $this->assertSame(\"Unknown unit 'foo'.\", $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Exceptions/UnreachableExceptionTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Exceptions;\n\nuse Carbon\\Exceptions\\UnreachableException;\nuse Tests\\AbstractTestCase;\n\nclass UnreachableExceptionTest extends AbstractTestCase\n{\n    public function testUnreachableException(): void\n    {\n        $exception = new UnreachableException($message = 'message');\n\n        $this->assertSame($message, $exception->getMessage());\n        $this->assertSame(0, $exception->getCode());\n        $this->assertNull($exception->getPrevious());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ExpressiveComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass ExpressiveComparisonTest extends AbstractTestCase\n{\n    public function testEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->equalTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->equalTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testEqualWithTimezoneTrue()\n    {\n        $this->assertTrue(Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto')->equalTo(Carbon::create(2000, 1, 1, 9, 0, 0, 'America/Vancouver')));\n    }\n\n    public function testNotEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->notEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testNotEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->notEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThan(Carbon::createFromDate(1999, 12, 31)));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->isAfter(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->greaterThan(Carbon::createFromDate(2000, 1, 2)));\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->isAfter(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testGreaterThanWithTimezoneTrue()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 8, 59, 59, 'America/Vancouver');\n        $this->assertTrue($dt1->greaterThan($dt2));\n    }\n\n    public function testGreaterThanWithTimezoneFalse()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 9, 0, 1, 'America/Vancouver');\n        $this->assertFalse($dt1->greaterThan($dt2));\n    }\n\n    public function testGreaterThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThan(Carbon::createFromDate(2000, 1, 2)));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->isBefore(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lessThan(Carbon::createFromDate(1999, 12, 31)));\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->isBefore(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testLessThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testLessThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testBetweenEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n    }\n\n    public function testBetweenNotEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n    }\n\n    public function testBetweenEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n    }\n\n    public function testBetweenNotEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n    }\n\n    public function testBetweenEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testBetweenEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testMinIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->minimum());\n    }\n\n    public function testMinWithNow()\n    {\n        $dt = Carbon::create(2012, 1, 1, 0, 0, 0)->minimum();\n        $this->assertCarbon($dt, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMinWithInstance()\n    {\n        $dt1 = Carbon::create(2013, 12, 31, 23, 59, 59);\n        $dt2 = Carbon::create(2012, 1, 1, 0, 0, 0)->minimum($dt1);\n        $this->assertCarbon($dt2, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMaxIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->maximum());\n    }\n\n    public function testMaxWithNow()\n    {\n        $dt = Carbon::create(2099, 12, 31, 23, 59, 59)->maximum();\n        $this->assertCarbon($dt, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testMaxWithInstance()\n    {\n        $dt1 = Carbon::create(2012, 1, 1, 0, 0, 0);\n        $dt2 = Carbon::create(2099, 12, 31, 23, 59, 59)->maximum($dt1);\n        $this->assertCarbon($dt2, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testIsBirthday()\n    {\n        $dt1 = Carbon::createFromDate(1987, 4, 23);\n        $dt2 = Carbon::createFromDate(2014, 9, 26);\n        $dt3 = Carbon::createFromDate(2014, 4, 23);\n        $this->assertFalse($dt2->isBirthday($dt1));\n        $this->assertTrue($dt3->isBirthday($dt1));\n    }\n\n    public function testIsLastOfMonth()\n    {\n        $dt1 = Carbon::createFromDate(2017, 1, 31);\n        $dt2 = Carbon::createFromDate(2016, 2, 28);\n        $dt3 = Carbon::createFromDate(2016, 2, 29);\n        $dt4 = Carbon::createFromDate(2018, 5, 5);\n\n        $this->assertTrue($dt1->isLastOfMonth());\n        $this->assertFalse($dt2->isLastOfMonth());\n        $this->assertTrue($dt3->isLastOfMonth());\n        $this->assertFalse($dt4->isLastOfMonth());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Fixtures/BadIsoCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Fixtures;\n\nuse Carbon\\Carbon;\n\nclass BadIsoCarbon extends Carbon\n{\n    public static function getIsoUnits(): array\n    {\n        return [\n            'MMM' => ['fooxyz', ['barxyz']],\n        ];\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Fixtures/DumpCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Fixtures;\n\nuse Carbon\\Carbon;\nuse Exception;\n\nfinal class DumpCarbon extends Carbon\n{\n    private $dump;\n\n    private $formatBroken = false;\n\n    /**\n     * @SuppressWarnings(DevelopmentCodeFragment)\n     */\n    public function __construct($time = null, $timezone = null)\n    {\n        ob_start();\n        var_dump($this);\n        $this->dump = ob_get_contents() ?: '';\n        ob_end_clean();\n\n        parent::__construct($time, $timezone);\n    }\n\n    public function getDump(): string\n    {\n        return $this->dump;\n    }\n\n    public function breakFormat(): void\n    {\n        $this->formatBroken = true;\n    }\n\n    public function format(string $format): string\n    {\n        if ($this->formatBroken) {\n            throw new Exception('Broken');\n        }\n\n        return parent::format($format);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Fixtures/FooBar.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Fixtures;\n\ntrait FooBar\n{\n    public function super($string)\n    {\n        return 'super'.$string.' / '.$this->format('l').' / '.($this->isMutable() ? 'mutable' : 'immutable');\n    }\n\n    public function me()\n    {\n        return $this;\n    }\n\n    public static function noThis()\n    {\n        return isset(${'this'});\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Fixtures/Mixin.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Fixtures;\n\nuse Carbon\\CarbonInterface;\n\nclass Mixin\n{\n    public $timezone;\n\n    public function __construct($timezone)\n    {\n        $this->timezone = $timezone;\n    }\n\n    public function setUserTimezone()\n    {\n        $mixin = $this;\n\n        return function ($timezone) use ($mixin) {\n            $mixin->timezone = $timezone;\n        };\n    }\n\n    public function userFormat()\n    {\n        $mixin = $this;\n\n        return function ($format) use ($mixin) {\n            /** @var CarbonInterface $date */\n            $date = $this;\n\n            if ($mixin->timezone) {\n                $date->setTimezone($mixin->timezone);\n            }\n\n            return $date->format($format);\n        };\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Fixtures/MyCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Fixtures;\n\nuse Carbon\\Carbon;\n\nclass MyCarbon extends Carbon\n{\n    public function addTwoHours(): static\n    {\n        return $this->addHours(2);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/Fixtures/NoLocaleTranslator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon\\Fixtures;\n\nuse Carbon\\Exceptions\\NotLocaleAwareException;\nuse ReflectionMethod;\nuse Symfony\\Component\\Translation;\nuse Symfony\\Contracts\\Translation\\TranslatorInterface;\n\n$transMethod = new ReflectionMethod(\n    class_exists(TranslatorInterface::class)\n        ? TranslatorInterface::class\n        : Translation\\Translator::class,\n    'trans',\n);\n\nif ($transMethod->hasReturnType()) {\n    class NoLocaleTranslator implements TranslatorInterface\n    {\n        public function trans(string $id, array $parameters = [], ?string $domain = null, ?string $locale = null): string\n        {\n            return $id;\n        }\n\n        public function getLocale(): string\n        {\n            throw new NotLocaleAwareException($this);\n        }\n    }\n\n    return;\n}\n\nclass NoLocaleTranslator implements TranslatorInterface\n{\n    public function trans($id, array $parameters = [], $domain = null, $locale = null)\n    {\n        return $id;\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/FluidSettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass FluidSettersTest extends AbstractTestCase\n{\n    public function testFluidYearSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->year(1995));\n        $this->assertSame(1995, $d->year);\n    }\n\n    public function testFluidMonthSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->month(3));\n        $this->assertSame(3, $d->month);\n        // Can go to september 1 to 30 (but if it's the 31, it will overflow)\n        $this->assertInstanceOfCarbon($d->startOfMonth()->setMonth(9));\n        $this->assertSame(9, $d->month);\n        $this->assertInstanceOfCarbon($d->months(3));\n        $this->assertSame(3, $d->month);\n        $this->assertInstanceOfCarbon($d->setMonths(9));\n        $this->assertSame(9, $d->month);\n    }\n\n    public function testFluidMonthSetterWithWrap()\n    {\n        $d = Carbon::createFromDate(2012, 8, 21);\n        $this->assertInstanceOfCarbon($d->month(13));\n        $this->assertSame(1, $d->month);\n    }\n\n    public function testFluidDaySetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->day(2));\n        $this->assertSame(2, $d->day);\n    }\n\n    public function testFluidDaySetterWithWrap()\n    {\n        $d = Carbon::createFromDate(2000, 1, 1);\n        $this->assertInstanceOfCarbon($d->day(32));\n        $this->assertSame(1, $d->day);\n    }\n\n    public function testFluidSetDate()\n    {\n        $d = Carbon::createFromDate(2000, 1, 1);\n        $this->assertInstanceOfCarbon($d->setDate(1995, 13, 32));\n        $this->assertCarbon($d, 1996, 2, 1);\n    }\n\n    public function testFluidHourSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->hour(2));\n        $this->assertSame(2, $d->hour);\n    }\n\n    public function testFluidHourSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->hour(25));\n        $this->assertSame(1, $d->hour);\n    }\n\n    public function testFluidMinuteSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->minute(2));\n        $this->assertSame(2, $d->minute);\n    }\n\n    public function testFluidMinuteSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->minute(61));\n        $this->assertSame(1, $d->minute);\n    }\n\n    public function testFluidSecondSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->second(2));\n        $this->assertSame(2, $d->second);\n    }\n\n    public function testFluidSecondSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->second(62));\n        $this->assertSame(2, $d->second);\n    }\n\n    public function testFluidSetTime()\n    {\n        $d = Carbon::createFromDate(2000, 1, 1);\n        $this->assertInstanceOfCarbon($d->setTime(25, 61, 61));\n        $this->assertCarbon($d, 2000, 1, 2, 2, 2, 1);\n    }\n\n    public function testFluidTimestampSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d->timestamp(10));\n        $this->assertSame(10, $d->timestamp);\n\n        $this->assertInstanceOfCarbon($d->timestamp(1600887164.88952298));\n        $this->assertSame('2020-09-23 14:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n\n        $this->assertInstanceOfCarbon($d->timestamp('0.88951247 1600887164'));\n        $this->assertSame('2020-09-23 14:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n\n        $this->assertInstanceOfCarbon($d->timestamp('0.88951247/1600887164/12.56'));\n        $this->assertSame('2020-09-23 14:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/GenericMacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCaseWithOldNow;\nuse Throwable;\n\nclass GenericMacroTest extends AbstractTestCaseWithOldNow\n{\n    public function testGenericMacro()\n    {\n        Carbon::genericMacro(function ($method) {\n            $time = preg_replace('/[A-Z]/', ' $0', $method);\n\n            try {\n                return self::this()->modify($time);\n            } catch (Throwable $exception) {\n                if (preg_match('(Could not modify with|Failed to parse)', $exception->getMessage())) {\n                    throw new BadMethodCallException('Try next macro', 0, $exception);\n                }\n\n                throw $exception;\n            }\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('2017-07-02', $now->nextSunday()->format('Y-m-d'));\n        $this->assertSame('2017-06-26', Carbon::lastMonday()->format('Y-m-d'));\n\n        $message = null;\n\n        try {\n            Carbon::fooBar();\n        } catch (BadMethodCallException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertSame('Method '.Carbon::class.'::fooBar does not exist.', $message);\n\n        $message = null;\n\n        try {\n            $now->barBiz();\n        } catch (BadMethodCallException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertSame('Method barBiz does not exist.', $message);\n    }\n\n    public function testGenericMacroPriority()\n    {\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'myPrefix')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'first';\n        });\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'myPrefix')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'second';\n        }, 1);\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'myPrefix')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'third';\n        }, -1);\n        Carbon::macro('myPrefixFooBar', function () {\n            return 'myPrefixFooBar';\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('second', $now->myPrefixSomething());\n        $this->assertSame('second', Carbon::myPrefixSomething());\n        $this->assertSame('myPrefixFooBar', $now->myPrefixFooBar());\n        $this->assertSame('myPrefixFooBar', Carbon::myPrefixFooBar());\n    }\n\n    public function testLocalGenericMacroPriority()\n    {\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'mlp')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'first';\n        });\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'mlp')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'second';\n        }, 1);\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'mlp')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'third';\n        }, -1);\n        Carbon::macro('mlpFooBar', function () {\n            return 'mlpFooBar';\n        });\n\n        /** @var mixed $date */\n        $date = Carbon::now()->settings([\n            'genericMacros' => [\n                function ($method) {\n                    if (!str_starts_with($method, 'mlp')) {\n                        throw new BadMethodCallException('Try next macro', 0);\n                    }\n\n                    return 'local-first';\n                },\n                function ($method) {\n                    if (!str_starts_with($method, 'mlp')) {\n                        throw new BadMethodCallException('Try next macro', 0);\n                    }\n\n                    return 'local-second';\n                },\n            ],\n        ]);\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('local-first', $date->mlpSomething());\n        $this->assertSame('second', $now->mlpSomething());\n        $this->assertSame('second', Carbon::mlpSomething());\n        $this->assertSame('mlpFooBar', $date->mlpFooBar());\n        $this->assertSame('mlpFooBar', $now->mlpFooBar());\n        $this->assertSame('mlpFooBar', Carbon::mlpFooBar());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/GettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass GettersTest extends AbstractTestCase\n{\n    public function testGettersThrowExceptionOnUnknownGetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Unknown getter 'doesNotExit'\",\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $d->doesNotExit;\n    }\n\n    public function testGet()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(5, $d->get('month'));\n    }\n\n    public function testMillenniumGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(2, $d->millennium);\n        $d = Carbon::create(2000, 5, 6, 7, 8, 9);\n        $this->assertSame(2, $d->millennium);\n        $d = Carbon::create(2001, 5, 6, 7, 8, 9);\n        $this->assertSame(3, $d->millennium);\n        $d = Carbon::create(1, 5, 6, 7, 8, 9);\n        $this->assertSame(1, $d->millennium);\n        $d = Carbon::create(-1, 5, 6, 7, 8, 9);\n        $this->assertSame(-1, $d->millennium);\n        $d = Carbon::create(-100, 5, 6, 7, 8, 9);\n        $this->assertSame(-1, $d->millennium);\n        $d = Carbon::create(-101, 5, 6, 7, 8, 9);\n        $this->assertSame(-1, $d->millennium);\n        $d = Carbon::create(-1000, 5, 6, 7, 8, 9);\n        $this->assertSame(-1, $d->millennium);\n        $d = Carbon::create(-1001, 5, 6, 7, 8, 9);\n        $this->assertSame(-2, $d->millennium);\n    }\n\n    public function testCenturyGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(13, $d->century);\n        $d = Carbon::create(2000, 5, 6, 7, 8, 9);\n        $this->assertSame(20, $d->century);\n        $d = Carbon::create(2001, 5, 6, 7, 8, 9);\n        $this->assertSame(21, $d->century);\n        $d = Carbon::create(1, 5, 6, 7, 8, 9);\n        $this->assertSame(1, $d->century);\n        $d = Carbon::create(-1, 5, 6, 7, 8, 9);\n        $this->assertSame(-1, $d->century);\n        $d = Carbon::create(-100, 5, 6, 7, 8, 9);\n        $this->assertSame(-1, $d->century);\n        $d = Carbon::create(-101, 5, 6, 7, 8, 9);\n        $this->assertSame(-2, $d->century);\n    }\n\n    public function testDecadeGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(124, $d->decade);\n    }\n\n    public function testYearGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(1234, $d->year);\n    }\n\n    public function testYearIsoGetter()\n    {\n        $d = Carbon::createFromDate(2012, 12, 31);\n        $this->assertSame(2013, $d->yearIso);\n    }\n\n    public function testMonthGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(5, $d->month);\n    }\n\n    public function testDayGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(6, $d->day);\n    }\n\n    public function testHourGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(7, $d->hour);\n    }\n\n    public function testMinuteGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(8, $d->minute);\n    }\n\n    public function testSecondGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(9, $d->second);\n    }\n\n    public function testMicroGetter()\n    {\n        $micro = 345678;\n        $d = Carbon::parse('2014-01-05 12:34:11.'.$micro);\n        $this->assertSame($micro, $d->micro);\n    }\n\n    public function testMicroGetterWithDefaultNow()\n    {\n        $now = Carbon::getTestNow();\n        Carbon::setTestNow(null);\n\n        $start = microtime(true);\n        usleep(10000);\n        $d = Carbon::now();\n        usleep(10000);\n        $end = microtime(true);\n        $microTime = $d->getTimestamp() + $d->micro / 1000000;\n\n        $this->assertGreaterThan($start, $microTime);\n        $this->assertLessThan($end, $microTime);\n\n        Carbon::setTestNow($now);\n    }\n\n    public function testDayOfWeekGetter()\n    {\n        $d = Carbon::create(2012, 5, 7, 7, 8, 9);\n        $this->assertSame(Carbon::MONDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 8, 7, 8, 9);\n        $this->assertSame(Carbon::TUESDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 9, 7, 8, 9);\n        $this->assertSame(Carbon::WEDNESDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 10, 0, 0, 0);\n        $this->assertSame(Carbon::THURSDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 11, 23, 59, 59);\n        $this->assertSame(Carbon::FRIDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 12, 12, 0, 0);\n        $this->assertSame(Carbon::SATURDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 13, 12, 0, 0);\n        $this->assertSame(Carbon::SUNDAY, $d->dayOfWeek);\n    }\n\n    public function testDayOfWeekIsoGetter()\n    {\n        $d = Carbon::create(2012, 5, 7, 7, 8, 9);\n        $this->assertSame(1, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 8, 7, 8, 9);\n        $this->assertSame(2, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 9, 7, 8, 9);\n        $this->assertSame(3, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 10, 0, 0, 0);\n        $this->assertSame(4, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 11, 23, 59, 59);\n        $this->assertSame(5, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 12, 12, 0, 0);\n        $this->assertSame(6, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 13, 12, 0, 0);\n        $this->assertSame(7, $d->dayOfWeekIso);\n    }\n\n    public function testStringGetters()\n    {\n        $d = Carbon::create(2012, 1, 9, 7, 8, 9);\n        $this->assertSame('Monday', $d->englishDayOfWeek);\n        $this->assertSame('Mon', $d->shortEnglishDayOfWeek);\n        $this->assertSame('January', $d->englishMonth);\n        $this->assertSame('Jan', $d->shortEnglishMonth);\n    }\n\n    public function testLocalizedGetters()\n    {\n        Carbon::setLocale('fr');\n        $d = Carbon::create(2019, 7, 15, 7, 8, 9);\n        $this->assertSame('lundi', $d->localeDayOfWeek);\n        $this->assertSame('lun.', $d->shortLocaleDayOfWeek);\n        $this->assertSame('juillet', $d->localeMonth);\n        $this->assertSame('juil.', $d->shortLocaleMonth);\n    }\n\n    public function testDayOfYearGetter()\n    {\n        $d = Carbon::createFromDate(2012, 5, 7);\n        $this->assertSame(128, $d->dayOfYear);\n    }\n\n    public function testDaysInMonthGetter()\n    {\n        $d = Carbon::createFromDate(2012, 5, 7);\n        $this->assertSame(31, $d->daysInMonth);\n    }\n\n    public function testTimestampGetter()\n    {\n        $d = Carbon::create();\n        $d->setTimezone('GMT');\n        $this->assertSame(0, $d->setDateTime(1970, 1, 1, 0, 0, 0)->timestamp);\n    }\n\n    public function testGetAge()\n    {\n        $d = Carbon::now();\n        $this->assertSame(0, $d->age);\n    }\n\n    public function testGetAgeWithRealAge()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21);\n        $age = (int) (substr((string) ((int) (date('Ymd')) - (int) (date('Ymd', $d->timestamp))), 0, -4));\n\n        $this->assertSame($age, $d->age);\n    }\n\n    public function testAgeWithBirthdayTomorrowAndLeapYear()\n    {\n        Carbon::setTestNow('2024-07-15 22:15');\n\n        $this->assertSame(3, Carbon::parse('2020-07-16')->age);\n    }\n\n    public static function dataForTestQuarter(): array\n    {\n        return [\n            [1, 1],\n            [2, 1],\n            [3, 1],\n            [4, 2],\n            [5, 2],\n            [6, 2],\n            [7, 3],\n            [8, 3],\n            [9, 3],\n            [10, 4],\n            [11, 4],\n            [12, 4],\n        ];\n    }\n\n    #[DataProvider('dataForTestQuarter')]\n    public function testQuarterFirstOfMonth(int $month, int $quarter)\n    {\n        $c = Carbon::create(2015, $month, 1)->startOfMonth();\n        $this->assertSame($quarter, $c->quarter);\n    }\n\n    #[DataProvider('dataForTestQuarter')]\n    public function testQuarterMiddleOfMonth(int $month, int $quarter)\n    {\n        $c = Carbon::create(2015, $month, 15, 12, 13, 14);\n        $this->assertSame($quarter, $c->quarter);\n    }\n\n    #[DataProvider('dataForTestQuarter')]\n    public function testQuarterLastOfMonth(int $month, int $quarter)\n    {\n        $c = Carbon::create(2015, $month, 1)->endOfMonth();\n        $this->assertSame($quarter, $c->quarter);\n    }\n\n    public function testGetLocalTrue()\n    {\n        // Default timezone has been set to America/Toronto in AbstractTestCase.php\n        // @see : https://en.wikipedia.org/wiki/List_of_UTC_time_offsets\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->local);\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->isLocal());\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1, 'America/New_York')->local);\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1, 'America/New_York')->isLocal());\n    }\n\n    public function testGetLocalFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 7, 1, 'UTC')->local);\n        $this->assertFalse(Carbon::createFromDate(2012, 7, 1, 'UTC')->isLocal());\n        $this->assertFalse(Carbon::createFromDate(2012, 7, 1, 'Europe/London')->local);\n        $this->assertFalse(Carbon::createFromDate(2012, 7, 1, 'Europe/London')->isLocal());\n    }\n\n    public function testGetUtcFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2013, 1, 1, 'America/Toronto')->utc);\n        $this->assertFalse(Carbon::createFromDate(2013, 1, 1, 'America/Toronto')->isUtc());\n        /** @var object $date */\n        $date = Carbon::createFromDate(2013, 1, 1, 'America/Toronto');\n        $this->assertFalse($date->isUTC());\n        $this->assertFalse(Carbon::createFromDate(2013, 1, 1, 'Europe/Paris')->utc);\n        $this->assertFalse(Carbon::createFromDate(2013, 1, 1, 'Europe/Paris')->isUtc());\n        /** @var object $date */\n        $date = Carbon::createFromDate(2013, 1, 1, 'Europe/Paris');\n        $this->assertFalse($date->isUTC());\n    }\n\n    public function testGetUtcTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Atlantic/Reykjavik')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Atlantic/Reykjavik')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/Lisbon')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/Lisbon')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Africa/Casablanca')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Africa/Casablanca')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Africa/Dakar')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Africa/Dakar')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/Dublin')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/Dublin')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/London')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/London')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'UTC')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'UTC')->isUtc());\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'GMT')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'GMT')->isUtc());\n    }\n\n    public function testGetDstFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->dst);\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->isDST());\n    }\n\n    public function testGetDstTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 7, 1, 'America/Toronto')->dst);\n        $this->assertTrue(Carbon::createFromDate(2012, 7, 1, 'America/Toronto')->isDST());\n    }\n\n    public function testGetMidDayAt()\n    {\n        $d = Carbon::now();\n        $this->assertSame(12, $d->getMidDayAt());\n    }\n\n    public function testOffsetForTorontoWithDST()\n    {\n        $this->assertSame(-18000, Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->offset);\n    }\n\n    public function testOffsetForTorontoNoDST()\n    {\n        $this->assertSame(-14400, Carbon::createFromDate(2012, 6, 1, 'America/Toronto')->offset);\n    }\n\n    public function testOffsetForGMT()\n    {\n        $this->assertSame(0, Carbon::createFromDate(2012, 6, 1, 'GMT')->offset);\n    }\n\n    public function testOffsetHoursForTorontoWithDST()\n    {\n        $this->assertSame(-5, Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->offsetHours);\n    }\n\n    public function testOffsetHoursForTorontoNoDST()\n    {\n        $this->assertSame(-4, Carbon::createFromDate(2012, 6, 1, 'America/Toronto')->offsetHours);\n    }\n\n    public function testOffsetHoursForGMT()\n    {\n        $this->assertSame(0, Carbon::createFromDate(2012, 6, 1, 'GMT')->offsetHours);\n    }\n\n    public function testIsLeapYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1)->isLeapYear());\n    }\n\n    public function testIsLeapYearFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2011, 1, 1)->isLeapYear());\n    }\n\n    public function testIsLongYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2015, 1, 1)->isLongYear());\n        $this->assertTrue(Carbon::createFromDate(2020, 1, 1)->isLongYear());\n    }\n\n    public function testIsLongIsoYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2015, 1, 1)->isLongIsoYear());\n        $this->assertTrue(Carbon::createFromDate(2016, 1, 1)->isLongIsoYear());\n        $this->assertTrue(Carbon::createFromDate(2019, 12, 30)->isLongIsoYear());\n    }\n\n    public function testIsLongYearFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2016, 1, 1)->isLongYear());\n        $this->assertFalse(Carbon::createFromDate(2019, 12, 29)->isLongYear());\n        $this->assertFalse(Carbon::createFromDate(2019, 12, 30)->isLongYear());\n    }\n\n    public function testIsLongIsoYearFalse()\n    {\n        $this->assertTrue(Carbon::createFromDate(2016, 1, 3)->isLongIsoYear());\n        $this->assertFalse(Carbon::createFromDate(2019, 12, 29)->isLongIsoYear());\n        $this->assertFalse(Carbon::createFromDate(2018, 12, 31)->isLongIsoYear());\n    }\n\n    public function testWeekOfMonth()\n    {\n        $this->assertSame(5, Carbon::createFromDate(2012, 9, 30)->weekOfMonth);\n        $this->assertSame(4, Carbon::createFromDate(2012, 9, 28)->weekOfMonth);\n        $this->assertSame(3, Carbon::createFromDate(2012, 9, 20)->weekOfMonth);\n        $this->assertSame(2, Carbon::createFromDate(2012, 9, 8)->weekOfMonth);\n        $this->assertSame(1, Carbon::createFromDate(2012, 9, 1)->weekOfMonth);\n    }\n\n    public function testWeekNumberInMonthIsNotFromTheBeginning()\n    {\n        $this->assertSame(5, Carbon::createFromDate(2017, 2, 28)->weekNumberInMonth);\n        $this->assertSame(5, Carbon::createFromDate(2017, 2, 27)->weekNumberInMonth);\n        $this->assertSame(4, Carbon::createFromDate(2017, 2, 26)->weekNumberInMonth);\n        $this->assertSame(4, Carbon::createFromDate(2017, 2, 20)->weekNumberInMonth);\n        $this->assertSame(3, Carbon::createFromDate(2017, 2, 19)->weekNumberInMonth);\n        $this->assertSame(3, Carbon::createFromDate(2017, 2, 13)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2017, 2, 12)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2017, 2, 6)->weekNumberInMonth);\n        $this->assertSame(1, Carbon::createFromDate(2017, 2, 1)->weekNumberInMonth);\n        $this->assertSame(1, Carbon::createFromDate(2018, 7, 1)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2018, 7, 2)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2018, 7, 5)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2018, 7, 8)->weekNumberInMonth);\n        $this->assertSame(3, Carbon::createFromDate(2018, 7, 9)->weekNumberInMonth);\n        $this->assertSame(5, Carbon::createFromDate(2018, 7, 29)->weekNumberInMonth);\n        $this->assertSame(6, Carbon::createFromDate(2018, 7, 30)->weekNumberInMonth);\n    }\n\n    public function testWeekOfYearFirstWeek()\n    {\n        $this->assertSame(52, Carbon::createFromDate(2012, 1, 1)->weekOfYear);\n        $this->assertSame(1, Carbon::createFromDate(2012, 1, 2)->weekOfYear);\n    }\n\n    public function testWeekOfYearLastWeek()\n    {\n        $this->assertSame(52, Carbon::createFromDate(2012, 12, 30)->weekOfYear);\n        $this->assertSame(1, Carbon::createFromDate(2012, 12, 31)->weekOfYear);\n    }\n\n    public function testGetTimezone()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->timezone->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->timezone->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->timezone->getName());\n    }\n\n    public function testGetTz()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->tz->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->tz->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->tz->getName());\n    }\n\n    public function testGetTimezoneName()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->timezoneName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->timezoneName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->timezoneName);\n    }\n\n    public function testGetTzName()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->tzName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->timezoneName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->timezoneName);\n    }\n\n    public function testShortDayName()\n    {\n        $dt = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame('Mon', $dt->shortDayName);\n        $this->assertSame('lun.', $dt->locale('fr')->shortDayName);\n    }\n\n    public function testMinDayName()\n    {\n        $dt = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame('Mo', $dt->minDayName);\n        $this->assertSame('lu', $dt->locale('fr')->minDayName);\n    }\n\n    public function testShortMonthName()\n    {\n        $dt = Carbon::createFromDate(2018, 7, 6);\n        $this->assertSame('Jul', $dt->shortMonthName);\n        $this->assertSame('juil.', $dt->locale('fr')->shortMonthName);\n    }\n\n    public function testGetDays()\n    {\n        $days = [\n            Carbon::SUNDAY => 'Sunday',\n            Carbon::MONDAY => 'Monday',\n            Carbon::TUESDAY => 'Tuesday',\n            Carbon::WEDNESDAY => 'Wednesday',\n            Carbon::THURSDAY => 'Thursday',\n            Carbon::FRIDAY => 'Friday',\n            Carbon::SATURDAY => 'Saturday',\n        ];\n\n        $this->assertSame($days, Carbon::getDays());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/InstanceTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse DateTime;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass InstanceTest extends AbstractTestCase\n{\n    public function testInstanceFromDateTime()\n    {\n        $dating = Carbon::instance(DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11'));\n        $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);\n        $dating = Carbon::parse(DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11'));\n        $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);\n    }\n\n    public function testInstanceFromCarbon()\n    {\n        $dating = Carbon::instance(Carbon::create(1975, 5, 21, 22, 32, 11));\n        $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);\n    }\n\n    public function testInstanceFromDateTimeKeepsTimezoneName()\n    {\n        $dating = Carbon::instance(DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11')->setTimezone(new DateTimeZone('America/Vancouver')));\n        $this->assertSame('America/Vancouver', $dating->tzName);\n    }\n\n    public function testInstanceFromCarbonKeepsTimezoneName()\n    {\n        $dating = Carbon::instance(Carbon::create(1975, 5, 21, 22, 32, 11)->setTimezone(new DateTimeZone('America/Vancouver')));\n        $this->assertSame('America/Vancouver', $dating->tzName);\n    }\n\n    public function testInstanceFromDateTimeKeepsMicros()\n    {\n        $micro = 254687;\n        $datetime = DateTime::createFromFormat('Y-m-d H:i:s.u', '2014-02-01 03:45:27.'.$micro);\n        $carbon = Carbon::instance($datetime);\n        $this->assertSame($micro, $carbon->micro);\n    }\n\n    public function testInstanceFromCarbonKeepsMicros()\n    {\n        $micro = 254687;\n        $carbon = Carbon::createFromFormat('Y-m-d H:i:s.u', '2014-02-01 03:45:27.'.$micro);\n        $carbon = Carbon::instance($carbon);\n        $this->assertSame($micro, $carbon->micro);\n    }\n\n    public function testTimezoneCopy()\n    {\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        $carbon = CarbonImmutable::instance($carbon);\n        $this->assertSame('2017-06-27 13:14:15.123456 Europe/Paris', $carbon->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testInstanceStateSetBySetStateMethod()\n    {\n        $carbon = Carbon::__set_state([\n            'date' => '2017-05-18 13:02:15.273420',\n            'timezone_type' => 3,\n            'timezone' => 'UTC',\n        ]);\n        $this->assertInstanceOf(Carbon::class, $carbon);\n        $this->assertSame('2017-05-18 13:02:15.273420', $carbon->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testInstanceStateSetBySetStateString()\n    {\n        $carbon = Carbon::__set_state('2017-05-18 13:02:15.273420');\n        $this->assertInstanceOf(Carbon::class, $carbon);\n        $this->assertSame('2017-05-18 13:02:15.273420', $carbon->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testDeserializationOccursCorrectly()\n    {\n        $carbon = new Carbon('2017-06-27 13:14:15.000000');\n        $serialized = 'return '.var_export($carbon, true).';';\n        $deserialized = eval($serialized);\n\n        $this->assertInstanceOf(Carbon::class, $deserialized);\n    }\n\n    public function testMutableConversions()\n    {\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        $carbon = $carbon->locale('en_CA');\n        $copy = $carbon->toImmutable();\n\n        $this->assertEquals($copy, $carbon);\n        $this->assertNotSame($copy, $carbon);\n        $this->assertSame('en_CA', $copy->locale());\n        $this->assertInstanceOf(CarbonImmutable::class, $copy);\n        $this->assertTrue($copy->isImmutable());\n        $this->assertFalse($copy->isMutable());\n        $this->assertSame('2017-06-27 13:14:15.123456', $copy->format(CarbonInterface::MOCK_DATETIME_FORMAT));\n        $this->assertSame('Europe/Paris', $copy->tzName);\n        $this->assertNotSame($copy, $copy->modify('+1 day'));\n\n        $copy = $carbon->toMutable();\n\n        $this->assertEquals($copy, $carbon);\n        $this->assertNotSame($copy, $carbon);\n        $this->assertSame('en_CA', $copy->locale());\n        $this->assertInstanceOf(Carbon::class, $copy);\n        $this->assertFalse($copy->isImmutable());\n        $this->assertTrue($copy->isMutable());\n        $this->assertSame('2017-06-27 13:14:15.123456', $copy->format(CarbonInterface::MOCK_DATETIME_FORMAT));\n        $this->assertSame('Europe/Paris', $copy->tzName);\n        $this->assertSame($copy, $copy->modify('+1 day'));\n    }\n\n    public function testInvalidCast()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'DateTimeZone has not the instance() method needed to cast the date.',\n        ));\n\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        $carbon->cast(DateTimeZone::class);\n    }\n\n    public function testChildCast()\n    {\n        $class = \\get_class(new class() extends Carbon {\n            public function foo()\n            {\n                return 42;\n            }\n        });\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        /** @var object $casted */\n        $casted = $carbon->cast($class);\n\n        $this->assertInstanceOf($class, $casted);\n        $this->assertInstanceOf(Carbon::class, $casted);\n        $this->assertSame(42, $casted->foo());\n        $this->assertSame('2017-06-27', $casted->format('Y-m-d'));\n    }\n\n    public function testSiblingCast()\n    {\n        $class = \\get_class(new class() extends DateTime {\n            public function foo()\n            {\n                return 42;\n            }\n        });\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        /** @var object $casted */\n        $casted = $carbon->cast($class);\n\n        $this->assertInstanceOf($class, $casted);\n        $this->assertInstanceOf(DateTime::class, $casted);\n        $this->assertSame(42, $casted->foo());\n        $this->assertSame('2017-06-27', $casted->format('Y-m-d'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/IsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Month;\nuse Carbon\\Unit;\nuse Carbon\\WeekDay;\nuse DateInterval;\nuse DateTime;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse stdClass;\nuse Tests\\AbstractTestCase;\nuse TypeError;\n\nclass IsTest extends AbstractTestCase\n{\n    public function testIsWeekdayTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 2)->isWeekday());\n    }\n\n    public function testIsWeekdayFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 1)->isWeekday());\n    }\n\n    public function testIsWeekendTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1)->isWeekend());\n    }\n\n    public function testIsWeekendFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 2)->isWeekend());\n    }\n\n    public function testIsYesterdayTrue()\n    {\n        $this->assertTrue(Carbon::now()->subDay()->isYesterday());\n    }\n\n    public function testIsYesterdayFalseWithToday()\n    {\n        $this->assertFalse(Carbon::now()->endOfDay()->isYesterday());\n    }\n\n    public function testIsYesterdayFalseWith2Days()\n    {\n        $this->assertFalse(Carbon::now()->subDays(2)->startOfDay()->isYesterday());\n    }\n\n    public function testIsTodayTrue()\n    {\n        $this->assertTrue(Carbon::now()->isToday());\n    }\n\n    public function testIsCurrentWeek()\n    {\n        $this->assertFalse(Carbon::now()->subWeek()->isCurrentWeek());\n        $this->assertFalse(Carbon::now()->addWeek()->isCurrentWeek());\n        $this->assertTrue(Carbon::now()->isCurrentWeek());\n        $this->assertTrue(Carbon::now()->startOfWeek()->isCurrentWeek());\n        $this->assertTrue(Carbon::now()->endOfWeek()->isCurrentWeek());\n    }\n\n    public function testIsSameWeek()\n    {\n        $this->assertFalse(Carbon::now()->subWeek()->isSameWeek(Carbon::now()));\n        $this->assertFalse(Carbon::now()->addWeek()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::now()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::now()->startOfWeek()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::now()->endOfWeek()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::parse('2019-01-01')->isSameWeek(Carbon::parse('2018-12-31')));\n    }\n\n    public function testIsNextWeekTrue()\n    {\n        $this->assertTrue(Carbon::now()->addWeek()->isNextWeek());\n    }\n\n    public function testIsLastWeekTrue()\n    {\n        $this->assertTrue(Carbon::now()->subWeek()->isLastWeek());\n    }\n\n    public function testIsNextWeekFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->addWeek(2)->isNextWeek());\n    }\n\n    public function testIsLastWeekFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->subWeek(2)->isLastWeek());\n    }\n\n    public function testIsNextQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->addQuarterNoOverflow()->isNextQuarter());\n    }\n\n    public function testIsLastQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->subQuarterNoOverflow()->isLastQuarter());\n    }\n\n    public function testIsNextQuarterFalse()\n    {\n        $this->assertFalse(Carbon::now()->addQuartersNoOverflow(2)->isNextQuarter());\n        $this->assertFalse(Carbon::now()->addQuartersNoOverflow(5)->isNextQuarter());\n    }\n\n    public function testIsLastQuarterFalse()\n    {\n        $this->assertFalse(Carbon::now()->subQuartersNoOverflow(2)->isLastQuarter());\n        $this->assertFalse(Carbon::now()->subQuartersNoOverflow(5)->isLastQuarter());\n    }\n\n    public function testIsNextMonthTrue()\n    {\n        $this->assertTrue(Carbon::now()->addMonthNoOverflow()->isNextMonth());\n    }\n\n    public function testIsLastMonthTrue()\n    {\n        $this->assertTrue(Carbon::now()->subMonthNoOverflow()->isLastMonth());\n    }\n\n    public function testIsNextMonthFalse()\n    {\n        $this->assertFalse(Carbon::now()->addMonthsNoOverflow(2)->isNextMonth());\n        $this->assertFalse(Carbon::now()->addMonthsNoOverflow(13)->isNextMonth());\n    }\n\n    public function testIsLastMonthFalse()\n    {\n        Carbon::setTestNow(Carbon::create(2018, 5, 31));\n        $this->assertFalse(Carbon::now()->subMonthsNoOverflow(2)->isLastMonth());\n        $this->assertFalse(Carbon::now()->subMonthsNoOverflow(13)->isLastMonth());\n    }\n\n    public function testIsNextYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->addYear()->isNextYear());\n    }\n\n    public function testIsLastYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->subYear()->isLastYear());\n    }\n\n    public function testIsNextYearFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->addYear(2)->isNextYear());\n    }\n\n    public function testIsLastYearFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->subYear(2)->isLastYear());\n    }\n\n    public function testIsTodayFalseWithYesterday()\n    {\n        $this->assertFalse(Carbon::now()->subDay()->endOfDay()->isToday());\n    }\n\n    public function testIsTodayFalseWithTomorrow()\n    {\n        $this->assertFalse(Carbon::now()->addDay()->startOfDay()->isToday());\n    }\n\n    public function testIsTodayWithTimezone()\n    {\n        $this->assertTrue(Carbon::now('Asia/Tokyo')->isToday());\n    }\n\n    public function testIsTomorrowTrue()\n    {\n        $this->assertTrue(Carbon::now()->addDay()->isTomorrow());\n    }\n\n    public function testIsTomorrowFalseWithToday()\n    {\n        $this->assertFalse(Carbon::now()->endOfDay()->isTomorrow());\n    }\n\n    public function testIsTomorrowFalseWith2Days()\n    {\n        $this->assertFalse(Carbon::now()->addDays(2)->startOfDay()->isTomorrow());\n    }\n\n    public function testIsFutureTrue()\n    {\n        $this->assertTrue(Carbon::now()->addSecond()->isFuture());\n    }\n\n    public function testIsFutureFalse()\n    {\n        $this->assertFalse(Carbon::now()->isFuture());\n    }\n\n    public function testIsFutureFalseInThePast()\n    {\n        $this->assertFalse(Carbon::now()->subSecond()->isFuture());\n    }\n\n    public function testIsPastTrue()\n    {\n        $this->assertTrue(Carbon::now()->subSecond()->isPast());\n    }\n\n    public function testIsPastFalse()\n    {\n        $this->assertFalse(Carbon::now()->addSecond()->isPast());\n    }\n\n    public function testNowIsPastFalse()\n    {\n        $this->assertFalse(Carbon::now()->isPast());\n    }\n\n    public function testIsNowOrFutureTrue()\n    {\n        $this->assertTrue(Carbon::now()->addSecond()->isNowOrFuture());\n    }\n\n    public function testIsNowOrFutureFalse()\n    {\n        $this->assertFalse(Carbon::now()->subSecond()->isNowOrFuture());\n    }\n\n    public function testNowIsNowOrFutureTrue()\n    {\n        $this->assertTrue(Carbon::now()->isNowOrFuture());\n    }\n\n    public function testIsNowOrPastTrue()\n    {\n        $this->assertTrue(Carbon::now()->subSecond()->isNowOrPast());\n    }\n\n    public function testIsNowOrPastFalse()\n    {\n        $this->assertFalse(Carbon::now()->addSecond()->isNowOrPast());\n    }\n\n    public function testNowIsNowOrPastTrue()\n    {\n        $this->assertTrue(Carbon::now()->isNowOrPast());\n    }\n\n    public function testIsLeapYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2016, 1, 1)->isLeapYear());\n    }\n\n    public function testIsLeapYearFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2014, 1, 1)->isLeapYear());\n    }\n\n    public function testIsCurrentYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentYear());\n    }\n\n    public function testIsCurrentYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->subYear()->isCurrentYear());\n    }\n\n    public function testIsSameYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameYear(Carbon::now()));\n    }\n\n    public function testIsSameYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameYear(Carbon::now()->subYear()));\n    }\n\n    public function testIsCurrentQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentQuarter());\n    }\n\n    public function testIsCurrentQuarterFalse()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::now()->subQuarter()->isCurrentQuarter());\n        Carbon::resetMonthsOverflow();\n    }\n\n    public function testIsSameQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(Carbon::now()));\n    }\n\n    public function testIsSameQuarterTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(new DateTime()));\n    }\n\n    public function testIsSameQuarterFalse()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::now()->isSameQuarter(Carbon::now()->subQuarter()));\n        Carbon::resetMonthsOverflow();\n    }\n\n    public function testIsSameQuarterFalseWithDateTime()\n    {\n        $now = Carbon::now();\n        $dt = new DateTime();\n        $dt->modify((Carbon::MONTHS_PER_QUARTER * -1).' month');\n\n        if ($dt->format('d') !== $now->format('d')) {\n            $dt->modify('last day of previous month');\n        }\n\n        $this->assertFalse($now->isSameQuarter($dt));\n    }\n\n    public function testIsSameQuarterAndYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(Carbon::now(), true));\n    }\n\n    public function testIsSameQuarterAndYearTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(new DateTime(), true));\n    }\n\n    public function testIsSameQuarterAndYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameQuarter(Carbon::now()->subYear(), true));\n    }\n\n    public function testIsSameQuarterAndYearFalseWithDateTime()\n    {\n        $dt = new DateTime();\n        $dt->modify('-1 year');\n        $this->assertFalse(Carbon::now()->isSameQuarter($dt, true));\n    }\n\n    public function testIsCurrentMonth()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentMonth());\n        $dt = Carbon::now();\n        $dt->modify(Carbon::now()->year.$dt->format('-m-').'01');\n        $this->assertTrue($dt->isCurrentMonth());\n        $dt->modify((Carbon::now()->year + 1).$dt->format('-m-').'28');\n        $this->assertFalse($dt->isCurrentMonth());\n    }\n\n    public function testIsCurrentMonthFalse()\n    {\n        $this->assertFalse(Carbon::now()->day(15)->subMonth()->isCurrentMonth());\n        $this->assertFalse(Carbon::now()->day(15)->addYear()->isCurrentMonth());\n    }\n\n    public function testIsSameMonth()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(Carbon::now()));\n        $dt = Carbon::now();\n        for ($year = 1990; $year < Carbon::now()->year; $year++) {\n            $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n            $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n        }\n    }\n\n    public function testIsSameMonthTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(new DateTime()));\n        $dt = new DateTime();\n        for ($year = 1990; $year < 2200; $year++) {\n            $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n            $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n        }\n    }\n\n    public function testIsSameMonthOfSameYear()\n    {\n        $this->assertFalse(Carbon::now()->isSameMonth(Carbon::now()->day(15)->subMonth()));\n        $this->assertTrue(Carbon::now()->isSameMonth(Carbon::now()));\n        $dt = Carbon::now();\n        for ($year = 1990; $year < Carbon::now()->year; $year++) {\n            $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n            $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n        }\n        $year = Carbon::now()->year;\n        $dt->modify($year.$dt->format('-m-').'01');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        $dt->modify($year.$dt->format('-m-').'28');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        for ($year = Carbon::now()->year + 1; $year < 2200; $year++) {\n            $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n            $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n        }\n    }\n\n    public function testIsSameMonthFalseWithDateTime()\n    {\n        $dt = new DateTime();\n        $dt->modify('-2 months');\n        $this->assertFalse(Carbon::now()->isSameMonth($dt));\n    }\n\n    public function testIsSameMonthAndYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(Carbon::now(), true));\n        $dt = Carbon::now();\n        $dt->modify($dt->format('Y-m-').'01');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        $dt->modify($dt->format('Y-m-').'28');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n    }\n\n    public function testIsSameMonthAndYearTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(new DateTime(), true));\n        $dt = new DateTime();\n        $dt->modify($dt->format('Y-m-').'01');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        $dt->modify($dt->format('Y-m-').'28');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n    }\n\n    public function testIsSameMonthAndYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameMonth(Carbon::now()->subYear(), true));\n    }\n\n    public function testIsSameMonthAndYearFalseWithDateTime()\n    {\n        $dt = new DateTime();\n        $dt->modify('-1 year');\n        $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n    }\n\n    public function testIsSameDayTrue()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameDay(Carbon::createFromDate(2012, 1, 2)));\n        $this->assertTrue($current->isSameDay(Carbon::create(2012, 1, 2, 23, 59, 59)));\n    }\n\n    public function testIsSameDayWithString()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameDay('2012-01-02 15:00:25'));\n        $this->assertTrue($current->isSameDay('2012-01-02'));\n    }\n\n    public function testIsSameDayTrueWithDateTime()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameDay(new DateTime('2012-01-02')));\n        $this->assertTrue($current->isSameDay(new DateTime('2012-01-02 23:59:59')));\n    }\n\n    public function testIsSameDayFalse()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertFalse($current->isSameDay(Carbon::createFromDate(2012, 1, 3)));\n        $this->assertFalse($current->isSameDay(Carbon::createFromDate(2012, 6, 2)));\n    }\n\n    public function testIsSameDayFalseWithDateTime()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertFalse($current->isSameDay(new DateTime('2012-01-03')));\n        $this->assertFalse($current->isSameDay(new DateTime('2012-05-02')));\n    }\n\n    public function testIsCurrentDayTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentDay());\n        $this->assertTrue(Carbon::now()->hour(0)->isCurrentDay());\n        $this->assertTrue(Carbon::now()->hour(23)->isCurrentDay());\n    }\n\n    public function testIsCurrentDayFalse()\n    {\n        $this->assertFalse(Carbon::now()->subDay()->isCurrentDay());\n        $this->assertFalse(Carbon::now()->subMonth()->isCurrentDay());\n    }\n\n    public function testIsSameHourTrue()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertTrue($current->isSameHour(Carbon::create(2018, 5, 6, 12)));\n        $this->assertTrue($current->isSameHour(Carbon::create(2018, 5, 6, 12, 59, 59)));\n    }\n\n    public function testIsSameHourTrueWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertTrue($current->isSameHour(new DateTime('2018-05-06T12:00:00')));\n        $this->assertTrue($current->isSameHour(new DateTime('2018-05-06T12:59:59')));\n    }\n\n    public function testIsSameHourFalse()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertFalse($current->isSameHour(Carbon::create(2018, 5, 6, 13)));\n        $this->assertFalse($current->isSameHour(Carbon::create(2018, 5, 5, 12)));\n    }\n\n    public function testIsSameHourFalseWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertFalse($current->isSameHour(new DateTime('2018-05-06T13:00:00')));\n        $this->assertFalse($current->isSameHour(new DateTime('2018-06-06T12:00:00')));\n    }\n\n    public function testIsCurrentHourTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentHour());\n        $this->assertTrue(Carbon::now()->second(1)->isCurrentHour());\n        $this->assertTrue(Carbon::now()->second(12)->isCurrentHour());\n        $this->assertTrue(Carbon::now()->minute(0)->isCurrentHour());\n        $this->assertTrue(Carbon::now()->minute(59)->second(59)->isCurrentHour());\n    }\n\n    public function testIsCurrentHourFalse()\n    {\n        $this->assertFalse(Carbon::now()->subHour()->isCurrentHour());\n        $this->assertFalse(Carbon::now()->subDay()->isCurrentHour());\n    }\n\n    public function testIsSameMinuteTrue()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertTrue($current->isSameMinute(Carbon::create(2018, 5, 6, 12, 30)));\n        $current = Carbon::create(2018, 5, 6, 12, 30, 15);\n        $this->assertTrue($current->isSameMinute(Carbon::create(2018, 5, 6, 12, 30, 45)));\n    }\n\n    public function testIsSameMinuteTrueWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertTrue($current->isSameMinute(new DateTime('2018-05-06T12:30:00')));\n        $current = Carbon::create(2018, 5, 6, 12, 30, 20);\n        $this->assertTrue($current->isSameMinute(new DateTime('2018-05-06T12:30:40')));\n    }\n\n    public function testIsSameMinuteFalse()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertFalse($current->isSameMinute(Carbon::create(2018, 5, 6, 13, 31)));\n        $this->assertFalse($current->isSameMinute(Carbon::create(2019, 5, 6, 13, 30)));\n    }\n\n    public function testIsSameMinuteFalseWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertFalse($current->isSameMinute(new DateTime('2018-05-06T13:31:00')));\n        $this->assertFalse($current->isSameMinute(new DateTime('2018-05-06T17:30:00')));\n    }\n\n    public function testIsCurrentMinuteTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentMinute());\n        $this->assertTrue(Carbon::now()->second(0)->isCurrentMinute());\n        $this->assertTrue(Carbon::now()->second(59)->isCurrentMinute());\n    }\n\n    public function testIsCurrentMinuteFalse()\n    {\n        $this->assertFalse(Carbon::now()->subMinute()->isCurrentMinute());\n        $this->assertFalse(Carbon::now()->subHour()->isCurrentMinute());\n    }\n\n    public function testIsSameSecondTrue()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $other = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertTrue($current->isSameSecond($other));\n        $this->assertTrue($current->modify($current->hour.':'.$current->minute.':'.$current->second.'.0')->isSameSecond($other));\n        $this->assertTrue($current->modify($current->hour.':'.$current->minute.':'.$current->second.'.999999')->isSameSecond($other));\n    }\n\n    public function testIsSameSecondTrueWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertTrue($current->isSameSecond(new DateTime('2018-05-06T12:30:13')));\n    }\n\n    public function testIsSameSecondFalse()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertFalse($current->isSameSecond(Carbon::create(2018, 5, 6, 12, 30, 55)));\n        $this->assertFalse($current->isSameSecond(Carbon::create(2018, 5, 6, 14, 30, 13)));\n    }\n\n    public function testIsSameSecondFalseWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertFalse($current->isSameSecond(new DateTime('2018-05-06T13:30:54')));\n        $this->assertFalse($current->isSameSecond(new DateTime('2018-05-06T13:36:13')));\n    }\n\n    public function testIsCurrentSecondTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentSecond());\n        $now = Carbon::now();\n        $this->assertTrue($now->modify($now->hour.':'.$now->minute.':'.$now->second.'.0')->isCurrentSecond());\n        $this->assertTrue($now->modify($now->hour.':'.$now->minute.':'.$now->second.'.999999')->isCurrentSecond());\n    }\n\n    public function testIsCurrentSecondFalse()\n    {\n        $this->assertFalse(Carbon::now()->subSecond()->isCurrentSecond());\n        $this->assertFalse(Carbon::now()->subDay()->isCurrentSecond());\n    }\n\n    public function testIsSameMicrosecond()\n    {\n        $current = new Carbon('2018-05-06T13:30:54.123456');\n        $this->assertTrue($current->isSameMicrosecond(new DateTime('2018-05-06T13:30:54.123456')));\n        $this->assertFalse($current->isSameMicrosecond(new DateTime('2018-05-06T13:30:54.123457')));\n        $this->assertFalse($current->isSameMicrosecond(new DateTime('2019-05-06T13:30:54.123456')));\n        $this->assertFalse($current->isSameMicrosecond(new DateTime('2018-05-06T13:30:55.123456')));\n        $this->assertTrue($current->isSameSecond($current->copy()));\n        $this->assertTrue(Carbon::now()->isCurrentMicrosecond());\n        $this->assertFalse(Carbon::now()->subMicrosecond()->isCurrentMicrosecond());\n        $this->assertFalse(Carbon::now()->isLastMicrosecond());\n        $this->assertTrue(Carbon::now()->subMicrosecond()->isLastMicrosecond());\n        $this->assertFalse(Carbon::now()->isNextMicrosecond());\n        $this->assertTrue(Carbon::now()->addMicrosecond()->isNextMicrosecond());\n        $this->assertTrue(Carbon::now()->subMicroseconds(Carbon::MICROSECONDS_PER_SECOND)->isLastSecond());\n        $this->assertSame(4.0, Carbon::now()->subMicroseconds(4 * Carbon::MICROSECONDS_PER_SECOND)->diffInSeconds(Carbon::now()));\n    }\n\n    public function testIsDayOfWeek()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 5, 31)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 21)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isDayOfWeek('sunday'));\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isDayOfWeek('SUNDAY'));\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::SUNDAY)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('sunday'));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('SUNDAY'));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('monday'));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('MONDAY'));\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isDayOfWeek('sunday'));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isDayOfWeek('SUNDAY'));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('monday'));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('MONDAY'));\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('sunday'));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('SUNDAY'));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('monday'));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('MONDAY'));\n    }\n\n    public function testIsSameAs()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameAs('c', $current));\n    }\n\n    public function testIsSameAsWithInvalidArgument()\n    {\n        $this->expectException(TypeError::class);\n\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $current->isSameAs('Y-m-d', new stdClass());\n    }\n\n    public function testIsSunday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 5, 31)->isSunday());\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 21)->isSunday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isSunday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous('Sunday')->isSunday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::SUNDAY)->isSunday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isSunday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::MONDAY)->isSunday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isSunday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::MONDAY)->isSunday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isSunday());\n    }\n\n    public function testIsMonday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 1)->isMonday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::MONDAY)->isMonday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::MONDAY)->isMonday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isMonday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::TUESDAY)->isMonday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::TUESDAY)->isMonday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::TUESDAY)->isMonday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::TUESDAY)->isMonday());\n    }\n\n    public function testIsTuesday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 2)->isTuesday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::TUESDAY)->isTuesday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::TUESDAY)->isTuesday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::TUESDAY)->isTuesday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::WEDNESDAY)->isTuesday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::WEDNESDAY)->isTuesday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::WEDNESDAY)->isTuesday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::WEDNESDAY)->isTuesday());\n    }\n\n    public function testIsWednesday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 3)->isWednesday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::WEDNESDAY)->isWednesday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::WEDNESDAY)->isWednesday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::WEDNESDAY)->isWednesday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::THURSDAY)->isWednesday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::THURSDAY)->isWednesday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::THURSDAY)->isWednesday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::THURSDAY)->isWednesday());\n    }\n\n    public function testIsThursday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 4)->isThursday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::THURSDAY)->isThursday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::THURSDAY)->isThursday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::THURSDAY)->isThursday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::FRIDAY)->isThursday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::FRIDAY)->isThursday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::FRIDAY)->isThursday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::FRIDAY)->isThursday());\n    }\n\n    public function testIsFriday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 5)->isFriday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::FRIDAY)->isFriday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::FRIDAY)->isFriday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::FRIDAY)->isFriday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::SATURDAY)->isFriday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SATURDAY)->isFriday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::SATURDAY)->isFriday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SATURDAY)->isFriday());\n    }\n\n    public function testIsSaturday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 6)->isSaturday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SATURDAY)->isSaturday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::SATURDAY)->isSaturday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SATURDAY)->isSaturday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isSaturday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SUNDAY)->isSaturday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::SUNDAY)->isSaturday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isSaturday());\n    }\n\n    public function testIsStartOfMillisecond()\n    {\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.999999')->isStartOfMillisecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45')->isStartOfMillisecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.123')->isStartOfMillisecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.000001')->isStartOfMillisecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.999999')->isStartOfMillisecond());\n    }\n\n    public function testIsEndOfMillisecond()\n    {\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.999999')->isEndOfMillisecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45')->isEndOfMillisecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.999999')->isEndOfMillisecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.999998')->isEndOfMillisecond());\n    }\n\n    public function testIsStartOfSecond()\n    {\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.999999')->isStartOfSecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45')->isStartOfSecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.000001')->isStartOfSecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.999999')->isStartOfSecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45')->isStartOfSecond(Unit::Millisecond));\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.000999')->isStartOfSecond(Unit::Millisecond));\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.001')->isStartOfSecond(Unit::Millisecond));\n    }\n\n    public function testIsEndOfSecond()\n    {\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.999999')->isEndOfSecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45')->isEndOfSecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.999999')->isEndOfSecond());\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:45.999998')->isEndOfSecond());\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.999998')->isEndOfSecond(Unit::Second));\n        $this->assertTrue(Carbon::parse('2025-01-30 21:33:45.123456')->isEndOfSecond(Unit::Second));\n    }\n\n    public function testIsStartOfMinute()\n    {\n        $this->assertFalse(Carbon::parse('2025-01-30 21:33:59.999999')->isStartOfMinute());\n        $this->assertTrue(Carbon::parse('2025-01-01 22:34:00')->isStartOfMinute());\n        $this->assertFalse(Carbon::parse('2025-01-01 22:34:00.000001')->isStartOfMinute());\n        $this->assertFalse(Carbon::parse('2025-01-01 21:33:59.999999')->isStartOfMinute());\n        $this->assertTrue(Carbon::parse('2025-01-31 22:34:00')->isStartOfMinute(Unit::Second));\n        $this->assertTrue(Carbon::parse('2025-01-31 22:34:00.999999')->isStartOfMinute(Unit::Second));\n        $this->assertFalse(Carbon::parse('2025-02-01 22:34:01')->isStartOfMinute(Unit::Second));\n        $this->assertFalse(Carbon::parse('2025-01-02 21:33:59.999999')->isStartOfMinute());\n        $this->assertFalse(Carbon::parse('2025-12-31 21:33:59.999999')->isStartOfMinute());\n    }\n\n    public function testIsEndOfMinute()\n    {\n        $this->assertTrue(Carbon::parse('2024-05-16 12:34:59.999999')->isEndOfMinute());\n        $this->assertFalse(Carbon::parse('2024-05-16 12:35:00')->isEndOfMinute());\n        $this->assertTrue(Carbon::parse('2024-05-16 12:34:59.999999')->isEndOfMinute());\n        $this->assertFalse(Carbon::parse('2024-05-16 12:34:59.999998')->isEndOfMinute());\n        $this->assertTrue(Carbon::parse('2024-05-16 12:34:59.999998')->isEndOfMinute(Unit::Second));\n        $this->assertTrue(Carbon::parse('2024-05-16 12:34:59.123456')->isEndOfMinute(Unit::Second));\n    }\n\n    public function testIsStartOfHour()\n    {\n        $this->assertFalse(Carbon::parse('2025-01-30 21:59:59.999999')->isStartOfHour());\n        $this->assertTrue(Carbon::parse('2025-01-01 22:00:00')->isStartOfHour());\n        $this->assertFalse(Carbon::parse('2025-01-01 22:00:00.000001')->isStartOfHour());\n        $this->assertFalse(Carbon::parse('2025-01-01 21:59:59.999999')->isStartOfHour());\n        $this->assertTrue(Carbon::parse('2025-01-31 22:00:00')->isStartOfHour(Unit::Second));\n        $this->assertTrue(Carbon::parse('2025-01-31 22:00:00.999999')->isStartOfHour(Unit::Second));\n        $this->assertFalse(Carbon::parse('2025-02-01 22:00:01')->isStartOfHour(Unit::Second));\n        $this->assertFalse(Carbon::parse('2025-01-02 21:59:59.999999')->isStartOfHour());\n        $this->assertFalse(Carbon::parse('2025-12-31 21:59:59.999999')->isStartOfHour());\n    }\n\n    public function testIsEndOfHour()\n    {\n        $this->assertTrue(Carbon::parse('2024-05-16 23:59:59.999999')->isEndOfHour());\n        $this->assertFalse(Carbon::parse('2024-05-16 00:00:00')->isEndOfHour());\n        $this->assertTrue(Carbon::parse('2024-05-16 23:59:59.999999')->isEndOfHour());\n        $this->assertFalse(Carbon::parse('2024-05-16 23:59:59.999998')->isEndOfHour());\n        $this->assertTrue(Carbon::parse('2024-05-16 23:59:59.999998')->isEndOfHour(Unit::Second));\n        $this->assertTrue(Carbon::parse('2024-05-16 23:59:59.123456')->isEndOfHour(Unit::Second));\n    }\n\n    public function testIsStartOfDay()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay(false));\n        $this->assertTrue(Carbon::parse('00:00:00.999999')->isStartOfDay(false));\n        $this->assertTrue(Carbon::now()->startOfDay()->isStartOfDay(false));\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isStartOfDay(false));\n        $this->assertFalse(Carbon::now()->endOfDay()->isStartOfDay(false));\n\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay());\n        $this->assertTrue(Carbon::parse('00:00:00.999999')->isStartOfDay());\n        $this->assertTrue(Carbon::now()->startOfDay()->isStartOfDay());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isStartOfDay());\n        $this->assertFalse(Carbon::now()->endOfDay()->isStartOfDay());\n    }\n\n    public function testIsStartOfDayWithMicroseconds()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay(true));\n        $this->assertTrue(Carbon::now()->startOfDay()->isStartOfDay(true));\n\n        $this->assertFalse(Carbon::parse('00:00:00.000001')->isStartOfDay(true));\n    }\n\n    public function testIsStartOfDayInterval()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('00:14:59.999999')->isStartOfDay('15 minutes'));\n        $this->assertFalse(Carbon::parse('00:15:00')->isStartOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('00:59:59.999999')->isStartOfDay(Unit::Hour));\n        $this->assertFalse(Carbon::parse('01:00:00')->isStartOfDay(Unit::Hour));\n        $this->assertTrue(Carbon::parse('00:00:59.999999')->isStartOfDay(new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('00:01:00')->isStartOfDay(new DateInterval('PT1M')));\n\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('00:14:59.999999')->isStartOfDay(interval: '15 minutes'));\n        $this->assertFalse(Carbon::parse('00:15:00')->isStartOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('00:59:59.999999')->isStartOfDay(interval: Unit::Hour));\n        $this->assertFalse(Carbon::parse('01:00:00')->isStartOfDay(interval: Unit::Hour));\n        $this->assertTrue(Carbon::parse('00:00:59.999999')->isStartOfDay(interval: new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('00:01:00')->isStartOfDay(interval: new DateInterval('PT1M')));\n\n        $this->assertTrue(Carbon::parse('00:01:59.999999')->isStartOfDay(interval: CarbonInterval::minutes(2)));\n        $this->assertFalse(Carbon::parse('00:02:00')->isStartOfDay(interval: CarbonInterval::minutes(2)));\n\n        // Always false with negative interval\n        $this->assertFalse(Carbon::parse('00:00:00')->isStartOfDay(interval: CarbonInterval::minutes(-2)));\n\n        // Always true with  interval bigger than 1 day\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isStartOfDay(interval: CarbonInterval::hours(36)));\n    }\n\n    public function testIsStartOfUnit()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfUnit(Unit::Hour));\n\n        $this->assertFalse(Carbon::parse('00:00:00.000001')->isStartOfUnit(Unit::Hour));\n        $this->assertFalse(Carbon::parse('00:00:01')->isStartOfUnit(Unit::Hour));\n\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfUnit(Unit::Hour, '5 minutes'));\n        $this->assertTrue(Carbon::parse('00:04:59.999999')->isStartOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertFalse(Carbon::parse('00:05:00')->isStartOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertTrue(Carbon::parse('Monday')->isStartOfUnit(Unit::Week));\n        $this->assertTrue(Carbon::parse('Monday 23:59:59.999999')->isStartOfUnit(Unit::Week));\n\n        $this->assertFalse(Carbon::parse('Tuesday')->isStartOfUnit(Unit::Week));\n        $this->assertFalse(Carbon::parse('Monday')->isStartOfUnit(Unit::Week, CarbonInterval::day(-1)));\n    }\n\n    public function testIsEndOfDay()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59')->isEndOfDay(false));\n        $this->assertTrue(Carbon::parse('23:59:59.000000')->isEndOfDay(false));\n        $this->assertTrue(Carbon::now()->endOfDay()->isEndOfDay(false));\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isEndOfDay(false));\n        $this->assertFalse(Carbon::now()->startOfDay()->isEndOfDay(false));\n\n        $this->assertTrue(Carbon::parse('23:59:59')->isEndOfDay());\n        $this->assertTrue(Carbon::parse('23:59:59.000000')->isEndOfDay());\n        $this->assertTrue(Carbon::now()->endOfDay()->isEndOfDay());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isEndOfDay());\n        $this->assertFalse(Carbon::now()->startOfDay()->isEndOfDay());\n    }\n\n    public function testIsEndOfDayWithMicroseconds()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay(true));\n        $this->assertTrue(Carbon::now()->endOfDay()->isEndOfDay(true));\n\n        $this->assertFalse(Carbon::parse('23:59:59')->isEndOfDay(true));\n        $this->assertFalse(Carbon::parse('23:59:59.999998')->isEndOfDay(true));\n    }\n\n    public function testIsEndOfDayInterval()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('23:45:00')->isEndOfDay('15 minutes'));\n        $this->assertFalse(Carbon::parse('23:44:59.999999')->isEndOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('23:00:00')->isEndOfDay(Unit::Hour));\n        $this->assertFalse(Carbon::parse('22:59:59.999999')->isEndOfDay(Unit::Hour));\n        $this->assertTrue(Carbon::parse('23:59:00')->isEndOfDay(new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('23:58:59.999999')->isEndOfDay(new DateInterval('PT1M')));\n\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('23:45:00')->isEndOfDay(interval: '15 minutes'));\n        $this->assertFalse(Carbon::parse('23:44:59.999999')->isEndOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('23:00:00')->isEndOfDay(interval: Unit::Hour));\n        $this->assertFalse(Carbon::parse('22:59:59.999999')->isEndOfDay(interval: Unit::Hour));\n        $this->assertTrue(Carbon::parse('23:59:00')->isEndOfDay(interval: new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('23:58:59.999999')->isEndOfDay(interval: new DateInterval('PT1M')));\n\n        // Always false with negative interval\n        $this->assertFalse(Carbon::parse('00:00:00')->isEndOfDay(interval: CarbonInterval::minutes(-2)));\n\n        // Always true with  interval bigger than 1 day\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay(interval: CarbonInterval::hours(36)));\n    }\n\n    public function testIsEndOfUnit()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfUnit(Unit::Hour));\n\n        $this->assertFalse(Carbon::parse('23:59:59.999998')->isEndOfUnit(Unit::Hour));\n        $this->assertFalse(Carbon::parse('23:59:59')->isEndOfUnit(Unit::Hour));\n\n        $this->assertTrue(Carbon::parse('23:55:00.000001')->isEndOfUnit(Unit::Hour, '5 minutes'));\n        $this->assertTrue(Carbon::parse('23:55:00')->isEndOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertFalse(Carbon::parse('23:54:59.999999')->isEndOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertTrue(Carbon::parse('Sunday 23:59:59')->isEndOfUnit(Unit::Week, '2 days'));\n        $this->assertTrue(Carbon::parse('Saturday 00:00')->isEndOfUnit(Unit::Week, '2 days'));\n\n        $this->assertFalse(Carbon::parse('Saturday 00:00')->isEndOfUnit(Unit::Week));\n        $this->assertFalse(Carbon::parse('Friday 23:59:59.999999')->isEndOfUnit(Unit::Week, '2 days'));\n        $this->assertFalse(Carbon::parse('Sunday 23:59:59.999999')->isEndOfUnit(Unit::Week, CarbonInterval::day(-1)));\n    }\n\n    public function testIsStartOfWeek()\n    {\n        $this->assertTrue(Carbon::parse('Monday 01:06:12')->isStartOfWeek());\n        $this->assertFalse(Carbon::parse('Saturday 01:06:12')->isStartOfWeek());\n\n        Carbon::setLocale('ar');\n\n        $this->assertTrue(Carbon::parse('Saturday 01:06:12')->isStartOfWeek());\n        $this->assertFalse(Carbon::parse('Monday 01:06:12')->isStartOfWeek());\n\n        $this->assertTrue(Carbon::parse('Sunday 01:06:12')->isStartOfWeek(weekStartsAt: WeekDay::Sunday));\n        $this->assertFalse(Carbon::parse('Saturday 01:06:12')->isStartOfWeek(weekStartsAt: WeekDay::Sunday));\n\n        $this->assertTrue(Carbon::parse('Saturday 01:06:12')->isStartOfWeek('2 hours'));\n        $this->assertFalse(Carbon::parse('Saturday 01:06:12')->isStartOfWeek('1 hour'));\n    }\n\n    public function testIsEndOfWeek()\n    {\n        $this->assertTrue(Carbon::parse('Sunday 01:06:12')->isEndOfWeek());\n        $this->assertFalse(Carbon::parse('Friday 01:06:12')->isEndOfWeek());\n\n        Carbon::setLocale('ar');\n\n        $this->assertTrue(Carbon::parse('Friday 01:06:12')->isEndOfWeek());\n        $this->assertFalse(Carbon::parse('Sunday 01:06:12')->isEndOfWeek());\n\n        $this->assertTrue(Carbon::parse('Saturday 01:06:12')->isEndOfWeek(weekEndsAt: WeekDay::Saturday));\n        $this->assertFalse(Carbon::parse('Friday 01:06:12')->isEndOfWeek(weekEndsAt: WeekDay::Saturday));\n\n        $this->assertTrue(Carbon::parse('Friday 22:06:12')->isEndOfWeek('2 hours'));\n        $this->assertFalse(Carbon::parse('Saturday 22:06:12')->isEndOfWeek('1 hour'));\n    }\n\n    public function testIsStartOfMonth()\n    {\n        $this->assertFalse(Carbon::parse('2024-01-31 23:59:59.999999')->isStartOfMonth());\n        $this->assertTrue(Carbon::parse('2024-02-01 00:00:00')->isStartOfMonth());\n        $this->assertTrue(Carbon::parse('2024-02-01 23:59:59.999999')->isStartOfMonth());\n        $this->assertTrue(Carbon::parse('2024-02-01 00:00:00')->isStartOfMonth(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2024-02-01 00:00:00.000001')->isStartOfMonth(Unit::Microsecond));\n        $this->assertTrue(Carbon::parse('2024-02-01 00:00:59')->isStartOfMonth(Unit::Minute));\n        $this->assertFalse(Carbon::parse('2024-02-01 00:01:00')->isStartOfMonth(Unit::Minute));\n        $this->assertFalse(Carbon::parse('2024-02-02 23:59:59.999999')->isStartOfMonth());\n        $this->assertFalse(Carbon::parse('2024-02-29 23:59:59.999999')->isStartOfMonth());\n    }\n\n    public function testIsEndOfMonth()\n    {\n        $this->assertTrue(Carbon::parse('2024-01-31 23:59:59.999999')->isEndOfMonth());\n        $this->assertFalse(Carbon::parse('2024-02-01 00:00:00')->isEndOfMonth());\n        $this->assertFalse(Carbon::parse('2024-02-28 23:59:59.999999')->isEndOfMonth());\n        $this->assertTrue(Carbon::parse('2024-02-29 00:00:00')->isEndOfMonth());\n        $this->assertTrue(Carbon::parse('2024-02-29 23:59:59.999999')->isEndOfMonth());\n        $this->assertTrue(Carbon::parse('2024-02-29 23:59:59.999999')->isEndOfMonth(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2024-02-29 23:59:59.999998')->isEndOfMonth(Unit::Microsecond));\n    }\n\n    public function testIsStartOfQuarter()\n    {\n        $this->assertFalse(Carbon::parse('2024-01-31 23:59:59.999999')->isStartOfQuarter());\n        $this->assertTrue(Carbon::parse('2024-01-01 00:00:00')->isStartOfQuarter());\n        $this->assertTrue(Carbon::parse('2024-01-01 23:59:59.999999')->isStartOfQuarter());\n        $this->assertTrue(Carbon::parse('2024-01-01 00:00:00')->isStartOfQuarter(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2024-01-01 00:00:00.000001')->isStartOfQuarter(Unit::Microsecond));\n        $this->assertTrue(Carbon::parse('2024-01-01 00:00:59')->isStartOfQuarter(Unit::Minute));\n        $this->assertFalse(Carbon::parse('2024-01-01 00:01:00')->isStartOfQuarter(Unit::Minute));\n        $this->assertFalse(Carbon::parse('2024-01-02 23:59:59.999999')->isStartOfQuarter());\n        $this->assertFalse(Carbon::parse('2024-03-31 23:59:59.999999')->isStartOfQuarter());\n    }\n\n    public function testIsEndOfQuarter()\n    {\n        $this->assertTrue(Carbon::parse('2024-12-31 23:59:59.999999')->isEndOfQuarter());\n        $this->assertFalse(Carbon::parse('2024-03-01 00:00:00')->isEndOfQuarter());\n        $this->assertFalse(Carbon::parse('2024-03-30 23:59:59.999999')->isEndOfQuarter());\n        $this->assertTrue(Carbon::parse('2024-03-31 00:00:00')->isEndOfQuarter());\n        $this->assertTrue(Carbon::parse('2024-03-31 23:59:59.999999')->isEndOfQuarter());\n        $this->assertTrue(Carbon::parse('2024-03-31 23:59:59.999999')->isEndOfQuarter(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2024-03-31 23:59:59.999998')->isEndOfQuarter(Unit::Microsecond));\n    }\n\n    public function testIsStartOfYear()\n    {\n        $this->assertFalse(Carbon::parse('2024-01-31 23:59:59.999999')->isStartOfYear());\n        $this->assertTrue(Carbon::parse('2024-01-01 00:00:00')->isStartOfYear());\n        $this->assertTrue(Carbon::parse('2024-01-01 23:59:59.999999')->isStartOfYear());\n        $this->assertTrue(Carbon::parse('2024-01-31 00:00:00')->isStartOfYear(Unit::Month));\n        $this->assertFalse(Carbon::parse('2024-02-01 00:00:00')->isStartOfYear(Unit::Month));\n        $this->assertFalse(Carbon::parse('2024-01-02 23:59:59.999999')->isStartOfYear());\n        $this->assertFalse(Carbon::parse('2024-12-31 23:59:59.999999')->isStartOfYear());\n    }\n\n    public function testIsEndOfYear()\n    {\n        $this->assertTrue(Carbon::parse('2024-12-31 23:59:59.999999')->isEndOfYear());\n        $this->assertFalse(Carbon::parse('2024-03-01 00:00:00')->isEndOfYear());\n        $this->assertFalse(Carbon::parse('2024-03-30 23:59:59.999999')->isEndOfYear());\n        $this->assertTrue(Carbon::parse('2024-12-31 00:00:00')->isEndOfYear());\n        $this->assertTrue(Carbon::parse('2024-12-31 23:59:59.999999')->isEndOfYear());\n        $this->assertTrue(Carbon::parse('2024-12-31 23:59:59.999999')->isEndOfYear(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2024-12-31 23:59:59.999998')->isEndOfYear(Unit::Microsecond));\n    }\n\n    public function testIsStartOfDecade()\n    {\n        $this->assertFalse(Carbon::parse('2019-01-31 23:59:59.999999')->isStartOfDecade());\n        $this->assertTrue(Carbon::parse('2020-01-01 00:00:00')->isStartOfDecade());\n        $this->assertTrue(Carbon::parse('2020-01-01 23:59:59.999999')->isStartOfDecade());\n        $this->assertTrue(Carbon::parse('2020-01-31 00:00:00')->isStartOfDecade(Unit::Month));\n        $this->assertFalse(Carbon::parse('2020-02-01 00:00:00')->isStartOfDecade(Unit::Month));\n        $this->assertFalse(Carbon::parse('2020-01-02 23:59:59.999999')->isStartOfDecade());\n        $this->assertFalse(Carbon::parse('2029-12-31 23:59:59.999999')->isStartOfDecade());\n    }\n\n    public function testIsEndOfDecade()\n    {\n        $this->assertTrue(Carbon::parse('2019-12-31 23:59:59.999999')->isEndOfDecade());\n        $this->assertFalse(Carbon::parse('2020-01-01 00:00:00')->isEndOfDecade());\n        $this->assertFalse(Carbon::parse('2020-01-30 23:59:59.999999')->isEndOfDecade());\n        $this->assertTrue(Carbon::parse('2029-12-31 00:00:00')->isEndOfDecade());\n        $this->assertTrue(Carbon::parse('2029-12-31 23:59:59.999999')->isEndOfDecade());\n        $this->assertTrue(Carbon::parse('2029-12-31 23:59:59.999999')->isEndOfDecade(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2029-12-31 23:59:59.999998')->isEndOfDecade(Unit::Microsecond));\n    }\n\n    public function testIsStartOfCentury()\n    {\n        $this->assertFalse(Carbon::parse('2000-01-31 23:59:59.999999')->isStartOfCentury());\n        $this->assertTrue(Carbon::parse('2001-01-01 00:00:00')->isStartOfCentury());\n        $this->assertTrue(Carbon::parse('2001-01-01 23:59:59.999999')->isStartOfCentury());\n        $this->assertTrue(Carbon::parse('2001-01-31 00:00:00')->isStartOfCentury(Unit::Month));\n        $this->assertFalse(Carbon::parse('2001-02-01 00:00:00')->isStartOfCentury(Unit::Month));\n        $this->assertFalse(Carbon::parse('2001-01-02 23:59:59.999999')->isStartOfCentury());\n        $this->assertFalse(Carbon::parse('2100-12-31 23:59:59.999999')->isStartOfCentury());\n    }\n\n    public function testIsEndOfCentury()\n    {\n        $this->assertTrue(Carbon::parse('2000-12-31 23:59:59.999999')->isEndOfCentury());\n        $this->assertFalse(Carbon::parse('2001-01-01 00:00:00')->isEndOfCentury());\n        $this->assertFalse(Carbon::parse('2001-01-30 23:59:59.999999')->isEndOfCentury());\n        $this->assertTrue(Carbon::parse('2100-12-31 00:00:00')->isEndOfCentury());\n        $this->assertTrue(Carbon::parse('2100-12-31 23:59:59.999999')->isEndOfCentury());\n        $this->assertTrue(Carbon::parse('2100-12-31 23:59:59.999999')->isEndOfCentury(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('2100-12-31 23:59:59.999998')->isEndOfCentury(Unit::Microsecond));\n    }\n\n    public function testIsStartOfMillennium()\n    {\n        $this->assertFalse(Carbon::parse('2000-01-31 23:59:59.999999')->isStartOfMillennium());\n        $this->assertTrue(Carbon::parse('2001-01-01 00:00:00')->isStartOfMillennium());\n        $this->assertTrue(Carbon::parse('2001-01-01 23:59:59.999999')->isStartOfMillennium());\n        $this->assertTrue(Carbon::parse('2001-01-31 00:00:00')->isStartOfMillennium(Unit::Month));\n        $this->assertFalse(Carbon::parse('2001-02-01 00:00:00')->isStartOfMillennium(Unit::Month));\n        $this->assertFalse(Carbon::parse('2001-01-02 23:59:59.999999')->isStartOfMillennium());\n        $this->assertFalse(Carbon::parse('3000-12-31 23:59:59.999999')->isStartOfMillennium());\n    }\n\n    public function testIsEndOfMillennium()\n    {\n        $this->assertTrue(Carbon::parse('2000-12-31 23:59:59.999999')->isEndOfMillennium());\n        $this->assertFalse(Carbon::parse('2001-01-01 00:00:00')->isEndOfMillennium());\n        $this->assertFalse(Carbon::parse('2001-01-30 23:59:59.999999')->isEndOfMillennium());\n        $this->assertTrue(Carbon::parse('3000-12-31 00:00:00')->isEndOfMillennium());\n        $this->assertTrue(Carbon::parse('3000-12-31 23:59:59.999999')->isEndOfMillennium());\n        $this->assertTrue(Carbon::parse('3000-12-31 23:59:59.999999')->isEndOfMillennium(Unit::Microsecond));\n        $this->assertFalse(Carbon::parse('3000-12-31 23:59:59.999998')->isEndOfMillennium(Unit::Microsecond));\n    }\n\n    public function testIsMidnight()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isMidnight());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isMidnight());\n    }\n\n    public function testIsMidday()\n    {\n        $this->assertTrue(Carbon::parse('12:00:00')->isMidday());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isMidday());\n    }\n\n    public function testHasFormat()\n    {\n        $this->assertTrue(Carbon::hasFormat('1975-05-01', 'Y-m-d'));\n        $this->assertTrue(Carbon::hasFormat('12/30/2019', 'm/d/Y'));\n        $this->assertTrue(Carbon::hasFormat('30/12/2019', 'd/m/Y'));\n        $this->assertTrue(Carbon::hasFormat('Sun 21st', 'D jS'));\n\n        $this->assertTrue(Carbon::hasFormat('2000-07-01T00:00:00+00:00', Carbon::ATOM));\n        $this->assertTrue(Carbon::hasFormat('Y-01-30\\\\', '\\\\Y-m-d\\\\\\\\'));\n\n        // @see https://github.com/briannesbitt/Carbon/issues/2180\n        $this->assertTrue(Carbon::hasFormat('2020-09-01 12:00:00Europe/Moscow', 'Y-m-d H:i:se'));\n\n        $this->assertTrue(Carbon::hasFormat('2012-12-04 22:59.32130', 'Y-m-d H:s.vi'));\n\n        // Format failure\n        $this->assertFalse(Carbon::hasFormat('', 'd m Y'));\n        $this->assertFalse(Carbon::hasFormat('1975-05-01', 'd m Y'));\n        $this->assertFalse(Carbon::hasFormat('1975-01-30\\\\', '\\\\Y-m-d\\\\\\\\'));\n        $this->assertFalse(Carbon::hasFormat('Foo 21st', 'D jS'));\n        $this->assertFalse(Carbon::hasFormat('Sun 51st', 'D jS'));\n        $this->assertFalse(Carbon::hasFormat('Sun 21xx', 'D jS'));\n\n        // Regex failure\n        $this->assertFalse(Carbon::hasFormat('1975-5-1', 'Y-m-d'));\n        $this->assertFalse(Carbon::hasFormat('19-05-01', 'Y-m-d'));\n        $this->assertFalse(Carbon::hasFormat('30/12/2019', 'm/d/Y'));\n        $this->assertFalse(Carbon::hasFormat('12/30/2019', 'd/m/Y'));\n        $this->assertFalse(Carbon::hasFormat('1975-05-01', 'Y-m-d!'));\n        $this->assertFalse(Carbon::hasFormat('1975-05-01', 'Y-m-d|'));\n        $this->assertFalse(Carbon::hasFormat('1975-05-01', 'Y-*-d'));\n\n        $this->assertTrue(Carbon::hasFormat('2012-12-04 22:59.32130', 'Y-m-d H:s.vi'));\n\n        // New Zealand Daylight time\n        $this->assertTrue(Carbon::hasFormat('2024-03-02T00:00:00+13:00', 'Y-m-d\\TH:i:sP'));\n    }\n\n    public function testHasFormatWithModifiers()\n    {\n        $this->assertTrue(Carbon::hasFormatWithModifiers('2021-05-03T00:00:00+02:00', 'Y-m-d\\TH:i:sp'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('2021-05-03T00:00:00+02:00', 'Y-m-d\\TH:i:sP'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('2021-05-03T00:00:00Z', 'Y-m-d\\TH:i:sp'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('1975-05-01', 'Y-m-d!'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('1975-05-01', 'Y-m-d|'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('1975-05-01', 'Y-*-d'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('1975-05-01', 'Y-??-d!'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('1975-05-01', 'Y#m#d'));\n        $this->assertTrue(Carbon::hasFormatWithModifiers('1975/05/31', 'Y#m#d'));\n\n        $this->assertFalse(Carbon::hasFormatWithModifiers('2021-05-03T00:00:00Z', 'Y-m-d\\TH:i:sP'));\n        $this->assertFalse(Carbon::hasFormatWithModifiers('1975/31/05', 'Y#m#d'));\n        $this->assertFalse(Carbon::hasFormatWithModifiers('1975-05-01', 'Y-?-d|'));\n        $this->assertFalse(Carbon::hasFormatWithModifiers('1975--01', 'Y-*-d'));\n        $this->assertFalse(Carbon::hasFormatWithModifiers('1975705-01', 'Y#m#d'));\n    }\n\n    public static function dataForFormatLetters(): array\n    {\n        return [\n            'd' => ['d'],\n            'D' => ['D'],\n            'j' => ['j'],\n            'l' => ['l'],\n            'N' => ['N'],\n            'S' => ['S'],\n            'w' => ['w'],\n            'z' => ['z'],\n            'W' => ['W'],\n            'F' => ['F'],\n            'm' => ['m'],\n            'M' => ['M'],\n            'n' => ['n'],\n            't' => ['t'],\n            'L' => ['L'],\n            'o' => ['o'],\n            'Y' => ['Y'],\n            'y' => ['y'],\n            'a' => ['a'],\n            'A' => ['A'],\n            'B' => ['B'],\n            'g' => ['g'],\n            'G' => ['G'],\n            'h' => ['h'],\n            'H' => ['H'],\n            'i' => ['i'],\n            's' => ['s'],\n            'u' => ['u'],\n            'v' => ['v'],\n            'e' => ['e'],\n            'I' => ['I'],\n            'O' => ['O'],\n            'P' => ['P'],\n            'T' => ['T'],\n            'Z' => ['Z'],\n            'U' => ['U'],\n            'c' => ['c'],\n            'r' => ['r'],\n        ];\n    }\n\n    #[DataProvider('dataForFormatLetters')]\n    public function testHasFormatWithSingleLetter($letter)\n    {\n        $output = Carbon::now()->format($letter);\n        $this->assertTrue(Carbon::hasFormat($output, $letter), \"'$letter' format should match '$output'\");\n    }\n\n    public function testCanBeCreatedFromFormat()\n    {\n        $this->assertTrue(Carbon::canBeCreatedFromFormat('1975-05-01', 'Y-m-d'));\n        $this->assertTrue(Carbon::canBeCreatedFromFormat('12/30/2019', 'm/d/Y'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat(null, 'Y-m-d'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat('1975-05-01', 'd m Y'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat('1975-5-1', 'Y-m-d'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat('19-05-01', 'Y-m-d'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat('30/12/2019', 'm/d/Y'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat('12/30/2019', 'd/m/Y'));\n        $this->assertFalse(Carbon::canBeCreatedFromFormat('5', 'N'));\n    }\n\n    public function testIsSameFoobar()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method isSameFoobar does not exist.',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::parse('12:00:00');\n        $date->isSameFoobar(Carbon::parse('15:30:45'));\n    }\n\n    public function testIsCurrentFoobar()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method isCurrentFoobar does not exist.',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::parse('12:00:00');\n        $date->isCurrentFoobar();\n    }\n\n    #[TestWith([null])]\n    #[TestWith(['2025-03-31 12:00'])]\n    public function testIs(?string $testNow)\n    {\n        Carbon::setTestNow($testNow);\n\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2018'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2018-06'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-07'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('06-02'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('06-03'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('05-02'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-03'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-05-02'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2020-06-02'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('Sunday'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('Monday'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is(WeekDay::Sunday));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is(WeekDay::Monday));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('June'));\n        $this->assertTrue(Carbon::parse('2019-05-31 12:23:45')->is('May'));\n        $this->assertTrue(Carbon::parse('2019-05-31 12:23:45')->is('mAy'));\n        $this->assertFalse(Carbon::parse('2019-05-31 12:23:45')->is('April'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('May'));\n        $this->assertTrue(Carbon::parse('2019-05-31 12:23:45')->is(Month::May));\n        $this->assertFalse(Carbon::parse('2019-05-31 12:23:45')->is(Month::April));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('12:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('12:26'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('12:23:00'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('12h'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('15h'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('12:00'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('15:00'));\n        $this->assertTrue(Carbon::parse('2019-06-02 15:23:45')->is('3pm'));\n        $this->assertFalse(Carbon::parse('2019-06-02 15:23:45')->is('4pm'));\n        $this->assertFalse(Carbon::parse('2019-06-02 15:23:45')->is('3am'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06'));\n        $this->assertTrue(Carbon::parse('2019-05-31 12:23:45')->is('2019-05'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02 12:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-03 12:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02 15:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02 12:33'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2 June 2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('1 June 2019'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('June 2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('August 2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('June 2018'));\n    }\n\n    #[TestWith([null])]\n    #[TestWith(['2024-02-29 12:00'])]\n    #[TestWith(['2024-03-01 12:00'])]\n    #[TestWith(['2025-02-28 12:00'])]\n    #[TestWith(['2025-03-01 12:00'])]\n    public function testIsFebruary29(?string $testNow)\n    {\n        Carbon::setTestNow($testNow);\n        $this->assertTrue(Carbon::parse('2024-02-29 12:23:45')->is('02-29'));\n        $this->assertFalse(Carbon::parse('2025-02-29 12:23:45')->is('02-29'));\n        $this->assertFalse(Carbon::parse('2025-03-01 12:23:45')->is('02-29'));\n\n        $this->assertFalse(Carbon::parse('2024-02-29 12:23:45')->is('03-01'));\n        $this->assertTrue(Carbon::parse('2025-02-29 12:23:45')->is('03-01')); // overflow\n        $this->assertTrue(Carbon::parse('2025-03-01 12:23:45')->is('03-01'));\n    }\n\n    public function testHasFormatWithDots()\n    {\n        $this->assertTrue(Carbon::hasFormat('2020.09.09', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020009009', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020-09-09', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020*09*09', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020k09d09', 'Y.m.d'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/IssetTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass IssetTest extends AbstractTestCase\n{\n    public function testIssetReturnFalseForUnknownProperty(): void\n    {\n        $this->assertFalse(isset($this->now->sdfsdfss));\n    }\n\n    public static function dataForTestIssetReturnTrueForProperties(): Generator\n    {\n        yield ['age'];\n        yield ['century'];\n        yield ['day'];\n        yield ['dayName'];\n        yield ['dayOfWeek'];\n        yield ['dayOfWeekIso'];\n        yield ['dayOfYear'];\n        yield ['daysInMonth'];\n        yield ['daysInYear'];\n        yield ['decade'];\n        yield ['dst'];\n        yield ['englishDayOfWeek'];\n        yield ['englishMonth'];\n        yield ['firstWeekDay'];\n        yield ['hour'];\n        yield ['isoWeek'];\n        yield ['isoWeekYear'];\n        yield ['isoWeeksInYear'];\n        yield ['lastWeekDay'];\n        yield ['latinMeridiem'];\n        yield ['latinUpperMeridiem'];\n        yield ['local'];\n        yield ['locale'];\n        yield ['localeDayOfWeek'];\n        yield ['localeMonth'];\n        yield ['meridiem'];\n        yield ['micro'];\n        yield ['microsecond'];\n        yield ['millennium'];\n        yield ['milli'];\n        yield ['millisecond'];\n        yield ['milliseconds'];\n        yield ['minDayName'];\n        yield ['minute'];\n        yield ['month'];\n        yield ['monthName'];\n        yield ['noZeroHour'];\n        yield ['offset'];\n        yield ['offsetHours'];\n        yield ['offsetMinutes'];\n        yield ['quarter'];\n        yield ['second'];\n        yield ['shortDayName'];\n        yield ['shortEnglishDayOfWeek'];\n        yield ['shortEnglishMonth'];\n        yield ['shortLocaleDayOfWeek'];\n        yield ['shortLocaleMonth'];\n        yield ['shortMonthName'];\n        yield ['timestamp'];\n        yield ['timezone'];\n        yield ['timezoneAbbreviatedName'];\n        yield ['timezoneName'];\n        yield ['tz'];\n        yield ['tzAbbrName'];\n        yield ['tzName'];\n        yield ['upperMeridiem'];\n        yield ['utc'];\n        yield ['week'];\n        yield ['weekNumberInMonth'];\n        yield ['weekOfMonth'];\n        yield ['weekOfYear'];\n        yield ['weekYear'];\n        yield ['weeksInYear'];\n        yield ['year'];\n        yield ['yearIso'];\n    }\n\n    #[DataProvider('dataForTestIssetReturnTrueForProperties')]\n    public function testIssetReturnTrueForProperties(string $property): void\n    {\n        Carbon::useStrictMode(false);\n        $this->assertTrue(isset($this->now->{$property}));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/JsonSerializationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCaseWithOldNow;\n\nclass JsonSerializationTest extends AbstractTestCaseWithOldNow\n{\n    public function testCarbonAllowsCustomSerializer()\n    {\n        Carbon::serializeUsing(function (Carbon $carbon) {\n            return $carbon->getTimestamp();\n        });\n\n        $result = json_decode(json_encode(Carbon::now()), true);\n\n        $this->assertSame(1498569255, $result);\n    }\n\n    public function testCarbonAllowsCustomSerializerString()\n    {\n        Carbon::serializeUsing('Y-m-d');\n\n        $this->assertSame('\"2017-06-27\"', json_encode(Carbon::now()));\n    }\n\n    public function testCarbonAllowsCustomSerializerViaSettings()\n    {\n        $date = Carbon::now()->settings([\n            'toJsonFormat' => 'H:i:s',\n        ]);\n\n        $this->assertSame('\"13:14:15\"', json_encode($date));\n    }\n\n    public function testCarbonCanSerializeToJson()\n    {\n        $this->assertSame('2017-06-27T13:14:15.000000Z', Carbon::now()->jsonSerialize());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/LastErrorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Traits\\Creator;\nuse DateTime;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhp;\nuse Tests\\AbstractTestCase;\n\nclass LastErrorTest extends AbstractTestCase\n{\n    /**\n     * @var array\n     */\n    protected $lastErrors;\n\n    /**\n     * @var array\n     */\n    protected $noErrors;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->lastErrors = [\n            'warning_count' => 1,\n            'warnings' => ['11' => 'The parsed date was invalid'],\n            'error_count' => 0,\n            'errors' => [],\n        ];\n    }\n\n    #[RequiresPhp('>=8.2')]\n    public function testCreateHandlesLastErrors()\n    {\n        $carbon = new Carbon('2017-02-30');\n        $datetime = new DateTime('2017-02-30');\n\n        $this->assertSame($this->lastErrors, $carbon->getLastErrors());\n        $this->assertSame($carbon->getLastErrors(), $datetime->getLastErrors());\n\n        $carbon = new Carbon('2017-02-15');\n\n        $this->assertFalse($carbon->getLastErrors());\n    }\n\n    public function testLastErrorsInitialization()\n    {\n        $obj = new class() {\n            use Creator;\n\n            /** @phpstan-ignore-next-line */\n            public function __construct($time = null, $tz = null)\n            {\n            }\n\n            public function triggerError()\n            {\n                self::setLastErrors([\n                    'warning_count' => 1,\n                    'warnings' => ['11' => 'The parsed date was invalid'],\n                    'error_count' => 0,\n                    'errors' => [],\n                ]);\n            }\n        };\n        $this->assertFalse($obj::getLastErrors());\n        $obj->triggerError();\n        $this->assertSame($this->lastErrors, $obj::getLastErrors());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/LocalizationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Language;\nuse Carbon\\Translator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Symfony\\Component\\Translation\\IdentityTranslator;\nuse Symfony\\Component\\Translation\\Loader\\ArrayLoader;\nuse Symfony\\Component\\Translation\\MessageCatalogue;\nuse Symfony\\Component\\Translation\\Translator as SymfonyTranslator;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\nuse Tests\\Carbon\\Fixtures\\NoLocaleTranslator;\n\n#[Group('localization')]\nclass LocalizationTest extends AbstractTestCase\n{\n    public function testGetTranslator()\n    {\n        /** @var Translator $t */\n        $t = Carbon::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('en', $t->getLocale());\n    }\n\n    public function testResetTranslator()\n    {\n        /** @var Translator $t */\n        $t = MyCarbon::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('en', $t->getLocale());\n    }\n\n    #[TestWith([\n        'fr',\n        ['fr_FR.UTF-8', 'fr_FR.utf8', 'fr_FR', 'fr'],\n        'il y a 2 secondes',\n    ])]\n    #[TestWith([\n        'sr',\n        ['sr_ME.UTF-8', 'sr_ME.utf8', 'sr_ME', 'sr'],\n        ['pre 2 sekunde' /* sr */, 'prije 2 sekunde' /* sr_ME */],\n    ])]\n    #[TestWith([\n        'zh',\n        ['zh_TW.UTF-8', 'zh_TW.utf8', 'zh_TW', 'zh'],\n        '2秒前',\n    ])]\n    public function testSetLocaleToAutoFromSupportedLocale(string $language, array $locales, array|string $twoSecondsAgo)\n    {\n        $currentLocale = setlocale(LC_ALL, '0');\n\n        $this->setLocaleOrSkip(...$locales);\n\n        try {\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n        } finally {\n            setlocale(LC_ALL, $currentLocale);\n        }\n\n        $this->assertStringStartsWith($language, $locale);\n        $this->assertContains($diff, (array) $twoSecondsAgo);\n    }\n\n    public function testSetLocaleToAutoFromUnsupportedLocale()\n    {\n        $currentLocale = setlocale(LC_ALL, '0');\n\n        $this->setLocaleOrSkip('ar_AE.UTF-8', 'ar_AE.utf8', 'ar_AE', 'ar');\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->resetMessages();\n        $translator->setLocale('en');\n        $directories = $translator->getDirectories();\n        $directory = sys_get_temp_dir().'/carbon'.mt_rand(0, 9999999);\n        mkdir($directory);\n\n        foreach (glob(__DIR__.'/../../src/Carbon/Lang/*.php') as $file) {\n            copy($file, \"$directory/\".basename($file));\n        }\n\n        try {\n            $translator->setDirectories([$directory]);\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n        } finally {\n            $translator->setDirectories([$directory]);\n            setlocale(LC_ALL, $currentLocale);\n            $this->remove($directory);\n            $translator->setDirectories($directories);\n        }\n\n        $this->assertStringStartsWith('ar', $locale);\n        $this->assertSame('منذ ثانيتين', $diff);\n    }\n\n    public function testSetLocaleToAutoFallback()\n    {\n        $currentLocale = setlocale(LC_ALL, '0');\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->resetMessages();\n\n        $translator->setLocale('en');\n        $directories = $translator->getDirectories();\n        $directory = sys_get_temp_dir().'/carbon'.mt_rand(0, 9999999);\n\n        try {\n            $this->setLocaleOrSkip('fr_FR.UTF-8', 'fr_FR.utf8', 'fr_FR', 'fr');\n\n            mkdir($directory);\n\n            $files = [\n                'en',\n                'zh_Hans',\n                'zh',\n                'fr',\n                'fr_CA',\n            ];\n\n            foreach ($files as $file) {\n                copy(__DIR__.\"/../../src/Carbon/Lang/$file.php\", \"$directory/$file.php\");\n            }\n\n            $translator->setDirectories([$directory]);\n\n            /** @var Translator $translator */\n            $translator = Carbon::getTranslator();\n            $translator->resetMessages();\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n            setlocale(LC_ALL, $currentLocale);\n\n            $this->assertSame('fr', $locale);\n            $this->assertSame('il y a 2 secondes', $diff);\n\n            $this->setLocaleOrSkip('zh_CN.UTF-8', 'zh_CN.utf8', 'zh_CN', 'zh');\n\n            /** @var Translator $translator */\n            $translator = Carbon::getTranslator();\n            $translator->resetMessages();\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n            setlocale(LC_ALL, $currentLocale);\n\n            $this->assertSame('zh', $locale);\n            $this->assertSame('2秒前', $diff);\n\n            $this->setLocaleOrSkip('yo_NG.UTF-8', 'yo_NG.utf8', 'yo_NG', 'yo');\n\n            /** @var Translator $translator */\n            $translator = Carbon::getTranslator();\n            $translator->resetMessages();\n            Carbon::setLocale('en');\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n            setlocale(LC_ALL, $currentLocale);\n\n            $this->assertSame('en', $locale);\n            $this->assertSame('2 seconds ago', $diff);\n        } finally {\n            setlocale(LC_ALL, $currentLocale);\n            $translator->setDirectories($directories);\n            $this->remove($directory);\n        }\n    }\n\n    /**\n     * @see \\Tests\\Carbon\\LocalizationTest::testSetLocale\n     * @see \\Tests\\Carbon\\LocalizationTest::testSetTranslator\n     */\n    public static function dataForLocales(): array\n    {\n        return [\n            'af' => ['af'],\n            'ar' => ['ar'],\n            'ar_DZ' => ['ar_DZ'],\n            'ar_KW' => ['ar_KW'],\n            'ar_LY' => ['ar_LY'],\n            'ar_MA' => ['ar_MA'],\n            'ar_SA' => ['ar_SA'],\n            'ar_Shakl' => ['ar_Shakl'],\n            'ar_TN' => ['ar_TN'],\n            'az' => ['az'],\n            'be' => ['be'],\n            'bg' => ['bg'],\n            'bm' => ['bm'],\n            'bn' => ['bn'],\n            'bo' => ['bo'],\n            'br' => ['br'],\n            'bs' => ['bs'],\n            'bs_BA' => ['bs_BA'],\n            'ca' => ['ca'],\n            'cs' => ['cs'],\n            'cv' => ['cv'],\n            'cy' => ['cy'],\n            'da' => ['da'],\n            'de' => ['de'],\n            'de_AT' => ['de_AT'],\n            'de_CH' => ['de_CH'],\n            'dv' => ['dv'],\n            'dv_MV' => ['dv_MV'],\n            'el' => ['el'],\n            'en' => ['en'],\n            'en_AU' => ['en_AU'],\n            'en_CA' => ['en_CA'],\n            'en_GB' => ['en_GB'],\n            'en_IE' => ['en_IE'],\n            'en_IL' => ['en_IL'],\n            'en_NZ' => ['en_NZ'],\n            'eo' => ['eo'],\n            'es' => ['es'],\n            'es_DO' => ['es_DO'],\n            'es_US' => ['es_US'],\n            'et' => ['et'],\n            'eu' => ['eu'],\n            'fa' => ['fa'],\n            'fi' => ['fi'],\n            'fo' => ['fo'],\n            'fr' => ['fr'],\n            'fr_CA' => ['fr_CA'],\n            'fr_CH' => ['fr_CH'],\n            'fy' => ['fy'],\n            'gd' => ['gd'],\n            'gl' => ['gl'],\n            'gom_Latn' => ['gom_Latn'],\n            'gu' => ['gu'],\n            'he' => ['he'],\n            'hi' => ['hi'],\n            'hr' => ['hr'],\n            'hu' => ['hu'],\n            'hy' => ['hy'],\n            'hy_AM' => ['hy_AM'],\n            'id' => ['id'],\n            'is' => ['is'],\n            'it' => ['it'],\n            'ja' => ['ja'],\n            'jv' => ['jv'],\n            'ka' => ['ka'],\n            'kk' => ['kk'],\n            'km' => ['km'],\n            'kn' => ['kn'],\n            'ko' => ['ko'],\n            'ku' => ['ku'],\n            'ky' => ['ky'],\n            'lb' => ['lb'],\n            'lo' => ['lo'],\n            'lt' => ['lt'],\n            'lv' => ['lv'],\n            'me' => ['me'],\n            'mi' => ['mi'],\n            'mk' => ['mk'],\n            'ml' => ['ml'],\n            'mn' => ['mn'],\n            'mr' => ['mr'],\n            'ms' => ['ms'],\n            'ms_MY' => ['ms_MY'],\n            'mt' => ['mt'],\n            'my' => ['my'],\n            'nb' => ['nb'],\n            'ne' => ['ne'],\n            'nl' => ['nl'],\n            'nl_BE' => ['nl_BE'],\n            'nn' => ['nn'],\n            'no' => ['no'],\n            'oc' => ['oc'],\n            'pa_IN' => ['pa_IN'],\n            'pl' => ['pl'],\n            'ps' => ['ps'],\n            'pt' => ['pt'],\n            'pt_BR' => ['pt_BR'],\n            'ro' => ['ro'],\n            'ru' => ['ru'],\n            'sd' => ['sd'],\n            'se' => ['se'],\n            'sh' => ['sh'],\n            'si' => ['si'],\n            'sk' => ['sk'],\n            'sl' => ['sl'],\n            'sq' => ['sq'],\n            'sr' => ['sr'],\n            'sr_Cyrl' => ['sr_Cyrl'],\n            'sr_Cyrl_ME' => ['sr_Cyrl_ME'],\n            'sr_Latn_ME' => ['sr_Latn_ME'],\n            'sr_ME' => ['sr_ME'],\n            'ss' => ['ss'],\n            'sv' => ['sv'],\n            'sw' => ['sw'],\n            'ta' => ['ta'],\n            'te' => ['te'],\n            'tet' => ['tet'],\n            'tg' => ['tg'],\n            'th' => ['th'],\n            'tl_PH' => ['tl_PH'],\n            'tlh' => ['tlh'],\n            'tr' => ['tr'],\n            'tzl' => ['tzl'],\n            'tzm' => ['tzm'],\n            'tzm_Latn' => ['tzm_Latn'],\n            'ug_CN' => ['ug_CN'],\n            'uk' => ['uk'],\n            'ur' => ['ur'],\n            'uz' => ['uz'],\n            'uz_Latn' => ['uz_Latn'],\n            'vi' => ['vi'],\n            'yo' => ['yo'],\n            'zh' => ['zh'],\n            'zh_CN' => ['zh_CN'],\n            'zh_HK' => ['zh_HK'],\n            'zh_TW' => ['zh_TW'],\n        ];\n    }\n\n    #[DataProvider('dataForLocales')]\n    public function testSetLocale(string $locale)\n    {\n        Carbon::setLocale($locale);\n        $this->assertTrue($this->areSameLocales($locale, Carbon::getLocale()));\n    }\n\n    #[DataProvider('dataForLocales')]\n    public function testSetTranslator(string $locale)\n    {\n        $ori = Carbon::getTranslator();\n        $t = new Translator($locale);\n        $t->addLoader('array', new ArrayLoader());\n        Carbon::setTranslator($t);\n\n        /** @var Translator $t */\n        $t = Carbon::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertTrue($this->areSameLocales($locale, $t->getLocale()));\n        $this->assertTrue($this->areSameLocales($locale, Carbon::now()->locale()));\n        Carbon::setTranslator($ori);\n    }\n\n    public function testSetLocaleWithKnownLocale()\n    {\n        Carbon::setLocale('fr');\n\n        $this->assertSame('fr', Carbon::getLocale());\n    }\n\n    #[TestWith(['DE'])]\n    #[TestWith(['pt-BR'])]\n    #[TestWith(['pt-br'])]\n    #[TestWith(['PT-br'])]\n    #[TestWith(['PT-BR'])]\n    #[TestWith(['pt_br'])]\n    #[TestWith(['PT_br'])]\n    #[TestWith(['PT_BR'])]\n    public function testSetLocaleWithMalformedLocale(string $malformedLocale)\n    {\n        Carbon::setLocale($malformedLocale);\n        $split = preg_split('/[-_]/', $malformedLocale);\n\n        $this->assertSame(\n            strtolower($split[0]).(\\count($split) === 1 ? '' : '_'.strtoupper($split[1])),\n            Carbon::getLocale(),\n        );\n    }\n\n    public function testSetLocaleWithNonExistingLocale()\n    {\n        Carbon::setLocale('pt-XX');\n\n        $this->assertSame('pt', Carbon::getLocale());\n    }\n\n    public function testSetLocaleWithUnknownLocale()\n    {\n        Carbon::setLocale('zz');\n\n        $this->assertSame('en', Carbon::getLocale());\n    }\n\n    public function testCustomTranslation()\n    {\n        Carbon::setLocale('en');\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        /** @var MessageCatalogue $messages */\n        $messages = $translator->getCatalogue('en');\n        $resources = $messages->all('messages');\n        $resources['day'] = '1 boring day|%count% boring days';\n        $translator->addResource('array', $resources, 'en');\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        $this->assertSame('3 boring days 4 hours', $diff);\n\n        Carbon::setLocale('en');\n    }\n\n    public function testCustomLocalTranslation()\n    {\n        $boringLanguage = 'en_Overboring';\n        $translator = Translator::get($boringLanguage);\n        $translator->setTranslations([\n            'day' => ':count boring day|:count boring days',\n        ]);\n\n        $date1 = Carbon::create(2018, 1, 1, 0, 0, 0);\n        $date2 = Carbon::create(2018, 1, 4, 4, 0, 0);\n\n        $this->assertSame('3 boring days before', $date1->locale($boringLanguage)->diffForHumans($date2));\n\n        $translator->setTranslations([\n            'before' => function ($time) {\n                return '['.strtoupper($time).']';\n            },\n        ]);\n\n        $this->assertSame('[3 BORING DAYS]', $date1->locale($boringLanguage)->diffForHumans($date2));\n\n        $meridiem = Translator::get('ru')->trans('meridiem', [\n            'hours' => 9,\n            'minutes' => 30,\n            'seconds' => 0,\n        ]);\n\n        $this->assertSame('утра', $meridiem);\n    }\n\n    public function testAddCustomTranslation()\n    {\n        $enBoring = [\n            'day' => '1 boring day|%count% boring days',\n        ];\n\n        Carbon::setLocale('en');\n        $this->assertSame('en', Carbon::getLocale());\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages('en', $enBoring);\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        $this->assertSame('3 boring days 4 hours', $diff);\n\n        $translator->resetMessages('en');\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        $this->assertSame('3 days 4 hours', $diff);\n\n        $translator->setMessages('en_Boring', $enBoring);\n\n        $this->assertSame($enBoring, $translator->getMessages('en_Boring'));\n\n        $messages = $translator->getMessages();\n\n        $this->assertArrayHasKey('en', $messages);\n        $this->assertArrayHasKey('en_Boring', $messages);\n        $this->assertSame($enBoring, $messages['en_Boring']);\n\n        Carbon::setLocale('en_Boring');\n        $this->assertSame('en_Boring', Carbon::getLocale());\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        // en_Boring inherit en because it starts with \"en\", see symfony-translation behavior\n        $this->assertSame('3 boring days 4 hours', $diff);\n\n        Carbon::setLocale('en');\n\n        $diff = Carbon::parse('2018-01-01')\n            ->diffForHumans('2018-01-04 04:00', [\n                'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n                'parts' => 2,\n                'locale' => 'de',\n            ]);\n\n        $this->assertSame('3 Tage 4 Stunden', $diff);\n\n        $translator->resetMessages();\n\n        $diff = Carbon::parse('2018-01-01')\n            ->diffForHumans('2018-01-04 04:00', [\n                'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n                'parts' => 2,\n                'locale' => 'de',\n            ]);\n\n        $this->assertSame('3 Tage 4 Stunden', $diff);\n\n        $this->assertSame([], $translator->getMessages());\n\n        $this->assertSame('en', Carbon::getLocale());\n    }\n\n    public function testLocaleOption()\n    {\n        $translator = Translator::get('en_Boring');\n        $translator->setTranslations([\n            'day' => ':count boring day|:count boring days',\n        ]);\n\n        $diff = Carbon::parse('2018-01-01')\n            ->diffForHumans('2018-01-04 04:00', [\n                'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n                'parts' => 2,\n                'locale' => 'en_Boring',\n            ]);\n\n        $translator->setLocale('en');\n        $translator->resetMessages();\n\n        $this->assertSame('3 boring days 4 hours', $diff);\n    }\n\n    public function testCustomWeekStart()\n    {\n        Carbon::setLocale('ru');\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n\n        $translator->setMessages('ru', [\n            'first_day_of_week' => 1,\n        ]);\n\n        $calendar = Carbon::parse('2018-07-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-07 00:00:00'));\n        $this->assertSame('В следующий вторник, в 0:00', $calendar);\n        $calendar = Carbon::parse('2018-07-12 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-12 00:00:00'));\n        $this->assertSame('В воскресенье, в 0:00', $calendar);\n\n        $translator->setMessages('ru', [\n            'first_day_of_week' => 5,\n        ]);\n\n        $calendar = Carbon::parse('2018-07-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-07 00:00:00'));\n        $this->assertSame('Во вторник, в 0:00', $calendar);\n        $calendar = Carbon::parse('2018-07-12 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-12 00:00:00'));\n        $this->assertSame('В следующее воскресенье, в 0:00', $calendar);\n\n        $translator->resetMessages('ru');\n\n        Carbon::setLocale('en');\n    }\n\n    public function testAddAndRemoveDirectory()\n    {\n        $directory = sys_get_temp_dir().'/carbon'.mt_rand(0, 9999999);\n        mkdir($directory);\n        copy(__DIR__.'/../../src/Carbon/Lang/fr.php', \"$directory/foo.php\");\n        copy(__DIR__.'/../../src/Carbon/Lang/fr.php', \"$directory/bar.php\");\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        Carbon::setLocale('en');\n\n        Carbon::setLocale('foo');\n        $this->assertSame('Saturday', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        $translator->addDirectory($directory);\n\n        Carbon::setLocale('foo');\n        $this->assertSame('samedi', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        Carbon::setLocale('en');\n        $translator->removeDirectory($directory);\n\n        Carbon::setLocale('bar');\n        $this->assertSame('Saturday', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        Carbon::setLocale('foo');\n        $this->assertSame('samedi', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        Carbon::setLocale('en');\n    }\n\n    public function testLocaleHasShortUnits()\n    {\n        $withShortUnit = [\n            'year' => 'foo',\n            'y' => 'bar',\n        ];\n        $withShortHourOnly = [\n            'year' => 'foo',\n            'y' => 'foo',\n            'day' => 'foo',\n            'd' => 'foo',\n            'hour' => 'foo',\n            'h' => 'bar',\n        ];\n        $withoutShortUnit = [\n            'year' => 'foo',\n        ];\n        $withSameShortUnit = [\n            'year' => 'foo',\n            'y' => 'foo',\n        ];\n        $withShortHourOnlyLocale = 'zz_'.ucfirst(strtolower('withShortHourOnly'));\n        $withShortUnitLocale = 'zz_'.ucfirst(strtolower('withShortUnit'));\n        $withoutShortUnitLocale = 'zz_'.ucfirst(strtolower('withoutShortUnit'));\n        $withSameShortUnitLocale = 'zz_'.ucfirst(strtolower('withSameShortUnit'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withShortUnitLocale, $withShortUnit);\n        $translator->setMessages($withShortHourOnlyLocale, $withShortHourOnly);\n        $translator->setMessages($withoutShortUnitLocale, $withoutShortUnit);\n        $translator->setMessages($withSameShortUnitLocale, $withSameShortUnit);\n\n        $this->assertTrue(Carbon::localeHasShortUnits($withShortUnitLocale));\n        $this->assertTrue(Carbon::localeHasShortUnits($withShortHourOnlyLocale));\n        $this->assertFalse(Carbon::localeHasShortUnits($withoutShortUnitLocale));\n        $this->assertFalse(Carbon::localeHasShortUnits($withSameShortUnitLocale));\n    }\n\n    public function testLocaleHasDiffSyntax()\n    {\n        $withDiffSyntax = [\n            'year' => 'foo',\n            'ago' => ':time ago',\n            'from_now' => ':time from now',\n            'after' => ':time after',\n            'before' => ':time before',\n        ];\n        $withoutDiffSyntax = [\n            'year' => 'foo',\n        ];\n        $withDiffSyntaxLocale = 'zz_'.ucfirst(strtolower('withDiffSyntax'));\n        $withoutDiffSyntaxLocale = 'zz_'.ucfirst(strtolower('withoutDiffSyntax'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withDiffSyntaxLocale, $withDiffSyntax);\n        $translator->setMessages($withoutDiffSyntaxLocale, $withoutDiffSyntax);\n\n        $this->assertTrue(Carbon::localeHasDiffSyntax($withDiffSyntaxLocale));\n        $this->assertFalse(Carbon::localeHasDiffSyntax($withoutDiffSyntaxLocale));\n\n        $this->assertTrue(Carbon::localeHasDiffSyntax('ka'));\n        $this->assertFalse(Carbon::localeHasDiffSyntax('foobar'));\n    }\n\n    public function testLocaleHasDiffOneDayWords()\n    {\n        $withOneDayWords = [\n            'year' => 'foo',\n            'diff_now' => 'just now',\n            'diff_yesterday' => 'yesterday',\n            'diff_tomorrow' => 'tomorrow',\n        ];\n        $withoutOneDayWords = [\n            'year' => 'foo',\n        ];\n        $withOneDayWordsLocale = 'zz_'.ucfirst(strtolower('withOneDayWords'));\n        $withoutOneDayWordsLocale = 'zz_'.ucfirst(strtolower('withoutOneDayWords'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withOneDayWordsLocale, $withOneDayWords);\n        $translator->setMessages($withoutOneDayWordsLocale, $withoutOneDayWords);\n\n        $this->assertTrue(Carbon::localeHasDiffOneDayWords($withOneDayWordsLocale));\n        $this->assertFalse(Carbon::localeHasDiffOneDayWords($withoutOneDayWordsLocale));\n    }\n\n    public function testLocaleHasDiffTwoDayWords()\n    {\n        $withTwoDayWords = [\n            'year' => 'foo',\n            'diff_before_yesterday' => 'before yesterday',\n            'diff_after_tomorrow' => 'after tomorrow',\n        ];\n        $withoutTwoDayWords = [\n            'year' => 'foo',\n        ];\n        $withTwoDayWordsLocale = 'zz_'.ucfirst(strtolower('withTwoDayWords'));\n        $withoutTwoDayWordsLocale = 'zz_'.ucfirst(strtolower('withoutTwoDayWords'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withTwoDayWordsLocale, $withTwoDayWords);\n        $translator->setMessages($withoutTwoDayWordsLocale, $withoutTwoDayWords);\n\n        $this->assertTrue(Carbon::localeHasDiffTwoDayWords($withTwoDayWordsLocale));\n        $this->assertFalse(Carbon::localeHasDiffTwoDayWords($withoutTwoDayWordsLocale));\n    }\n\n    public function testLocaleHasPeriodSyntax()\n    {\n        $withPeriodSyntax = [\n            'year' => 'foo',\n            'period_recurrences' => 'once|%count% times',\n            'period_interval' => 'every :interval',\n            'period_start_date' => 'from :date',\n            'period_end_date' => 'to :date',\n        ];\n        $withoutPeriodSyntax = [\n            'year' => 'foo',\n        ];\n        $withPeriodSyntaxLocale = 'zz_'.ucfirst(strtolower('withPeriodSyntax'));\n        $withoutPeriodSyntaxLocale = 'zz_'.ucfirst(strtolower('withoutPeriodSyntax'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withPeriodSyntaxLocale, $withPeriodSyntax);\n        $translator->setMessages($withoutPeriodSyntaxLocale, $withoutPeriodSyntax);\n\n        $this->assertTrue(Carbon::localeHasPeriodSyntax($withPeriodSyntaxLocale));\n        $this->assertFalse(Carbon::localeHasPeriodSyntax($withoutPeriodSyntaxLocale));\n\n        $this->assertTrue(Carbon::localeHasPeriodSyntax('nl'));\n    }\n\n    public function testGetAvailableLocales()\n    {\n        $this->assertCount(\\count(glob(__DIR__.'/../../src/Carbon/Lang/*.php')), Carbon::getAvailableLocales());\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages('zz_ZZ', []);\n        $this->assertContains('zz_ZZ', Carbon::getAvailableLocales());\n\n        Carbon::setTranslator(new SymfonyTranslator('en'));\n        $this->assertSame(['en'], Carbon::getAvailableLocales());\n    }\n\n    public function testGetAvailableLocalesInfo()\n    {\n        $infos = Carbon::getAvailableLocalesInfo();\n        $this->assertCount(\\count(Carbon::getAvailableLocales()), Carbon::getAvailableLocalesInfo());\n        $this->assertArrayHasKey('en', $infos);\n        $this->assertInstanceOf(Language::class, $infos['en']);\n        $this->assertSame('English', $infos['en']->getIsoName());\n    }\n\n    public function testGeorgianSpecialFromNowTranslation()\n    {\n        $diff = Carbon::now()->locale('ka')->addWeeks(3)->diffForHumans();\n\n        $this->assertSame('3 კვირაში', $diff);\n    }\n\n    public function testSinhaleseSpecialAfterTranslation()\n    {\n        $diff = Carbon::now()->locale('si')->addDays(3)->diffForHumans(Carbon::now());\n\n        $this->assertSame('දින 3 න්', $diff);\n    }\n\n    public function testWeekDayMultipleForms()\n    {\n        $date = Carbon::parse('2018-10-10')->locale('ru');\n\n        $this->assertSame('в среду', $date->isoFormat('[в] dddd'));\n        $this->assertSame('среда, 10 октября 2018', $date->isoFormat('dddd, D MMMM YYYY'));\n        $this->assertSame('среда', $date->dayName);\n        $this->assertSame('ср', $date->isoFormat('dd'));\n\n        $date = Carbon::parse('2018-10-10')->locale('uk');\n\n        $this->assertSame('середа, 10', $date->isoFormat('dddd, D'));\n        $this->assertSame('в середу', $date->isoFormat('[в] dddd'));\n        $this->assertSame('минулої середи', $date->isoFormat('[минулої] dddd'));\n    }\n\n    public function testTranslationCustomWithCustomTranslator()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Translator does not implement Symfony\\Contracts\\Translation\\TranslatorInterface '.\n            'and Symfony\\Component\\Translation\\TranslatorBagInterface. '.\n            'Symfony\\Component\\Translation\\IdentityTranslator has been given.',\n        ));\n\n        $date = Carbon::create(2018, 1, 1, 0, 0, 0);\n        $date->setLocalTranslator(new IdentityTranslator());\n\n        $date->getTranslationMessage('foo');\n    }\n\n    public function testNoLocaleTranslator()\n    {\n        $this->expectException(InvalidArgumentException::class);\n        $this->expectExceptionMessage(\n            'Tests\\Carbon\\Fixtures\\NoLocaleTranslator does neither implements '.\n            'Symfony\\Contracts\\Translation\\LocaleAwareInterface nor getLocale() method.',\n        );\n\n        $date = Carbon::create(2018, 1, 1, 0, 0, 0);\n        $date->setLocalTranslator(new NoLocaleTranslator());\n\n        $date->locale;\n    }\n\n    public function testTranslateTimeStringTo()\n    {\n        $date = Carbon::parse('2019-07-05')->locale('de');\n        $baseString = $date->isoFormat('LLLL');\n\n        $this->assertSame('Freitag, 5. Juli 2019 00:00', $baseString);\n        $this->assertSame('Friday, 5. July 2019 00:00', $date->translateTimeStringTo($baseString));\n        $this->assertSame('vendredi, 5. juillet 2019 00:00', $date->translateTimeStringTo($baseString, 'fr'));\n    }\n\n    public function testFallbackLocales()\n    {\n        // /!\\ Used for backward compatibility, please avoid this method\n        // @see testMultiLocales() as preferred method\n\n        $myDialect = 'xx_MY_Dialect';\n        $secondChoice = 'xy_MY_Dialect';\n        $thirdChoice = 'it_CH';\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n\n        $translator->setMessages($myDialect, [\n            'day' => ':count yub yub',\n        ]);\n\n        $translator->setMessages($secondChoice, [\n            'day' => ':count buza',\n            'hour' => ':count ohto',\n        ]);\n\n        Carbon::setLocale($myDialect);\n\n        $this->assertNull(Carbon::getFallbackLocale());\n\n        Carbon::setFallbackLocale($thirdChoice);\n\n        $this->assertSame($thirdChoice, Carbon::getFallbackLocale());\n        $this->assertSame('3 yub yub e 5 ora fa', Carbon::now()->subDays(3)->subHours(5)->ago([\n            'parts' => 2,\n            'join' => true,\n        ]));\n\n        Carbon::setTranslator(new Translator('en'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n\n        $translator->setMessages($myDialect, [\n            'day' => ':count yub yub',\n        ]);\n\n        $translator->setMessages($secondChoice, [\n            'day' => ':count buza',\n            'hour' => ':count ohto',\n        ]);\n\n        Carbon::setLocale($myDialect);\n        Carbon::setFallbackLocale($secondChoice);\n        Carbon::setFallbackLocale($thirdChoice);\n\n        $this->assertSame($thirdChoice, Carbon::getFallbackLocale());\n        $this->assertSame('3 yub yub e 5 ohto fa', Carbon::now()->subDays(3)->subHours(5)->ago([\n            'parts' => 2,\n            'join' => true,\n        ]));\n\n        Carbon::setTranslator(new IdentityTranslator());\n\n        $this->assertNull(Carbon::getFallbackLocale());\n\n        Carbon::setTranslator(new Translator('en'));\n    }\n\n    public function testMultiLocales()\n    {\n        $myDialect = 'xx_MY_Dialect';\n        $secondChoice = 'xy_MY_Dialect';\n        $thirdChoice = 'it_CH';\n\n        Translator::get($myDialect)->setTranslations([\n            'day' => ':count yub yub',\n        ]);\n\n        Translator::get($secondChoice)->setTranslations([\n            'day' => ':count buza',\n            'hour' => ':count ohto',\n        ]);\n\n        $date = Carbon::now()->subDays(3)->subHours(5)->locale($myDialect, $secondChoice, $thirdChoice);\n\n        $this->assertSame('3 yub yub e 5 ohto fa', $date->ago([\n            'parts' => 2,\n            'join' => true,\n        ]));\n    }\n\n    public function testStandAloneMonthsInLLLFormat()\n    {\n        $this->assertSame(\n            '29 февраля 2020 г., 12:24',\n            Carbon::parse('2020-02-29 12:24:00')->locale('ru_RU')->isoFormat('LLL'),\n            'Use \"months\" for date formatting',\n        );\n    }\n\n    public function testStandAloneMonthName()\n    {\n        $this->assertSame(\n            'февраль',\n            Carbon::parse('2020-02-29 12:24:00')->locale('ru_RU')->monthName,\n            'Use \"months_standalone\" the month alone',\n        );\n    }\n\n    public function testShortMonthNameInFormat()\n    {\n        $this->assertSame(\n            '29. мая',\n            Carbon::parse('2020-05-29 12:24:00')->locale('ru_RU')->isoFormat('D. MMM'),\n            'Use \"months_short\" for date formatting',\n        );\n        $this->assertSame(\n            'май',\n            Carbon::parse('2020-05-29 12:24:00')->locale('ru_RU')->isoFormat('MMM'),\n            'Use \"months_short\" for date formatting',\n        );\n    }\n\n    public function testStandAloneShortMonthName()\n    {\n        $this->assertSame(\n            'май',\n            Carbon::parse('2020-05-29 12:24:00')->locale('ru_RU')->shortMonthName,\n            'Use \"months_short_standalone\" the month alone',\n        );\n    }\n\n    public function testAgoDeclension()\n    {\n        $this->assertSame(\n            'година',\n            CarbonInterval::hour()->locale('uk')->forHumans(['aUnit' => true]),\n        );\n\n        $this->assertSame(\n            'годину тому',\n            Carbon::now()->subHour()->locale('uk')->diffForHumans(['aUnit' => true]),\n        );\n    }\n\n    public function testAustriaGermanJanuary()\n    {\n        $this->assertSame(\n            'Jänner',\n            Carbon::parse('2020-01-15')->locale('de_AT')->monthName,\n        );\n\n        $this->assertSame(\n            'Januar',\n            Carbon::parse('2020-01-15')->locale('de')->monthName,\n        );\n\n        $this->assertSame(\n            'Februar',\n            Carbon::parse('2020-02-15')->locale('de_AT')->monthName,\n        );\n\n        $this->assertSame(\n            'Februar',\n            Carbon::parse('2020-02-15')->locale('de')->monthName,\n        );\n    }\n\n    public function testDeclensionModes()\n    {\n        Carbon::setTestNow('2022-12-30');\n        $this->assertSame(\n            '2 жил 3 сар 1 өдөр 1с өмнө',\n            Carbon::now()\n                ->subYears(2)\n                ->subMonths(3)\n                ->subDay()\n                ->subSecond()\n                ->locale('mn')\n                ->diffForHumans(null, null, true, 4)\n        );\n        $this->assertSame(\n            '2 жил 3 сар 1 өдөр 1 секундын өмнө',\n            Carbon::now()\n                ->subYears(2)\n                ->subMonths(3)\n                ->subDay()\n                ->subSecond()\n                ->locale('mn')\n                ->diffForHumans(null, null, false, 4)\n        );\n    }\n\n    /** @see https://github.com/CarbonPHP/carbon/issues/57 */\n    public function testResetMessagesMemoryConsumption()\n    {\n        Carbon::getTranslator()->resetMessages('en');\n\n        $start = memory_get_usage();\n\n        for ($i = 0; $i < 100; $i++) {\n            Carbon::getTranslator()->resetMessages('en');\n        }\n\n        $consumedMemory = memory_get_usage() - $start;\n\n        $this->assertLessThan(100_000, $consumedMemory);\n    }\n\n    #[TestWith(['мая', 'May'])]\n    #[TestWith(['май', 'May'])]\n    #[TestWith(['февраль', 'February'])]\n    #[TestWith(['февраля', 'February'])]\n    public function testTranslateMonthsEitherStandaloneOrNot(string $ru, string $en)\n    {\n        $this->assertSame($en, Carbon::translateTimeString($ru, 'ru', 'en'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/MacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse CarbonTimezoneTrait;\nuse DateTime;\nuse SubCarbon;\nuse Tests\\AbstractTestCaseWithOldNow;\nuse Tests\\Carbon\\Fixtures\\FooBar;\nuse Tests\\Carbon\\Fixtures\\Mixin;\n\nclass MacroTest extends AbstractTestCaseWithOldNow\n{\n    public function testInstance()\n    {\n        $this->assertInstanceOf(DateTime::class, $this->now);\n        $this->assertInstanceOf(Carbon::class, $this->now);\n    }\n\n    public function testCarbonIsMacroableWhenNotCalledDynamically()\n    {\n        if (!\\function_exists('easter_days')) {\n            $this->markTestSkipped('This test requires ext-calendar to be enabled.');\n        }\n\n        Carbon::macro('easterDays', function ($year = 2019) {\n            return easter_days($year);\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame(22, $now->easterDays(2020));\n        $this->assertSame(31, $now->easterDays());\n\n        Carbon::macro('otherParameterName', function ($other = true) {\n            return $other;\n        });\n\n        $this->assertTrue($now->otherParameterName());\n    }\n\n    public function testCarbonIsMacroableWhenNotCalledDynamicallyUsingThis()\n    {\n        if (!\\function_exists('easter_days')) {\n            $this->markTestSkipped('This test requires ext-calendar to be enabled.');\n        }\n\n        Carbon::macro('diffFromEaster', function ($year) {\n            /** @var CarbonInterface $date */\n            $date = $this;\n\n            return $date->toDateTime()->diff(\n                Carbon::create($year, 3, 21)\n                    ->setTimezone($date->getTimezone())\n                    ->addDays(easter_days($year))\n                    ->endOfDay(),\n            );\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame(1020, $now->diffFromEaster(2020)->days);\n    }\n\n    public function testCarbonIsMacroableWhenCalledStatically()\n    {\n        if (!\\function_exists('easter_days')) {\n            $this->markTestSkipped('This test requires ext-calendar to be enabled.');\n        }\n\n        Carbon::macro('easterDate', function ($year) {\n            return Carbon::create($year, 3, 21)->addDays(easter_days($year));\n        });\n\n        $this->assertSame('05/04', Carbon::easterDate(2015)->format('d/m'));\n    }\n\n    public function testCarbonIsMacroableWithNonClosureCallables()\n    {\n        Carbon::macro('lower', 'strtolower');\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('abc', $now->lower('ABC'));\n        $this->assertSame('abc', Carbon::lower('ABC'));\n    }\n\n    public function testCarbonIsMixinable()\n    {\n        include_once __DIR__.'/Fixtures/Mixin.php';\n        $mixin = new Mixin('America/New_York');\n        Carbon::mixin($mixin);\n        Carbon::setUserTimezone('America/Belize');\n\n        /** @var mixed $date */\n        $date = Carbon::parse('2000-01-01 12:00:00', 'UTC');\n\n        $this->assertSame('06:00 America/Belize', $date->userFormat('H:i e'));\n    }\n\n    public function testMacroProperties()\n    {\n        // Let say a school year start 5 months before, so school year 2018 is august 2017 to july 2018,\n        // Then you can create get/set method this way:\n        Carbon::macro('setSchoolYear', function ($schoolYear) {\n            /** @var CarbonInterface $date */\n            $date = $this;\n\n            $date->year = $schoolYear;\n\n            if ($date->month > 7) {\n                $date->year--;\n            }\n        });\n\n        Carbon::macro('getSchoolYear', function () {\n            /** @var CarbonInterface $date */\n            $date = $this;\n\n            $schoolYear = $date->year;\n\n            if ($date->month > 7) {\n                $schoolYear++;\n            }\n\n            return $schoolYear;\n        });\n        // This will make getSchoolYear/setSchoolYear as usual, but get/set prefix will also enable\n        // getter and setter for the ->schoolYear property\n\n        /** @var mixed $date */\n        $date = Carbon::parse('2016-06-01');\n\n        $this->assertSame(2016, $date->schoolYear);\n\n        $date->addMonths(3);\n\n        $this->assertSame(2017, $date->schoolYear);\n\n        $date->schoolYear++;\n\n        $this->assertSame(2018, $date->schoolYear);\n\n        $this->assertSame('2017-09-01', $date->format('Y-m-d'));\n\n        $date->schoolYear = 2020;\n\n        $this->assertSame('2019-09-01', $date->format('Y-m-d'));\n    }\n\n    public function testLocalMacroProperties()\n    {\n        /** @var mixed $date */\n        $date = Carbon::parse('2016-06-01')->settings([\n            'macros' => [\n                'setSchoolYear' => function ($schoolYear) {\n                    /** @var CarbonInterface $date */\n                    $date = $this;\n\n                    $date->year = $schoolYear;\n\n                    if ($date->month > 7) {\n                        $date->year--;\n                    }\n                },\n                'getSchoolYear' => function () {\n                    /** @var CarbonInterface $date */\n                    $date = $this;\n\n                    $schoolYear = $date->year;\n\n                    if ($date->month > 7) {\n                        $schoolYear++;\n                    }\n\n                    return $schoolYear;\n                },\n            ],\n        ]);\n\n        $this->assertTrue($date->hasLocalMacro('getSchoolYear'));\n        $this->assertFalse(Carbon::now()->hasLocalMacro('getSchoolYear'));\n        $this->assertFalse(Carbon::hasMacro('getSchoolYear'));\n\n        $this->assertSame(2016, $date->schoolYear);\n\n        $date->addMonths(3);\n\n        $this->assertSame(2017, $date->schoolYear);\n\n        $date->schoolYear++;\n\n        $this->assertSame(2018, $date->schoolYear);\n\n        $this->assertSame('2017-09-01', $date->format('Y-m-d'));\n\n        $date->schoolYear = 2020;\n\n        $this->assertSame('2019-09-01', $date->format('Y-m-d'));\n    }\n\n    public function testMacroOverridingMethod()\n    {\n        Carbon::macro('setDate', function ($dateString) {\n            /** @var CarbonInterface $date */\n            $date = $this;\n\n            $date->modify($dateString);\n        });\n\n        /** @var mixed $date */\n        $date = Carbon::parse('2016-06-01 11:25:36');\n        $date->date = '1997-08-26 04:13:56';\n\n        $this->assertSame('1997-08-26 04:13:56', $date->format('Y-m-d H:i:s'));\n\n        $date->setDate(2001, 4, 13);\n\n        $this->assertSame('2001-04-13 04:13:56', $date->format('Y-m-d H:i:s'));\n    }\n\n    public function testCarbonRaisesExceptionWhenStaticMacroIsNotFound()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method Carbon\\Carbon::nonExistingStaticMacro does not exist.',\n        ));\n\n        Carbon::nonExistingStaticMacro();\n    }\n\n    public function testCarbonRaisesExceptionWhenMacroIsNotFound()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method nonExistingMacro does not exist.',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $date->nonExistingMacro();\n    }\n\n    public function testTraitMixin()\n    {\n        Carbon::mixin(FooBar::class);\n        Carbon::setTestNow('2019-07-19 00:00:00');\n\n        $this->assertSame('supergirl / Friday / mutable', Carbon::super('girl'));\n        $this->assertSame('superboy / Thursday / mutable', Carbon::parse('2019-07-18')->super('boy'));\n\n        $this->assertInstanceOf(Carbon::class, Carbon::me());\n\n        $this->assertFalse(Carbon::noThis());\n        $this->assertFalse(Carbon::now()->noThis());\n    }\n\n    public function testTraitWithNamedParameters()\n    {\n        require_once __DIR__.'/../Fixtures/CarbonTimezoneTrait.php';\n\n        Carbon::mixin(CarbonTimezoneTrait::class);\n        $now = Carbon::now();\n        $now = eval(\"return \\$now->toAppTz(tz: 'Europe/Paris');\");\n\n        $this->assertSame('Europe/Paris', $now->format('e'));\n    }\n\n    public function testSerializationAfterTraitChaining()\n    {\n        require_once __DIR__.'/../Fixtures/CarbonTimezoneTrait.php';\n\n        Carbon::mixin(CarbonTimezoneTrait::class);\n        Carbon::setTestNow('2023-05-24 14:49');\n\n        $date = Carbon::toAppTz(false, 'Europe/Paris');\n\n        $this->assertSame('2023-05-24 16:49 Europe/Paris', unserialize(serialize($date))->format('Y-m-d H:i e'));\n\n        $date = Carbon::parse('2023-06-12 11:49')->toAppTz(false, 'Europe/Paris');\n\n        $this->assertSame('2023-06-12 13:49 Europe/Paris', unserialize(serialize($date))->format('Y-m-d H:i e'));\n    }\n\n    public function testMutabilityOfMixinMethodReturnedValue()\n    {\n        require_once __DIR__.'/../Fixtures/CarbonTimezoneTrait.php';\n\n        Carbon::mixin(CarbonTimezoneTrait::class);\n        Carbon::setTestNow('2023-05-24 14:49');\n\n        $now = Carbon::now();\n\n        $this->assertSame('Monday', $now->copy()->startOfWeek()->dayName);\n\n        $copy = $now->copyWithAppTz(false, 'Europe/Paris');\n\n        $this->assertSame('Monday', $copy->copy()->startOfWeek()->dayName);\n\n        $this->assertSame('Europe/Paris', $copy->format('e'));\n        $this->assertSame('UTC', $now->format('e'));\n\n        $mutated = $now->toAppTz(false, 'America/Toronto');\n\n        $this->assertSame('America/Toronto', $mutated->format('e'));\n        $this->assertSame('America/Toronto', $now->format('e'));\n\n        $this->assertSame(Carbon::class, \\get_class($mutated));\n        $this->assertSame(Carbon::class, \\get_class($copy));\n\n        $this->assertSame($mutated, $now);\n        $this->assertEquals($mutated, $copy);\n        $this->assertNotSame($mutated, $copy);\n    }\n\n    public function testSubClassMacro()\n    {\n        require_once __DIR__.'/../Fixtures/SubCarbon.php';\n\n        $subCarbon = new SubCarbon('2024-01-24 00:00');\n\n        SubCarbon::macro('diffInDecades', function (SubCarbon|string|null $dt = null, $abs = true) {\n            return (int) ($this->diffInYears($dt, $abs) / 10);\n        });\n\n        $this->assertSame(2, $subCarbon->diffInDecades(new SubCarbon('2049-01-24 00:00')));\n        $this->assertSame(2, $subCarbon->diffInDecades('2049-01-24 00:00'));\n\n        SubCarbon::resetMacros();\n    }\n\n    public function testMacroNameCanStartWithDiff()\n    {\n        Carbon::macro('diffInBusinessDays', static fn () => 2);\n\n        $this->assertSame(2, Carbon::now()->diffInBusinessDays());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ModifyNearDSTChangeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse Tests\\AbstractTestCase;\n\nclass ModifyNearDSTChangeTest extends AbstractTestCase\n{\n    /**\n     * Tests transition through DST change hour in non default timezone.\n     */\n    #[Group('dst')]\n    #[DataProvider('dataForTransitionTests')]\n    public function testTransitionInNonDefaultTimezone(string $dateString, int $addHours, string $expected)\n    {\n        date_default_timezone_set('Europe/london');\n        $date = Carbon::parse($dateString, 'America/New_York');\n        $date->addHours($addHours);\n        $this->assertSame($expected, $date->format('c'));\n    }\n\n    /**\n     * Tests transition through DST change hour in default timezone.\n     */\n    #[Group('dst')]\n    #[DataProvider('dataForTransitionTests')]\n    public function testTransitionInDefaultTimezone(string $dateString, int $addHours, string $expected)\n    {\n        date_default_timezone_set('America/New_York');\n        $date = Carbon::parse($dateString, 'America/New_York');\n        $date->addHours($addHours);\n        $this->assertSame($expected, $date->format('c'));\n    }\n\n    public static function dataForTransitionTests(): Generator\n    {\n        // arguments:\n        // - Date string to Carbon::parse in America/New_York.\n        // - Hours to add\n        // - Resulting string in 'c' format\n\n        // testForwardTransition\n        // When standard time was about to reach 2010-03-14T02:00:00-05:00 clocks were turned forward 1 hour to\n        // 2010-03-14T03:00:00-04:00 local daylight time instead\n        yield [\n            '2010-03-14T00:00:00',\n            24,\n            '2010-03-15T01:00:00-04:00',\n        ];\n\n        // testBackwardTransition\n        // When local daylight time was about to reach 2010-11-07T02:00:00-04:00 clocks were turned backward 1 hour\n        // to 2010-11-07T01:00:00-05:00 local standard time instead\n        yield ['2010-11-07T00:00:00', 24, '2010-11-07T23:00:00-05:00'];\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ModifyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Closure;\nuse DateMalformedStringException;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass ModifyTest extends AbstractTestCase\n{\n    public function testSimpleModify()\n    {\n        $a = new Carbon('2014-03-30 00:00:00');\n        $b = $a->copy();\n        $b->addHours(24);\n        $this->assertSame(24.0, $a->diffInHours($b));\n    }\n\n    public function testTimezoneModify()\n    {\n        $php81Fix = 1.0;\n        // For daylight saving time reason 2014-03-30 0h59 is immediately followed by 2h00\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addHours(24);\n        $this->assertSame(23.0 + $php81Fix, $a->diffInRealHours($b));\n        $this->assertSame(23.0 + $php81Fix, $b->diffInRealHours($a, true));\n        $this->assertSame(-(23.0 + $php81Fix), $b->diffInRealHours($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60, $b->diffInRealMinutes($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60 * 60, $b->diffInRealSeconds($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60 * 60 * 1000, $b->diffInRealMilliseconds($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60 * 60 * 1000000, $b->diffInRealMicroseconds($a));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addUTCHours(24);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n        $b->subRealHours(24);\n        $this->assertSame(0.0, $b->diffInHours($a, false));\n        $this->assertSame(0.0, $b->diffInHours($a, false));\n\n        $a = new Carbon('2014-03-30 00:59:00', 'Europe/London');\n        $a->addRealHour();\n        $this->assertSame('02:59', $a->format('H:i'));\n        $a->subRealHour();\n        $this->assertSame('00:59', $a->format('H:i'));\n\n        $a = new Carbon('2014-03-30 00:59:00', 'Europe/London');\n        $a->addRealMinutes(2);\n        $this->assertSame('02:01', $a->format('H:i'));\n        $a->subRealMinutes(2);\n        $this->assertSame('00:59', $a->format('H:i'));\n\n        $a = new Carbon('2014-03-30 00:59:30', 'Europe/London');\n        $a->addRealMinute();\n        $this->assertSame('02:00:30', $a->format('H:i:s'));\n        $a->subRealMinute();\n        $this->assertSame('00:59:30', $a->format('H:i:s'));\n\n        $a = new Carbon('2014-03-30 00:59:30', 'Europe/London');\n        $a->addRealSeconds(40);\n        $this->assertSame('02:00:10', $a->format('H:i:s'));\n        $a->subRealSeconds(40);\n        $this->assertSame('00:59:30', $a->format('H:i:s'));\n\n        $a = new Carbon('2014-03-30 00:59:59', 'Europe/London');\n        $a->addRealSecond();\n        $this->assertSame('02:00:00', $a->format('H:i:s'));\n        $a->subRealSecond();\n        $this->assertSame('00:59:59', $a->format('H:i:s'));\n\n        $a = new Carbon('2014-03-30 00:59:59.990000', 'Europe/London');\n        $a->addRealMilliseconds(20);\n        $this->assertSame('02:00:00.010000', $a->format('H:i:s.u'));\n        $a->subRealMilliseconds(20);\n        $this->assertSame('00:59:59.990000', $a->format('H:i:s.u'));\n\n        $a = new Carbon('2014-03-30 00:59:59.999990', 'Europe/London');\n        $a->addRealMicroseconds(20);\n        $this->assertSame('02:00:00.000010', $a->format('H:i:s.u'));\n        $a->subRealMicroseconds(20);\n        $this->assertSame('00:59:59.999990', $a->format('H:i:s.u'));\n\n        $a = new Carbon('2014-03-30 00:59:59.999999', 'Europe/London');\n        $a->addRealMicrosecond();\n        $this->assertSame('02:00:00.000000', $a->format('H:i:s.u'));\n        $a->subRealMicrosecond();\n        $this->assertSame('00:59:59.999999', $a->format('H:i:s.u'));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealDay();\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addUTCDay();\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealWeeks(1 / 7);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealMonths(1 / 30);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealQuarters(1 / 90);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealYears(1 / 365);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealDecades(1 / 3650);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealCenturies(1 / 36500);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->copy();\n        $b->addRealMillennia(1 / 365000);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n    }\n\n    public function testAddRealUnitException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid unit for real timestamp add/sub: \\'foobar\\'',\n        ));\n\n        (new Carbon('2014-03-30 00:00:00'))->addRealUnit('foobar');\n    }\n\n    public function testAddRealMicrosecondWithLowFloatPrecision()\n    {\n        $precision = ini_set('precision', '9');\n\n        $a = new Carbon('2014-03-30 00:59:59.999999', 'Europe/London');\n        $a->addRealMicrosecond();\n        $this->assertSame('02:00:00.000000', $a->format('H:i:s.u'));\n\n        ini_set('precision', $precision);\n    }\n\n    public function testNextAndPrevious()\n    {\n        Carbon::setTestNow('2019-06-02 13:27:09.816752');\n\n        $this->assertSame('2019-06-02 14:00:00', Carbon::now()->next('2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::now()->previous('2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 14:00:00', Carbon::now()->next('14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::now()->previous('14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-03 09:00:00', Carbon::now()->next('9am')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 09:00:00', Carbon::now()->previous('9am')->format('Y-m-d H:i:s'));\n\n        $this->assertSame('2019-06-02 14:00:00', Carbon::parse('next 2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::parse('previous 2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 14:00:00', Carbon::parse('next 14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::parse('previous 14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-03 09:00:00', Carbon::parse('next 9am')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 09:00:00', Carbon::parse('previous 9am')->format('Y-m-d H:i:s'));\n\n        $this->assertSame(\n            '2019-06-04 00:00:00',\n            Carbon::parse('after tomorrow')->format('Y-m-d H:i:s'),\n        );\n        $this->assertSame(\n            '2000-01-27 00:00:00',\n            Carbon::parse('2000-01-25')->change('after tomorrow')->format('Y-m-d H:i:s'),\n        );\n        $this->assertSame(\n            '2019-05-31 00:00:00',\n            Carbon::parse('before yesterday')->format('Y-m-d H:i:s'),\n        );\n        $this->assertSame(\n            '2000-01-23 00:00:00',\n            Carbon::parse('2000-01-25')->change('before yesterday')->format('Y-m-d H:i:s'),\n        );\n    }\n\n    public function testInvalidModifier(): void\n    {\n        $this->checkInvalid('invalid', static function () {\n            return @Carbon::parse('2000-01-25')->change('invalid');\n        });\n        $this->checkInvalid('next invalid', static function () {\n            return @Carbon::now()->next('invalid');\n        });\n        $this->checkInvalid('last invalid', static function () {\n            return @Carbon::now()->previous('invalid');\n        });\n    }\n\n    private function checkInvalid(string $message, Closure $callback): void\n    {\n        $this->expectExceptionObject(\n            PHP_VERSION < 8.3\n                ? new InvalidFormatException('Could not modify with: '.var_export($message, true))\n                : new DateMalformedStringException(\"Failed to parse time string ($message)\"),\n        );\n\n        $callback();\n    }\n\n    public function testImplicitCast(): void\n    {\n        $this->assertSame(\n            '2000-01-25 06:00:00.000000',\n            Carbon::parse('2000-01-25')->addRealHours('6')->format('Y-m-d H:i:s.u')\n        );\n\n        $this->assertSame(\n            '2000-01-25 07:00:00.000000',\n            Carbon::parse('2000-01-25')->addRealUnit('hour', '7')->format('Y-m-d H:i:s.u')\n        );\n\n        $this->assertSame(\n            '2000-01-24 17:00:00.000000',\n            Carbon::parse('2000-01-25')->subRealUnit('hour', '7')->format('Y-m-d H:i:s.u')\n        );\n\n        $this->assertSame(\n            '2000-01-25 00:08:00.000000',\n            Carbon::parse('2000-01-25')->addRealUnit('minute', '8')->format('Y-m-d H:i:s.u')\n        );\n\n        $this->assertSame(\n            '2000-01-25 00:00:00.007000',\n            Carbon::parse('2000-01-25')->addRealUnit('millisecond', '7')->format('Y-m-d H:i:s.u')\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/NowAndOtherStaticHelpersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTime;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass NowAndOtherStaticHelpersTest extends AbstractTestCase\n{\n    public function testNow()\n    {\n        $dt = Carbon::now();\n        $this->assertSame($this->now->getTimestamp(), $dt->timestamp);\n        $this->assertSame($this->now->unix(), $dt->timestamp);\n\n        Carbon::setTestNow();\n        $before = $this->getTimestamp();\n        $dt = Carbon::now();\n        $after = $this->getTimestamp();\n        $this->assertGreaterThanOrEqual($before, $dt->timestamp);\n        $this->assertLessThanOrEqual($after, $dt->timestamp);\n    }\n\n    public function testGetPreciseTimestamp()\n    {\n        $dt = Carbon::parse('2018-01-06 12:34:10.987126');\n        $this->assertSame(1515260.0, $dt->getPreciseTimestamp(-3));\n        $this->assertSame(151526005.0, $dt->getPreciseTimestamp(-1));\n        $this->assertSame(1515260051.0, $dt->getPreciseTimestamp(0));\n        $this->assertSame(15152600510.0, $dt->getPreciseTimestamp(1));\n        $this->assertSame(151526005099.0, $dt->getPreciseTimestamp(2));\n        $this->assertSame(1515260050987.0, $dt->valueOf());\n        $this->assertSame(15152600509871.0, $dt->getPreciseTimestamp(4));\n        $this->assertSame(151526005098713.0, $dt->getPreciseTimestamp(5));\n        $this->assertSame(1515260050987126.0, $dt->getPreciseTimestamp(6));\n        $this->assertSame(151526005098712600.0, $dt->getPreciseTimestamp(8));\n        $this->assertSame(1515260050987126000.0, $dt->getPreciseTimestamp(9));\n    }\n\n    public function testGetTimestampMs()\n    {\n        $dt = Carbon::parse('2018-01-06 12:34:10.987126');\n        $this->assertSame(1515260050987, $dt->getTimestampMs());\n    }\n\n    public function testNowWithTimezone()\n    {\n        $dt = Carbon::now('Europe/London');\n        $this->assertSame($this->now->getTimestamp(), $dt->timestamp);\n\n        Carbon::setTestNow();\n        $before = $this->getTimestamp();\n        $dt = Carbon::now('Europe/London');\n        $after = $this->getTimestamp();\n        $this->assertGreaterThanOrEqual($before, $dt->timestamp);\n        $this->assertLessThanOrEqual($after, $dt->timestamp);\n        $this->assertSame('Europe/London', $dt->tzName);\n    }\n\n    public function testToday()\n    {\n        $dt = Carbon::today();\n        $this->assertSame(date('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testTodayWithTimezone()\n    {\n        $dt = Carbon::today('Europe/London');\n        $dt2 = new DateTime('now', new DateTimeZone('Europe/London'));\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testTomorrow()\n    {\n        $dt = Carbon::tomorrow();\n        $dt2 = new DateTime('tomorrow');\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testTomorrowWithTimezone()\n    {\n        $dt = Carbon::tomorrow('Europe/London');\n        $dt2 = new DateTime('tomorrow', new DateTimeZone('Europe/London'));\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testYesterday()\n    {\n        $dt = Carbon::yesterday();\n        $dt2 = new DateTime('yesterday');\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testYesterdayWithTimezone()\n    {\n        $dt = Carbon::yesterday('Europe/London');\n        $dt2 = new DateTime('yesterday', new DateTimeZone('Europe/London'));\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/NowDerivativesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass NowDerivativesTest extends AbstractTestCase\n{\n    public function testNowWithSameTimezone()\n    {\n        $dt = Carbon::now('Europe/London');\n        $dt2 = $dt->nowWithSameTz();\n\n        $this->assertSame($dt2->toDateTimeString(), $dt->toDateTimeString());\n        $this->assertSame($dt2->tzName, $dt->tzName);\n\n        Carbon::setTestNow(new Carbon('2017-07-29T07:57:27.123456Z'));\n        $dt = Carbon::createFromTime(13, 40, 00, 'Africa/Asmara');\n        $dt2 = $dt->nowWithSameTz();\n        Carbon::setTestNow();\n\n        $this->assertSame($dt->format('H:i'), '13:40');\n        $this->assertSame($dt2->format('H:i'), '10:57');\n        $this->assertSame($dt2->tzName, $dt->tzName);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/ObjectsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse DateTime;\nuse DateTimeImmutable;\nuse stdClass;\nuse Tests\\AbstractTestCase;\n\nclass ObjectsTest extends AbstractTestCase\n{\n    public function testToObject()\n    {\n        $dt = Carbon::now();\n        $dtToObject = $dt->toObject();\n\n        $this->assertInstanceOf(stdClass::class, $dtToObject);\n\n        $this->assertObjectHasProperty('year', $dtToObject);\n        $this->assertSame($dt->year, $dtToObject->year);\n\n        $this->assertObjectHasProperty('month', $dtToObject);\n        $this->assertSame($dt->month, $dtToObject->month);\n\n        $this->assertObjectHasProperty('day', $dtToObject);\n        $this->assertSame($dt->day, $dtToObject->day);\n\n        $this->assertObjectHasProperty('dayOfWeek', $dtToObject);\n        $this->assertSame($dt->dayOfWeek, $dtToObject->dayOfWeek);\n\n        $this->assertObjectHasProperty('dayOfYear', $dtToObject);\n        $this->assertSame($dt->dayOfYear, $dtToObject->dayOfYear);\n\n        $this->assertObjectHasProperty('hour', $dtToObject);\n        $this->assertSame($dt->hour, $dtToObject->hour);\n\n        $this->assertObjectHasProperty('minute', $dtToObject);\n        $this->assertSame($dt->minute, $dtToObject->minute);\n\n        $this->assertObjectHasProperty('second', $dtToObject);\n        $this->assertSame($dt->second, $dtToObject->second);\n\n        $this->assertObjectHasProperty('micro', $dtToObject);\n        $this->assertSame($dt->micro, $dtToObject->micro);\n\n        $this->assertObjectHasProperty('timestamp', $dtToObject);\n        $this->assertSame($dt->timestamp, $dtToObject->timestamp);\n\n        $this->assertObjectHasProperty('timezone', $dtToObject);\n        $this->assertEquals($dt->timezone, $dtToObject->timezone);\n\n        $this->assertObjectHasProperty('formatted', $dtToObject);\n        $this->assertSame($dt->format(Carbon::DEFAULT_TO_STRING_FORMAT), $dtToObject->formatted);\n    }\n\n    public function testToDateTime()\n    {\n        $dt = Carbon::create(2000, 3, 26);\n        $date = $dt->toDateTime();\n\n        $this->assertInstanceOf(DateTime::class, $date);\n        $this->assertNotInstanceOf(Carbon::class, $date);\n        $this->assertNotInstanceOf(CarbonInterface::class, $date);\n\n        $this->assertSame('2000-03-26', $date->format('Y-m-d'));\n\n        $date = $dt->toDate();\n\n        $this->assertInstanceOf(DateTime::class, $date);\n        $this->assertNotInstanceOf(Carbon::class, $date);\n        $this->assertNotInstanceOf(CarbonInterface::class, $date);\n\n        $this->assertSame('2000-03-26', $date->format('Y-m-d'));\n\n        // Check it keeps timezone offset during DST\n        $date = Carbon::create(2290, 11, 2, 1, 10, 10 + 888480 / 1000000, 'America/Toronto');\n        $this->assertSame(\n            '2290-11-02 01:10:10.888480 America/Toronto -0400',\n            $date->toDateTime()->format('Y-m-d H:i:s.u e O'),\n        );\n        $this->assertSame(\n            '2290-11-02 01:10:10.888480 America/Toronto -0500',\n            $date->copy()->addHour()->toDateTime()->format('Y-m-d H:i:s.u e O'),\n        );\n    }\n\n    public function testToDateTimeImmutable()\n    {\n        $dt = Carbon::create(2000, 3, 26);\n        $date = $dt->toDateTimeImmutable();\n\n        $this->assertInstanceOf(DateTimeImmutable::class, $date);\n\n        $this->assertSame('2000-03-26', $date->format('Y-m-d'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/PhpBug72338Test.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\n/**\n * The problem is, that $date->setTimezone($tz) with $tz in 'HH:MM' notation ([\"timezone_type\"]=>int(1)) put DateTime object\n *   on inconsistent state. It looks like internal timestamp becomes changed and it affects to such functions:\n *\n * * $date->modify() uses changed timestamp and result is wrong\n *\n * * $date->setTimezone($tz) settle this changed timestamp, even in case if $tz is not in 'HH:MM' format\n *\n * * $date->format('U') returns changed timestamp\n *\n * @link https://bugs.php.net/bug.php?id=72338 This bug on bugs.php.net\n *\n * @internal I use days changing in tests because using seconds|minute|hours may run setTimezone within.\n */\nclass PhpBug72338Test extends AbstractTestCase\n{\n    /**\n     * Ensures that modify don't use changed timestamp\n     */\n    public function testModify()\n    {\n        $date = Carbon::createFromTimestamp(0);\n        $date->setTimezone('+02:00');\n        $date->modify('+1 day');\n        $this->assertSame('86400', $date->format('U'));\n    }\n\n    /**\n     * Ensures that $date->format('U') returns unchanged timestamp\n     */\n    public function testTimestamp()\n    {\n        $date = Carbon::createFromTimestamp(0);\n        $date->setTimezone('+02:00');\n        $this->assertSame('0', $date->format('U'));\n    }\n\n    /**\n     * Ensures that date created from string with timezone and with same timezone set by setTimezone() is equal\n     */\n    public function testEqualSetAndCreate()\n    {\n        $date = Carbon::createFromTimestamp(0);\n        $date->setTimezone('+02:00');\n        $date1 = new Carbon('1970-01-01T02:00:00+02:00');\n        $this->assertSame($date->format('U'), $date1->format('U'));\n    }\n\n    /**\n     * Ensures that second call to setTimezone() don't changing timestamp\n     */\n    public function testSecondSetTimezone()\n    {\n        $date = Carbon::createFromTimestamp(0);\n        $date->setTimezone('+02:00');\n        $date->setTimezone('Europe/Moscow');\n        $this->assertSame('0', $date->format('U'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/RelativeDateStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass RelativeDateStringTest extends AbstractTestCase\n{\n    public $scenarios = [\n\n        // ensure regular timestamps are flagged as relative\n        '2018-01-02 03:04:05' => ['date' => '2018-01-02', 'is_relative' => false],\n        '1500-01-02 12:00:00' => ['date' => '1500-01-02', 'is_relative' => false],\n        '1985-12-10' => ['date' => '1985-12-10', 'is_relative' => false],\n        'Dec 2017' => ['date' => '2017-12-01', 'is_relative' => false],\n        '25-Dec-2017' => ['date' => '2017-12-25', 'is_relative' => false],\n        '25 December 2017' => ['date' => '2017-12-25', 'is_relative' => false],\n        '25 Dec 2017' => ['date' => '2017-12-25', 'is_relative' => false],\n        'Dec 25 2017' => ['date' => '2017-12-25', 'is_relative' => false],\n\n        // dates not relative now\n        'first day of January 2008' => ['date' => '2008-01-01', 'is_relative' => false],\n        'first day of January 1999' => ['date' => '1999-01-01', 'is_relative' => false],\n        'last day of January 1999' => ['date' => '1999-01-31', 'is_relative' => false],\n        'last monday of January 1999' => ['date' => '1999-01-25', 'is_relative' => false],\n        'first day of January 0001' => ['date' => '0001-01-01', 'is_relative' => false],\n        'monday december 1750' => ['date' => '1750-12-07', 'is_relative' => false],\n        'december 1750' => ['date' => '1750-12-01', 'is_relative' => false],\n        'last sunday of January 2005' => ['date' => '2005-01-30', 'is_relative' => false],\n        'January 2008' => ['date' => '2008-01-01', 'is_relative' => false],\n\n        // dates relative to now\n        'first day of next month' => ['date' => '2017-02-01', 'is_relative' => true],\n        'sunday noon' => ['date' => '2017-01-01', 'is_relative' => true],\n        'sunday midnight' => ['date' => '2017-01-01', 'is_relative' => true],\n        'monday december' => ['date' => '2017-12-04', 'is_relative' => true],\n        'next saturday' => ['date' => '2017-01-07', 'is_relative' => true],\n        'april' => ['date' => '2017-04-01', 'is_relative' => true],\n    ];\n\n    public function testKeywordMatching()\n    {\n        foreach ($this->scenarios as $string => $expected) {\n            $actual = Carbon::hasRelativeKeywords($string);\n\n            $this->assertSame(\n                $expected['is_relative'],\n                $actual,\n                \"Failed relative keyword matching for scenario: {$string} (expected: {$expected['is_relative']})\",\n            );\n        }\n    }\n\n    public function testRelativeInputStrings()\n    {\n        Carbon::setTestNow('2017-01-01 12:00:00');\n\n        foreach ($this->scenarios as $string => $expected) {\n            $actual = Carbon::parse($string)->format('Y-m-d');\n\n            $this->assertSame(\n                $expected['date'],\n                $actual,\n                \"Failed relative date scenario: {$string}\",\n            );\n        }\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/RelativeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass RelativeTest extends AbstractTestCase\n{\n    public function testSecondsSinceMidnight()\n    {\n        $d = Carbon::today()->addSeconds(30);\n        $this->assertSame(30.0, $d->secondsSinceMidnight());\n\n        $d = Carbon::today()->addDays(1);\n        $this->assertSame(0.0, $d->secondsSinceMidnight());\n\n        $d = Carbon::today()->addDays(1)->addSeconds(120);\n        $this->assertSame(120.0, $d->secondsSinceMidnight());\n\n        $d = Carbon::today()->addMonths(3)->addSeconds(42);\n        $this->assertSame(42.0, $d->secondsSinceMidnight());\n    }\n\n    public function testSecondsUntilEndOfDay()\n    {\n        $d = Carbon::today()->endOfDay();\n        $this->assertSame(0.0, $d->secondsUntilEndOfDay());\n\n        $d = Carbon::today()->endOfDay()->subSeconds(60);\n        $this->assertSame(60.0, $d->secondsUntilEndOfDay());\n\n        $d = Carbon::create(2014, 10, 24, 12, 34, 56);\n        $this->assertVeryClose(41103.999999, $d->secondsUntilEndOfDay());\n\n        $d = Carbon::create(2014, 10, 24, 0, 0, 0);\n        $this->assertVeryClose(86399.99999899999, $d->secondsUntilEndOfDay());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/RoundTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass RoundTest extends AbstractTestCase\n{\n    public function testRoundWithDefaultUnit()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->round();\n        $this->assertSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->round(5), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->floor()->round(5), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->round(3), 2315, 7, 18, 22, 42, 18, 0);\n        $this->assertCarbon($dt->copy()->round(4), 2315, 7, 18, 22, 42, 16, 0);\n        $this->assertCarbon($dt->copy()->round(10), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->round(0.5), 2315, 7, 18, 22, 42, 17, 500000);\n        $this->assertCarbon($dt->copy()->round(0.25), 2315, 7, 18, 22, 42, 17, 750000);\n        $this->assertCarbon($dt->copy()->round(3.8), 2315, 7, 18, 22, 42, 19, 800000);\n\n        $this->assertCarbon($dt->copy()->floor(5), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->floor()->floor(5), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->floor(3), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->floor(4), 2315, 7, 18, 22, 42, 16, 0);\n        $this->assertCarbon($dt->copy()->floor(10), 2315, 7, 18, 22, 42, 10, 0);\n        $this->assertCarbon($dt->copy()->floor(0.5), 2315, 7, 18, 22, 42, 17, 500000);\n        $this->assertCarbon($dt->copy()->floor(0.25), 2315, 7, 18, 22, 42, 17, 500000);\n        $this->assertCarbon($dt->copy()->floor(3.8), 2315, 7, 18, 22, 42, 15, 0);\n\n        $this->assertCarbon($dt->copy()->ceil(5), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->floor()->ceil(5), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->ceil(3), 2315, 7, 18, 22, 42, 18, 0);\n        $this->assertCarbon($dt->copy()->ceil(4), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->ceil(10), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->ceil(0.5), 2315, 7, 18, 22, 42, 18, 0);\n        $this->assertCarbon($dt->copy()->ceil(0.25), 2315, 7, 18, 22, 42, 17, 750000);\n        $this->assertCarbon($dt->copy()->ceil(3.8), 2315, 7, 18, 22, 42, 19, 800000);\n    }\n\n    public function testRoundWithStrings()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n\n        $this->assertCarbon($dt->copy()->round('minute'), 2315, 7, 18, 22, 42, 0, 0);\n        $this->assertCarbon($dt->copy()->floor('5 minutes'), 2315, 7, 18, 22, 40, 0, 0);\n        $this->assertCarbon($dt->copy()->ceil('5 minutes'), 2315, 7, 18, 22, 45, 0, 0);\n    }\n\n    public function testRoundWithStringsException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Rounding is only possible with single unit intervals.',\n        ));\n        Carbon::create(2315, 7, 18, 22, 42, 17.643971)->round('2 hours 5 minutes');\n    }\n\n    public function testRoundWithInterval()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n\n        $this->assertCarbon($dt->copy()->round(CarbonInterval::minute()), 2315, 7, 18, 22, 42, 0, 0);\n        $this->assertCarbon($dt->copy()->floor(CarbonInterval::minutes(5)), 2315, 7, 18, 22, 40, 0, 0);\n        $this->assertCarbon($dt->copy()->ceil(new DateInterval('PT5M')), 2315, 7, 18, 22, 45, 0, 0);\n    }\n\n    public function testRoundWithIntervalException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Rounding is only possible with single unit intervals.',\n        ));\n\n        Carbon::create(2315, 7, 18, 22, 42, 17.643971)->round(CarbonInterval::day()->minutes(5));\n    }\n\n    public function testRoundWithBaseUnit()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->roundSecond();\n        $this->assertSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->roundDay(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundDay(5), 2315, 7, 21, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilDay(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorDay(), 2315, 7, 18, 0, 0, 0, 0);\n\n        $this->assertCarbon($dt->copy()->roundYear(), 2316, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->subMonths(2)->roundYear(), 2315, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundYear(2), 2315, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorYear(2), 2315, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilYear(2), 2317, 1, 1, 0, 0, 0, 0);\n\n        $this->assertCarbon($dt->copy()->roundMonth(), 2315, 8, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorMonth(), 2315, 7, 1, 0, 0, 0, 0);\n\n        for ($i = 1; $i <= Carbon::MONTHS_PER_YEAR; $i++) {\n            $dt = Carbon::parse(\"2021-$i-01\")->endOfMonth()->floorMonth();\n\n            $this->assertCarbon($dt, 2021, $i, 1, 0, 0, 0, 0);\n        }\n    }\n\n    public function testFloorYear()\n    {\n        $date = Carbon::create(2022)->endOfYear()->floorYear();\n        $this->assertCarbon($date, 2022, 1, 1, 0, 0, 0, 0);\n\n        $date = Carbon::create(2022)->endOfYear()->floorDay()->floorYear();\n        $this->assertCarbon($date, 2022, 1, 1, 0, 0, 0, 0);\n\n        $date = Carbon::create(2022)->endOfYear()->floorYear();\n        $this->assertCarbon($date, 2022, 1, 1, 0, 0, 0, 0);\n\n        $date = Carbon::create(2022)->addMonths(6)->floorYear();\n        $this->assertCarbon($date, 2022, 1, 1, 0, 0, 0, 0);\n    }\n\n    public function testCeilYear()\n    {\n        $date = Carbon::create(2022)->addMonths(6)->ceilYear();\n        $this->assertCarbon($date, 2023, 1, 1, 0, 0, 0, 0);\n\n        $date = Carbon::create(2022)->endOfYear()->ceilYear();\n        $this->assertCarbon($date, 2023, 1, 1, 0, 0, 0, 0);\n\n        $date = Carbon::create(2022)->ceilYear();\n        $this->assertCarbon($date, 2022, 1, 1, 0, 0, 0, 0);\n\n        $date = Carbon::create(2022)->addMicrosecond()->ceilYear();\n        $this->assertCarbon($date, 2023, 1, 1, 0, 0, 0, 0);\n    }\n\n    public function testRoundWithMetaUnit()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->roundSecond();\n        $this->assertSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->roundMillisecond(), 2315, 7, 18, 22, 42, 17, 644000);\n        $this->assertCarbon($dt->copy()->roundMillennium(), 2001, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundQuarter(), 2315, 7, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundQuarters(2), 2315, 7, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->subMonth()->floorQuarter(), 2315, 4, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->subMonth()->floorQuarters(2), 2315, 1, 1, 0, 0, 0, 0);\n    }\n\n    public function testRoundWeek()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->roundSecond();\n        $this->assertSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->floorWeek(), 2315, 7, 12, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilWeek(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundWeek(), 2315, 7, 19, 0, 0, 0, 0);\n\n        $dt = Carbon::create(2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorWeek(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilWeek(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundWeek(), 2315, 7, 19, 0, 0, 0, 0);\n    }\n\n    public function testCeilMonth()\n    {\n        $this->assertCarbon(Carbon::parse('2021-01-29')->ceilMonth(), 2021, 2, 1, 0, 0, 0);\n        $this->assertCarbon(Carbon::parse('2021-01-31')->ceilMonth(), 2021, 2, 1, 0, 0, 0);\n        $this->assertCarbon(Carbon::parse('2021-12-17')->ceilMonth(), 2022, 1, 1, 0, 0, 0);\n    }\n\n    public function testFloorMonth()\n    {\n        $this->assertCarbon(Carbon::parse('2021-05-31')->floorMonth(3), 2021, 4, 1, 0, 0, 0);\n    }\n\n    public function testRoundInvalidArgument()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'foobar\\'.',\n        ));\n\n        Carbon::now()->roundUnit('foobar');\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/SerializationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse DateTime;\nuse Generator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhpExtension;\nuse ReflectionClass;\nuse ReflectionObject;\nuse ReflectionProperty;\nuse Tests\\AbstractTestCase;\nuse Throwable;\n\nclass SerializationTest extends AbstractTestCase\n{\n    protected string $serialized;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->serialized = \\extension_loaded('msgpack')\n            ? 'O:13:\"Carbon\\Carbon\":4:{s:4:\"date\";s:26:\"2016-02-01 13:20:25.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";s:18:\"dumpDateProperties\";a:2:{s:4:\"date\";s:26:\"2016-02-01 13:20:25.000000\";s:8:\"timezone\";s:15:\"America/Toronto\";}}'\n            : 'O:13:\"Carbon\\Carbon\":3:{s:4:\"date\";s:26:\"2016-02-01 13:20:25.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}';\n    }\n\n    protected function cleanSerialization(string $serialization): string\n    {\n        return preg_replace('/s:\\d+:\\\"[^\"]*dumpDateProperties\\\"/', 's:18:\"dumpDateProperties\"', $serialization);\n    }\n\n    public function testSerialize()\n    {\n        $dt = Carbon::create(2016, 2, 1, 13, 20, 25);\n        $this->assertSame($this->serialized, $this->cleanSerialization($dt->serialize()));\n        $this->assertSame($this->serialized, $this->cleanSerialization(serialize($dt)));\n    }\n\n    public function testFromUnserialized()\n    {\n        $dt = Carbon::fromSerialized($this->serialized);\n        $this->assertCarbon($dt, 2016, 2, 1, 13, 20, 25);\n\n        $dt = unserialize($this->serialized);\n        $this->assertCarbon($dt, 2016, 2, 1, 13, 20, 25);\n    }\n\n    public function testSerialization()\n    {\n        $this->assertEquals(Carbon::now(), unserialize(serialize(Carbon::now())));\n        $dt = Carbon::parse('2018-07-11 18:30:11.654321', 'Europe/Paris')->locale('fr_FR');\n        $copy = unserialize(serialize($dt));\n        $this->assertSame('fr_FR', $copy->locale);\n        $this->assertSame('mercredi 18:30:11.654321', $copy->tz('Europe/Paris')->isoFormat('dddd HH:mm:ss.SSSSSS'));\n    }\n\n    public static function dataForTestFromUnserializedWithInvalidValue(): Generator\n    {\n        yield [null];\n        yield [true];\n        yield [false];\n        yield [123];\n        yield ['foobar'];\n    }\n\n    #[DataProvider('dataForTestFromUnserializedWithInvalidValue')]\n    public function testFromUnserializedWithInvalidValue(mixed $value)\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Invalid serialized value: $value\",\n        ));\n\n        Carbon::fromSerialized($value);\n    }\n\n    public function testDateSerializationReflectionCompatibility()\n    {\n        $tz = $this->firstValidTimezoneAmong(['America/Los_Angeles', 'US/Pacific'])->getName();\n\n        try {\n            $reflection = (new ReflectionClass(DateTime::class))->newInstanceWithoutConstructor();\n\n            @$reflection->date = '1990-01-17 10:28:07';\n            @$reflection->timezone_type = 3;\n            @$reflection->timezone = $tz;\n\n            $date = unserialize(serialize($reflection));\n        } catch (Throwable $exception) {\n            $this->markTestSkipped(\n                \"It fails on DateTime so Carbon can't support it, error was:\\n\".$exception->getMessage()\n            );\n        }\n\n        $this->assertSame('1990-01-17 10:28:07', $date->format('Y-m-d h:i:s'));\n\n        $reflection = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n\n        @$reflection->date = '1990-01-17 10:28:07';\n        @$reflection->timezone_type = 3;\n        @$reflection->timezone = $tz;\n\n        $date = unserialize(serialize($reflection));\n\n        $this->assertSame('1990-01-17 10:28:07', $date->format('Y-m-d h:i:s'));\n\n        $reflection = new ReflectionObject(Carbon::parse('1990-01-17 10:28:07'));\n        $target = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n        /** @var ReflectionProperty[] $properties */\n        $properties = [];\n\n        foreach ($reflection->getProperties() as $property) {\n            $properties[$property->getName()] = $property;\n        }\n\n        $setValue = function ($key, $value) use (&$properties, &$target) {\n            if (isset($properties[$key])) {\n                $properties[$key]->setValue($target, $value);\n\n                return;\n            }\n\n            @$target->$key = $value;\n        };\n\n        $setValue('date', '1990-01-17 10:28:07');\n        $setValue('timezone_type', 3);\n        $setValue('timezone', $tz);\n\n        $date = unserialize(serialize($target));\n\n        $this->assertSame('1990-01-17 10:28:07', $date->format('Y-m-d h:i:s'));\n    }\n\n    #[RequiresPhpExtension('msgpack')]\n    public function testMsgPackExtension(): void\n    {\n        $string = '2018-06-01 21:25:13.321654 Europe/Vilnius';\n        $date = Carbon::parse('2018-06-01 21:25:13.321654 Europe/Vilnius');\n        $message = @msgpack_pack($date);\n        $copy = msgpack_unpack($message);\n\n        $this->assertSame($string, $copy->format('Y-m-d H:i:s.u e'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/SetDateAndTimeFromTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass SetDateAndTimeFromTest extends AbstractTestCase\n{\n    public function testSetDateFrom()\n    {\n        $source = Carbon::now();\n        $target = $source->copy()\n            ->addDays(rand(1, 6))\n            ->addHours(rand(1, 23))\n            ->addMinutes(rand(1, 59))\n            ->addSeconds(rand(1, 59));\n\n        $this->assertCarbon(\n            $target->copy()->setDateFrom($source),\n            $source->year,\n            $source->month,\n            $source->day,\n            $target->hour,\n            $target->minute,\n            $target->second,\n        );\n    }\n\n    public function testSetTimeFrom()\n    {\n        $source = Carbon::now();\n        $target = $source->copy()\n            ->addDays(rand(1, 6))\n            ->addHours(rand(1, 23))\n            ->addMinutes(rand(1, 59))\n            ->addSeconds(rand(1, 59));\n\n        $this->assertCarbon(\n            $target->copy()->setTimeFrom($source),\n            $target->year,\n            $target->month,\n            $target->day,\n            $source->hour,\n            $source->minute,\n            $source->second,\n        );\n    }\n\n    public function testSetDateTimeFrom()\n    {\n        $source = Carbon::now();\n        $target = $source->copy()\n            ->addDays(rand(1, 6))\n            ->addHours(rand(1, 23))\n            ->addMinutes(rand(1, 59))\n            ->addSeconds(rand(1, 59));\n\n        $this->assertCarbon(\n            $target->copy()->setDateTimeFrom($source),\n            $source->year,\n            $source->month,\n            $source->day,\n            $source->hour,\n            $source->minute,\n            $source->second,\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/SettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\InvalidIntervalException;\nuse Carbon\\Exceptions\\UnitException;\nuse Carbon\\Exceptions\\UnsupportedUnitException;\nuse Carbon\\Month;\nuse Carbon\\Unit;\nuse DateInterval;\nuse DateTimeZone;\nuse Exception;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass SettersTest extends AbstractTestCase\n{\n    public const SET_UNIT_NO_OVERFLOW_SAMPLE = 200;\n\n    public function testMonthEnum()\n    {\n        $d = Carbon::parse('2023-10-25 21:14:51');\n        $d->month = Month::February;\n\n        $this->assertSame('2023-02-25 21:14:51', $d->format('Y-m-d H:i:s'));\n\n        $d->setMonth(Month::July);\n\n        $this->assertSame('2023-07-25 21:14:51', $d->format('Y-m-d H:i:s'));\n    }\n\n    public function testSetMonthUnit()\n    {\n        $d = Carbon::parse('2023-10-25 21:14:51');\n        $d->set(Unit::Month, Month::February);\n\n        $this->assertSame(2, $d->get(Unit::Month));\n        $this->assertSame('2023-02-25 21:14:51', $d->format('Y-m-d H:i:s'));\n    }\n\n    public function testMonthEnumOnWrongUnit()\n    {\n        $this->expectExceptionObject(new UnitException(\n            'Month enum cannot be used to set year',\n        ));\n\n        $d = Carbon::now();\n        // @phpstan-ignore-next-line\n        $d->year = Month::February;\n    }\n\n    public function testSingularUnit()\n    {\n        $this->assertSame('year', Carbon::singularUnit('year'));\n        $this->assertSame('year', Carbon::singularUnit('Years'));\n        $this->assertSame('century', Carbon::singularUnit('centuries'));\n        $this->assertSame('millennium', Carbon::singularUnit('Millennia'));\n        $this->assertSame('millennium', Carbon::singularUnit('millenniums'));\n    }\n\n    public function testPluralUnit()\n    {\n        $this->assertSame('years', Carbon::pluralUnit('year'));\n        $this->assertSame('years', Carbon::pluralUnit('Years'));\n        $this->assertSame('centuries', Carbon::pluralUnit('century'));\n        $this->assertSame('centuries', Carbon::pluralUnit('centuries'));\n        $this->assertSame('millennia', Carbon::pluralUnit('Millennia'));\n        $this->assertSame('millennia', Carbon::pluralUnit('millenniums'));\n        $this->assertSame('millennia', Carbon::pluralUnit('millennium'));\n    }\n\n    public function testSet()\n    {\n        $d = Carbon::create(2000, 1, 12);\n        $d->set([\n            'year' => 1995,\n            'month' => 4,\n        ]);\n        $this->assertSame(1995, $d->year);\n        $this->assertSame(4, $d->month);\n        $this->assertSame(12, $d->day);\n    }\n\n    public function testYearSetter()\n    {\n        $d = Carbon::now();\n        $d->year = 1995;\n        $this->assertSame(1995, $d->year);\n    }\n\n    public function testMonthSetter()\n    {\n        $d = Carbon::now();\n        $d->month = 3;\n        $this->assertSame(3, $d->month);\n    }\n\n    public function testMonthSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d->month = 13;\n        $this->assertSame(1, $d->month);\n    }\n\n    public function testDaySetter()\n    {\n        $d = Carbon::now();\n        $d->day = 2;\n        $this->assertSame(2, $d->day);\n    }\n\n    public function testDaySetterWithWrap()\n    {\n        $d = Carbon::createFromDate(2012, 8, 5);\n        $d->day = 32;\n        $this->assertSame(1, $d->day);\n    }\n\n    public function testHourSetter()\n    {\n        $d = Carbon::now();\n        $d->hour = 2;\n        $this->assertSame(2, $d->hour);\n    }\n\n    public function testHourSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d->hour = 25;\n        $this->assertSame(1, $d->hour);\n    }\n\n    public function testMinuteSetter()\n    {\n        $d = Carbon::now();\n        $d->minute = 2;\n        $this->assertSame(2, $d->minute);\n    }\n\n    public function testMinuteSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d->minute = 65;\n        $this->assertSame(5, $d->minute);\n    }\n\n    public function testSecondSetter()\n    {\n        $d = Carbon::now();\n        $d->second = 2;\n        $this->assertSame(2, $d->second);\n    }\n\n    public function testUnitOfUnit()\n    {\n        $date = Carbon::create(2023, 1, 27, 20, 12, 42, 'America/Toronto');\n        $date->minuteOfYear = (95 * 24 + 3) * 60 + 50;\n\n        $this->assertSame('2023-04-06 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n\n        $date->dayOfWeek = 2;\n\n        $this->assertSame('2023-04-04 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n\n        $date->dayOfWeek = 6;\n\n        $this->assertSame('2023-04-08 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n\n        $date->dayOfWeek = 0;\n\n        $this->assertSame('2023-04-02 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n\n        $date->dayOfWeekIso = 7;\n\n        $this->assertSame('2023-04-02 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n\n        $date->dayOfWeek = 4;\n\n        $this->assertSame('2023-04-06 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n\n        $date->dayOfWeekIso = 7;\n\n        $this->assertSame('2023-04-09 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n    }\n\n    public function testUnitOfUnitMethod()\n    {\n        $date = Carbon::create(2023, 1, 27, 20, 12, 42, 'America/Toronto');\n        $date->minuteOfYear((95 * 24 + 3) * 60 + 50);\n\n        $this->assertSame('2023-04-06 04:50:42 America/Toronto', $date->format('Y-m-d H:i:s e'));\n    }\n\n    public function testUnitOfUnitUnknownMethod()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method fooOfBar does not exist.',\n        ));\n\n        $date = Carbon::create(2023, 1, 27, 20, 12, 42, 'America/Toronto');\n        $date->fooOfBar((95 * 24 + 3) * 60 + 50);\n    }\n\n    public function testUnitOfUnitFloat()\n    {\n        $this->expectExceptionObject(new UnitException(\n            '->minuteOfYear expects integer value',\n        ));\n\n        $date = Carbon::create(2018, 1, 27, 20, 12, 42, 'America/Toronto');\n        $date->minuteOfYear = (float) ((95 * 24 + 3) * 60 + 50);\n    }\n\n    public function testTimeSetter()\n    {\n        $d = Carbon::now();\n        $d->setTime(1, 1, 1);\n        $this->assertSame(1, $d->second);\n        $d->setTime(1, 1);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testTimeSetterWithChaining()\n    {\n        $d = Carbon::now();\n        $d->setTime(2, 2, 2)->setTime(1, 1, 1);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertSame(1, $d->second);\n        $d->setTime(2, 2, 2)->setTime(1, 1);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testTimeSetterWithZero()\n    {\n        $d = Carbon::now();\n        $d->setTime(1, 1);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testDateTimeSetter()\n    {\n        $d = Carbon::now();\n        $d->setDateTime($d->year, $d->month, $d->day, 1, 1, 1);\n        $this->assertSame(1, $d->second);\n    }\n\n    public function testDateTimeSetterWithZero()\n    {\n        $d = Carbon::now();\n        $d->setDateTime($d->year, $d->month, $d->day, 1, 1);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testDateTimeSetterWithChaining()\n    {\n        $d = Carbon::now();\n        $d->setDateTime(2013, 9, 24, 17, 4, 29);\n        $this->assertInstanceOfCarbon($d);\n        $d->setDateTime(2014, 10, 25, 18, 5, 30);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertCarbon($d, 2014, 10, 25, 18, 5, 30);\n    }\n\n    /**\n     * @link https://github.com/briannesbitt/Carbon/issues/539\n     */\n    public function testSetDateAfterStringCreation()\n    {\n        $d = new Carbon('first day of this month');\n        $this->assertSame(1, $d->day);\n        $d->setDate($d->year, $d->month, 12);\n        $this->assertSame(12, $d->day);\n    }\n\n    public function testSecondSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d->second = 65;\n        $this->assertSame(5, $d->second);\n    }\n\n    public function testMicrosecondSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d->micro = -4;\n        $this->assertSame(999996, $d->micro);\n        $this->assertSame((Carbon::now()->second + 59) % 60, $d->second);\n        $d->microsecond = 3123456;\n        $this->assertSame(123456, $d->micro);\n        $this->assertSame((Carbon::now()->second + 2) % 60, $d->second);\n        $d->micro -= 12123400;\n        $this->assertSame(56, $d->micro);\n        $this->assertSame((Carbon::now()->second + 50) % 60, $d->second);\n        $d->micro = -12600000;\n        $this->assertSame(400000, $d->micro);\n        $this->assertSame((Carbon::now()->second + 37) % 60, $d->second);\n        $d->millisecond = 123;\n        $this->assertSame(123, $d->milli);\n        $this->assertSame(123000, $d->micro);\n        $d->milli = 456;\n        $this->assertSame(456, $d->millisecond);\n        $this->assertSame(456000, $d->microsecond);\n        $d->microseconds(567);\n        $this->assertSame(567, $d->microsecond);\n        $d->setMicroseconds(678);\n        $this->assertSame(678, $d->microsecond);\n        $d->milliseconds(567);\n        $this->assertSame(567, $d->millisecond);\n        $this->assertSame(567000, $d->microsecond);\n        $d->setMilliseconds(678);\n        $this->assertSame(678, $d->millisecond);\n        $this->assertSame(678000, $d->microsecond);\n    }\n\n    public function testTimestampSetter()\n    {\n        $d = Carbon::now();\n        $d->timestamp = 10;\n        $this->assertSame(10, $d->timestamp);\n\n        $d->setTimestamp(11);\n        $this->assertSame(11, $d->timestamp);\n\n        $d->timestamp = 1600887164.88952298;\n        $this->assertSame('2020-09-23 14:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n\n        $d->setTimestamp(\n            // See https://github.com/php/php-src/issues/14332\n            PHP_VERSION < 8.4\n                ? 1599828571.23561248\n                : 1599828571.2356121,\n        );\n        $this->assertSame('2020-09-11 08:49:31.235612', $d->format('Y-m-d H:i:s.u'));\n\n        $d->timestamp = '0.88951247 1600887164';\n        $this->assertSame('2020-09-23 14:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n\n        $d->setTimestamp('0.23561248 1599828571');\n        $this->assertSame('2020-09-11 08:49:31.235612', $d->format('Y-m-d H:i:s.u'));\n\n        $d->timestamp = '0.88951247/1600887164/12.56';\n        $this->assertSame('2020-09-23 14:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n\n        $d->setTimestamp('0.00561248/1599828570--1.23');\n        $this->assertSame('2020-09-11 08:49:31.235612', $d->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testSetTimezoneWithInvalidTimezone()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        $d = Carbon::now();\n        $d->setTimezone('sdf');\n    }\n\n    public function testTimezoneWithInvalidTimezone()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->timezone = 'sdf';\n    }\n\n    public function testTimeZoneOfUnserialized()\n    {\n        $date = new Carbon('2020-01-01', 'America/Vancouver');\n\n        $new = unserialize(serialize($date));\n\n        $this->assertSame('America/Vancouver', $date->getTimezone()->getName());\n\n        $date->cleanupDumpProperties()->timezone = 'UTC';\n\n        $this->assertSame('UTC', $date->getTimezone()->getName());\n\n        $this->assertSame('America/Vancouver', $new->getTimezone()->getName());\n\n        @$new->timezone = 'UTC';\n\n        $this->assertSame('UTC', $new->getTimezone()->getName());\n\n        /** @var mixed $date */\n        $date = new Carbon('2020-01-01', 'America/Vancouver');\n\n        $new = clone $date;\n\n        $this->assertSame('America/Vancouver', $date->getTimezone()->getName());\n\n        @$date->timezone = 'UTC';\n\n        $this->assertSame('UTC', $date->getTimezone()->getName());\n\n        $this->assertSame('America/Vancouver', $new->getTimezone()->getName());\n\n        @$new->timezone = 'UTC';\n\n        $this->assertSame('UTC', $new->getTimezone()->getName());\n\n        $date = new Carbon('2020-01-01', 'America/Vancouver');\n\n        $this->assertSame('America/Vancouver', $date->getTimezone()->getName());\n\n        var_export($date, true);\n\n        $date->cleanupDumpProperties()->timezone = 'UTC';\n\n        $this->assertSame('UTC', $date->getTimezone()->getName());\n\n        $date = new Carbon('2020-01-01', 'America/Vancouver');\n\n        $this->assertSame('America/Vancouver', $date->getTimezone()->getName());\n\n        /** @var array $array */\n        $array = $date;\n\n        foreach ($array as $item) {\n        }\n\n        $date->cleanupDumpProperties()->timezone = 'UTC';\n\n        $this->assertSame('UTC', $date->getTimezone()->getName());\n\n        $date = new Carbon('2020-01-01', 'America/Vancouver');\n\n        $this->assertSame('America/Vancouver', $date->getTimezone()->getName());\n\n        get_object_vars($date);\n\n        $date->cleanupDumpProperties()->timezone = 'UTC';\n\n        $this->assertSame('UTC', $date->getTimezone()->getName());\n    }\n\n    public function testTimezoneWithInvalidTimezoneSetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        $d = Carbon::now();\n        $d->timezone('sdf');\n    }\n\n    public function testTzWithInvalidTimezone()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->tz = 'sdf';\n    }\n\n    public function testTzWithInvalidTimezoneSetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        $d = Carbon::now();\n        $d->tz('sdf');\n    }\n\n    public function testSetTimezoneUsingString()\n    {\n        $d = Carbon::now();\n        $d->setTimezone('America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n    }\n\n    public function testShiftTimezone()\n    {\n        $d = Carbon::parse('2018-08-13 10:53:12', 'Europe/Paris');\n        $d2 = $d->copy()->setTimezone('America/Toronto');\n        $this->assertSame(0, $d2->getTimestamp() - $d->getTimestamp());\n        $this->assertSame('04:53:12', $d2->format('H:i:s'));\n\n        $d = Carbon::parse('2018-08-13 10:53:12.321654', 'Europe/Paris');\n        $d2 = $d->copy()->shiftTimezone('America/Toronto');\n        $this->assertSame(21600, $d2->getTimestamp() - $d->getTimestamp());\n        $this->assertSame('America/Toronto', $d2->tzName);\n        $this->assertSame('10:53:12.321654', $d2->format('H:i:s.u'));\n\n        $d = Carbon::parse('2018-03-25 00:53:12.321654 America/Toronto')->shiftTimezone('Europe/Oslo');\n        $this->assertSame('2018-03-25 00:53:12.321654 Europe/Oslo', $d->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testTimezoneUsingString()\n    {\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->timezone = 'America/Toronto';\n        $this->assertSame('America/Toronto', $d->tzName);\n\n        $d->timezone('America/Vancouver');\n        $this->assertSame('America/Vancouver', $d->tzName);\n    }\n\n    public function testTzUsingString()\n    {\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->tz = 'America/Toronto';\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('America/Toronto', $d->tz());\n\n        $d->tz('America/Vancouver');\n        $this->assertSame('America/Vancouver', $d->tzName);\n        $this->assertSame('America/Vancouver', $d->tz());\n    }\n\n    public function testTzUsingOffset()\n    {\n        $d = Carbon::create(2000, 8, 1, 0, 0, 0);\n        $d->offset = 7200;\n        $this->assertSame(7200, $d->offset);\n        $this->assertSame(120, $d->offsetMinutes);\n        $this->assertSame(2, $d->offsetHours);\n        $this->assertSame(120, $d->utcOffset());\n\n        $d->utcOffset(-180);\n        $this->assertSame(-10800, $d->offset);\n        $this->assertSame(-180, $d->offsetMinutes);\n        $this->assertSame(-3, $d->offsetHours);\n        $this->assertSame(-180, $d->utcOffset());\n\n        $d->offsetMinutes = -240;\n        $this->assertSame(-14400, $d->offset);\n        $this->assertSame(-240, $d->offsetMinutes);\n        $this->assertSame(-4, $d->offsetHours);\n        $this->assertSame(-240, $d->utcOffset());\n\n        $d->offsetHours = 1;\n        $this->assertSame(3600, $d->offset);\n        $this->assertSame(60, $d->offsetMinutes);\n        $this->assertSame(1, $d->offsetHours);\n        $this->assertSame(60, $d->utcOffset());\n\n        $d->utcOffset(330);\n        $this->assertSame(330, $d->utcOffset());\n    }\n\n    public function testSetTimezoneUsingDateTimeZone()\n    {\n        $d = Carbon::now();\n        $d->setTimezone(new DateTimeZone('America/Toronto'));\n        $this->assertSame('America/Toronto', $d->tzName);\n    }\n\n    public function testTimezoneUsingDateTimeZone()\n    {\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->timezone = new DateTimeZone('America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n\n        $d->timezone(new DateTimeZone('America/Vancouver'));\n        $this->assertSame('America/Vancouver', $d->tzName);\n    }\n\n    public function testTzUsingDateTimeZone()\n    {\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->tz = new DateTimeZone('America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n\n        $d->tz(new DateTimeZone('America/Vancouver'));\n        $this->assertSame('America/Vancouver', $d->tzName);\n    }\n\n    public function testInvalidSetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Unknown setter 'doesNotExit'\",\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $date->doesNotExit = 'bb';\n    }\n\n    #[TestWith([9, 15, 30, '09:15:30'])]\n    #[TestWith([9, 15, 0, '09:15'])]\n    #[TestWith([9, 0, 0, '09'])]\n    #[TestWith([9, 5, 3, '9:5:3'])]\n    #[TestWith([9, 5, 0, '9:5'])]\n    #[TestWith([9, 0, 0, '9'])]\n    public function testSetTimeFromTimeString(int $hour, int $minute, int $second, string $time)\n    {\n        Carbon::setTestNow(Carbon::create(2016, 2, 12, 1, 2, 3));\n        $d = Carbon::now()->setTimeFromTimeString($time);\n        $this->assertCarbon($d, 2016, 2, 12, $hour, $minute, $second);\n    }\n\n    public function testWeekendDaysSetter()\n    {\n        $weekendDays = [Carbon::FRIDAY,Carbon::SATURDAY];\n        $d = Carbon::now();\n        $d->setWeekendDays($weekendDays);\n        $this->assertSame($weekendDays, $d->getWeekendDays());\n        Carbon::setWeekendDays([Carbon::SATURDAY, Carbon::SUNDAY]);\n    }\n\n    public function testMidDayAtSetter()\n    {\n        $d = Carbon::now();\n        $d->setMidDayAt(11);\n        $this->assertSame(11, $d->getMidDayAt());\n        $d->setMidDayAt(12);\n        $this->assertSame(12, $d->getMidDayAt());\n    }\n\n    public function testSetUnitNoOverflowFebruary()\n    {\n        $d = Carbon::parse('2024-02-29')->setUnitNoOverFlow('day', 31, 'month');\n\n        $this->assertInstanceOf(Carbon::class, $d);\n        $this->assertSame('2024-02-29 23:59:59.999999', $d->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testSetUnitNoOverflow()\n    {\n        $results = [\n            'current' => 0,\n            'start' => 0,\n            'end' => 0,\n            'failure' => [],\n        ];\n\n        for ($i = 0; $i < static::SET_UNIT_NO_OVERFLOW_SAMPLE; $i++) {\n            $year = mt_rand(2000, 2500);\n            $month = mt_rand(1, 12);\n            $day = mt_rand(1, 28);\n            $hour = mt_rand(0, 23);\n            $minute = mt_rand(0, 59);\n            $second = mt_rand(0, 59);\n            $microsecond = mt_rand(0, 999999);\n            $units = ['millennium', 'century', 'decade', 'year', 'quarter', 'month', 'day', 'hour', 'minute', 'second', 'week'];\n            $overflowUnit = $units[mt_rand(0, \\count($units) - 1)];\n            $units = [\n                'year' => 10,\n                'month' => 12,\n                'day' => 9999,\n                'hour' => 24,\n                'minute' => 60,\n                'second' => 60,\n                'microsecond' => 1000000,\n            ];\n            $valueUnit = array_keys($units)[mt_rand(0, \\count($units) - 1)];\n            $value = mt_rand(0, 1) === 1 ?\n                mt_rand(-9999, 9999) :\n                mt_rand(-60, 60);\n\n            $date = Carbon::create($year, $month, $day, $hour, $minute, $second + $microsecond / 1000000, 'UTC');\n            $original = $date->copy();\n            $date->setUnitNoOverflow($valueUnit, $value, $overflowUnit);\n            $start = $original->copy()->startOf($overflowUnit);\n            $end = $original->copy()->endOf($overflowUnit);\n\n            if ($date->lessThan($start) || $date->greaterThan($end)) {\n                $results['failure'][] = [\n                    'year' => $year,\n                    'month' => $month,\n                    'day' => $day,\n                    'hour' => $hour,\n                    'minute' => $minute,\n                    'second' => $second,\n                    'microsecond' => $microsecond,\n                    'valueUnit' => $valueUnit,\n                    'value' => $value,\n                    'overflowUnit' => $overflowUnit,\n                    'date' => $date->format('Y-m-d H:i:s'),\n                    'start' => $start->format('Y-m-d H:i:s'),\n                    'end' => $end->format('Y-m-d H:i:s'),\n                ];\n\n                continue;\n            }\n\n            $unit = ucfirst(Carbon::pluralUnit($valueUnit));\n            $modulo = $value % $units[$valueUnit];\n\n            if ($modulo < 0) {\n                $modulo += $units[$valueUnit];\n            }\n\n            if ($value === $date->$valueUnit ||\n                $modulo === $date->$valueUnit ||\n                $$valueUnit - ((int) $date->{\"diffIn$unit\"}($original, false)) === $value ||\n                ($valueUnit === 'day' &&\n                    $date->format('Y-m-d H:i:s.u') === $original->copy()\n                        ->modify(($original->day + $value).' days')\n                        ->format('Y-m-d H:i:s.u'))\n            ) {\n                $results['current']++;\n\n                continue;\n            }\n\n            if ($date->$valueUnit === $start->$valueUnit) {\n                $results['start']++;\n\n                continue;\n            }\n\n            if ($date->$valueUnit === $end->$valueUnit) {\n                $results['end']++;\n\n                continue;\n            }\n\n            $this->failOperation(\n                $original,\n                $date,\n                $start,\n                $end,\n                'setUnitNoOverflow',\n                $valueUnit,\n                $value,\n                $overflowUnit,\n                $unit,\n                $modulo,\n                $$valueUnit,\n            );\n        }\n\n        $minimum = static::SET_UNIT_NO_OVERFLOW_SAMPLE / 100;\n        $this->assertSame([], $results['failure']);\n        $this->assertGreaterThan($minimum, $results['start']);\n        $this->assertGreaterThan($minimum, $results['end']);\n        $this->assertGreaterThan($minimum, $results['current']);\n        $this->assertSame(static::SET_UNIT_NO_OVERFLOW_SAMPLE, $results['end'] + $results['start'] + $results['current']);\n    }\n\n    public function testSetUnitNoOverflowInputUnitException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'anyUnit\\'',\n        ));\n\n        Carbon::now()->setUnitNoOverflow('anyUnit', 1, 'year');\n    }\n\n    public function testSetUnitNoOverflowOverflowUnitException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'anyUnit\\'',\n        ));\n\n        Carbon::now()->setUnitNoOverflow('minute', 1, 'anyUnit');\n    }\n\n    public function testAddUnitError()\n    {\n        $this->expectExceptionObject(new UnitException(implode(\"\\n\", [\n            'Unable to add unit array (',\n            \"  0 => 'foobar',\",\n            '  1 => 1,',\n            ')',\n        ])));\n\n        $date = Carbon::parse('2021-09-13');\n        @$date->addUnit('foobar', 1);\n    }\n\n    public function testUnsupportedUnitException()\n    {\n        $date = new class('2021-09-13') extends Carbon {\n            public function rawAdd(DateInterval $interval): static\n            {\n                throw new InvalidIntervalException('InvalidIntervalException');\n            }\n\n            public function modify($modifier): static\n            {\n                throw new InvalidFormatException('InvalidFormatException');\n            }\n        };\n\n        $exception = null;\n\n        try {\n            $date->addUnit('year', 999);\n        } catch (UnitException $error) {\n            $exception = $error;\n        }\n\n        $this->assertSame(\n            'Unable to add unit '.var_export(['year', 999], true),\n            $exception?->getMessage(),\n        );\n\n        $previous = $exception->getPrevious();\n\n        $this->assertInstanceOf(UnsupportedUnitException::class, $previous);\n        $this->assertSame(\"Unsupported unit 'year'\", $previous->getMessage());\n\n        $previous = $previous->getPrevious();\n\n        $this->assertInstanceOf(InvalidIntervalException::class, $previous);\n        $this->assertSame('InvalidIntervalException', $previous->getMessage());\n        $this->assertNull($previous->getPrevious());\n    }\n\n    public function testAddUnitNoOverflow()\n    {\n        $results = [\n            'current' => 0,\n            'start' => 0,\n            'end' => 0,\n            'failure' => [],\n        ];\n\n        for ($i = 0; $i < static::SET_UNIT_NO_OVERFLOW_SAMPLE; $i++) {\n            $year = mt_rand(2000, 2500);\n            $month = mt_rand(1, 12);\n            $day = mt_rand(1, 28);\n            $hour = mt_rand(0, 23);\n            $minute = mt_rand(0, 59);\n            $second = mt_rand(0, 59);\n            $microsecond = mt_rand(0, 999999);\n            $units = ['millennium', 'century', 'decade', 'year', 'quarter', 'month', 'day', 'hour', 'minute', 'second', 'week'];\n            $overflowUnit = $units[mt_rand(0, \\count($units) - 1)];\n            $units = [\n                'year' => 10,\n                'month' => 12,\n                'day' => 9999,\n                'hour' => 24,\n                'minute' => 60,\n                'second' => 60,\n                'microsecond' => 1000000,\n            ];\n            $valueUnit = array_keys($units)[mt_rand(0, \\count($units) - 1)];\n            $value = mt_rand(0, 1) === 1 ?\n                mt_rand(-9999, 9999) :\n                mt_rand(-60, 60);\n\n            $date = Carbon::create($year, $month, $day, $hour, $minute, $second + $microsecond / 1000000);\n            $original = $date->copy();\n            $date->addUnitNoOverflow($valueUnit, $value, $overflowUnit);\n            $start = $original->copy()->startOf($overflowUnit);\n            $end = $original->copy()->endOf($overflowUnit);\n\n            if ($date->lessThan($start) || $date->greaterThan($end)) {\n                $results['failure'][] = [\n                    'year' => $year,\n                    'month' => $month,\n                    'day' => $day,\n                    'hour' => $hour,\n                    'minute' => $minute,\n                    'second' => $second,\n                    'microsecond' => $microsecond,\n                    'valueUnit' => $valueUnit,\n                    'value' => $value,\n                    'overflowUnit' => $overflowUnit,\n                    'date' => $date->format('Y-m-d H:i:s.u e O'),\n                    'start' => $start->format('Y-m-d H:i:s.u e O'),\n                    'end' => $end->format('Y-m-d H:i:s.u e O'),\n                ];\n\n                continue;\n            }\n\n            $unit = ucfirst(Carbon::pluralUnit($valueUnit));\n            $modulo = ($$valueUnit + $value) % $units[$valueUnit];\n            if ($modulo < 0) {\n                $modulo += $units[$valueUnit];\n            }\n            if ($value === $date->$valueUnit ||\n                $modulo === $date->$valueUnit ||\n                (method_exists($date, \"diffInReal$unit\") && -$date->{\"diffInReal$unit\"}($original, false) === $value)\n            ) {\n                $results['current']++;\n\n                continue;\n            }\n\n            if ($date->$valueUnit === $start->$valueUnit) {\n                $results['start']++;\n\n                continue;\n            }\n\n            if ($date->$valueUnit === $end->$valueUnit) {\n                $results['end']++;\n\n                continue;\n            }\n\n            $currentDiff = -((int) round($date->{\"diffIn$unit\"}($original, false)));\n\n            if ($currentDiff === $value) {\n                $results['current']++;\n\n                continue;\n            }\n\n            $delta = ($currentDiff - $value);\n\n            if ($valueUnit === 'hour') {\n                $diff = $this->getOffsetChangeOfTheDay($date) ?: $this->getOffsetChangeOfTheDay($original);\n\n                if ($diff !== 0) {\n                    $sign = $diff < 0 ? -1 : 1;\n                    $diff = abs($diff);\n                    $minutes = $diff % 100;\n                    $hours = (int) ($sign * (floor($diff / 100) + $minutes / 60));\n\n                    if ($delta === -$hours) {\n                        $results['current']++;\n\n                        continue;\n                    }\n                }\n            }\n\n            $this->failOperation(\n                $original,\n                $date,\n                $start,\n                $end,\n                'addUnitNoOverflow',\n                $valueUnit,\n                $value,\n                $overflowUnit,\n                $unit,\n                $modulo,\n                $value,\n            );\n        }\n\n        $minimum = static::SET_UNIT_NO_OVERFLOW_SAMPLE / 100;\n        $this->assertSame([], $results['failure']);\n        $this->assertGreaterThan($minimum, $results['start']);\n        $this->assertGreaterThan($minimum, $results['end']);\n        $this->assertGreaterThan($minimum, $results['current']);\n        $this->assertSame(static::SET_UNIT_NO_OVERFLOW_SAMPLE, $results['end'] + $results['start'] + $results['current']);\n    }\n\n    public function testSubUnitNoOverflow()\n    {\n        $results = [\n            'current' => 0,\n            'start' => 0,\n            'end' => 0,\n            'failure' => [],\n        ];\n\n        for ($i = 0; $i < static::SET_UNIT_NO_OVERFLOW_SAMPLE; $i++) {\n            $year = mt_rand(2000, 2500);\n            $month = mt_rand(1, 12);\n            $day = mt_rand(1, 28);\n            $hour = mt_rand(0, 23);\n            $minute = mt_rand(0, 59);\n            $second = mt_rand(0, 59);\n            $microsecond = mt_rand(0, 999999);\n            $units = ['millennium', 'century', 'decade', 'year', 'quarter', 'month', 'day', 'hour', 'minute', 'second', 'week'];\n            $overflowUnit = $units[mt_rand(0, \\count($units) - 1)];\n            $units = [\n                'year' => 10,\n                'month' => 12,\n                'day' => 9999,\n                'hour' => 24,\n                'minute' => 60,\n                'second' => 60,\n                'microsecond' => 1000000,\n            ];\n            $valueUnit = array_keys($units)[mt_rand(0, \\count($units) - 1)];\n            $value = mt_rand(0, 1) === 1 ?\n                mt_rand(-9999, 9999) :\n                mt_rand(-60, 60);\n\n            $date = Carbon::create($year, $month, $day, $hour, $minute, $second + $microsecond / 1000000);\n            $original = $date->copy();\n            $date->subUnitNoOverflow($valueUnit, $value, $overflowUnit);\n            $start = $original->copy()->startOf($overflowUnit);\n            $end = $original->copy()->endOf($overflowUnit);\n\n            if ($date->lessThan($start) || $date->greaterThan($end)) {\n                $results['failure'][] = [\n                    'year' => $year,\n                    'month' => $month,\n                    'day' => $day,\n                    'hour' => $hour,\n                    'minute' => $minute,\n                    'second' => $second,\n                    'microsecond' => $microsecond,\n                    'valueUnit' => $valueUnit,\n                    'value' => $value,\n                    'overflowUnit' => $overflowUnit,\n                    'date' => $date->format('Y-m-d H:i:s.u e O'),\n                    'start' => $start->format('Y-m-d H:i:s.u e O'),\n                    'end' => $end->format('Y-m-d H:i:s.u e O'),\n                ];\n\n                continue;\n            }\n\n            $unit = ucfirst(Carbon::pluralUnit($valueUnit));\n            $modulo = ($$valueUnit - $value) % $units[$valueUnit];\n\n            if ($modulo < 0) {\n                $modulo += $units[$valueUnit];\n            }\n\n            if ($value === $date->$valueUnit ||\n                $modulo === $date->$valueUnit ||\n                (method_exists($date, \"diffInReal$unit\") && $value === $date->{\"diffInReal$unit\"}($original, false))\n            ) {\n                $results['current']++;\n\n                continue;\n            }\n\n            if ($valueUnit === 'day') {\n                $dateInterval = $date->diffAsDateInterval($original);\n                $days = $dateInterval->days;\n\n                if ($days !== false) {\n                    $days *= $dateInterval->invert ? -1 : 1;\n\n                    if ($value === $days) {\n                        $results['current']++;\n\n                        continue;\n                    }\n                }\n            }\n\n            if ($date->$valueUnit === $start->$valueUnit) {\n                $results['start']++;\n\n                continue;\n            }\n\n            if ($date->$valueUnit === $end->$valueUnit) {\n                $results['end']++;\n\n                continue;\n            }\n\n            $currentDiff = (int) round($date->{\"diffIn$unit\"}($original, false));\n\n            if ($currentDiff === $value) {\n                $results['current']++;\n\n                continue;\n            }\n\n            $delta = ($currentDiff - $value);\n\n            if ($valueUnit === 'hour') {\n                $diff = $this->getOffsetChangeOfTheDay($date) ?: $this->getOffsetChangeOfTheDay($original);\n\n                if ($diff !== 0) {\n                    $sign = $diff < 0 ? -1 : 1;\n                    $diff = abs($diff);\n                    $minutes = $diff % 100;\n                    $hours = (int) ($sign * (floor($diff / 100) + $minutes / 60));\n\n                    if ($delta === $hours) {\n                        $results['current']++;\n\n                        continue;\n                    }\n                }\n            }\n\n            $this->failOperation(\n                $original,\n                $date,\n                $start,\n                $end,\n                'subUnitNoOverflow',\n                $valueUnit,\n                $value,\n                $overflowUnit,\n                $unit,\n                $modulo,\n                $value,\n                $hours ?? null,\n                $delta,\n            );\n        }\n\n        $minimum = static::SET_UNIT_NO_OVERFLOW_SAMPLE / 100;\n        $this->assertSame([], $results['failure']);\n        $this->assertGreaterThan($minimum, $results['start']);\n        $this->assertGreaterThan($minimum, $results['end']);\n        $this->assertGreaterThan($minimum, $results['current']);\n        $this->assertSame(static::SET_UNIT_NO_OVERFLOW_SAMPLE, $results['end'] + $results['start'] + $results['current']);\n    }\n\n    public function testOverflowInDst()\n    {\n        $date = Carbon::create(2335, 11, 3, 1, 30, 50.138159)\n            ->subUnitNoOverflow('year', 5668, 'second');\n\n        $this->assertSame(\n            '2335-11-03 01:30:50.000000 America/Toronto -0400',\n            $date->format('Y-m-d H:i:s.u e O'),\n        );\n\n        $date = Carbon::parse('2020-10-15 03:22:57.442989', 'America/Toronto')->hours(-5302);\n\n        $diff = (int) ($date->copy()->startOfDay()->format('O') - $date->copy()->endOfDay()->format('O'));\n        $sign = $diff < 0 ? -1 : 1;\n        $diff = abs($diff);\n        $minutes = $diff % 100;\n        $hours = $sign * (floor($diff / 100) + $minutes / 60);\n\n        $diffInHours = $date->diffInHours(\n            Carbon::parse('2020-10-15 03:22:57.442989', 'America/Toronto'),\n        );\n\n        $this->assertSame(5305.0 + $hours, $diffInHours);\n    }\n\n    private function getOffsetChangeOfTheDay(Carbon $date): int\n    {\n        return (int) ($date->copy()->startOfDay()->format('O') - $date->copy()->endOfDay()->format('O'));\n    }\n\n    /**\n     * @SuppressWarnings(TooManyFields)\n     */\n    private function failOperation(\n        Carbon $original,\n        Carbon $date,\n        Carbon $start,\n        Carbon $end,\n        string $method,\n        string $valueUnit,\n        int $value,\n        string $overflowUnit,\n        string $unit,\n        int $modulo,\n        int $variableValue,\n        ?int $hours = null,\n        ?int $delta = null,\n    ): void {\n        throw new Exception(implode(\"\\n\", [\n            'Unhandled result for: '.\n            'Carbon::parse('.var_export($original->format('Y-m-d H:i:s.u'), true).', '.\n            var_export($original->timezoneName, true).\n            \")->$method(\".implode(', ', array_map(function ($value) {\n                return var_export($value, true);\n            }, [$valueUnit, $value, $overflowUnit])).');',\n            'Getting: '.$date->format('Y-m-d H:i:s.u e O'),\n            \"Current $valueUnit: \".$date->$valueUnit,\n            'Is neither '.$start->$valueUnit.\" (from $start)\",\n            'Nor '.$end->$valueUnit.\" (from $end)\",\n            \"Nor $value (from value)\",\n            \"Nor $modulo (from modulo)\",\n            ...($hours !== null ? [\n                \"Not matching diff (hours = $hours vs delta = \".($delta ?? 'null').')',\n            ] : []),\n            method_exists($date, \"diffInReal$unit\")\n                ? \"diffInReal$unit() exists and returns \".$date->{\"diffInReal$unit\"}($original, false)\n                    .\" while expecting $variableValue\"\n                : \"diffInReal$unit() does not exist\",\n            \"diffIn$unit() exists and returns \".$date->{\"diffIn$unit\"}($original, false)\n            .\" while expecting $variableValue\",\n        ]));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/SettingsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass SettingsTest extends AbstractTestCase\n{\n    public function testSettings()\n    {\n        $paris = Carbon::parse('2018-01-31 00:00:00')->settings([\n            'timezone' => 'Europe/Paris',\n            'locale' => 'fr_FR',\n            'monthOverflow' => true,\n            'yearOverflow' => true,\n        ]);\n        $this->assertEquals([\n            'timezone' => 'Europe/Paris',\n            'locale' => 'fr_FR',\n            'monthOverflow' => true,\n            'yearOverflow' => true,\n        ], $paris->getSettings());\n        $saoPaulo = Carbon::parse('2018-01-31 00:00:00')->settings([\n            'timezone' => 'America/Sao_Paulo',\n            'locale' => 'pt',\n            'monthOverflow' => false,\n            'yearOverflow' => false,\n        ]);\n        $this->assertEquals([\n            'timezone' => 'America/Sao_Paulo',\n            'locale' => 'pt',\n            'monthOverflow' => false,\n            'yearOverflow' => false,\n        ], $saoPaulo->getSettings());\n\n        $this->assertSame('2 jours 1 heure avant', $paris->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), null, false, 3));\n        $this->assertSame('4 dias 21 horas antes', $saoPaulo->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), null, false, 3));\n        $this->assertSame('2 jours et une heure avant', $paris->from(Carbon::parse('2018-03-05', 'UTC'), ['parts' => 3, 'join' => true, 'aUnit' => true]));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/StartEndOfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\Unit;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass StartEndOfTest extends AbstractTestCase\n{\n    public function testStartOfDay()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfDay());\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, 0, 0, 0, 0);\n    }\n\n    public function testEndOfDay()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfDay());\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, 23, 59, 59, 999999);\n    }\n\n    public function testStartOfMonthIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfMonth());\n    }\n\n    public function testStartOfMonthFromNow()\n    {\n        $dt = Carbon::now()->startOfMonth();\n        $this->assertCarbon($dt, $dt->year, $dt->month, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMonthFromLastDay()\n    {\n        $dt = Carbon::create(2000, 1, 31, 2, 3, 4)->startOfMonth();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfYearIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfYear());\n    }\n\n    public function testStartOfYearFromNow()\n    {\n        $dt = Carbon::now()->startOfYear();\n        $this->assertCarbon($dt, $dt->year, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfYearFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->startOfYear();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfYearFromLastDay()\n    {\n        $dt = Carbon::create(2000, 12, 31, 23, 59, 59)->startOfYear();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testEndOfMonthIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfMonth());\n    }\n\n    public function testEndOfMonth()\n    {\n        $dt = Carbon::create(2000, 1, 1, 2, 3, 4)->endOfMonth();\n        $this->assertCarbon($dt, 2000, 1, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfMonthFromLastDay()\n    {\n        $dt = Carbon::create(2000, 1, 31, 2, 3, 4)->endOfMonth();\n        $this->assertCarbon($dt, 2000, 1, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfYearIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfYear());\n    }\n\n    public function testEndOfYearFromNow()\n    {\n        $dt = Carbon::now()->endOfYear();\n        $this->assertCarbon($dt, $dt->year, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfYearFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->endOfYear();\n        $this->assertCarbon($dt, 2000, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfYearFromLastDay()\n    {\n        $dt = Carbon::create(2000, 12, 31, 23, 59, 59)->endOfYear();\n        $this->assertCarbon($dt, 2000, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testStartOfDecadeIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfDecade());\n    }\n\n    public function testStartOfDecadeFromNow()\n    {\n        $dt = Carbon::now()->startOfDecade();\n        $this->assertCarbon($dt, $dt->year - $dt->year % 10, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfDecadeFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->startOfDecade();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfDecadeFromLastDay()\n    {\n        $dt = Carbon::create(2009, 12, 31, 23, 59, 59)->startOfDecade();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testEndOfDecadeIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfDecade());\n    }\n\n    public function testEndOfDecadeFromNow()\n    {\n        $dt = Carbon::now()->endOfDecade();\n        $this->assertCarbon($dt, $dt->year - $dt->year % 10 + 9, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfDecadeFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->endOfDecade();\n        $this->assertCarbon($dt, 2009, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfDecadeFromLastDay()\n    {\n        $dt = Carbon::create(2009, 12, 31, 23, 59, 59)->endOfDecade();\n        $this->assertCarbon($dt, 2009, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testStartOfCenturyIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfCentury());\n    }\n\n    public function testStartOfCenturyFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfCentury();\n        $this->assertCarbon($dt, $now->year - $now->year % 100 + 1, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfCenturyFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfCentury();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfCenturyFromLastDay()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfCentury();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMillenniumIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfMillennium());\n    }\n\n    public function testStartOfMillenniumFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfMillennium();\n        $this->assertCarbon($dt, $now->year - $now->year % 1000 + 1, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMillenniumFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfMillennium();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMillenniumFromLastDay()\n    {\n        $dt = Carbon::create(3000, 12, 31, 23, 59, 59)->startOfMillennium();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfHourIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfHour());\n    }\n\n    public function testStartOfHourFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfHour();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, 0, 0);\n    }\n\n    public function testStartOfHourFromFirstMinute()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 0, 0);\n    }\n\n    public function testStartOfHourFromLastMinute()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 0, 0);\n    }\n\n    public function testEndOfHourIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfHour());\n    }\n\n    public function testEndOfHourFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfHour();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, 59, 59, 999999);\n    }\n\n    public function testEndOfHourFromFirstMinute()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, rand(0, 59))->endOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 59, 59, 999999);\n    }\n\n    public function testEndOfHourFromLastMinute()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, rand(0, 59))->endOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 59, 59, 999999);\n    }\n\n    public function testStartOfMinuteIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfMinute());\n    }\n\n    public function testStartOfMinuteFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfMinute();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, $now->minute, 0);\n    }\n\n    public function testStartOfMinuteFromFirstSecond()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 0);\n    }\n\n    public function testStartOfMinuteFromLastSecond()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 0);\n    }\n\n    public function testEndOfMinuteIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfMinute());\n    }\n\n    public function testEndOfMinuteFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfMinute();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, $now->minute, 59, 999999);\n    }\n\n    public function testEndOfMinuteFromFirstSecond()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->endOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 59, 999999);\n    }\n\n    public function testEndOfMinuteFromLastSecond()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->endOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 59, 999999);\n    }\n\n    public function testStartOfSecondIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfSecond());\n    }\n\n    public function testStartOfSecondFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfSecond();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second, 0);\n    }\n\n    public function testStartOfSecondFromFirstSecond()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfSecond();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, $dt->second, 0);\n    }\n\n    public function testStartOfSecondFromLastSecond()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfSecond();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, $dt->second, 0);\n    }\n\n    public function testEndOfSecondIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfSecond());\n    }\n\n    public function testEndOfSecondFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfSecond();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second, 999999);\n    }\n\n    public function testEndOfSecondFromFirstSecond()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->modify('01:01:01.1')->endOfSecond();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, $dt->second, 999999);\n    }\n\n    public function testEndOfSecondFromLastSecond()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->modify('23:59:59.1')->endOfSecond();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, $dt->second, 999999);\n    }\n\n    public function testStartOfSecond()\n    {\n        $dt = new Carbon('2000-06-15 23:10:10.123456');\n        $this->assertCarbon($dt->startOfSecond(), 2000, 6, 15, 23, 10, 10, 0);\n        $this->assertCarbon($dt->endOfSecond(), 2000, 6, 15, 23, 10, 10, 999999);\n    }\n\n    public function testMidDayIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->midDay());\n    }\n\n    public function testMidDayFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->midDay();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, 12, 0, 0);\n    }\n\n    public function testEndOfCenturyIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfCentury());\n    }\n\n    public function testEndOfCenturyFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfCentury();\n        $this->assertCarbon($dt, $now->year - $now->year % 100 + 100, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfCenturyFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->endOfCentury();\n        $this->assertCarbon($dt, 2100, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfCenturyFromLastDay()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->endOfCentury();\n        $this->assertCarbon($dt, 2100, 12, 31, 23, 59, 59, 999999);\n    }\n\n    public function testEndOfMillenniumIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfMillennium());\n    }\n\n    public function testEndOfMillenniumFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfMillennium();\n        $this->assertCarbon($dt, $now->year - $now->year % 1000 + 1000, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfMillenniumFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->endOfMillennium();\n        $this->assertCarbon($dt, 3000, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfMillenniumFromLastDay()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->endOfMillennium();\n        $this->assertCarbon($dt, 3000, 12, 31, 23, 59, 59);\n    }\n\n    public function testStartOfQuarterIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfQuarter());\n    }\n\n    #[TestWith([1, 1])]\n    #[TestWith([2, 1])]\n    #[TestWith([3, 1])]\n    #[TestWith([4, 4])]\n    #[TestWith([5, 4])]\n    #[TestWith([6, 4])]\n    #[TestWith([7, 7])]\n    #[TestWith([8, 7])]\n    #[TestWith([9, 7])]\n    #[TestWith([10, 10])]\n    #[TestWith([11, 10])]\n    #[TestWith([12, 10])]\n    public function testStartOfQuarter(int $month, int $startOfQuarterMonth)\n    {\n        $dt = Carbon::create(2015, $month, 15, 1, 2, 3);\n        $this->assertCarbon($dt->startOfQuarter(), 2015, $startOfQuarterMonth, 1, 0, 0, 0);\n    }\n\n    public function testEndOfQuarterIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfQuarter());\n    }\n\n    #[TestWith([1, 3, 31])]\n    #[TestWith([2, 3, 31])]\n    #[TestWith([3, 3, 31])]\n    #[TestWith([4, 6, 30])]\n    #[TestWith([5, 6, 30])]\n    #[TestWith([6, 6, 30])]\n    #[TestWith([7, 9, 30])]\n    #[TestWith([8, 9, 30])]\n    #[TestWith([9, 9, 30])]\n    #[TestWith([10, 12, 31])]\n    #[TestWith([11, 12, 31])]\n    #[TestWith([12, 12, 31])]\n    public function testEndOfQuarter(int $month, int $endOfQuarterMonth, int $endOfQuarterDay)\n    {\n        $dt = Carbon::create(2015, $month, 15, 1, 2, 3);\n        $this->assertCarbon($dt->endOfQuarter(), 2015, $endOfQuarterMonth, $endOfQuarterDay, 23, 59, 59, 999999);\n    }\n\n    public function testAverageIsFluid()\n    {\n        $dt = Carbon::now()->average();\n        $this->assertInstanceOfCarbon($dt);\n    }\n\n    public function testAverageFromSame()\n    {\n        $dt1 = Carbon::create(2000, 1, 31, 2, 3, 4);\n        $dt2 = Carbon::create(2000, 1, 31, 2, 3, 4)->average($dt1);\n        $this->assertCarbon($dt2, 2000, 1, 31, 2, 3, 4);\n    }\n\n    public function testAverageFromGreater()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 1, 1, 1);\n        $dt2 = Carbon::create(2009, 12, 31, 23, 59, 59)->average($dt1);\n        $this->assertCarbon($dt2, 2004, 12, 31, 12, 30, 30);\n    }\n\n    public function testAverageFromLower()\n    {\n        $dt1 = Carbon::create(2009, 12, 31, 23, 59, 59);\n        $dt2 = Carbon::create(2000, 1, 1, 1, 1, 1)->average($dt1);\n        $this->assertCarbon($dt2, 2004, 12, 31, 12, 30, 30);\n    }\n\n    public function testAverageWithCloseDates()\n    {\n        $dt1 = Carbon::parse('2004-01-24 09:46:56.500000');\n        $dt2 = Carbon::parse('2004-01-24 09:46:56.600000');\n\n        $this->assertSame('2004-01-24 09:46:56.550000', $dt1->average($dt2)->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testAverageWithFarDates()\n    {\n        $dt1 = Carbon::parse('-2018-05-07 12:34:46.500000', 'UTC');\n        $dt2 = Carbon::parse('6025-10-11 20:59:06.600000', 'UTC');\n\n        $this->assertSame('2004-01-24 04:46:56.550000', $dt1->average($dt2)->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testStartOf()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOf('day'));\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, 0, 0, 0, 0);\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOf(Unit::Day));\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, 0, 0, 0, 0);\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOf('Months'));\n        $this->assertCarbon($dt, $dt->year, $dt->month, 1, 0, 0, 0, 0);\n    }\n\n    public function testEndOf()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOf('day'));\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, 23, 59, 59, 999999);\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOf(Unit::Day));\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, 23, 59, 59, 999999);\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOf('Months'));\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->daysInMonth, 23, 59, 59, 999999);\n    }\n\n    public function testStartOfInvalidUnit()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'microsecond\\'',\n        ));\n\n        Carbon::now()->startOf('microsecond');\n    }\n\n    public function testEndOfInvalidUnit()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'microsecond\\'',\n        ));\n\n        Carbon::now()->endOf('microsecond');\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/StrictModeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass StrictModeTest extends AbstractTestCase\n{\n    public function testSafeCreateDateTimeZoneWithStrictMode1()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid offset timezone -15',\n        ));\n\n        Carbon::createFromDate(2001, 1, 1, -15);\n    }\n\n    public function testSafeCreateDateTimeZoneWithStrictMode2()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (foobar)',\n        ));\n\n        Carbon::createFromDate(2001, 1, 1, 'foobar');\n    }\n\n    public function testSetWithStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown setter \\'foobar\\'',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $date->foobar = 'biz';\n    }\n\n    public function testGetWithStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown getter \\'foobar\\'',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $date->foobar;\n    }\n\n    public function testSetAndGetWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        /** @var mixed $date */\n        $date = Carbon::now();\n        @$date->foobar = 'biz';\n        $this->assertSame('biz', $date->foobar);\n    }\n\n    public function testIsSameUnitWithStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Bad comparison unit: \\'foobar\\'',\n        ));\n\n        Carbon::now()->isSameUnit('foobar', 'now');\n    }\n\n    public function testIsSameUnitWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertFalse(Carbon::now()->isSameUnit('foobar', 'now'));\n    }\n\n    public function testAddRealUnitWithStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid unit for real timestamp add/sub: \\'foobar\\'',\n        ));\n\n        Carbon::now()->addRealUnit('foobar');\n    }\n\n    public function testAddRealUnitWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $d = Carbon::create(2000, 1, 2, 3, 4, 5)->addRealUnit('foobar');\n        $this->assertCarbon($d, 2000, 1, 2, 3, 4, 5);\n    }\n\n    public function testCallWithStrictMode()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method foobar does not exist.',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $date->foobar();\n    }\n\n    public function testCallWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertNull($date->foobar());\n    }\n\n    public function testStaticCallWithStrictMode()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method Carbon\\Carbon::foobar does not exist.',\n        ));\n\n        Carbon::foobar();\n    }\n\n    public function testStaticCallWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertNull(Carbon::foobar());\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/StringsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\Factory;\nuse DateTime;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\BadIsoCarbon;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\n\nclass StringsTest extends AbstractTestCase\n{\n    public function testToStringCast()\n    {\n        $d = Carbon::now();\n        $this->assertSame(Carbon::now()->toDateTimeString(), ''.$d);\n    }\n\n    public function testToString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu Dec 25 1975 14:15:16 GMT-0500', $d->toString());\n    }\n\n    public function testToISOString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T19:15:16.000000Z', $d->toISOString());\n        $d = Carbon::create(21975, 12, 25, 14, 15, 16);\n        $this->assertSame('+021975-12-25T19:15:16.000000Z', $d->toISOString());\n        $d = Carbon::create(-75, 12, 25, 14, 15, 16);\n        $this->assertStringStartsWith('-000075-', $d->toISOString());\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16.000000-05:00', $d->toISOString(true));\n        $d = Carbon::create(21975, 12, 25, 14, 15, 16);\n        $this->assertSame('+021975-12-25T14:15:16.000000-05:00', $d->toISOString(true));\n        $d = Carbon::create(-75, 12, 25, 14, 15, 16);\n        $this->assertStringStartsWith('-000075-', $d->toISOString(true));\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T19:15:16.000000Z', $d->toJSON());\n        $d = Carbon::create(21975, 12, 25, 14, 15, 16);\n        $this->assertSame('+021975-12-25T19:15:16.000000Z', $d->toJSON());\n        $d = Carbon::create(-75, 12, 25, 14, 15, 16);\n        $this->assertStringStartsWith('-000075-', $d->toJSON());\n        $d = Carbon::create(0);\n        $this->assertNull($d->toISOString());\n    }\n\n    public function testSetToStringFormatString()\n    {\n        Carbon::setToStringFormat('jS \\o\\f F, Y g:i:s a');\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('25th of December, 1975 2:15:16 pm', ''.$d);\n    }\n\n    public function testSetToStringFormatClosure()\n    {\n        Carbon::setToStringFormat(function (CarbonInterface $d) {\n            $format = $d->year === 1976 ?\n                'jS \\o\\f F g:i:s a' :\n                'jS \\o\\f F, Y g:i:s a';\n\n            return $d->format($format);\n        });\n\n        $d = Carbon::create(1976, 12, 25, 14, 15, 16);\n        $this->assertSame('25th of December 2:15:16 pm', ''.$d);\n\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('25th of December, 1975 2:15:16 pm', ''.$d);\n    }\n\n    public function testSetToStringFormatViaSettings()\n    {\n        $factory = new Factory([\n            'toStringFormat' => function (CarbonInterface $d) {\n                return $d->isoFormat('dddd');\n            },\n        ]);\n\n        $d = $factory->create(1976, 12, 25, 14, 15, 16);\n        $this->assertSame('Saturday', ''.$d);\n    }\n\n    public function testResetToStringFormat()\n    {\n        $d = Carbon::now();\n        Carbon::setToStringFormat('123');\n        Carbon::resetToStringFormat();\n        $this->assertSame($d->toDateTimeString(), ''.$d);\n    }\n\n    public function testExtendedClassToString()\n    {\n        $d = MyCarbon::now();\n        $this->assertSame($d->toDateTimeString(), ''.$d);\n    }\n\n    public function testToDateString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25', $d->toDateString());\n    }\n\n    public function testToDateTimeLocalString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16.615342);\n        $this->assertSame('1975-12-25T14:15:16', $d->toDateTimeLocalString());\n        $this->assertSame('1975-12-25T14:15', $d->toDateTimeLocalString('minute'));\n        $this->assertSame('1975-12-25T14:15:16', $d->toDateTimeLocalString('second'));\n        $this->assertSame('1975-12-25T14:15:16.615', $d->toDateTimeLocalString('millisecond'));\n        $this->assertSame('1975-12-25T14:15:16.615342', $d->toDateTimeLocalString('µs'));\n\n        $message = null;\n\n        try {\n            $d->toDateTimeLocalString('hour');\n        } catch (InvalidArgumentException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertSame('Precision unit expected among: minute, second, millisecond and microsecond.', $message);\n    }\n\n    public function testToFormattedDateString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Dec 25, 1975', $d->toFormattedDateString());\n    }\n\n    public function testToTimeString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('14:15:16', $d->toTimeString());\n    }\n\n    public function testToDateTimeString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25 14:15:16', $d->toDateTimeString());\n    }\n\n    public function testToDateTimeStringWithPaddedZeroes()\n    {\n        $d = Carbon::create(2000, 5, 2, 4, 3, 4);\n        $this->assertSame('2000-05-02 04:03:04', $d->toDateTimeString());\n    }\n\n    public function testToDayDateTimeString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, Dec 25, 1975 2:15 PM', $d->toDayDateTimeString());\n    }\n\n    public function testToDayDateString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, Dec 25, 1975', $d->toFormattedDayDateString());\n    }\n\n    public function testToAtomString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toAtomString());\n    }\n\n    public function testToCOOKIEString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame(\n            DateTime::COOKIE === 'l, d-M-y H:i:s T'\n                ? 'Thursday, 25-Dec-75 14:15:16 EST'\n                : 'Thursday, 25-Dec-1975 14:15:16 EST',\n            $d->toCookieString(),\n        );\n    }\n\n    public function testToIso8601String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toIso8601String());\n    }\n\n    public function testToIso8601ZuluString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T19:15:16Z', $d->toIso8601ZuluString());\n    }\n\n    public function testToRC822String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 75 14:15:16 -0500', $d->toRfc822String());\n    }\n\n    public function testToRfc850String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thursday, 25-Dec-75 14:15:16 EST', $d->toRfc850String());\n    }\n\n    public function testToRfc1036String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 75 14:15:16 -0500', $d->toRfc1036String());\n    }\n\n    public function testToRfc1123String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 -0500', $d->toRfc1123String());\n    }\n\n    public function testToRfc2822String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 -0500', $d->toRfc2822String());\n    }\n\n    public function testToRfc3339String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toRfc3339String());\n\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16.000-05:00', $d->toRfc3339String(true));\n    }\n\n    public function testToRssString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 -0500', $d->toRssString());\n    }\n\n    public function testToW3cString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toW3cString());\n    }\n\n    public function testToRfc7231String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16, 'GMT');\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 GMT', $d->toRfc7231String());\n\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 19:15:16 GMT', $d->toRfc7231String());\n    }\n\n    public function testIsoFormat()\n    {\n        $d = Carbon::parse('midnight');\n        $this->assertSame('24', $d->isoFormat('k'));\n\n        $d = Carbon::parse('2017-01-01');\n        $this->assertSame('2017', $d->isoFormat('g'));\n        $this->assertSame('2017', $d->locale('en_US')->isoFormat('g'));\n        $this->assertSame('2016', $d->locale('fr')->isoFormat('g'));\n        $this->assertSame('2016', $d->isoFormat('G'));\n        $this->assertSame('2016', $d->locale('en_US')->isoFormat('G'));\n        $this->assertSame('2016', $d->locale('fr')->isoFormat('G'));\n\n        $d = Carbon::parse('2015-12-31');\n        $this->assertSame('2016', $d->isoFormat('g'));\n        $this->assertSame('2016', $d->locale('en_US')->isoFormat('g'));\n        $this->assertSame('2015', $d->locale('fr')->isoFormat('g'));\n        $this->assertSame('2015', $d->isoFormat('G'));\n        $this->assertSame('2015', $d->locale('en_US')->isoFormat('G'));\n        $this->assertSame('2015', $d->locale('fr')->isoFormat('G'));\n\n        $d = Carbon::parse('2017-01-01 22:25:24.182937');\n        $this->assertSame('1 18 182 1829 18293 182937 1829370 18293700 182937000', $d->isoFormat('S SS SSS SSSS SSSSS SSSSSS SSSSSSS SSSSSSSS SSSSSSSSS'));\n\n        $this->assertSame('02017 +002017', $d->isoFormat('YYYYY YYYYYY'));\n        $this->assertSame(-117, Carbon::create(-117, 1, 1)->year);\n        $this->assertSame('-00117 -000117', Carbon::create(-117, 1, 1)->isoFormat('YYYYY YYYYYY'));\n\n        $this->assertSame('M01', $d->isoFormat('\\\\MMM'));\n\n        $this->assertSame('Jan', $d->isoFormat('MMM'));\n        $this->assertSame('janv.', $d->locale('fr')->isoFormat('MMM'));\n        $this->assertSame('ene.', $d->locale('es')->isoFormat('MMM'));\n        $this->assertSame('1 de enero de 2017', $d->locale('es')->isoFormat('LL'));\n        $this->assertSame('1 de ene. de 2017', $d->locale('es')->isoFormat('ll'));\n\n        $this->assertSame('1st', Carbon::parse('2018-06-01')->isoFormat('Do'));\n        $this->assertSame('11th', Carbon::parse('2018-06-11')->isoFormat('Do'));\n        $this->assertSame('21st', Carbon::parse('2018-06-21')->isoFormat('Do'));\n        $this->assertSame('15th', Carbon::parse('2018-06-15')->isoFormat('Do'));\n    }\n\n    public function testBadIsoFormat()\n    {\n        $d = BadIsoCarbon::parse('midnight');\n\n        $this->assertSame('', $d->isoFormat('MMM'));\n    }\n\n    public function testTranslatedFormat()\n    {\n        $this->assertSame('1st', Carbon::parse('01-01-01')->translatedFormat('jS'));\n        $this->assertSame('1er', Carbon::parse('01-01-01')->locale('fr')->translatedFormat('jS'));\n        $this->assertSame('31 мая', Carbon::parse('2019-05-15')->locale('ru')->translatedFormat('t F'));\n        $this->assertSame('5 май', Carbon::parse('2019-05-15')->locale('ru')->translatedFormat('n F'));\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/SubTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Unit;\nuse DateTime;\nuse Tests\\AbstractTestCase;\n\nclass SubTest extends AbstractTestCase\n{\n    public function testSubMethod()\n    {\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub('year', 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, Unit::Year)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(Unit::Year, 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub('2 years')->year);\n        $lastNegated = null;\n        $date = Carbon::createFromDate(1975)->sub(\n            function (DateTime $date, bool $negated = false) use (&$lastNegated): DateTime {\n                $lastNegated = $negated;\n\n                return new DateTime($date->format('Y-m-d H:i:s').' - 2 years');\n            },\n        );\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(1973, $date->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract('year', 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, Unit::Year)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(Unit::Year, 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract('2 years')->year);\n        $lastNegated = null;\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(\n            function (DateTime $date, bool $negated = false) use (&$lastNegated): DateTime {\n                $lastNegated = $negated;\n\n                return new DateTime($date->format('Y-m-d H:i:s').' - 2 years');\n            },\n        )->year);\n        /** @var CarbonInterval $interval */\n        $interval = include __DIR__.'/../Fixtures/dynamicInterval.php';\n        $originalDate = Carbon::parse('2020-06-08');\n        $date = $originalDate->sub($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-05-31', $date->format('Y-m-d'));\n        $this->assertSame($originalDate, $date);\n        $date = Carbon::parse('2020-07-16')->subtract($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-06-30', $date->format('Y-m-d'));\n    }\n\n    public function testSubYearsPositive()\n    {\n        $this->assertSame(1974, Carbon::createFromDate(1975)->subYears(1)->year);\n    }\n\n    public function testSubYearsZero()\n    {\n        $this->assertSame(1975, Carbon::createFromDate(1975)->subYears(0)->year);\n    }\n\n    public function testSubYearsNegative()\n    {\n        $this->assertSame(1976, Carbon::createFromDate(1975)->subYears(-1)->year);\n    }\n\n    public function testSubYear()\n    {\n        $this->assertSame(1974, Carbon::createFromDate(1975)->subYear()->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'years')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(CarbonInterval::years(2))->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, 'years')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(CarbonInterval::years(2))->year);\n    }\n\n    public function testSubMonthsPositive()\n    {\n        $this->assertSame(12, Carbon::createFromDate(1975, 1, 1)->subMonths(1)->month);\n    }\n\n    public function testSubMonthsZero()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 1, 1)->subMonths(0)->month);\n    }\n\n    public function testSubMonthsNegative()\n    {\n        $this->assertSame(2, Carbon::createFromDate(1975, 1, 1)->subMonths(-1)->month);\n    }\n\n    public function testSubMonth()\n    {\n        $this->assertSame(12, Carbon::createFromDate(1975, 1, 1)->subMonth()->month);\n    }\n\n    public function testSubDaysPositive()\n    {\n        $this->assertSame(30, Carbon::createFromDate(1975, 5, 1)->subDays(1)->day);\n    }\n\n    public function testSubDaysZero()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 5, 1)->subDays(0)->day);\n    }\n\n    public function testSubDaysNegative()\n    {\n        $this->assertSame(2, Carbon::createFromDate(1975, 5, 1)->subDays(-1)->day);\n    }\n\n    public function testSubDay()\n    {\n        $this->assertSame(30, Carbon::createFromDate(1975, 5, 1)->subDay()->day);\n    }\n\n    public function testSubWeekdaysPositive()\n    {\n        $this->assertSame(22, Carbon::createFromDate(2012, 1, 4)->subWeekdays(9)->day);\n    }\n\n    public function testSubWeekdaysZero()\n    {\n        $this->assertSame(4, Carbon::createFromDate(2012, 1, 4)->subWeekdays(0)->day);\n    }\n\n    public function testSubWeekdaysNegative()\n    {\n        $this->assertSame(13, Carbon::createFromDate(2012, 1, 31)->subWeekdays(-9)->day);\n    }\n\n    public function testSubWeekday()\n    {\n        $this->assertSame(6, Carbon::createFromDate(2012, 1, 9)->subWeekday()->day);\n    }\n\n    public function testSubWeekdayDuringWeekend()\n    {\n        $this->assertSame(6, Carbon::createFromDate(2012, 1, 8)->subWeekday()->day);\n    }\n\n    public function testSubWeeksPositive()\n    {\n        $this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->subWeeks(1)->day);\n    }\n\n    public function testSubWeeksZero()\n    {\n        $this->assertSame(21, Carbon::createFromDate(1975, 5, 21)->subWeeks(0)->day);\n    }\n\n    public function testSubWeeksNegative()\n    {\n        $this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->subWeeks(-1)->day);\n    }\n\n    public function testSubWeek()\n    {\n        $this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->subWeek()->day);\n    }\n\n    public function testSubHoursPositive()\n    {\n        $this->assertSame(23, Carbon::createFromTime(0)->subHours(1)->hour);\n    }\n\n    public function testSubHoursZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0)->subHours(0)->hour);\n    }\n\n    public function testSubHoursNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0)->subHours(-1)->hour);\n    }\n\n    public function testSubHour()\n    {\n        $this->assertSame(23, Carbon::createFromTime(0)->subHour()->hour);\n    }\n\n    public function testSubMinutesPositive()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0)->subMinutes(1)->minute);\n    }\n\n    public function testSubMinutesZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0)->subMinutes(0)->minute);\n    }\n\n    public function testSubMinutesNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0)->subMinutes(-1)->minute);\n    }\n\n    public function testSubMinute()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0)->subMinute()->minute);\n    }\n\n    public function testSubSecondsPositive()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0, 0)->subSeconds(1)->second);\n    }\n\n    public function testSubSecondsZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0, 0)->subSeconds(0)->second);\n    }\n\n    public function testSubSecondsNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subSeconds(-1)->second);\n    }\n\n    public function testSubSecond()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0, 0)->subSecond()->second);\n    }\n\n    /**\n     * Test non plural methods with non default args.\n     */\n    public function testSubYearPassingArg()\n    {\n        // subYear should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1973, $date->subYear(2)->year);\n    }\n\n    public function testSubMonthPassingArg()\n    {\n        // subMonth should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 1);\n        $this->assertSame(3, $date->subMonth(2)->month);\n    }\n\n    public function testSubMonthNoOverflowPassingArg()\n    {\n        // subMonthNoOverflow should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(2011, 4, 30);\n        $date = $date->subMonthNoOverflow(2);\n        $this->assertSame(2, $date->month);\n        $this->assertSame(28, $date->day);\n    }\n\n    public function testSubDayPassingArg()\n    {\n        // subDay should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 10);\n        $this->assertSame(8, $date->subDay(2)->day);\n    }\n\n    public function testSubHourPassingArg()\n    {\n        // subHour should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(22, $date->subHour(2)->hour);\n    }\n\n    public function testSubMinutePassingArg()\n    {\n        // subMinute should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(58, $date->subMinute(2)->minute);\n    }\n\n    public function testSubSecondPassingArg()\n    {\n        // subSecond should ideally be used without argument\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(58, $date->subSecond(2)->second);\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/TestingAidsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse DateTimeImmutable;\nuse DateTimeZone;\nuse Exception;\nuse InvalidArgumentException;\nuse stdClass;\nuse SubCarbon;\nuse Tests\\AbstractTestCase;\n\nclass TestingAidsTest extends AbstractTestCase\n{\n    public function testTestingAidsWithTestNowNotSet()\n    {\n        Carbon::setTestNow();\n\n        $this->assertFalse(Carbon::hasTestNow());\n        $this->assertNull(Carbon::getTestNow());\n    }\n\n    public function testTestingAidsWithTestNowSet()\n    {\n        Carbon::setTestNow($yesterday = Carbon::yesterday());\n\n        $this->assertTrue(Carbon::hasTestNow());\n        $this->assertEquals($yesterday, Carbon::getTestNow());\n    }\n\n    public function testTestingAidsWithTestNowSetToString()\n    {\n        Carbon::setTestNow('2016-11-23');\n        $this->assertTrue(Carbon::hasTestNow());\n        $this->assertEquals(Carbon::getTestNow(), Carbon::parse('2016-11-23'));\n    }\n\n    public function testConstructorWithTestValueSet()\n    {\n        Carbon::setTestNow($yesterday = Carbon::yesterday());\n\n        $this->assertEquals($yesterday, new Carbon());\n        $this->assertEquals($yesterday, new Carbon(null));\n        $this->assertEquals($yesterday, new Carbon(''));\n        $this->assertEquals($yesterday, new Carbon('now'));\n    }\n\n    public function testNowWithTestValueSet()\n    {\n        Carbon::setTestNow($yesterday = Carbon::yesterday());\n\n        $this->assertEquals($yesterday, Carbon::now());\n    }\n\n    public function testParseWithTestValueSet()\n    {\n        $testNow = Carbon::yesterday();\n\n        $this->wrapWithTestNow(function () use ($testNow) {\n            $this->assertEquals($testNow, Carbon::parse(null));\n            $this->assertEquals($testNow, Carbon::parse(''));\n            $this->assertEquals($testNow, Carbon::parse('now'));\n        }, $testNow);\n    }\n\n    public function testNowWithClosureValue()\n    {\n        $mockedNow = Carbon::parse('2019-09-21 12:34:56.123456');\n        $delta = 0;\n\n        Carbon::setTestNow(function (Carbon $now) use (&$mockedNow, &$delta) {\n            $this->assertInstanceOfCarbon($now);\n\n            return $mockedNow->copy()->tz($now->tz)->addMicroseconds($delta);\n        });\n\n        $this->assertSame('2019-09-21 12:34:56.123456', Carbon::now()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-09-21 00:00:00.000000', Carbon::today()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-09-22 00:00:00.000000', Carbon::create('tomorrow')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2018-06-15 12:34:00.000000', Carbon::create(2018, 6, 15, null, null)->format('Y-m-d H:i:s.u'));\n\n        $delta = 11111111;\n\n        $date = Carbon::now();\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2019-09-21 12:35:07.234567', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::today();\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2019-09-21 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create('tomorrow');\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2019-09-22 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create(2018, 6, 15, null, null);\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2018-06-15 12:35:00.000000', $date->format('Y-m-d H:i:s.u'));\n\n        date_default_timezone_set('UTC');\n\n        $date = Carbon::now();\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2019-09-21 16:35:07.234567', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::today();\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2019-09-21 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create('tomorrow');\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2019-09-22 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create(2018, 6, 15, null, null);\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2018-06-15 16:35:00.000000', $date->format('Y-m-d H:i:s.u'));\n\n        date_default_timezone_set('America/Toronto');\n    }\n\n    public function testParseRelativeWithTestValueSet()\n    {\n        $testNow = Carbon::parse('2013-09-01 05:15:05');\n\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2013-09-01 05:10:05', Carbon::parse('5 minutes ago')->toDateTimeString());\n            $this->assertSame('2013-08-25 05:15:05', Carbon::parse('1 week ago')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 00:00:00', Carbon::parse('tomorrow')->toDateTimeString());\n            $this->assertSame('2013-09-01 00:00:00', Carbon::parse('today')->toDateTimeString());\n            $this->assertSame('2013-08-31 00:00:00', Carbon::parse('yesterday')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 05:15:05', Carbon::parse('+1 day')->toDateTimeString());\n            $this->assertSame('2013-08-31 05:15:05', Carbon::parse('-1 day')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 00:00:00', Carbon::parse('next monday')->toDateTimeString());\n            $this->assertSame('2013-09-03 00:00:00', Carbon::parse('next tuesday')->toDateTimeString());\n            $this->assertSame('2013-09-04 00:00:00', Carbon::parse('next wednesday')->toDateTimeString());\n            $this->assertSame('2013-09-05 00:00:00', Carbon::parse('next thursday')->toDateTimeString());\n            $this->assertSame('2013-09-06 00:00:00', Carbon::parse('next friday')->toDateTimeString());\n            $this->assertSame('2013-09-07 00:00:00', Carbon::parse('next saturday')->toDateTimeString());\n            $this->assertSame('2013-09-08 00:00:00', Carbon::parse('next sunday')->toDateTimeString());\n\n            $this->assertSame('2013-08-26 00:00:00', Carbon::parse('last monday')->toDateTimeString());\n            $this->assertSame('2013-08-27 00:00:00', Carbon::parse('last tuesday')->toDateTimeString());\n            $this->assertSame('2013-08-28 00:00:00', Carbon::parse('last wednesday')->toDateTimeString());\n            $this->assertSame('2013-08-29 00:00:00', Carbon::parse('last thursday')->toDateTimeString());\n            $this->assertSame('2013-08-30 00:00:00', Carbon::parse('last friday')->toDateTimeString());\n            $this->assertSame('2013-08-31 00:00:00', Carbon::parse('last saturday')->toDateTimeString());\n            $this->assertSame('2013-08-25 00:00:00', Carbon::parse('last sunday')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 00:00:00', Carbon::parse('this monday')->toDateTimeString());\n            $this->assertSame('2013-09-03 00:00:00', Carbon::parse('this tuesday')->toDateTimeString());\n            $this->assertSame('2013-09-04 00:00:00', Carbon::parse('this wednesday')->toDateTimeString());\n            $this->assertSame('2013-09-05 00:00:00', Carbon::parse('this thursday')->toDateTimeString());\n            $this->assertSame('2013-09-06 00:00:00', Carbon::parse('this friday')->toDateTimeString());\n            $this->assertSame('2013-09-07 00:00:00', Carbon::parse('this saturday')->toDateTimeString());\n            $this->assertSame('2013-09-01 00:00:00', Carbon::parse('this sunday')->toDateTimeString());\n\n            $this->assertSame('2013-10-01 05:15:05', Carbon::parse('first day of next month')->toDateTimeString());\n            $this->assertSame('2013-09-30 05:15:05', Carbon::parse('last day of this month')->toDateTimeString());\n        }, $testNow);\n    }\n\n    public function testHasRelativeKeywords()\n    {\n        $this->assertFalse(Carbon::hasRelativeKeywords('sunday 2015-02-23'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('today +2014 days'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('next sunday -3600 seconds'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('last day of this month'));\n        $this->assertFalse(Carbon::hasRelativeKeywords('last day of december 2015'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('first sunday of next month'));\n        $this->assertFalse(Carbon::hasRelativeKeywords('first sunday of January 2017'));\n    }\n\n    public function testParseRelativeWithMinusSignsInDate()\n    {\n        $testNow = Carbon::parse('2013-09-01 05:15:05');\n\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2000-01-03 00:00:00', Carbon::parse('2000-1-3')->toDateTimeString());\n            $this->assertSame('2000-10-10 00:00:00', Carbon::parse('2000-10-10')->toDateTimeString());\n        }, $testNow);\n\n        $this->assertSame('2000-01-03 00:00:00', Carbon::parse('2000-1-3')->toDateTimeString());\n        $this->assertSame('2000-10-10 00:00:00', Carbon::parse('2000-10-10')->toDateTimeString());\n    }\n\n    public function testTimeZoneWithTestValueSet()\n    {\n        $testNow = Carbon::parse('2013-07-01 12:00:00', 'America/New_York');\n\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2013-07-01T12:00:00-04:00', Carbon::parse('now')->toIso8601String());\n            $this->assertSame('2013-07-01T11:00:00-05:00', Carbon::parse('now', 'America/Mexico_City')->toIso8601String());\n            $this->assertSame('2013-07-01T09:00:00-07:00', Carbon::parse('now', 'America/Vancouver')->toIso8601String());\n        }, $testNow);\n    }\n\n    public function testSetTestNowAndTimezoneWithBadTimezone(): void\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Timezone ID '-05:00' is invalid, did you mean 'America/Chicago'?\\n\".\n            \"It must be one of the IDs from DateTimeZone::listIdentifiers(),\\n\".\n            'For the record, hours/minutes offset are relevant only for a particular moment, but not as a default timezone.'\n        ));\n\n        Carbon::setTestNowAndTimezone(Carbon::parse('2018-05-06T12:00:00-05:00'));\n    }\n\n    public function testSetTestNowAndTimezoneWithBadTimezoneWithErrorAsException(): void\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Timezone ID '-05:00' is invalid, did you mean 'America/Chicago'?\\n\".\n            \"It must be one of the IDs from DateTimeZone::listIdentifiers(),\\n\".\n            'For the record, hours/minutes offset are relevant only for a particular moment, but not as a default timezone.'\n        ));\n\n        $this->withErrorAsException(function () {\n            Carbon::setTestNowAndTimezone(Carbon::parse('2018-05-06T12:00:00-05:00'));\n        });\n    }\n\n    public function testSetTestNowAndTimezoneWithNull(): void\n    {\n        Carbon::setTestNowAndTimezone();\n        Carbon::setTestNowAndTimezone(); // replay-able with no effect\n\n        foreach ([null, 'UTC', 'Asia/Tokyo'] as $originalTimezone) {\n            $originalTimezone\n                ? date_default_timezone_set($originalTimezone)\n                : ($originalTimezone = date_default_timezone_get());\n\n            Carbon::setTestNowAndTimezone('2013-09-01 05:10:15 America/Vancouver', 'America/Vancouver');\n\n            $this->assertSame('America/Vancouver', date_default_timezone_get());\n            $this->assertSame('America/Vancouver', Carbon::now()->tzName);\n\n            Carbon::setTestNowAndTimezone();\n\n            $this->assertFalse(Carbon::hasTestNow());\n            $this->assertSame($originalTimezone, date_default_timezone_get());\n            $this->assertSame($originalTimezone, Carbon::now()->tzName);\n        }\n    }\n\n    public function testCreateFromPartialFormat()\n    {\n        Carbon::setTestNowAndTimezone('2013-09-01 05:10:15 America/Vancouver', 'America/Vancouver');\n\n        // Simple partial time.\n        $this->assertSame('2018-05-06T05:10:15-07:00', Carbon::createFromFormat('Y-m-d', '2018-05-06')->toIso8601String());\n        $this->assertSame('2013-09-01T10:20:30-07:00', Carbon::createFromFormat('H:i:s', '10:20:30')->toIso8601String());\n\n        // Custom timezone.\n        $this->assertSame('2013-09-01T10:20:00+03:00', Carbon::createFromFormat('H:i e', '10:20 Europe/Kiev')->toIso8601String());\n        $this->assertSame('2013-09-01T10:20:00+01:00', Carbon::createFromFormat('H:i', '10:20', 'Europe/London')->toIso8601String());\n        $this->assertSame('2013-09-01T11:30:00+07:00', Carbon::createFromFormat('H:i:s e', '11:30:00+07:00')->toIso8601String());\n        $this->assertSame('2013-09-01T11:30:00+05:00', Carbon::createFromFormat('H:i:s', '11:30:00', '+05:00')->toIso8601String());\n\n        // Escaped timezone.\n        $this->assertSame('2013-09-01T05:10:15-07:00', Carbon::createFromFormat('\\e', 'e')->toIso8601String());\n\n        // Weird format, naive modify would fail here.\n        $this->assertSame('2005-08-09T05:10:15-07:00', Carbon::createFromFormat('l jS \\of F Y', 'Tuesday 9th of August 2005')->toIso8601String());\n        $this->assertSame('2013-09-01T00:12:13-07:00', Carbon::createFromFormat('i:s', '12:13')->toIso8601String());\n        $this->assertSame('2018-09-05T05:10:15-07:00', Carbon::createFromFormat('Y/d', '2018/5')->toIso8601String());\n\n        // Resetting to epoch.\n        $this->assertSame('2018-05-06T00:00:00-07:00', Carbon::createFromFormat('!Y-m-d', '2018-05-06')->toIso8601String());\n        $this->assertSame('1970-01-01T10:20:30-08:00', Carbon::createFromFormat('Y-m-d! H:i:s', '2018-05-06 10:20:30')->toIso8601String());\n        $this->assertSame('2018-05-06T00:00:00-07:00', Carbon::createFromFormat('Y-m-d|', '2018-05-06')->toIso8601String());\n        $this->assertSame('1970-01-01T10:20:30-08:00', Carbon::createFromFormat('|H:i:s', '10:20:30')->toIso8601String());\n\n        $kyiv = $this->firstValidTimezoneAmong(['Europe/Kyiv', 'Europe/Kiev'])->getName();\n        // Resetting to epoch (timezone fun).\n        $this->assertSame('1970-01-01T00:00:00-08:00', Carbon::createFromFormat('|', '')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+03:00', Carbon::createFromFormat('e|', $kyiv)->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+01:00', Carbon::createFromFormat('|', '', 'Europe/London')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00-08:00', Carbon::createFromFormat('!', '')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+03:00', Carbon::createFromFormat('!e', $kyiv)->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+01:00', Carbon::createFromFormat('!', '', 'Europe/London')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00-08:00', Carbon::createFromFormat('e!', $kyiv)->toIso8601String());\n\n        // Escaped epoch resets.\n        $this->assertSame('2013-09-01T05:10:15-07:00', Carbon::createFromFormat('\\|', '|')->toIso8601String());\n        $this->assertSame('2013-09-01T05:10:15-07:00', Carbon::createFromFormat('\\!', '!')->toIso8601String());\n        $this->assertSame('2013-09-01T05:10:15+03:00', Carbon::createFromFormat('e \\!', $kyiv.' !')->toIso8601String());\n    }\n\n    public function testCreateFromPartialFormatWithMicroseconds()\n    {\n        Carbon::setTestNowAndTimezone(Carbon::parse('2013-09-01 05:10:15.123456', 'America/Vancouver'));\n\n        $this->assertSame('2018-05-06 05:10:15.123456', Carbon::createFromFormat('Y-m-d', '2018-05-06')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2013-09-01 10:20:30.654321', Carbon::createFromFormat('H:i:s.u', '10:20:30.654321')->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testCreateFromDateTimeInterface()\n    {\n        Carbon::setTestNowAndTimezone(date_create('2013-09-01 05:10:15.123456', new DateTimeZone('America/Vancouver')));\n\n        $this->assertSame('2018-05-06 05:10:15.123456', Carbon::createFromFormat('Y-m-d', '2018-05-06')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2013-09-01 10:20:30.654321', Carbon::createFromFormat('H:i:s.u', '10:20:30.654321')->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testSetTestNow()\n    {\n        Carbon::setTestNow(null);\n        $n1 = Carbon::now();\n        $n2 = Carbon::now();\n\n        $this->assertTrue($n2 > $n1);\n\n        Carbon::setTestNow('2013-09-01 10:20:30.654321');\n        $n1 = Carbon::now();\n        $n2 = Carbon::now();\n\n        $this->assertFalse($n2 > $n1);\n\n        Carbon::setTestNow(false);\n        $n1 = Carbon::now();\n        $n2 = Carbon::now();\n\n        $this->assertTrue($n2 > $n1);\n    }\n\n    public function testSetTestNowGlobally(): void\n    {\n        require_once __DIR__.'/../Fixtures/SubCarbon.php';\n\n        SubCarbon::setTestNow('2018-05-06 05:10:15.123456');\n\n        $this->assertSame('2018-05-06 05:10:15.123456', SubCarbon::now()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2018-05-06 05:10:15.123456', Carbon::now()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2018-05-06 05:10:15.123456', CarbonImmutable::now()->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testWithTestNow()\n    {\n        $self = $this;\n        $testNow = '2020-09-16 10:20:00';\n        $object = new stdClass();\n\n        $result = Carbon::withTestNow($testNow, static function () use ($self, $testNow, $object) {\n            $currentTime = Carbon::now();\n            $self->assertSame($testNow, $currentTime->format('Y-m-d H:i:s'));\n\n            return $object;\n        });\n\n        $this->assertSame($object, $result);\n\n        $currentTime = Carbon::now();\n        $this->assertNotSame($testNow, $currentTime->format('Y-m-d H:i:s'));\n    }\n\n    public function testWithTestNowRestoresPreviousTestNow()\n    {\n        Carbon::setTestNow('2024-01-01 12:00:00');\n\n        Carbon::withTestNow('2024-06-15 10:00:00', function () {\n            $this->assertEquals('2024-06-15', Carbon::now()->format('Y-m-d'));\n        });\n\n        $this->assertEquals('2024-01-01', Carbon::now()->format('Y-m-d'));\n\n        Carbon::setTestNow();\n    }\n\n    public function testWithTestNowWithException()\n    {\n        $testNow = '2020-09-16 10:20:00';\n\n        try {\n            Carbon::withTestNow($testNow, static function () {\n                throw new Exception();\n            });\n        } catch (Exception $e) {\n            // ignore\n        }\n\n        $currentTime = Carbon::now();\n        $this->assertNotSame($testNow, $currentTime->format('Y-m-d H:i:s'));\n    }\n\n    public function testWithModifyReturningDateTime()\n    {\n        Carbon::setTestNowAndTimezone(new class('2000-01-01 00:00 UTC') extends Carbon {\n            public function modify($modify)\n            {\n                return $this->toDateTimeImmutable()->modify($modify);\n            }\n        });\n\n        $currentTime = new Carbon('tomorrow');\n        $this->assertSame('2000-01-02 00:00:00 UTC', $currentTime->format('Y-m-d H:i:s e'));\n    }\n\n    public function testTimezoneConsistency()\n    {\n        Carbon::setTestNow();\n        date_default_timezone_set('UTC');\n        $currentDate = Carbon::now()->setTimezone('America/Los_Angeles');\n        $laDate = $currentDate->format('Y-m-d H:i:s e');\n        $utcDate = $currentDate->copy()->utc()->format('Y-m-d H:i:s e');\n\n        Carbon::setTestNow($currentDate);\n        $this->assertSame($utcDate, Carbon::now()->format('Y-m-d H:i:s e'));\n        $this->assertSame($utcDate, Carbon::now('UTC')->format('Y-m-d H:i:s e'));\n\n        Carbon::setTestNowAndTimezone($currentDate);\n        $this->assertSame($laDate, Carbon::now()->format('Y-m-d H:i:s e'));\n        $this->assertSame($utcDate, Carbon::now('UTC')->format('Y-m-d H:i:s e'));\n    }\n\n    public function testSleep()\n    {\n        $initial = Carbon::now('UTC');\n        Carbon::setTestNow($initial);\n        $before = microtime(true);\n        Carbon::sleep(5);\n        Carbon::sleep(20);\n        $after = microtime(true);\n\n        $this->assertLessThan(0.1, $after - $before);\n\n        $this->assertSame(\n            $initial->copy()->addSeconds(25)->format('Y-m-d H:i:s.u'),\n            Carbon::now('UTC')->format('Y-m-d H:i:s.u'),\n        );\n\n        Carbon::setTestNow(null);\n\n        $before = new DateTimeImmutable('now UTC');\n        Carbon::sleep(0.5);\n        $after = new DateTimeImmutable('now UTC');\n\n        $this->assertSame(\n            5,\n            (int) round(10 * ((float) $after->format('U.u') - ((float) $before->format('U.u')))),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Carbon/WeekTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Carbon;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass WeekTest extends AbstractTestCase\n{\n    public const SAMPLE = [\n        '1990-12-20' => [\n            1990,\n            1990,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-21' => [\n            1990,\n            1990,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-22' => [\n            1990,\n            1990,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-23' => [\n            1990,\n            1990,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-24' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-25' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-26' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-27' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-28' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-29' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-30' => [\n            1991,\n            1990,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-31' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-01' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-02' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-03' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-04' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-05' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-06' => [\n            1991,\n            1991,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-07' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-01-08' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-01-09' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-01-10' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-12-20' => [\n            1991,\n            1991,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1991-12-21' => [\n            1991,\n            1991,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1991-12-22' => [\n            1991,\n            1991,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1991-12-23' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-24' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-25' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-26' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-27' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-28' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-29' => [\n            1992,\n            1991,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-30' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-12-31' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1992-01-01' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-02' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-03' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-04' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-05' => [\n            1992,\n            1992,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-06' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-07' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-08' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-09' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-10' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-12-20' => [\n            1992,\n            1992,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '1992-12-21' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-22' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-23' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-24' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-25' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-26' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-27' => [\n            1993,\n            1992,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-28' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1992-12-29' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1992-12-30' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1992-12-31' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1993-01-01' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1993-01-02' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1993-01-03' => [\n            1993,\n            1992,\n            2,\n            53,\n            52,\n            52,\n        ],\n        '1993-01-04' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-05' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-06' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-07' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-08' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-09' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-10' => [\n            1993,\n            1993,\n            3,\n            1,\n            52,\n            52,\n        ],\n        '1993-12-20' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-21' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-22' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-23' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-24' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-25' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-26' => [\n            1994,\n            1993,\n            1,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-27' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-28' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-29' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-30' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-31' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1994-01-01' => [\n            1994,\n            1993,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '1994-01-02' => [\n            1994,\n            1993,\n            2,\n            52,\n            53,\n            52,\n        ],\n        '1994-01-03' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-04' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-05' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-06' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-07' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-08' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-09' => [\n            1994,\n            1994,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-10' => [\n            1994,\n            1994,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '1994-12-20' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-21' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-22' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-23' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-24' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-25' => [\n            1994,\n            1994,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-26' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-27' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-28' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-29' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-30' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-31' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1995-01-01' => [\n            1995,\n            1994,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1995-01-02' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-03' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-04' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-05' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-06' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-07' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-08' => [\n            1995,\n            1995,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-09' => [\n            1995,\n            1995,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1995-01-10' => [\n            1995,\n            1995,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1995-12-20' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-21' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-22' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-23' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-24' => [\n            1995,\n            1995,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-25' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-26' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-27' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-28' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-29' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-30' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-31' => [\n            1996,\n            1995,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1996-01-01' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-02' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-03' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-04' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-05' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-06' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-07' => [\n            1996,\n            1996,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-08' => [\n            1996,\n            1996,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1996-01-09' => [\n            1996,\n            1996,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1996-01-10' => [\n            1996,\n            1996,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1996-12-20' => [\n            1996,\n            1996,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1996-12-21' => [\n            1996,\n            1996,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1996-12-22' => [\n            1996,\n            1996,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1996-12-23' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-24' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-25' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-26' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-27' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-28' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-29' => [\n            1997,\n            1996,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-30' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-12-31' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-01' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-02' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-03' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-04' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-05' => [\n            1997,\n            1997,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-06' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-07' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-08' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-09' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-10' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-12-20' => [\n            1997,\n            1997,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1997-12-21' => [\n            1997,\n            1997,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1997-12-22' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-23' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-24' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-25' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-26' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-27' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-28' => [\n            1998,\n            1997,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-29' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-12-30' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-12-31' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1998-01-01' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-02' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-03' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-04' => [\n            1998,\n            1998,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-05' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-06' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-07' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-08' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-09' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-10' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-12-20' => [\n            1998,\n            1998,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '1998-12-21' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-22' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-23' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-24' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-25' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-26' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-27' => [\n            1999,\n            1998,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-28' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1998-12-29' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1998-12-30' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1998-12-31' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1999-01-01' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1999-01-02' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1999-01-03' => [\n            1999,\n            1998,\n            2,\n            53,\n            52,\n            52,\n        ],\n        '1999-01-04' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-05' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-06' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-07' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-08' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-09' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-10' => [\n            1999,\n            1999,\n            3,\n            1,\n            52,\n            52,\n        ],\n        '1999-12-20' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-21' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-22' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-23' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-24' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-25' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-26' => [\n            2000,\n            1999,\n            1,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-27' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-28' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-29' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-30' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-31' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2000-01-01' => [\n            2000,\n            1999,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '2000-01-02' => [\n            2000,\n            1999,\n            2,\n            52,\n            53,\n            52,\n        ],\n        '2000-01-03' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-04' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-05' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-06' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-07' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-08' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-09' => [\n            2000,\n            2000,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-10' => [\n            2000,\n            2000,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '2000-12-20' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-21' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-22' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-23' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-24' => [\n            2000,\n            2000,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-25' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-26' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-27' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-28' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-29' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-30' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-31' => [\n            2001,\n            2000,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '2001-01-01' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-02' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-03' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-04' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-05' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-06' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-07' => [\n            2001,\n            2001,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-08' => [\n            2001,\n            2001,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2001-01-09' => [\n            2001,\n            2001,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2001-01-10' => [\n            2001,\n            2001,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2001-12-20' => [\n            2001,\n            2001,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-21' => [\n            2001,\n            2001,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-22' => [\n            2001,\n            2001,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-23' => [\n            2001,\n            2001,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-24' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-25' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-26' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-27' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-28' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-29' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-30' => [\n            2002,\n            2001,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-31' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-01' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-02' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-03' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-04' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-05' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-06' => [\n            2002,\n            2002,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-07' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-01-08' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-01-09' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-01-10' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-12-20' => [\n            2002,\n            2002,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2002-12-21' => [\n            2002,\n            2002,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2002-12-22' => [\n            2002,\n            2002,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2002-12-23' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-24' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-25' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-26' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-27' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-28' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-29' => [\n            2003,\n            2002,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-30' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-12-31' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-01' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-02' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-03' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-04' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-05' => [\n            2003,\n            2003,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-06' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-07' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-08' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-09' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-10' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-12-20' => [\n            2003,\n            2003,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2003-12-21' => [\n            2003,\n            2003,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2003-12-22' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-23' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-24' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-25' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-26' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-27' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-28' => [\n            2004,\n            2003,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-29' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-12-30' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-12-31' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2004-01-01' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-02' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-03' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-04' => [\n            2004,\n            2004,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-05' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-06' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-07' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-08' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-09' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-10' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-12-20' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-21' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-22' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-23' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-24' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-25' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-26' => [\n            2005,\n            2004,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-27' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-28' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-29' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-30' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-31' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2005-01-01' => [\n            2005,\n            2004,\n            1,\n            53,\n            53,\n            52,\n        ],\n        '2005-01-02' => [\n            2005,\n            2004,\n            2,\n            53,\n            53,\n            52,\n        ],\n        '2005-01-03' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-04' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-05' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-06' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-07' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-08' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-09' => [\n            2005,\n            2005,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-10' => [\n            2005,\n            2005,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '2005-12-20' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-21' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-22' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-23' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-24' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-25' => [\n            2005,\n            2005,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-26' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-27' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-28' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-29' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-30' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-31' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2006-01-01' => [\n            2006,\n            2005,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2006-01-02' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-03' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-04' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-05' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-06' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-07' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-08' => [\n            2006,\n            2006,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-09' => [\n            2006,\n            2006,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2006-01-10' => [\n            2006,\n            2006,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2006-12-20' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-21' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-22' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-23' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-24' => [\n            2006,\n            2006,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-25' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-26' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-27' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-28' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-29' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-30' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-31' => [\n            2007,\n            2006,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2007-01-01' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-02' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-03' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-04' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-05' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-06' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-07' => [\n            2007,\n            2007,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-08' => [\n            2007,\n            2007,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2007-01-09' => [\n            2007,\n            2007,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2007-01-10' => [\n            2007,\n            2007,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2007-12-20' => [\n            2007,\n            2007,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-21' => [\n            2007,\n            2007,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-22' => [\n            2007,\n            2007,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-23' => [\n            2007,\n            2007,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-24' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-25' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-26' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-27' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-28' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-29' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-30' => [\n            2008,\n            2007,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-31' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-01' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-02' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-03' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-04' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-05' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-06' => [\n            2008,\n            2008,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-07' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-01-08' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-01-09' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-01-10' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-12-20' => [\n            2008,\n            2008,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2008-12-21' => [\n            2008,\n            2008,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2008-12-22' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-23' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-24' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-25' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-26' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-27' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-28' => [\n            2009,\n            2008,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-29' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-12-30' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-12-31' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2009-01-01' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-02' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-03' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-04' => [\n            2009,\n            2009,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-05' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-06' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-07' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-08' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-09' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-10' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-12-20' => [\n            2009,\n            2009,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '2009-12-21' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-22' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-23' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-24' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-25' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-26' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-27' => [\n            2010,\n            2009,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-28' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2009-12-29' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2009-12-30' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2009-12-31' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2010-01-01' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '2010-01-02' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '2010-01-03' => [\n            2010,\n            2009,\n            2,\n            53,\n            52,\n            52,\n        ],\n        '2010-01-04' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-05' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-06' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-07' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-08' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-09' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-10' => [\n            2010,\n            2010,\n            3,\n            1,\n            52,\n            52,\n        ],\n        '2010-12-20' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-21' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-22' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-23' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-24' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-25' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-26' => [\n            2011,\n            2010,\n            1,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-27' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-28' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-29' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-30' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-31' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2011-01-01' => [\n            2011,\n            2010,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '2011-01-02' => [\n            2011,\n            2010,\n            2,\n            52,\n            53,\n            52,\n        ],\n        '2011-01-03' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-04' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-05' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-06' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-07' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-08' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-09' => [\n            2011,\n            2011,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-10' => [\n            2011,\n            2011,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '2011-12-20' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-21' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-22' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-23' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-24' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-25' => [\n            2011,\n            2011,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-26' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-27' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-28' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-29' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-30' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-31' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2012-01-01' => [\n            2012,\n            2011,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2012-01-02' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-03' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-04' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-05' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-06' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-07' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-08' => [\n            2012,\n            2012,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-09' => [\n            2012,\n            2012,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2012-01-10' => [\n            2012,\n            2012,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2012-12-20' => [\n            2012,\n            2012,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-21' => [\n            2012,\n            2012,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-22' => [\n            2012,\n            2012,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-23' => [\n            2012,\n            2012,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-24' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-25' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-26' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-27' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-28' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-29' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-30' => [\n            2013,\n            2012,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-31' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-01' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-02' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-03' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-04' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-05' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-06' => [\n            2013,\n            2013,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-07' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-01-08' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-01-09' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-01-10' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-12-20' => [\n            2013,\n            2013,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2013-12-21' => [\n            2013,\n            2013,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2013-12-22' => [\n            2013,\n            2013,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2013-12-23' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-24' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-25' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-26' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-27' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-28' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-29' => [\n            2014,\n            2013,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-30' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-12-31' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-01' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-02' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-03' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-04' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-05' => [\n            2014,\n            2014,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-06' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-07' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-08' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-09' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-10' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-12-20' => [\n            2014,\n            2014,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2014-12-21' => [\n            2014,\n            2014,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2014-12-22' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-23' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-24' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-25' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-26' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-27' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-28' => [\n            2015,\n            2014,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-29' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-12-30' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-12-31' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2015-01-01' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-02' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-03' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-04' => [\n            2015,\n            2015,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-05' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-06' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-07' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-08' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-09' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-10' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-12-20' => [\n            2015,\n            2015,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '2015-12-21' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-22' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-23' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-24' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-25' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-26' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-27' => [\n            2016,\n            2015,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-28' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2015-12-29' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2015-12-30' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2015-12-31' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2016-01-01' => [\n            2016,\n            2015,\n            1,\n            53,\n            53,\n            52,\n        ],\n        '2016-01-02' => [\n            2016,\n            2015,\n            1,\n            53,\n            53,\n            52,\n        ],\n        '2016-01-03' => [\n            2016,\n            2015,\n            2,\n            53,\n            53,\n            52,\n        ],\n        '2016-01-04' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-05' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-06' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-07' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-08' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-09' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-10' => [\n            2016,\n            2016,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2016-12-20' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-21' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-22' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-23' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-24' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-25' => [\n            2016,\n            2016,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-26' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-27' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-28' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-29' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-30' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-31' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2017-01-01' => [\n            2017,\n            2016,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2017-01-02' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-03' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-04' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-05' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-06' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-07' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-08' => [\n            2017,\n            2017,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-09' => [\n            2017,\n            2017,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2017-01-10' => [\n            2017,\n            2017,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2017-12-20' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-21' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-22' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-23' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-24' => [\n            2017,\n            2017,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-25' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-26' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-27' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-28' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-29' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-30' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-31' => [\n            2018,\n            2017,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2018-01-01' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-02' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-03' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-04' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-05' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-06' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-07' => [\n            2018,\n            2018,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-08' => [\n            2018,\n            2018,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2018-01-09' => [\n            2018,\n            2018,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2018-01-10' => [\n            2018,\n            2018,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2018-12-20' => [\n            2018,\n            2018,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-21' => [\n            2018,\n            2018,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-22' => [\n            2018,\n            2018,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-23' => [\n            2018,\n            2018,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-24' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-25' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-26' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-27' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-28' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-29' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-30' => [\n            2019,\n            2018,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-31' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-01' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-02' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-03' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-04' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-05' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-06' => [\n            2019,\n            2019,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-07' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-01-08' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-01-09' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-01-10' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-12-20' => [\n            2019,\n            2019,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2019-12-21' => [\n            2019,\n            2019,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2019-12-22' => [\n            2019,\n            2019,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2019-12-23' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-24' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-25' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-26' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-27' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-28' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-29' => [\n            2020,\n            2019,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-30' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-12-31' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2020-01-01' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-02' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-03' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-04' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-05' => [\n            2020,\n            2020,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-06' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-07' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-08' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-09' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-10' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n    ];\n\n    public function testWeekUtils()\n    {\n        foreach (static::SAMPLE as $date => [$weekYear, $isoWeekYear, $week, $isoWeek, $weeksInYear, $isoWeeksInYear]) {\n            $carbon = Carbon::parse(\"$date 00:00:00\")->locale('en_US');\n\n            $this->assertSame($weekYear, $carbon->weekYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->weekYear() should return $weekYear\");\n            $this->assertSame($isoWeekYear, $carbon->isoWeekYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->isoWeekYear() should return $isoWeekYear\");\n            $this->assertSame($week, $carbon->week(), \"Carbon::parse(\\\"$date 00:00:00\\\")->week() should return $week\");\n            $this->assertSame($isoWeek, $carbon->isoWeek(), \"Carbon::parse(\\\"$date 00:00:00\\\")->isoWeek() should return $isoWeek\");\n            $this->assertSame($weeksInYear, $carbon->weeksInYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->weeksInYear() should return $isoWeek\");\n            $this->assertSame($isoWeeksInYear, $carbon->isoWeeksInYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->isoWeeksInYear() should return $isoWeeksInYear\");\n        }\n    }\n\n    public function testSetters()\n    {\n        $d = Carbon::parse('2018-01-01');\n        $this->assertSame(52, $d->weeksInYear);\n        $this->assertSame(52, $d->isoWeeksInYear);\n\n        $d2 = $d->week(3);\n\n        $this->assertSame($d, $d2);\n        $this->assertSame('2018-01-15', $d2->format('Y-m-d'));\n\n        $d2->week = 34;\n\n        $this->assertSame('2018-08-20', $d2->format('Y-m-d'));\n\n        $d2->week = 0;\n\n        $this->assertSame('2017-12-25', $d2->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d->week = -1;\n\n        $this->assertSame('2017-12-18', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d->week = -5;\n\n        $this->assertSame('2017-11-20', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d->week = -55;\n\n        $this->assertSame('2016-12-05', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01');\n        $d->week = 34;\n\n        $this->assertSame('2017-08-20', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01');\n        $d->isoWeek = 34;\n\n        $this->assertSame('2016-08-28', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('en_US');\n        $d->weekYear = 2015;\n\n        $this->assertSame('2014-12-28', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2012-12-31');\n        $d->weekYear = 2013;\n\n        $this->assertSame('2012-12-31', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2012-12-30')->locale('en_US');\n        $d->weekYear = 2014;\n\n        $this->assertSame('2013-12-29', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2015-12-31');\n        $d->weekYear = 2013;\n\n        $this->assertSame('2013-01-03', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01');\n        $d->isoWeekYear = 2015;\n\n        $this->assertSame('2015-12-27', $d->format('Y-m-d'));\n\n        $d->dayOfYear = 300;\n\n        $this->assertSame('2015-10-27', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('fr');\n        $d->weekYear = 2015;\n\n        $this->assertSame('2015-12-27', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('sr');\n        $d->weekYear = 2017;\n\n        $this->assertSame('2017-01-01', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('fr');\n        $d->weekYear = 2012;\n\n        $this->assertSame('2012-12-30', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d = $d->setISODate(2019, 4, 5);\n        $this->assertSame('2019-01-25', $d->format('Y-m-d'));\n    }\n\n    public function testWeekday()\n    {\n        $d = Carbon::parse('2018-08-08')->locale('en_US');\n        $this->assertSame(CarbonInterface::WEDNESDAY, $d->weekday());\n        $this->assertSame(CarbonInterface::WEDNESDAY, $d->isoWeekday());\n        $date = $d->copy();\n        $this->assertSame('08-05', $date->weekday(CarbonInterface::SUNDAY)->format('m-d'));\n        $this->assertSame(CarbonInterface::SUNDAY, $date->weekday());\n        $this->assertSame(7, $date->isoWeekday());\n        $date = $d->copy();\n        $this->assertSame('08-12', $date->isoWeekday(7)->format('m-d'));\n        $this->assertSame(CarbonInterface::SUNDAY, $date->weekday());\n        $this->assertSame(7, $date->isoWeekday());\n        $date = $d->copy();\n        $this->assertSame('08-06', $date->weekday(CarbonInterface::MONDAY)->format('m-d'));\n        $this->assertSame(CarbonInterface::MONDAY, $date->weekday());\n        $this->assertSame(CarbonInterface::MONDAY, $date->isoWeekday());\n        $date = $d->copy();\n        $this->assertSame('08-06', $date->isoWeekday(CarbonInterface::MONDAY)->format('m-d'));\n        $this->assertSame(CarbonInterface::MONDAY, $date->weekday());\n        $this->assertSame(CarbonInterface::MONDAY, $date->isoWeekday());\n\n        Carbon::setLocale('nb');\n        Carbon::setTestNowAndTimezone(Carbon::parse('2022-09-19 11:00:00'), 'Europe/Oslo');\n        $this->assertSame('2022-09-20 00:00', Carbon::today()->weekday(CarbonInterface::TUESDAY)->format('Y-m-d H:i'));\n        Carbon::setTestNowAndTimezone(Carbon::parse('2022-10-21 16:00:00'), 'Europe/Oslo');\n        $this->assertSame('2022-10-18 00:00', Carbon::today()->weekday(CarbonInterface::TUESDAY)->format('Y-m-d H:i'));\n    }\n\n    public function testWeekStartAndEnd()\n    {\n        $this->assertSame(CarbonInterface::MONDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekEndsAt());\n        Carbon::setLocale('en_US');\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekEndsAt());\n        Carbon::setLocale('ar_AR');\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::FRIDAY, Carbon::getWeekEndsAt());\n        Carbon::setLocale('fr_FR');\n        $this->assertSame(CarbonInterface::MONDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekEndsAt());\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekStartsAt('en_US'));\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekEndsAt('en_US'));\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekStartsAt('ar_AR'));\n        $this->assertSame(CarbonInterface::FRIDAY, Carbon::getWeekEndsAt('ar_AR'));\n        $this->assertSame(CarbonInterface::MONDAY, Carbon::getWeekStartsAt('fr_FR'));\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekEndsAt('fr_FR'));\n    }\n\n    #[DataProvider('getDaysFromStartOfWeekDataProvider')]\n    public function testGetDaysFromStartOfWeek(string $locale, string $date, int $daysCount)\n    {\n        $this->assertSame(\n            $daysCount,\n            Carbon::parse($date)->locale($locale)->getDaysFromStartOfWeek()\n        );\n    }\n\n    public static function getDaysFromStartOfWeekDataProvider(): array\n    {\n        return [\n            'Monday en_US' => ['en_US', '2022-11-21', 1],\n            'Monday late en_US' => ['en_US', '2022-11-21 23:59', 1],\n            'Tuesday en_US' => ['en_US', '2022-11-22 00:01', 2],\n            'Thursday en_US' => ['en_US', '2022-11-24', 4],\n            'Saturday en_US' => ['en_US', '2022-11-26 23:59:59.999999', 6],\n            'Sunday en_US' => ['en_US', '2022-11-27 00:00:00', 0],\n            'Monday fr_FR' => ['fr_FR', '2022-11-21', 0],\n            'Monday late fr_FR' => ['fr_FR', '2022-11-21 23:59', 0],\n            'Tuesday fr_FR' => ['fr_FR', '2022-11-22 00:01', 1],\n            'Thursday fr_FR' => ['fr_FR', '2022-11-24', 3],\n            'Saturday fr_FR' => ['fr_FR', '2022-11-26 23:59:59.999999', 5],\n            'Sunday fr_FR' => ['fr_FR', '2022-11-27 00:00:00', 6],\n            'Monday ku' => ['ku', '2022-11-21', 2],\n            'Monday late ku' => ['ku', '2022-11-21 23:59', 2],\n            'Tuesday ku' => ['ku', '2022-11-22 00:01', 3],\n            'Thursday ku' => ['ku', '2022-11-24', 5],\n            'Saturday ku' => ['ku', '2022-11-26 23:59:59.999999', 0],\n            'Sunday ku' => ['ku', '2022-11-27 00:00:00', 1],\n        ];\n    }\n\n    #[DataProvider('getDaysFromStartOfWeekDataProviderExplicit')]\n    public function testGetDaysFromStartOfWeekExplicit(int $start, string $date, int $daysCount)\n    {\n        static $locales = [null, 'pt_BR', 'de_CH', 'ar_MA'];\n        $carbon = Carbon::parse($date);\n        $locale = $locales[array_rand($locales)];\n\n        if ($locale) {\n            $carbon = $carbon->locale($locale);\n        }\n\n        $this->assertSame($daysCount, $carbon->getDaysFromStartOfWeek($start));\n    }\n\n    public static function getDaysFromStartOfWeekDataProviderExplicit(): array\n    {\n        return [\n            'Monday 0' => [0, '2022-11-21', 1],\n            'Monday late 0' => [0, '2022-11-21 23:59', 1],\n            'Tuesday 0' => [0, '2022-11-22 00:01', 2],\n            'Thursday 0' => [0, '2022-11-24', 4],\n            'Saturday 0' => [0, '2022-11-26 23:59:59.999999', 6],\n            'Sunday 0' => [0, '2022-11-27 00:00:00', 0],\n            'Monday 1' => [1, '2022-11-21', 0],\n            'Monday late 1' => [1, '2022-11-21 23:59', 0],\n            'Tuesday 1' => [1, '2022-11-22 00:01', 1],\n            'Thursday 1' => [1, '2022-11-24', 3],\n            'Saturday 1' => [1, '2022-11-26 23:59:59.999999', 5],\n            'Sunday 1' => [1, '2022-11-27 00:00:00', 6],\n            'Monday 6' => [6, '2022-11-21', 2],\n            'Monday late 6' => [6, '2022-11-21 23:59', 2],\n            'Tuesday 6' => [6, '2022-11-22 00:01', 3],\n            'Thursday 6' => [6, '2022-11-24', 5],\n            'Saturday 6' => [6, '2022-11-26 23:59:59.999999', 0],\n            'Sunday 6' => [6, '2022-11-27 00:00:00', 1],\n        ];\n    }\n\n    public function testSetDaysFromStartOfWeek()\n    {\n        $this->assertSame(\n            '2022-11-29 23:59:59.999999',\n            Carbon::parse('2022-11-26 23:59:59.999999')\n                ->locale('ar_MA')\n                ->setDaysFromStartOfWeek(3)\n                ->format('Y-m-d H:i:s.u')\n        );\n        $this->assertSame(\n            '2022-11-24 12:34:56.123456',\n            Carbon::parse('2022-11-24 12:34:56.123456')\n                ->locale('fr_FR')\n                ->setDaysFromStartOfWeek(3)\n                ->format('Y-m-d H:i:s.u')\n        );\n        $this->assertSame(\n            '2022-11-23 12:34:56.123456',\n            Carbon::parse('2022-11-24 12:34:56.123456')\n                ->locale('en_US')\n                ->setDaysFromStartOfWeek(3)\n                ->format('Y-m-d H:i:s.u')\n        );\n        $this->assertSame(\n            '2022-11-27 12:34:56.123456',\n            Carbon::parse('2022-11-24 12:34:56.123456')\n                ->locale('en_US')\n                ->setDaysFromStartOfWeek(3, 4)\n                ->format('Y-m-d H:i:s.u')\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/AddMonthsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass AddMonthsTest extends AbstractTestCase\n{\n    private ?Carbon $carbon = null;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        /** @var Carbon $date */\n        $date = Carbon::create(2016, 1, 31);\n\n        $this->carbon = $date;\n    }\n\n    public static function dataForTestAddMonthNoOverflow()\n    {\n        return [\n            [-2, 2015, 11, 30],\n            [-1, 2015, 12, 31],\n            [0, 2016, 1, 31],\n            [1, 2016, 2, 29],\n            [2, 2016, 3, 31],\n        ];\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testAddMonthNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthNoOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testAddMonthsNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthsNoOverflow($months), $y, $m, $d);\n    }\n\n    public static function dataForTestSubMonthNoOverflow(): array\n    {\n        return [\n            [-2, 2016, 3, 31],\n            [-1, 2016, 2, 29],\n            [0, 2016, 1, 31],\n            [1, 2015, 12, 31],\n            [2, 2015, 11, 30],\n        ];\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSubMonthNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthNoOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSubMonthsNoOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthsNoOverflow($months), $y, $m, $d);\n    }\n\n    public static function dataForTestAddMonthWithOverflow(): array\n    {\n        return [\n            [-2, 2015, 12, 1],\n            [-1, 2015, 12, 31],\n            [0, 2016, 1, 31],\n            [1, 2016, 3, 2],\n            [2, 2016, 3, 31],\n        ];\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testAddMonthWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthWithOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testAddMonthsWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->addMonthsWithOverflow($months), $y, $m, $d);\n    }\n\n    public static function dataForTestSubMonthWithOverflow(): array\n    {\n        return [\n            [-2, 2016, 3, 31],\n            [-1, 2016, 3, 2],\n            [0, 2016, 1, 31],\n            [1, 2015, 12, 31],\n            [2, 2015, 12, 1],\n        ];\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testSubMonthWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthWithOverflow($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testSubMonthsWithOverflow(int $months, int $y, int $m, int $d)\n    {\n        $this->assertCarbon($this->carbon->subMonthsWithOverflow($months), $y, $m, $d);\n    }\n\n    public function testSetOverflowIsTrue()\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertTrue(Carbon::shouldOverflowMonths());\n    }\n\n    public function testSetOverflowIsFalse()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::shouldOverflowMonths());\n    }\n\n    public function testSetOverflowIsResetInTests()\n    {\n        $this->assertTrue(Carbon::shouldOverflowMonths());\n    }\n\n    public function testSetOverflowIsReset()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::shouldOverflowMonths());\n\n        Carbon::resetMonthsOverflow();\n        $this->assertTrue(Carbon::shouldOverflowMonths());\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testUseOverflowAddMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->addMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthWithOverflow')]\n    public function testUseOverflowAddMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->addMonths($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testUseOverflowSubMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->subMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthWithOverflow')]\n    public function testUseOverflowSubMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(true);\n        $this->assertCarbon($this->carbon->subMonths($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testSkipOverflowAddMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->addMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestAddMonthNoOverflow')]\n    public function testSkipOverflowAddMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->addMonths($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSkipOverflowSubMonth(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->subMonth($months), $y, $m, $d);\n    }\n\n    #[DataProvider('dataForTestSubMonthNoOverflow')]\n    public function testSkipOverflowSubMonths(int $months, int $y, int $m, int $d)\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertCarbon($this->carbon->subMonths($months), $y, $m, $d);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/AddTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Unit;\nuse DateTimeImmutable;\nuse Tests\\AbstractTestCase;\n\nclass AddTest extends AbstractTestCase\n{\n    public function testAddMethod()\n    {\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, 'year')->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add('year', 2)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, Unit::Year)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(Unit::Year, 2)->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add('2 years')->year);\n        $lastNegated = null;\n        $date = Carbon::createFromDate(1975)->add(\n            function (DateTimeImmutable $date, bool $negated = false) use (&$lastNegated): DateTimeImmutable {\n                $lastNegated = $negated;\n\n                return new DateTimeImmutable($date->format('Y-m-d H:i:s').' + 2 years');\n            },\n        );\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(1977, $date->year);\n        $this->assertFalse($lastNegated);\n        /** @var CarbonInterval $interval */\n        $interval = include __DIR__.'/../Fixtures/dynamicInterval.php';\n        $originalDate = Carbon::parse('2020-06-04');\n        $date = $originalDate->add($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-06-08', $date->format('Y-m-d'));\n        $this->assertNotSame($date, $originalDate);\n        $date = Carbon::parse('2020-06-23')->add($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-07-16', $date->format('Y-m-d'));\n    }\n\n    public function testAddYearsPositive()\n    {\n        $this->assertSame(1976, Carbon::createFromDate(1975)->addYears(1)->year);\n    }\n\n    public function testAddYearsZero()\n    {\n        $this->assertSame(1975, Carbon::createFromDate(1975)->addYears(0)->year);\n    }\n\n    public function testAddYearsNegative()\n    {\n        $this->assertSame(1974, Carbon::createFromDate(1975)->addYears(-1)->year);\n    }\n\n    public function testAddYear()\n    {\n        $this->assertSame(1976, Carbon::createFromDate(1975)->addYear()->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, 'year')->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(2, 'years')->year);\n        $this->assertSame(1977, Carbon::createFromDate(1975)->add(CarbonInterval::years(2))->year);\n    }\n\n    public function testAddDaysPositive()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 5, 31)->addDays(1)->day);\n    }\n\n    public function testAddDaysZero()\n    {\n        $this->assertSame(31, Carbon::createFromDate(1975, 5, 31)->addDays(0)->day);\n    }\n\n    public function testAddDaysNegative()\n    {\n        $this->assertSame(30, Carbon::createFromDate(1975, 5, 31)->addDays(-1)->day);\n    }\n\n    public function testAddDay()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 5, 31)->addDay()->day);\n    }\n\n    public function testAddOverflow()\n    {\n        $this->assertSame(\n            '2021-03-03',\n            Carbon::parse('2021-01-31')->add(1, 'months', true)->format('Y-m-d'),\n        );\n        $this->assertSame(\n            '2021-03-03',\n            Carbon::parse('2021-01-31')->add(1, 'months')->format('Y-m-d'),\n        );\n        $this->assertSame(\n            '2021-02-28',\n            Carbon::parse('2021-01-31')->add(1, 'months', false)->format('Y-m-d'),\n        );\n    }\n\n    public function testAddWeekdaysPositive()\n    {\n        $dt = Carbon::create(2012, 1, 4, 13, 2, 1)->addWeekdays(9);\n\n        $this->assertSame(17, $dt->day);\n\n        // test for https://bugs.php.net/bug.php?id=54909\n        $this->assertSame(13, $dt->hour);\n        $this->assertSame(2, $dt->minute);\n        $this->assertSame(1, $dt->second);\n    }\n\n    public function testAddWeekdaysZero()\n    {\n        $this->assertSame(4, Carbon::createFromDate(2012, 1, 4)->addWeekdays(0)->day);\n    }\n\n    public function testAddWeekdaysNegative()\n    {\n        $this->assertSame(18, Carbon::createFromDate(2012, 1, 31)->addWeekdays(-9)->day);\n    }\n\n    public function testAddWeekday()\n    {\n        $this->assertSame(9, Carbon::createFromDate(2012, 1, 6)->addWeekday()->day);\n    }\n\n    public function testAddWeekdayDuringWeekend()\n    {\n        $this->assertSame(9, Carbon::createFromDate(2012, 1, 7)->addWeekday()->day);\n    }\n\n    public function testAddWeeksPositive()\n    {\n        $this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->addWeeks(1)->day);\n    }\n\n    public function testAddWeeksZero()\n    {\n        $this->assertSame(21, Carbon::createFromDate(1975, 5, 21)->addWeeks(0)->day);\n    }\n\n    public function testAddWeeksNegative()\n    {\n        $this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->addWeeks(-1)->day);\n    }\n\n    public function testAddWeek()\n    {\n        $this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->addWeek()->day);\n    }\n\n    public function testAddHoursPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0)->addHours(1)->hour);\n    }\n\n    public function testAddHoursZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0)->addHours(0)->hour);\n    }\n\n    public function testAddHoursNegative()\n    {\n        $this->assertSame(23, Carbon::createFromTime(0)->addHours(-1)->hour);\n    }\n\n    public function testAddHour()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0)->addHour()->hour);\n    }\n\n    public function testAddMinutesPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0)->addMinutes(1)->minute);\n    }\n\n    public function testAddMinutesZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0)->addMinutes(0)->minute);\n    }\n\n    public function testAddMinutesNegative()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0)->addMinutes(-1)->minute);\n    }\n\n    public function testAddMinute()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0)->addMinute()->minute);\n    }\n\n    public function testAddSecondsPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addSeconds(1)->second);\n    }\n\n    public function testAddSecondsZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0, 0)->addSeconds(0)->second);\n    }\n\n    public function testAddSecondsNegative()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0, 0)->addSeconds(-1)->second);\n    }\n\n    public function testAddDecimalSeconds()\n    {\n        $this->assertSame(\n            '1999-12-31 23:59:58.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addSeconds(-1.5)->format('Y-m-d H:i:s.u'),\n        );\n        $this->assertSame(\n            '2000-01-01 00:00:01.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addSeconds(1.5)->format('Y-m-d H:i:s.u'),\n        );\n        $this->assertSame(\n            '1999-12-31 23:59:58.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addRealSeconds(-1.5)->format('Y-m-d H:i:s.u'),\n        );\n        $this->assertSame(\n            '2000-01-01 00:00:01.500000',\n            Carbon::parse('2000-01-01 00:00:00')->addRealSeconds(1.5)->format('Y-m-d H:i:s.u'),\n        );\n    }\n\n    public function testAddSecond()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addSecond()->second);\n    }\n\n    public function testAddMillisecondsPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addMilliseconds(1)->millisecond);\n    }\n\n    public function testAddMillisecondsZero()\n    {\n        $this->assertSame(100, Carbon::createFromTime(0, 0, 0.1)->addMilliseconds(0)->millisecond);\n    }\n\n    public function testAddMillisecondsNegative()\n    {\n        $this->assertSame(999, Carbon::createFromTime(0, 0, 0)->addMilliseconds(-1)->millisecond);\n        $this->assertSame(99, Carbon::createFromTime(0, 0, 0.1)->addMilliseconds(-1)->millisecond);\n    }\n\n    public function testAddMillisecond()\n    {\n        $this->assertSame(101, Carbon::createFromTime(0, 0, 0.1)->addMillisecond()->millisecond);\n    }\n\n    public function testAddMicrosecondsPositive()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->addMicroseconds(1)->microsecond);\n    }\n\n    public function testAddMicrosecondsZero()\n    {\n        $this->assertSame(100000, Carbon::createFromTime(0, 0, 0.1)->addMicroseconds(0)->microsecond);\n    }\n\n    public function testAddMicrosecondsNegative()\n    {\n        $this->assertSame(999999, Carbon::createFromTime(0, 0, 0)->addMicroseconds(-1)->microsecond);\n        $this->assertSame(99999, Carbon::createFromTime(0, 0, 0.1)->addMicroseconds(-1)->microsecond);\n    }\n\n    public function testAddMicrosecond()\n    {\n        $this->assertSame(100001, Carbon::createFromTime(0, 0, 0.1)->addMicrosecond()->microsecond);\n    }\n\n    /**\n     * Test non plural methods with non default args.\n     */\n    public function testAddYearPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1977, $date->addYear(2)->year);\n    }\n\n    public function testAddDayPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 10);\n        $this->assertSame(12, $date->addDay(2)->day);\n    }\n\n    public function testAddHourPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(10);\n        $this->assertSame(12, $date->addHour(2)->hour);\n    }\n\n    public function testAddMinutePassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(2, $date->addMinute(2)->minute);\n    }\n\n    public function testAddSecondPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n        $this->assertSame(2, $date->addSecond(2)->second);\n    }\n\n    public function testAddQuarter()\n    {\n        $this->assertSame(8, Carbon::createFromDate(1975, 5, 6)->addQuarter()->month);\n    }\n\n    public function testAddQuarterNegative()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 6);\n        $this->assertSame(2, $date->addQuarter(-1)->month);\n    }\n\n    public function testSubQuarter()\n    {\n        $this->assertSame(2, Carbon::createFromDate(1975, 5, 6)->subQuarter()->month);\n    }\n\n    public function testSubQuarterNegative()\n    {\n        $this->assertCarbon(Carbon::createFromDate(1975, 5, 6)->subQuarters(2), 1974, 11, 6);\n    }\n\n    public function testAddCentury()\n    {\n        $this->assertSame(2075, Carbon::createFromDate(1975)->addCentury()->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2075, $date->addCentury(1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2175, $date->addCentury(2)->year);\n    }\n\n    public function testAddCenturyNegative()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1875, $date->addCentury(-1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1775, $date->addCentury(-2)->year);\n    }\n\n    public function testAddCenturies()\n    {\n        $this->assertSame(2075, Carbon::createFromDate(1975)->addCenturies(1)->year);\n        $this->assertSame(2175, Carbon::createFromDate(1975)->addCenturies(2)->year);\n    }\n\n    public function testAddCenturiesNegative()\n    {\n        $this->assertSame(1875, Carbon::createFromDate(1975)->addCenturies(-1)->year);\n        $this->assertSame(1775, Carbon::createFromDate(1975)->addCenturies(-2)->year);\n    }\n\n    public function testSubCentury()\n    {\n        $this->assertSame(1875, Carbon::createFromDate(1975)->subCentury()->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1875, $date->subCentury(1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(1775, $date->subCentury(2)->year);\n    }\n\n    public function testSubCenturyNegative()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2075, $date->subCentury(-1)->year);\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n        $this->assertSame(2175, $date->subCentury(-2)->year);\n    }\n\n    public function testSubCenturies()\n    {\n        $this->assertSame(1875, Carbon::createFromDate(1975)->subCenturies(1)->year);\n        $this->assertSame(1775, Carbon::createFromDate(1975)->subCenturies(2)->year);\n    }\n\n    public function testSubCenturiesNegative()\n    {\n        $this->assertSame(2075, Carbon::createFromDate(1975)->subCenturies(-1)->year);\n        $this->assertSame(2175, Carbon::createFromDate(1975)->subCenturies(-2)->year);\n    }\n\n    public function testAddYearNoOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearNoOverflow(), 2017, 2, 28);\n    }\n\n    public function testAddYearWithOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearWithOverflow(), 2017, 3, 1);\n    }\n\n    public function testAddYearNoOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearsNoOverflow(2), 2018, 2, 28);\n    }\n\n    public function testAddYearWithOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYearsWithOverflow(2), 2018, 3, 1);\n    }\n\n    public function testSubYearNoOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearsNoOverflow(2), 2014, 2, 28);\n    }\n\n    public function testSubYearWithOverflowPassingArg()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearsWithOverflow(2), 2014, 3, 1);\n    }\n\n    public function testSubYearNoOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearNoOverflow(), 2015, 2, 28);\n    }\n\n    public function testSubYearWithOverflow()\n    {\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->subYearWithOverflow(), 2015, 3, 1);\n    }\n\n    public function testUseYearsOverflow()\n    {\n        $this->assertTrue(Carbon::shouldOverflowYears());\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYears(2), 2018, 3, 1);\n        Carbon::useYearsOverflow(false);\n        $this->assertFalse(Carbon::shouldOverflowYears());\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYears(2), 2018, 2, 28);\n        Carbon::resetYearsOverflow();\n        $this->assertTrue(Carbon::shouldOverflowYears());\n        $this->assertCarbon(Carbon::createFromDate(2016, 2, 29)->addYears(2), 2018, 3, 1);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ArraysTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Translator;\nuse Tests\\AbstractTestCase;\n\nclass ArraysTest extends AbstractTestCase\n{\n    public function testToArray()\n    {\n        $dt = Carbon::now();\n        $dtToArray = $dt->toArray();\n\n        $this->assertIsArray($dtToArray);\n\n        $this->assertArrayHasKey('year', $dtToArray);\n        $this->assertSame($dt->year, $dtToArray['year']);\n\n        $this->assertArrayHasKey('month', $dtToArray);\n        $this->assertSame($dt->month, $dtToArray['month']);\n\n        $this->assertArrayHasKey('day', $dtToArray);\n        $this->assertSame($dt->day, $dtToArray['day']);\n\n        $this->assertArrayHasKey('dayOfWeek', $dtToArray);\n        $this->assertSame($dt->dayOfWeek, $dtToArray['dayOfWeek']);\n\n        $this->assertArrayHasKey('dayOfYear', $dtToArray);\n        $this->assertSame($dt->dayOfYear, $dtToArray['dayOfYear']);\n\n        $this->assertArrayHasKey('hour', $dtToArray);\n        $this->assertSame($dt->hour, $dtToArray['hour']);\n\n        $this->assertArrayHasKey('minute', $dtToArray);\n        $this->assertSame($dt->minute, $dtToArray['minute']);\n\n        $this->assertArrayHasKey('second', $dtToArray);\n        $this->assertSame($dt->second, $dtToArray['second']);\n\n        $this->assertArrayHasKey('micro', $dtToArray);\n        $this->assertSame($dt->micro, $dtToArray['micro']);\n\n        $this->assertArrayHasKey('timestamp', $dtToArray);\n        $this->assertSame($dt->timestamp, $dtToArray['timestamp']);\n\n        $this->assertArrayHasKey('timezone', $dtToArray);\n        $this->assertEquals($dt->timezone, $dtToArray['timezone']);\n\n        $this->assertArrayHasKey('formatted', $dtToArray);\n        $this->assertSame($dt->format(Carbon::DEFAULT_TO_STRING_FORMAT), $dtToArray['formatted']);\n    }\n\n    public function testDebugInfo()\n    {\n        $dt = Carbon::parse('2019-04-09 11:10:10.667952');\n        $debug = $dt->__debugInfo();\n\n        // Ignored as not in PHP 8\n        if (isset($debug['timezone_type'])) {\n            unset($debug['timezone_type']);\n        }\n\n        $this->assertSame([\n            'date' => '2019-04-09 11:10:10.667952',\n            'timezone' => 'America/Toronto',\n        ], $debug);\n\n        $dt = Carbon::parse('2019-04-09 11:10:10.667952')->locale('fr_FR');\n        $debug = $dt->__debugInfo();\n\n        // Ignored as not in PHP 8\n        if (isset($debug['timezone_type'])) {\n            unset($debug['timezone_type']);\n        }\n\n        $this->assertSame([\n            'localTranslator' => Translator::get('fr_FR'),\n            'date' => '2019-04-09 11:10:10.667952',\n            'timezone' => 'America/Toronto',\n        ], $debug);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTime;\nuse SubCarbon;\nuse Tests\\AbstractTestCase;\n\nclass ComparisonTest extends AbstractTestCase\n{\n    public function testEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->equalTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->equalTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testEqualWithTimezoneTrue()\n    {\n        $this->assertTrue(Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto')->equalTo(Carbon::create(2000, 1, 1, 9, 0, 0, 'America/Vancouver')));\n    }\n\n    public function testNotEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->notEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testNotEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->notEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThan(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->greaterThan(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testGreaterThanWithTimezoneTrue()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 8, 59, 59, 'America/Vancouver');\n        $this->assertTrue($dt1->greaterThan($dt2));\n    }\n\n    public function testGreaterThanWithTimezoneFalse()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 9, 0, 1, 'America/Vancouver');\n        $this->assertFalse($dt1->greaterThan($dt2));\n    }\n\n    public function testGreaterThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThan(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lessThan(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testLessThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testLessThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testBetweenEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n\n        $this->assertTrue(\\Carbon\\Carbon::createFromDate(2000, 1, 15)->between(new DateTime('2000-01-01'), new DateTime('2000-01-31'), true));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(new DateTime('2000-01-01'), new DateTime('2000-01-31'), true));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between('2000-01-01', '2000-01-31', true));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween('2000-01-01', '2000-01-31', true));\n    }\n\n    public function testBetweenNotEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(new DateTime('2000-01-01'), new DateTime('2000-01-31'), false));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween(new DateTime('2000-01-01'), new DateTime('2000-01-31'), false));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between('2000-01-01', '2000-01-31', false));\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->isBetween('2000-01-01', '2000-01-31', false));\n    }\n\n    public function testBetweenExcludedTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->betweenExcluded(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31)));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->betweenExcluded(new DateTime('2000-01-01'), new DateTime('2000-01-31')));\n\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->betweenExcluded('2000-01-01', '2000-01-31'));\n    }\n\n    public function testBetweenEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n    }\n\n    public function testBetweenNotEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n    }\n\n    public function testBetweenEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testBetweenEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testMinIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->min());\n    }\n\n    public function testMinWithNow()\n    {\n        $dt = Carbon::create(2012, 1, 1, 0, 0, 0)->min();\n        $this->assertCarbon($dt, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMinWithInstance()\n    {\n        $dt1 = Carbon::create(2013, 12, 31, 23, 59, 59);\n        $dt2 = Carbon::create(2012, 1, 1, 0, 0, 0)->min($dt1);\n        $this->assertCarbon($dt2, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMaxIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->max());\n    }\n\n    public function testMaxWithNow()\n    {\n        $dt = Carbon::create(2099, 12, 31, 23, 59, 59)->max();\n        $this->assertCarbon($dt, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testMaxWithInstance()\n    {\n        $dt1 = Carbon::create(2012, 1, 1, 0, 0, 0);\n        $dt2 = Carbon::create(2099, 12, 31, 23, 59, 59)->max($dt1);\n        $this->assertCarbon($dt2, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testIsBirthday()\n    {\n        $dt = Carbon::now();\n\n        // Birthday test can't work on February 29th\n        if ($dt->format('m-d') === '02-29') {\n            Carbon::setTestNow($dt->subDay());\n            $dt = Carbon::now();\n        }\n\n        $aBirthday = $dt->subYear();\n        $this->assertTrue($aBirthday->isBirthday());\n        $notABirthday = $dt->subDay();\n        $this->assertFalse($notABirthday->isBirthday());\n        $alsoNotABirthday = $dt->addDays(2);\n        $this->assertFalse($alsoNotABirthday->isBirthday());\n\n        $dt1 = Carbon::createFromDate(1987, 4, 23);\n        $dt2 = Carbon::createFromDate(2014, 9, 26);\n        $dt3 = Carbon::createFromDate(2014, 4, 23);\n        $this->assertFalse($dt2->isBirthday($dt1));\n        $this->assertTrue($dt3->isBirthday($dt1));\n    }\n\n    public function testClosest()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 11, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $closest = $instance->closest($dt1, $dt2);\n        $this->assertSame($dt1, $closest);\n    }\n\n    public function testClosestWithEquals()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $closest = $instance->closest($dt1, $dt2);\n        $this->assertSame($dt1, $closest);\n    }\n\n    public function testClosestWithMicroseconds()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('2018-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('2018-10-11 20:59:06.300000');\n\n        $this->assertSame('06.600000', $baseDate->closest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testClosestWithFarDates()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('-4025-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('9995-10-11 20:59:06.300000');\n\n        $this->assertSame('06.600000', $baseDate->closest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testFarthest()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 11, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $farthest = $instance->farthest($dt1, $dt2);\n        $this->assertSame($dt2, $farthest);\n    }\n\n    public function testFarthestWithEquals()\n    {\n        $instance = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt1 = Carbon::create(2015, 5, 28, 12, 0, 0);\n        $dt2 = Carbon::create(2015, 5, 28, 14, 0, 0);\n        $farthest = $instance->farthest($dt1, $dt2);\n        $this->assertSame($dt2, $farthest);\n    }\n\n    public function testFarthestWithMicroseconds()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('2018-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('2018-10-11 20:59:06.300000');\n\n        $this->assertSame('06.300000', $baseDate->farthest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testFarthestWithFarDates()\n    {\n        $baseDate = Carbon::parse('2018-10-11 20:59:06.500000');\n        $closestDate = Carbon::parse('-4025-10-11 20:59:06.600000');\n        $farthestDate = Carbon::parse('9995-10-11 20:59:06.300000');\n\n        $this->assertSame('06.300000', $baseDate->farthest($closestDate, $farthestDate)->format('s.u'));\n    }\n\n    public function testDifferentType()\n    {\n        require_once __DIR__.'/../Fixtures/SubCarbon.php';\n\n        $subCarbon = new SubCarbon('2024-01-24 00:00');\n        $carbon = new Carbon('2024-01-24 00:00');\n        $this->assertTrue($subCarbon->equalTo($carbon));\n        $this->assertTrue($carbon->equalTo($subCarbon));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ConstructTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeInterface;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass ConstructTest extends AbstractTestCase\n{\n    public function testCreatesAnInstanceDefaultToNow()\n    {\n        $c = new Carbon();\n        $now = Carbon::now();\n        $this->assertInstanceOfCarbon($c);\n        $this->assertInstanceOf(DateTimeImmutable::class, $c);\n        $this->assertInstanceOf(DateTimeInterface::class, $c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n    }\n\n    public function testCreatesAnInstanceFromADateTime()\n    {\n        $c = new Carbon(Carbon::parse('2009-09-09 09:09:09'));\n\n        $this->assertSame('2009-09-09 09:09:09 America/Toronto', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09'));\n\n        $this->assertSame('2009-09-09 09:09:09 America/Toronto', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09', new DateTimeZone('Europe/Paris')));\n\n        $this->assertSame('2009-09-09 09:09:09 Europe/Paris', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09'), 'Europe/Paris');\n\n        $this->assertSame('2009-09-09 15:09:09 Europe/Paris', $c->format('Y-m-d H:i:s e'));\n\n        $c = new Carbon(new DateTime('2009-09-09 09:09:09', new DateTimeZone('Asia/Tokyo')), 'Europe/Paris');\n\n        $this->assertSame('2009-09-09 02:09:09 Europe/Paris', $c->format('Y-m-d H:i:s e'));\n    }\n\n    public function testParseCreatesAnInstanceDefaultToNow()\n    {\n        $c = Carbon::parse(null);\n        $now = Carbon::now();\n        $this->assertInstanceOfCarbon($c);\n        $this->assertSame($now->tzName, $c->tzName);\n        $this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);\n    }\n\n    public function testWithFancyString()\n    {\n        Carbon::setTestNow(Carbon::today());\n        $c = new Carbon('first day of January 2008');\n        $this->assertCarbon($c, 2008, 1, 1, 0, 0, 0);\n    }\n\n    public function testParseWithFancyString()\n    {\n        Carbon::setTestNow(Carbon::today());\n        $c = Carbon::parse('first day of January 2008');\n        $this->assertCarbon($c, 2008, 1, 1, 0, 0, 0);\n    }\n\n    public function testParseWithYYYMMDD()\n    {\n        $c = Carbon::parse('20201128');\n        $this->assertCarbon($c, 2020, 11, 28, 0, 0, 0);\n    }\n\n    public function testParseWithYYYMMDDHHMMSS()\n    {\n        $c = Carbon::parse('20201128192533');\n        $this->assertCarbon($c, 2020, 11, 28, 19, 25, 33);\n    }\n\n    public function testDefaultTimezone()\n    {\n        $c = new Carbon('now');\n        $this->assertSame('America/Toronto', $c->tzName);\n    }\n\n    public function testParseWithDefaultTimezone()\n    {\n        $c = Carbon::parse('now');\n        $this->assertSame('America/Toronto', $c->tzName);\n    }\n\n    public function testSettingTimezone()\n    {\n        $timezone = 'Europe/London';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = new Carbon('now', $dtz);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame($dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testParseSettingTimezone()\n    {\n        $timezone = 'Europe/London';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = Carbon::parse('now', $dtz);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame($dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testSettingTimezoneWithString()\n    {\n        $timezone = 'Asia/Tokyo';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = new Carbon('now', $timezone);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame(9 + $dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testParseSettingTimezoneWithString()\n    {\n        $timezone = 'Asia/Tokyo';\n        $dtz = new DateTimeZone($timezone);\n        $dt = new DateTime('now', $dtz);\n        $dayLightSavingTimeOffset = (int) $dt->format('I');\n\n        $c = Carbon::parse('now', $timezone);\n        $this->assertSame($timezone, $c->tzName);\n        $this->assertSame(9 + $dayLightSavingTimeOffset, $c->offsetHours);\n    }\n\n    public function testParseError()\n    {\n        $this->expectException(InvalidFormatException::class);\n        $this->expectExceptionMessage(\"Could not parse 'completely broken'\");\n        $this->expectExceptionMessage('Failed to parse time string');\n\n        Carbon::parse('completely broken');\n    }\n\n    public function testMockingWithMicroseconds()\n    {\n        $c = new Carbon(Carbon::now()->toDateTimeString().'.123456');\n        Carbon::setTestNow($c);\n\n        $mockedC = Carbon::now();\n        $this->assertTrue($c->eq($mockedC));\n\n        Carbon::setTestNow();\n    }\n\n    public function testTimestamp()\n    {\n        $date = new Carbon(1367186296);\n        $this->assertSame('Sunday 28 April 2013 21:58:16.000000', $date->format('l j F Y H:i:s.u'));\n\n        $date = new Carbon(123);\n        $this->assertSame('Thursday 1 January 1970 00:02:03.000000', $date->format('l j F Y H:i:s.u'));\n    }\n\n    public function testFloatTimestamp()\n    {\n        $date = new Carbon(1367186296.654321);\n        $this->assertSame('Sunday 28 April 2013 21:58:16.654321', $date->format('l j F Y H:i:s.u'));\n\n        $date = new Carbon(123.5);\n        $this->assertSame('Thursday 1 January 1970 00:02:03.500000', $date->format('l j F Y H:i:s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CopyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass CopyTest extends AbstractTestCase\n{\n    public function testCopy()\n    {\n        $dating = Carbon::now();\n        $dating2 = $dating->copy();\n        $this->assertNotSame($dating, $dating2);\n    }\n\n    public function testClone()\n    {\n        $dating = Carbon::now();\n        $dating2 = $dating->clone();\n        $this->assertNotSame($dating, $dating2);\n    }\n\n    public function testCopyEnsureTzIsCopied()\n    {\n        $dating = Carbon::createFromDate(2000, 1, 1, 'Europe/London');\n        $dating2 = $dating->copy();\n        $this->assertSame($dating->tzName, $dating2->tzName);\n        $this->assertSame($dating->offset, $dating2->offset);\n    }\n\n    public function testCopyEnsureMicrosAreCopied()\n    {\n        $micro = 254687;\n        $dating = Carbon::createFromFormat('Y-m-d H:i:s.u', '2014-02-01 03:45:27.'.$micro);\n        $dating2 = $dating->copy();\n        $this->assertSame($micro, $dating2->micro);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateFromDateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromDateTest extends AbstractTestCase\n{\n    public function testCreateFromDateWithDefaults()\n    {\n        $d = Carbon::createFromDate();\n        $this->assertSame($d->timestamp, Carbon::create(null, null, null, null, null, null)->timestamp);\n    }\n\n    public function testCreateFromDate()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21);\n        $this->assertCarbon($d, 1975, 5, 21);\n    }\n\n    public function testCreateFromDateWithYear()\n    {\n        $d = Carbon::createFromDate(1975);\n        $this->assertSame(1975, $d->year);\n    }\n\n    public function testCreateFromDateWithMonth()\n    {\n        $d = Carbon::createFromDate(null, 5);\n        $this->assertSame(5, $d->month);\n    }\n\n    public function testCreateFromDateWithDay()\n    {\n        $d = Carbon::createFromDate(null, null, 21);\n        $this->assertSame(21, $d->day);\n    }\n\n    public function testCreateFromDateWithTimezone()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21, 'Europe/London');\n        $this->assertCarbon($d, 1975, 5, 21);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromDateWithDateTimeZone()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21, new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, 1975, 5, 21);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateFromFormatTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTime;\nuse DateTimeZone;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhp;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\n\nclass CreateFromFormatTest extends AbstractTestCase\n{\n    /**\n     * @var array\n     */\n    protected $lastErrors;\n\n    /**\n     * @var array\n     */\n    protected $noErrors;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->lastErrors = [\n            'warning_count' => 1,\n            'warnings' => ['10' => 'The parsed date was invalid'],\n            'error_count' => 0,\n            'errors' => [],\n        ];\n    }\n\n    public function testCreateFromFormatReturnsCarbon()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertInstanceOfCarbon($d);\n    }\n\n    public function testCreateFromFormatWithTimezoneString()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11', 'Europe/London');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromFormatWithTimezone()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11', new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromFormatWithMillis()\n    {\n        $d = Carbon::createFromFormat('Y-m-d H:i:s.u', '1975-05-21 22:32:11.254687');\n        $this->assertSame(254687, $d->micro);\n    }\n\n    public function testCreateFromFormatWithTestNow()\n    {\n        Carbon::setTestNow();\n        $nativeDate = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11');\n        Carbon::setTestNow(Carbon::now());\n        $mockedDate = Carbon::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11');\n\n        $this->assertSame($mockedDate->micro === 0, $nativeDate->micro === 0);\n    }\n\n    #[RequiresPhp('>=8.2')]\n    public function testCreateLastErrorsCanBeAccessedByExtendingClass()\n    {\n        $this->assertFalse(MyCarbon::getLastErrors());\n    }\n\n    public function testCreateFromFormatHandlesLastErrors()\n    {\n        $carbon = Carbon::createFromFormat('d/m/Y', '41/02/1900');\n        $datetime = DateTime::createFromFormat('d/m/Y', '41/02/1900');\n\n        $this->assertSame($this->lastErrors, $carbon->getLastErrors());\n        $this->assertSame($carbon->getLastErrors(), $datetime->getLastErrors());\n    }\n\n    #[RequiresPhp('>=8.2')]\n    public function testCreateFromFormatResetLastErrors()\n    {\n        $carbon = Carbon::createFromFormat('d/m/Y', '41/02/1900');\n        $this->assertSame($this->lastErrors, $carbon->getLastErrors());\n\n        $carbon = Carbon::createFromFormat('d/m/Y', '11/03/2016');\n        $this->assertFalse($carbon->getLastErrors());\n    }\n\n    public function testCreateFromFormatWithDollar()\n    {\n        $d = Carbon::createFromFormat('$c', '$1975-05-21T22:32:11+01:00');\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 11);\n        $this->assertInstanceOfCarbon($d);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateFromTimeStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromTimeStringTest extends AbstractTestCase\n{\n    protected function setUp(): void\n    {\n        parent::setUp();\n        Carbon::setTestNow();\n    }\n\n    public function testCreateFromTimeString()\n    {\n        $d = Carbon::createFromTimeString('22:45');\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(45, $d->minute);\n        $this->assertSame(0, $d->second);\n        $this->assertSame(0, $d->micro);\n    }\n\n    public function testCreateFromTimeStringWithSecond()\n    {\n        $d = Carbon::createFromTimeString('22:45:12');\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(45, $d->minute);\n        $this->assertSame(12, $d->second);\n        $this->assertSame(0, $d->micro);\n    }\n\n    public function testCreateFromTimeStringWithMicroSecond()\n    {\n        $d = Carbon::createFromTimeString('22:45:00.625341');\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(45, $d->minute);\n        $this->assertSame(0, $d->second);\n        $this->assertSame(625341, $d->micro);\n    }\n\n    public function testCreateFromTimeStringWithDateTimeZone()\n    {\n        $d = Carbon::createFromTimeString('12:20:30', new DateTimeZone('Europe/London'));\n        $this->assertCarbonTime($d, 12, 20, 30, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromTimeStringWithTimeZoneString()\n    {\n        $d = Carbon::createFromTimeString('12:20:30', 'Europe/London');\n        $this->assertCarbonTime($d, 12, 20, 30, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateFromTimeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromTimeTest extends AbstractTestCase\n{\n    public function testCreateWithTestNow()\n    {\n        Carbon::setTestNow($testNow = Carbon::create(2011, 1, 1, 12, 13, 14));\n        $dt = Carbon::create(null, null, null, null, null, null);\n\n        $this->assertCarbon($dt, 2011, 1, 1, 12, 13, 14);\n        $this->assertTrue($testNow->eq($dt));\n    }\n\n    public function testCreateFromDateWithDefaults()\n    {\n        $d = Carbon::createFromTime();\n        $this->assertSame($d->timestamp, Carbon::create(null, null, null, 0, 0, 0)->timestamp);\n    }\n\n    public function testCreateFromDateWithNull()\n    {\n        $d = Carbon::createFromTime(null, null, null);\n        $this->assertSame($d->timestamp, Carbon::create(null, null, null, null, null, null)->timestamp);\n    }\n\n    public function testCreateFromDate()\n    {\n        $d = Carbon::createFromTime(23, 5, 21);\n        $this->assertCarbon($d, Carbon::now()->year, Carbon::now()->month, Carbon::now()->day, 23, 5, 21);\n    }\n\n    public function testCreateFromTimeWithHour()\n    {\n        $d = Carbon::createFromTime(22);\n        $this->assertSame(22, $d->hour);\n        $this->assertSame(0, $d->minute);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testCreateFromTimeWithMinute()\n    {\n        $d = Carbon::createFromTime(null, 5);\n        $this->assertSame(5, $d->minute);\n    }\n\n    public function testCreateFromTimeWithSecond()\n    {\n        $d = Carbon::createFromTime(null, null, 21);\n        $this->assertSame(21, $d->second);\n    }\n\n    public function testCreateFromTimeWithDateTimeZone()\n    {\n        $d = Carbon::createFromTime(12, 0, 0, new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, Carbon::now('Europe/London')->year, Carbon::now('Europe/London')->month, Carbon::now('Europe/London')->day, 12, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromTimeWithTimeZoneString()\n    {\n        $d = Carbon::createFromTime(12, 0, 0, 'Europe/London');\n        $this->assertCarbon($d, Carbon::now('Europe/London')->year, Carbon::now('Europe/London')->month, Carbon::now('Europe/London')->day, 12, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateFromTime()\n    {\n        // disable test for now\n        // because we need Carbon::now() in Carbon::create() to work with given TZ\n        $test = Carbon::getTestNow();\n        Carbon::setTestNow();\n\n        $tz = 'Etc/GMT+12';\n\n        try {\n            $now = Carbon::now($tz);\n        } catch (InvalidFormatException $exception) {\n            if ($exception->getMessage() !== 'Unknown or bad timezone (Etc/GMT+12)') {\n                throw $exception;\n            }\n\n            $tz = 'GMT+12';\n            $now = Carbon::now($tz);\n        }\n\n        $dt = Carbon::createFromTime($now->hour, $now->minute, $now->second, $tz);\n\n        // re-enable test\n        Carbon::setTestNow($test);\n\n        // tested without microseconds\n        // because they appear within calls to Carbon\n        $this->assertSame($now->format('c'), $dt->format('c'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateFromTimestampTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromTimestampTest extends AbstractTestCase\n{\n    public function testCreateReturnsDatingInstance()\n    {\n        $d = Carbon::createFromTimestamp(Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5);\n    }\n\n    public function testCreateFromTimestampMs()\n    {\n        $baseTimestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000;\n\n        $timestamp = $baseTimestamp + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        $timestamp = $baseTimestamp + 321.8;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321800);\n\n        $timestamp = $baseTimestamp + 321.84;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321840);\n\n        $timestamp = $baseTimestamp + 321.847;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8474;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8479;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321848);\n    }\n\n    public function testCreateFromTimestampMsUTC()\n    {\n        // Toronto is GMT-04:00 in May\n        $baseTimestamp = Carbon::create(1975, 5, 21, 22, 32, 5)->timestamp * 1000;\n\n        $timestamp = $baseTimestamp + 321;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321000);\n\n        $timestamp = $baseTimestamp + 321.8;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321800);\n\n        $timestamp = $baseTimestamp + 321.84;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321840);\n\n        $timestamp = $baseTimestamp + 321.847;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8474;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321847);\n\n        $timestamp = $baseTimestamp + 321.8479;\n        $d = Carbon::createFromTimestampMsUTC($timestamp);\n        $this->assertCarbon($d, 1975, 5, 22, 2, 32, 5, 321848);\n\n        $d = Carbon::createFromTimestampMsUTC(1);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0, 1000);\n\n        $d = Carbon::createFromTimestampMsUTC(60);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0, 60000);\n\n        $d = Carbon::createFromTimestampMsUTC(1000);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 1, 0);\n\n        $d = Carbon::createFromTimestampMsUTC(-0.04);\n        $this->assertCarbon($d, 1969, 12, 31, 23, 59, 59, 999960);\n    }\n\n    public function testComaDecimalSeparatorLocale()\n    {\n        $date = new Carbon('2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n\n        $date = Carbon::createFromFormat('Y-m-d\\TH:i:s.uT', '2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n        $timestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000 + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        $locale = setlocale(LC_ALL, '0');\n        if (setlocale(LC_ALL, 'fr_FR.UTF-8', 'fr_FR.utf8', 'French_France.UTF8') === false) {\n            $this->markTestSkipped('testComaDecimalSeparatorLocale test need fr_FR.UTF-8.');\n        }\n\n        $timestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000 + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        $date = new Carbon('2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n\n        $date = Carbon::createFromFormat('Y-m-d\\TH:i:s.uT', '2017-07-29T13:57:27.123456Z');\n        $this->assertSame('2017-07-29 13:57:27.123456 Z', $date->format('Y-m-d H:i:s.u e'));\n        $timestamp = Carbon::create(1975, 5, 21, 22, 32, 5, 'UTC')->timestamp * 1000 + 321;\n        $d = Carbon::createFromTimestampMs($timestamp);\n        $this->assertCarbon($d, 1975, 5, 21, 22, 32, 5, 321000);\n\n        setlocale(LC_ALL, $locale);\n    }\n\n    public function testCreateFromTimestampUsesNoTimezone()\n    {\n        $d = Carbon::createFromTimestamp(0);\n\n        // UTC by default\n        $this->assertSame(1970, $d->year);\n        $this->assertSame(0, $d->offset);\n    }\n\n    public function testCreateFromTimestampUsesDefaultTimezone()\n    {\n        $d = Carbon::createFromTimestamp(0, 'America/Toronto');\n\n        // We know Toronto is -5 since no DST in Jan\n        $this->assertSame(1969, $d->year);\n        $this->assertSame(-5 * 3600, $d->offset);\n    }\n\n    public function testCreateFromTimestampWithDateTimeZone()\n    {\n        $d = Carbon::createFromTimestamp(0, new DateTimeZone('UTC'));\n        $this->assertSame('UTC', $d->tzName);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0);\n    }\n\n    public function testCreateFromTimestampWithString()\n    {\n        $d = Carbon::createFromTimestamp(0, 'UTC');\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0);\n        $this->assertSame(0, $d->offset);\n        $this->assertSame('UTC', $d->tzName);\n    }\n\n    public function testCreateFromTimestampGMTDoesNotUseDefaultTimezone()\n    {\n        $d = Carbon::createFromTimestampUTC(0);\n        $this->assertCarbon($d, 1970, 1, 1, 0, 0, 0);\n        $this->assertSame(0, $d->offset);\n    }\n\n    /**\n     * Ensures DST php bug does not affect createFromTimestamp in DST change.\n     *\n     * @see https://github.com/briannesbitt/Carbon/issues/1951\n     */\n    public function testCreateFromTimestampInDstChange()\n    {\n        $this->assertSame(\n            '2019-11-03T01:00:00-04:00',\n            Carbon::createFromTimestamp(1572757200, 'America/New_York')->toIso8601String(),\n        );\n        $this->assertSame(\n            '2019-11-03T01:00:00-05:00',\n            Carbon::createFromTimestamp(1572757200 + 3600, 'America/New_York')->toIso8601String(),\n        );\n        $this->assertSame(\n            '2019-11-03T01:00:00-04:00',\n            Carbon::createFromTimestampMs(1572757200000, 'America/New_York')->toIso8601String(),\n        );\n        $this->assertSame(\n            '2019-11-03T01:00:00-05:00',\n            Carbon::createFromTimestampMs(1572757200000 + 3600000, 'America/New_York')->toIso8601String(),\n        );\n    }\n\n    public function testCreateFromMicrotimeFloat()\n    {\n        $microtime = 1600887164.88952298;\n        $d = Carbon::createFromTimestamp($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889523', $d->format('U.u'));\n\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889523', $d->format('U.u'));\n\n        $microtime = 1600887164.0603;\n        $d = Carbon::createFromTimestamp($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.060300', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.060300', $d->format('U.u'));\n\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:44.060300', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.060300', $d->format('U.u'));\n\n        $this->assertSame('010000', Carbon::createFromTimestamp(0.01)->format('u'));\n    }\n\n    public function testCreateFromMicrotimeStrings()\n    {\n        $microtime = '0.88951247 1600887164';\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889512', $d->format('U.u'));\n\n        $d = Carbon::createFromTimestamp($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889512', $d->format('U.u'));\n\n        $microtime = '0.88951247/1600887164/12.56';\n        $d = Carbon::createFromTimestamp($microtime, 'America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n        $this->assertSame('2020-09-23 14:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887177.449512', $d->format('U.u'));\n\n        $d = Carbon::createFromTimestamp($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887177.449512', $d->format('U.u'));\n\n        $d = Carbon::createFromTimestamp('-10.6', 'America/Toronto');\n        $this->assertSame('1969-12-31 18:59:49.400000 -05:00', $d->format('Y-m-d H:i:s.u P'));\n\n        $d = Carbon::createFromTimestamp('-10.6');\n        $this->assertSame('1969-12-31 23:59:49.400000 +00:00', $d->format('Y-m-d H:i:s.u P'));\n\n        $d = new Carbon('@-10.6');\n        $this->assertSame('1969-12-31 23:59:49.400000 +00:00', $d->format('Y-m-d H:i:s.u P'));\n    }\n\n    public function testCreateFromMicrotimeUTCFloat()\n    {\n        $microtime = 1600887164.88952298;\n        $d = Carbon::createFromTimestampUTC($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.889523', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889523', $d->format('U.u'));\n    }\n\n    public function testCreateFromMicrotimeUTCStrings()\n    {\n        $microtime = '0.88951247 1600887164';\n        $d = Carbon::createFromTimestampUTC($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:44.889512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887164.889512', $d->format('U.u'));\n\n        $microtime = '0.88951247/1600887164/12.56';\n        $d = Carbon::createFromTimestampUTC($microtime);\n        $this->assertSame('+00:00', $d->tzName);\n        $this->assertSame('2020-09-23 18:52:57.449512', $d->format('Y-m-d H:i:s.u'));\n        $this->assertSame('1600887177.449512', $d->format('U.u'));\n    }\n\n    public function testNegativeIntegerTimestamp()\n    {\n        $this->assertSame(\n            '1969-12-31 18:59:59.000000 -05:00',\n            Carbon::createFromTimestamp(-1, 'America/Toronto')->format('Y-m-d H:i:s.u P'),\n        );\n        $this->assertSame(\n            '1969-12-31 23:59:59.000000 +00:00',\n            Carbon::createFromTimestamp(-1)->format('Y-m-d H:i:s.u P'),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateSafeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Exceptions\\InvalidDateException;\nuse Tests\\AbstractTestCase;\n\nclass CreateSafeTest extends AbstractTestCase\n{\n    public function testInvalidDateExceptionProperties()\n    {\n        $e = new InvalidDateException('day', 'foo');\n        $this->assertSame('day', $e->getField());\n        $this->assertSame('foo', $e->getValue());\n    }\n\n    public function testCreateSafeThrowsExceptionForSecondLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('second', -1));\n\n        Carbon::createSafe(null, null, null, null, null, -1);\n    }\n\n    public function testCreateSafeThrowsExceptionForSecondGreaterThan59()\n    {\n        $this->expectExceptionObject(new InvalidDateException('second', 60));\n\n        Carbon::createSafe(null, null, null, null, null, 60);\n    }\n\n    public function testCreateSafeThrowsExceptionForMinuteLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('minute', -1));\n\n        Carbon::createSafe(null, null, null, null, -1);\n    }\n\n    public function testCreateSafeThrowsExceptionForMinuteGreaterThan59()\n    {\n        $this->expectExceptionObject(new InvalidDateException('minute', 60));\n\n        Carbon::createSafe(null, null, null, null, 60, 25);\n    }\n\n    public function testCreateSafeThrowsExceptionForHourLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('hour', -6));\n\n        Carbon::createSafe(null, null, null, -6);\n    }\n\n    public function testCreateSafeThrowsExceptionForHourGreaterThan24()\n    {\n        $this->expectExceptionObject(new InvalidDateException('hour', 25));\n\n        Carbon::createSafe(null, null, null, 25, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForDayLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', -5));\n\n        Carbon::createSafe(null, null, -5);\n    }\n\n    public function testCreateSafeThrowsExceptionForDayGreaterThan31()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 32));\n\n        Carbon::createSafe(null, null, 32, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForMonthLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('month', -4));\n\n        Carbon::createSafe(null, -4);\n    }\n\n    public function testCreateSafeThrowsExceptionForMonthGreaterThan12()\n    {\n        $this->expectExceptionObject(new InvalidDateException('month', 13));\n\n        Carbon::createSafe(null, 13, 5, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForYearLowerThanZero()\n    {\n        $this->expectExceptionObject(new InvalidDateException('year', -5));\n\n        Carbon::createSafe(-5);\n    }\n\n    public function testCreateSafeThrowsExceptionForYearGreaterThan12()\n    {\n        $this->expectExceptionObject(new InvalidDateException('year', 10000));\n\n        Carbon::createSafe(10000, 12, 5, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayInShortMonth()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 31));\n\n        // 30 days in April\n        Carbon::createSafe(2016, 4, 31, 17, 16, 15);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInLeapYear()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 30));\n\n        // 29 days in February for a leap year\n        $this->assertTrue(Carbon::create(2016, 2)->isLeapYear());\n        Carbon::createSafe(2016, 2, 30, 17, 16, 15);\n    }\n\n    public function testCreateSafePassesForFebruaryInLeapYear()\n    {\n        // 29 days in February for a leap year\n        $this->assertSame(29, Carbon::createSafe(2016, 2, 29, 17, 16, 15)->day);\n    }\n\n    public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInNonLeapYear()\n    {\n        $this->expectExceptionObject(new InvalidDateException('day', 29));\n\n        // 28 days in February for a non-leap year\n        $this->assertFalse(Carbon::create(2015, 2)->isLeapYear());\n        Carbon::createSafe(2015, 2, 29, 17, 16, 15);\n    }\n\n    public function testCreateSafePassesForInvalidDSTTime()\n    {\n        $message = '';\n        $date = null;\n\n        try {\n            // 1h jumped to 2h because of the DST, so 1h30 is not a safe date in PHP 5.4+\n            Carbon::createSafe(2014, 3, 30, 1, 30, 0, 'Europe/London');\n        } catch (InvalidDateException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertStringContainsString('hour : 1 is not a valid value.', $message);\n    }\n\n    public function testCreateSafePassesForValidDSTTime()\n    {\n        $this->assertSame(0, Carbon::createSafe(2014, 3, 30, 0, 30, 0, 'Europe/London')->hour);\n        $this->assertSame(2, Carbon::createSafe(2014, 3, 30, 2, 30, 0, 'Europe/London')->hour);\n        $this->assertSame(1, Carbon::createSafe(2014, 3, 30, 1, 30, 0, 'UTC')->hour);\n    }\n\n    public function testCreateSafeThrowsExceptionForWithNonIntegerValue()\n    {\n        $this->expectExceptionObject(new InvalidDateException('second', 15.1));\n\n        Carbon::createSafe(2015, 2, 10, 17, 16, 15.1);\n    }\n\n    public function testCreateSafePassesForFebruaryInNonLeapYear()\n    {\n        // 28 days in February for a non-leap year\n        $this->assertSame(28, Carbon::createSafe(2015, 2, 28, 17, 16, 15)->day);\n    }\n\n    public function testCreateSafePasses()\n    {\n        $sd = Carbon::createSafe(2015, 2, 15, 17, 16, 15);\n        $d = Carbon::create(2015, 2, 15, 17, 16, 15);\n        $this->assertEquals($d, $sd);\n        $this->assertCarbon($sd, 2015, 2, 15, 17, 16, 15);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/CreateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse DateTime;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass CreateTest extends AbstractTestCase\n{\n    public function testCreateReturnsDatingInstance()\n    {\n        $d = Carbon::create();\n        $this->assertInstanceOfCarbon($d);\n    }\n\n    public function testCreateWithDefaults()\n    {\n        $d = Carbon::create();\n        $this->assertSame($d->getTimestamp(), Carbon::create('0000-01-01 00:00:00')->getTimestamp());\n    }\n\n    public function testCreateWithNull()\n    {\n        $d = Carbon::create(null, null, null, null, null, null);\n        $this->assertSame($d->getTimestamp(), Carbon::now()->getTimestamp());\n    }\n\n    public function testCreateAsParseAlias()\n    {\n        $d = Carbon::create('2019-02-05 12:30:06.99', 'Asia/Tokyo');\n        $this->assertSame('2019-02-05 12:30:06.990000 Asia/Tokyo', $d->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testCreateWithYear()\n    {\n        $d = Carbon::create(2012);\n        $this->assertSame(2012, $d->year);\n    }\n\n    public function testCreateHandlesNegativeYear()\n    {\n        $c = Carbon::create(-1, 10, 12, 1, 2, 3);\n        $this->assertCarbon($c, -1, 10, 12, 1, 2, 3);\n    }\n\n    public function testCreateHandlesFiveDigitsPositiveYears()\n    {\n        $c = Carbon::create(999999999, 10, 12, 1, 2, 3);\n        $this->assertCarbon($c, 999999999, 10, 12, 1, 2, 3);\n    }\n\n    public function testCreateHandlesFiveDigitsNegativeYears()\n    {\n        $c = Carbon::create(-999999999, 10, 12, 1, 2, 3);\n        $this->assertCarbon($c, -999999999, 10, 12, 1, 2, 3);\n    }\n\n    public function testCreateWithMonth()\n    {\n        $d = Carbon::create(null, 3);\n        $this->assertSame(3, $d->month);\n    }\n\n    public function testCreateWithInvalidMonth()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'month must be between 0 and 99, -5 given',\n        ));\n\n        Carbon::create(null, -5);\n    }\n\n    public function testCreateMonthWraps()\n    {\n        $d = Carbon::create(2011, 0, 1, 0, 0, 0);\n        $this->assertCarbon($d, 2010, 12, 1, 0, 0, 0);\n    }\n\n    public function testCreateWithDay()\n    {\n        $d = Carbon::create(null, null, 21);\n        $this->assertSame(21, $d->day);\n    }\n\n    public function testCreateWithInvalidDay()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'day must be between 0 and 99, -4 given',\n        ));\n\n        Carbon::create(null, null, -4);\n    }\n\n    public function testCreateDayWraps()\n    {\n        $d = Carbon::create(2011, 1, 40, 0, 0, 0);\n        $this->assertCarbon($d, 2011, 2, 9, 0, 0, 0);\n    }\n\n    public function testCreateWithHourAndDefaultMinSecToZero()\n    {\n        $d = Carbon::create(null, null, null, 14);\n        $this->assertSame(14, $d->hour);\n        $this->assertSame(0, $d->minute);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testCreateWithInvalidHour()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'hour must be between 0 and 99, -1 given',\n        ));\n\n        Carbon::create(null, null, null, -1);\n    }\n\n    public function testCreateHourWraps()\n    {\n        $d = Carbon::create(2011, 1, 1, 24, 0, 0);\n        $this->assertCarbon($d, 2011, 1, 2, 0, 0, 0);\n    }\n\n    public function testCreateWithMinute()\n    {\n        $d = Carbon::create(null, null, null, null, 58);\n        $this->assertSame(58, $d->minute);\n    }\n\n    public function testCreateWithInvalidMinute()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'minute must be between 0 and 99, -2 given',\n        ));\n\n        Carbon::create(2011, 1, 1, 0, -2, 0);\n    }\n\n    public function testCreateMinuteWraps()\n    {\n        $d = Carbon::create(2011, 1, 1, 0, 62, 0);\n        $this->assertCarbon($d, 2011, 1, 1, 1, 2, 0);\n    }\n\n    public function testCreateWithSecond()\n    {\n        $d = Carbon::create(null, null, null, null, null, 59);\n        $this->assertSame(59, $d->second);\n    }\n\n    public function testCreateWithInvalidSecond()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'second must be between 0 and 99, -2 given',\n        ));\n\n        Carbon::create(null, null, null, null, null, -2);\n    }\n\n    public function testCreateSecondsWrap()\n    {\n        $d = Carbon::create(2012, 1, 1, 0, 0, 61);\n        $this->assertCarbon($d, 2012, 1, 1, 0, 1, 1);\n    }\n\n    public function testCreateWithDateTimeZone()\n    {\n        $d = Carbon::create(2012, 1, 1, 0, 0, 0, new DateTimeZone('Europe/London'));\n        $this->assertCarbon($d, 2012, 1, 1, 0, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testCreateWithTimeZoneString()\n    {\n        $d = Carbon::create(2012, 1, 1, 0, 0, 0, 'Europe/London');\n        $this->assertCarbon($d, 2012, 1, 1, 0, 0, 0);\n        $this->assertSame('Europe/London', $d->tzName);\n    }\n\n    public function testMake()\n    {\n        $this->assertCarbon(Carbon::make('2017-01-05'), 2017, 1, 5, 0, 0, 0);\n        $this->assertCarbon(Carbon::make(new DateTime('2017-01-05')), 2017, 1, 5, 0, 0, 0);\n        $this->assertCarbon(Carbon::make(new Carbon('2017-01-05')), 2017, 1, 5, 0, 0, 0);\n        $this->assertNull(Carbon::make(3));\n    }\n\n    public function testCreateWithInvalidTimezoneOffset()\n    {\n        $this->expectExceptionObject(new InvalidTimeZoneException(\n            'Unknown or bad timezone (-28236)',\n        ));\n\n        Carbon::createFromDate(2000, 1, 1, -28236);\n    }\n\n    public function testCreateWithValidTimezoneOffset()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, -4);\n        $this->assertSame('America/New_York', $dt->tzName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-4');\n        $this->assertSame('-04:00', $dt->tzName);\n    }\n\n    public function testParseFromLocale()\n    {\n        $date = Carbon::parseFromLocale('23 Okt 2019', 'de');\n\n        $this->assertSame('Wednesday, October 23, 2019 12:00 AM America/Toronto', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::parseFromLocale('23 Okt 2019', 'de', 'Europe/Berlin')->locale('de');\n\n        $this->assertSame('Mittwoch, 23. Oktober 2019 00:00 Europe/Berlin', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::parseFromLocale('23 červenec 2019', 'cs');\n\n        $this->assertSame('2019-07-23', $date->format('Y-m-d'));\n\n        $date = Carbon::parseFromLocale('23 červen 2019', 'cs');\n\n        $this->assertSame('2019-06-23', $date->format('Y-m-d'));\n\n        Carbon::setTestNow('2021-01-26 15:45:13');\n\n        $date = Carbon::parseFromLocale('завтра', 'ru');\n\n        $this->assertSame('2021-01-27 00:00:00', $date->format('Y-m-d H:i:s'));\n    }\n\n    public function testParseFromLocaleWithDefaultLocale()\n    {\n        Carbon::setLocale('fr');\n\n        $date = Carbon::parseFromLocale('Dimanche');\n\n        $this->assertSame('dimanche', $date->dayName);\n\n        $date = Carbon::parseFromLocale('Lundi');\n\n        $this->assertSame('lundi', $date->dayName);\n    }\n\n    public function testCreateFromLocaleFormat()\n    {\n        $date = Carbon::createFromLocaleFormat('Y M d H,i,s', 'zh_CN', '2019 四月 4 12,04,21');\n\n        $this->assertSame('Thursday, April 4, 2019 12:04 PM America/Toronto', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::createFromLocaleFormat('Y M d H,i,s', 'zh_TW', '2019 四月 4 12,04,21', 'Asia/Shanghai')->locale('zh');\n\n        $this->assertSame('2019年4月4日星期四 中午 12点04分 Asia/Shanghai', $date->isoFormat('LLLL zz'));\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d * F * Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\of F \\of Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\o\\f F \\o\\f Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\d\\e F \\d\\e Y', 'es', '05 de diciembre de 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n\n        $this->assertSame(\n            '2022-12-05 America/Mexico_City',\n            Carbon::createFromLocaleFormat('d \\n\\o\\t F \\n\\o\\t Y', 'es', '05 not diciembre not 2022', 'America/Mexico_City')\n                ->format('Y-m-d e')\n        );\n    }\n\n    public function testCreateFromIsoFormat()\n    {\n        $date = Carbon::createFromIsoFormat('!YYYYY MMMM D', '2019 April 4');\n\n        $this->assertSame('Thursday, April 4, 2019 12:00 AM America/Toronto', $date->isoFormat('LLLL zz'));\n    }\n\n    public function testCreateFromIsoFormatException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Format wo not supported for creation.',\n        ));\n\n        Carbon::createFromIsoFormat('YY D wo', '2019 April 4');\n    }\n\n    public function testCreateFromLocaleIsoFormat()\n    {\n        $date = Carbon::createFromLocaleIsoFormat('YYYY MMMM D HH,mm,ss', 'zh_TW', '2019 四月 4 12,04,21');\n\n        $this->assertSame('Thursday, April 4, 2019 12:04 PM America/Toronto', $date->isoFormat('LLLL zz'));\n\n        $date = Carbon::createFromLocaleIsoFormat('LLL zz', 'zh', '2019年4月4日 下午 2点04分 Asia/Shanghai');\n\n        $this->assertSame('Thursday, April 4, 2019 2:04 PM Asia/Shanghai', $date->isoFormat('LLLL zz'));\n\n        $this->assertSame('2019年4月4日星期四 下午 2点04分 Asia/Shanghai', $date->locale('zh')->isoFormat('LLLL zz'));\n\n        $date = Carbon::createFromLocaleIsoFormat('llll', 'fr_CA', 'mar. 24 juil. 2018 08:34');\n\n        $this->assertSame('2018-07-24 08:34', $date->format('Y-m-d H:i'));\n    }\n\n    public function testStartOfTime()\n    {\n        $this->assertTrue(Carbon::startOfTime()->isStartOfTime());\n        $this->assertTrue(Carbon::startOfTime()->toImmutable()->isStartOfTime());\n    }\n\n    public function testEndOfTime()\n    {\n        $this->assertTrue(Carbon::endOfTime()->isEndOfTime());\n        $this->assertTrue(Carbon::endOfTime()->toImmutable()->isEndOfTime());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/DayOfWeekModifiersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass DayOfWeekModifiersTest extends AbstractTestCase\n{\n    public function testGetWeekendDays()\n    {\n        $this->assertSame([Carbon::SATURDAY, Carbon::SUNDAY], Carbon::getWeekendDays());\n    }\n\n    public function testSetWeekendDays()\n    {\n        Carbon::setWeekendDays([Carbon::THURSDAY, Carbon::FRIDAY]);\n        $this->assertSame([Carbon::THURSDAY, Carbon::FRIDAY], Carbon::getWeekendDays());\n        $this->assertTrue(Carbon::createFromDate(2018, 2, 16)->isWeekend());\n        Carbon::setWeekendDays([Carbon::SATURDAY, Carbon::SUNDAY]);\n        $this->assertSame([Carbon::SATURDAY, Carbon::SUNDAY], Carbon::getWeekendDays());\n        $this->assertFalse(Carbon::createFromDate(2018, 2, 16)->isWeekend());\n    }\n\n    public function testStartOfWeek()\n    {\n        $d = Carbon::create(1980, 8, 7, 12, 11, 9)->startOfWeek();\n        $this->assertCarbon($d, 1980, 8, 4, 0, 0, 0);\n    }\n\n    public function testStartOfWeekFromWeekStart()\n    {\n        $d = Carbon::createFromDate(1980, 8, 4)->startOfWeek();\n        $this->assertCarbon($d, 1980, 8, 4, 0, 0, 0);\n    }\n\n    public function testStartOfWeekCrossingYearBoundary()\n    {\n        $d = Carbon::createFromDate(2013, 12, 31, 'GMT');\n        $d2 = $d->startOfWeek();\n        $this->assertCarbon($d, 2013, 12, 31);\n        $this->assertCarbon($d2, 2013, 12, 30, 0, 0, 0);\n    }\n\n    public function testEndOfWeek()\n    {\n        $d = Carbon::create(1980, 8, 7, 11, 12, 13)->endOfWeek();\n        $this->assertCarbon($d, 1980, 8, 10, 23, 59, 59);\n    }\n\n    public function testEndOfWeekFromWeekEnd()\n    {\n        $d = Carbon::createFromDate(1980, 8, 9)->endOfWeek();\n        $this->assertCarbon($d, 1980, 8, 10, 23, 59, 59);\n    }\n\n    public function testEndOfWeekCrossingYearBoundary()\n    {\n        $d = Carbon::createFromDate(2013, 12, 31, 'GMT');\n        $d2 = $d->endOfWeek();\n        $this->assertCarbon($d, 2013, 12, 31);\n        $this->assertCarbon($d2, 2014, 1, 5, 23, 59, 59);\n    }\n\n    /**\n     * @see https://github.com/briannesbitt/Carbon/issues/735\n     */\n    public function testStartOrEndOfWeekFromWeekWithUTC()\n    {\n        $d = Carbon::create(2016, 7, 27, 17, 13, 7, 'UTC');\n        $this->assertCarbon($d->copy()->startOfWeek(), 2016, 7, 25, 0, 0, 0);\n        $this->assertCarbon($d->copy()->endOfWeek(), 2016, 7, 31, 23, 59, 59);\n    }\n\n    /**\n     * @see https://github.com/briannesbitt/Carbon/issues/735\n     */\n    public function testStartOrEndOfWeekFromWeekWithOtherTimezone()\n    {\n        $d = Carbon::create(2016, 7, 27, 17, 13, 7, 'America/New_York');\n        $this->assertCarbon($d->copy()->startOfWeek(), 2016, 7, 25, 0, 0, 0);\n        $this->assertCarbon($d->copy()->endOfWeek(), 2016, 7, 31, 23, 59, 59);\n    }\n\n    public function testNext()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->next();\n        $this->assertCarbon($d, 1975, 5, 28, 0, 0, 0);\n    }\n\n    public function testNextMonday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->next(Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 5, 26, 0, 0, 0);\n    }\n\n    public function testNextSaturday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->next(6);\n        $this->assertCarbon($d, 1975, 5, 24, 0, 0, 0);\n    }\n\n    public function testNextTimestamp()\n    {\n        $d = Carbon::createFromDate(1975, 11, 14)->next();\n        $this->assertCarbon($d, 1975, 11, 21, 0, 0, 0);\n    }\n\n    public function testPrevious()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->previous();\n        $this->assertCarbon($d, 1975, 5, 14, 0, 0, 0);\n    }\n\n    public function testPreviousMonday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->previous(Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 5, 19, 0, 0, 0);\n    }\n\n    public function testPreviousSaturday()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21)->previous(6);\n        $this->assertCarbon($d, 1975, 5, 17, 0, 0, 0);\n    }\n\n    public function testPreviousTimestamp()\n    {\n        $d = Carbon::createFromDate(1975, 11, 28)->previous();\n        $this->assertCarbon($d, 1975, 11, 21, 0, 0, 0);\n    }\n\n    public function testFirstDayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfMonth();\n        $this->assertCarbon($d, 1975, 11, 1, 0, 0, 0);\n    }\n\n    public function testFirstWednesdayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfMonth(Carbon::WEDNESDAY);\n        $this->assertCarbon($d, 1975, 11, 5, 0, 0, 0);\n    }\n\n    public function testFirstFridayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfMonth(5);\n        $this->assertCarbon($d, 1975, 11, 7, 0, 0, 0);\n    }\n\n    public function testLastDayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->lastOfMonth();\n        $this->assertCarbon($d, 1975, 12, 31, 0, 0, 0);\n    }\n\n    public function testLastTuesdayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 1)->lastOfMonth(Carbon::TUESDAY);\n        $this->assertCarbon($d, 1975, 12, 30, 0, 0, 0);\n    }\n\n    public function testLastFridayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->lastOfMonth(5);\n        $this->assertCarbon($d, 1975, 12, 26, 0, 0, 0);\n    }\n\n    public function testNthOfMonthOutsideScope()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 12, 5)->nthOfMonth(6, Carbon::MONDAY));\n    }\n\n    public function testNthOfMonthOutsideYear()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 12, 5)->nthOfMonth(55, Carbon::MONDAY));\n    }\n\n    public function test2ndMondayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->nthOfMonth(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 12, 8, 0, 0, 0);\n    }\n\n    public function test3rdWednesdayOfMonth()\n    {\n        $d = Carbon::createFromDate(1975, 12, 5)->nthOfMonth(3, 3);\n        $this->assertCarbon($d, 1975, 12, 17, 0, 0, 0);\n    }\n\n    public function testFirstDayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfQuarter();\n        $this->assertCarbon($d, 1975, 10, 1, 0, 0, 0);\n    }\n\n    public function testFirstWednesdayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfQuarter(Carbon::WEDNESDAY);\n        $this->assertCarbon($d, 1975, 10, 1, 0, 0, 0);\n    }\n\n    public function testFirstFridayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfQuarter(5);\n        $this->assertCarbon($d, 1975, 10, 3, 0, 0, 0);\n    }\n\n    public function testFirstOfQuarterFromADayThatWillNotExistInTheFirstMonth()\n    {\n        $d = Carbon::createFromDate(2014, 5, 31)->firstOfQuarter();\n        $this->assertCarbon($d, 2014, 4, 1, 0, 0, 0);\n    }\n\n    public function testLastDayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->lastOfQuarter();\n        $this->assertCarbon($d, 1975, 9, 30, 0, 0, 0);\n    }\n\n    public function testLastTuesdayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 1)->lastOfQuarter(Carbon::TUESDAY);\n        $this->assertCarbon($d, 1975, 9, 30, 0, 0, 0);\n    }\n\n    public function testLastFridayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 7, 5)->lastOfQuarter(5);\n        $this->assertCarbon($d, 1975, 9, 26, 0, 0, 0);\n    }\n\n    public function testLastOfQuarterFromADayThatWillNotExistInTheLastMonth()\n    {\n        $d = Carbon::createFromDate(2014, 5, 31)->lastOfQuarter();\n        $this->assertCarbon($d, 2014, 6, 30, 0, 0, 0);\n    }\n\n    public function testNthOfQuarterOutsideScope()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 1, 5)->nthOfQuarter(20, Carbon::MONDAY));\n    }\n\n    public function testNthOfQuarterOutsideYear()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 1, 5)->nthOfQuarter(55, Carbon::MONDAY));\n    }\n\n    public function testNthOfQuarterFromADayThatWillNotExistInTheFirstMonth()\n    {\n        $d = Carbon::createFromDate(2014, 5, 31)->nthOfQuarter(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 2014, 4, 14, 0, 0, 0);\n    }\n\n    public function test2ndMondayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfQuarter(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 7, 14, 0, 0, 0);\n    }\n\n    public function test3rdWednesdayOfQuarter()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfQuarter(3, 3);\n        $this->assertCarbon($d, 1975, 7, 16, 0, 0, 0);\n    }\n\n    public function testFirstDayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfYear();\n        $this->assertCarbon($d, 1975, 1, 1, 0, 0, 0);\n    }\n\n    public function testFirstWednesdayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfYear(Carbon::WEDNESDAY);\n        $this->assertCarbon($d, 1975, 1, 1, 0, 0, 0);\n    }\n\n    public function testFirstFridayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 11, 21)->firstOfYear(5);\n        $this->assertCarbon($d, 1975, 1, 3, 0, 0, 0);\n    }\n\n    public function testLastDayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->lastOfYear();\n        $this->assertCarbon($d, 1975, 12, 31, 0, 0, 0);\n    }\n\n    public function testLastTuesdayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 1)->lastOfYear(Carbon::TUESDAY);\n        $this->assertCarbon($d, 1975, 12, 30, 0, 0, 0);\n    }\n\n    public function testLastFridayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 7, 5)->lastOfYear(5);\n        $this->assertCarbon($d, 1975, 12, 26, 0, 0, 0);\n    }\n\n    public function testNthOfYearOutsideScope()\n    {\n        $this->assertFalse(Carbon::createFromDate(1975, 1, 5)->nthOfYear(55, Carbon::MONDAY));\n    }\n\n    public function test2ndMondayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfYear(2, Carbon::MONDAY);\n        $this->assertCarbon($d, 1975, 1, 13, 0, 0, 0);\n    }\n\n    public function test3rdWednesdayOfYear()\n    {\n        $d = Carbon::createFromDate(1975, 8, 5)->nthOfYear(3, 3);\n        $this->assertCarbon($d, 1975, 1, 15, 0, 0, 0);\n    }\n\n    public function testNextWeekday()\n    {\n        // Friday to Monday\n        $d = Carbon::create(2016, 7, 15)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Saturday to Monday\n        $d = Carbon::create(2016, 7, 16)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Sunday to Monday\n        $d = Carbon::create(2016, 7, 16)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Monday to Tuesday\n        $d = Carbon::create(2016, 7, 17)->nextWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n    }\n\n    public function testPreviousWeekday()\n    {\n        // Tuesday to Monday\n        $d = Carbon::create(2016, 7, 19)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 18);\n\n        // Monday to Friday\n        $d = Carbon::create(2016, 7, 18)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 15);\n\n        // Sunday to Friday\n        $d = Carbon::create(2016, 7, 17)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 15);\n\n        // Saturday to Friday\n        $d = Carbon::create(2016, 7, 16)->previousWeekday();\n        $this->assertCarbon($d, 2016, 7, 15);\n    }\n\n    public function testNextWeekendDay()\n    {\n        // Thursday to Saturday\n        $d = Carbon::create(2016, 7, 14)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 16);\n\n        // Friday to Saturday\n        $d = Carbon::create(2016, 7, 15)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 16);\n\n        // Saturday to Sunday\n        $d = Carbon::create(2016, 7, 16)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 17);\n\n        // Sunday to Saturday\n        $d = Carbon::create(2016, 7, 17)->nextWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 23);\n    }\n\n    public function testPreviousWeekendDay()\n    {\n        // Thursday to Sunday\n        $d = Carbon::create(2016, 7, 14)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 10);\n\n        // Friday to Sunday\n        $d = Carbon::create(2016, 7, 15)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 10);\n\n        // Saturday to Sunday\n        $d = Carbon::create(2016, 7, 16)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 10);\n\n        // Sunday to Saturday\n        $d = Carbon::create(2016, 7, 17)->previousWeekendDay();\n        $this->assertCarbon($d, 2016, 7, 16);\n    }\n\n    public function testWeekStartAndEndWithAutoMode()\n    {\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n\n        Carbon::setLocale('en_UM');\n        $this->assertSame('Sunday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en_US');\n        $this->assertSame('Sunday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en');\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('es_US');\n        $this->assertSame('domingo', Carbon::now()->startOfWeek()->dayName);\n        Carbon::setLocale('en_GB');\n        $this->assertSame('Monday', Carbon::now()->startOfWeek()->dayName);\n\n        Carbon::setLocale('en_UM');\n        $this->assertSame('Saturday', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('en_US');\n        $this->assertSame('Saturday', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('en');\n        $this->assertSame('Sunday', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('es_US');\n        $this->assertSame('sábado', Carbon::now()->endOfWeek()->dayName);\n        Carbon::setLocale('en_GB');\n        $this->assertSame('Sunday', Carbon::now()->endOfWeek()->dayName);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/DiffTest.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\UnknownUnitException;\nuse Closure;\nuse DateTime;\nuse Tests\\AbstractTestCase;\nuse TypeError;\n\nclass DiffTest extends AbstractTestCase\n{\n    public function wrapWithTestNow(Closure $func, ?CarbonInterface $dt = null): void\n    {\n        parent::wrapWithTestNow($func, $dt ?: Carbon::createMidnightDate(2012, 1, 1));\n    }\n\n    public function testDiffAsCarbonInterval()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertCarbonInterval($dt->diff($dt->copy()->addYear()), 1, 0, 0, 0, 0, 0);\n        $this->assertTrue($dt->diff($dt)->isEmpty());\n    }\n\n    public function testDiffInYearsPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1.0, $dt->diffInYears($dt->copy()->addYear()));\n    }\n\n    public function testDiffInYearsNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-1.0, $dt->diffInYears($dt->copy()->subYear()));\n    }\n\n    public function testDiffInYearsNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1.0, $dt->diffInYears($dt->copy()->subYear(), true));\n    }\n\n    public function testDiffInYearsVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(1.0, Carbon::now()->subYear()->diffInYears());\n        });\n    }\n\n    public function testDiffInYearsEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInYears($dt->copy()->addYear()->addMonths(7)));\n    }\n\n    public function testDiffInQuartersPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInQuarters($dt->copy()->addQuarter()->addDay()));\n    }\n\n    public function testDiffInQuartersNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-4, (int) $dt->diffInQuarters($dt->copy()->subQuarters(4)));\n    }\n\n    public function testDiffInQuartersNegativeWithNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(4, (int) $dt->diffInQuarters($dt->copy()->subQuarters(4), true));\n    }\n\n    public function testDiffInQuartersVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(4, (int) Carbon::now()->subYear()->diffInQuarters());\n        });\n    }\n\n    public function testDiffInQuartersEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInQuarters($dt->copy()->addQuarter()->addDays(12)));\n    }\n\n    public function testDiffInMonthsPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(13, (int) $dt->diffInMonths($dt->copy()->addYear()->addMonth()));\n    }\n\n    public function testDiffInMonthsNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-11, (int) $dt->diffInMonths($dt->copy()->subYear()->addMonth()));\n    }\n\n    public function testDiffInMonthsNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(11, (int) $dt->diffInMonths($dt->copy()->subYear()->addMonth(), true));\n    }\n\n    public function testDiffInMonthsVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(12, (int) Carbon::now()->subYear()->diffInMonths());\n        });\n    }\n\n    public function testDiffInMonthsEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInMonths($dt->copy()->addMonth()->addDays(16)));\n    }\n\n    public function testDiffInDaysPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(366.0, $dt->diffInDays($dt->copy()->addYear()));\n    }\n\n    public function testDiffInDaysNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-365.0, $dt->diffInDays($dt->copy()->subYear()));\n    }\n\n    public function testDiffInDaysNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(365.0, $dt->diffInDays($dt->copy()->subYear(), true));\n    }\n\n    public function testDiffInDaysVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(7.0, Carbon::now()->subWeek()->diffInDays());\n        });\n    }\n\n    public function testDiffInDaysEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1, (int) $dt->diffInDays($dt->copy()->addDay()->addHours(13)));\n    }\n\n    public function testDiffInDaysFilteredPositiveWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(5, $dt->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === 1;\n        }, $dt->copy()->endOfMonth()));\n    }\n\n    public function testDiffInDaysFilteredPositiveWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 1);\n        $dt2 = Carbon::createFromDate(2000, 1, 31);\n\n        $this->assertSame(5, $dt1->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt2));\n    }\n\n    public function testDiffInDaysFilteredNegativeNoSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-5, $dt->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInDaysFilteredNegativeNoSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31);\n        $dt2 = Carbon::createFromDate(2000, 1, 1);\n\n        $this->assertSame(5, $dt1->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt2, true));\n    }\n\n    public function testDiffInDaysFilteredNegativeWithSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-5, $dt->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === 1;\n        }, $dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInDaysFilteredNegativeWithSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31);\n        $dt2 = Carbon::createFromDate(2000, 1, 1);\n\n        $this->assertSame(-5, $dt1->diffInDaysFiltered(function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt2));\n    }\n\n    public function testDiffInHoursFiltered()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31)->endOfDay();\n        $dt2 = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n\n        $this->assertSame(-31, $dt1->diffInHoursFiltered(function (Carbon $date) {\n            return $date->hour === 9;\n        }, $dt2));\n    }\n\n    public function testDiffInHoursFilteredNegative()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 31)->endOfDay();\n        $dt2 = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n\n        $this->assertSame(-31, $dt1->diffInHoursFiltered(function (Carbon $date) {\n            return $date->hour === 9;\n        }, $dt2));\n    }\n\n    public function testDiffInHoursFilteredWorkHoursPerWeek()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 5)->endOfDay();\n        $dt2 = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n\n        $this->assertSame(-40, $dt1->diffInHoursFiltered(function (Carbon $date) {\n            return $date->hour > 8 && $date->hour < 17;\n        }, $dt2));\n    }\n\n    public function testDiffFilteredUsingMinutesPositiveWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1)->startOfDay();\n        $this->assertSame(60, $dt->diffFiltered(CarbonInterval::minute(), function (Carbon $date) {\n            return $date->hour === 12;\n        }, Carbon::createFromDate(2000, 1, 1)->endOfDay()));\n    }\n\n    public function testDiffFilteredPositiveWithSecondObject()\n    {\n        $dt1 = Carbon::create(2000, 1, 1);\n        $dt2 = $dt1->copy()->addSeconds(80);\n\n        $this->assertSame(40, $dt1->diffFiltered(CarbonInterval::second(), function (Carbon $date) {\n            return $date->second % 2 === 0;\n        }, $dt2));\n    }\n\n    public function testDiffFilteredNegativeNoSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n\n        $this->assertSame(-2, $dt->diffFiltered(CarbonInterval::days(2), function (Carbon $date) {\n            return $date->dayOfWeek === Carbon::SUNDAY;\n        }, $dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffFilteredNegativeNoSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2006, 1, 31);\n        $dt2 = Carbon::createFromDate(2000, 1, 1);\n\n        $this->assertSame(-7, $dt1->diffFiltered(CarbonInterval::year(), function (Carbon $date) {\n            return $date->month === 1;\n        }, $dt2));\n    }\n\n    public function testDiffFilteredNegativeWithSignWithMutated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-4, $dt->diffFiltered(CarbonInterval::week(), function (Carbon $date) {\n            return $date->month === 12;\n        }, $dt->copy()->subMonths(3), false));\n    }\n\n    public function testDiffFilteredNegativeWithSignWithSecondObject()\n    {\n        $dt1 = Carbon::createFromDate(2001, 1, 31);\n        $dt2 = Carbon::createFromDate(1999, 1, 1);\n\n        $this->assertSame(-12, $dt1->diffFiltered(CarbonInterval::month(), function (Carbon $date) {\n            return $date->year === 2000;\n        }, $dt2, false));\n    }\n\n    public function testBug188DiffWithSameDates()\n    {\n        $start = Carbon::create(2014, 10, 8, 15, 20, 0);\n        $end = $start->copy();\n\n        $this->assertSame(0.0, $start->diffInDays($end));\n        $this->assertSame(0, $start->diffInWeekdays($end));\n    }\n\n    public function testBug188DiffWithDatesOnlyHoursApart()\n    {\n        $start = Carbon::create(2014, 10, 8, 15, 20, 0);\n        $end = $start->copy();\n\n        $this->assertSame(0.0, $start->diffInDays($end));\n        $this->assertSame(0, $start->diffInWeekdays($end));\n    }\n\n    public function testBug188DiffWithSameDates1DayApart()\n    {\n        $start = Carbon::create(2014, 10, 8, 15, 20, 0);\n        $end = $start->copy()->addDay();\n\n        $this->assertSame(1.0, $start->diffInDays($end));\n        $this->assertSame(1, $start->diffInWeekdays($end));\n    }\n\n    public function testBug188DiffWithDatesOnTheWeekend()\n    {\n        $start = Carbon::create(2014, 1, 1, 0, 0, 0);\n        $start = $start->next(Carbon::SATURDAY);\n        $end = $start->copy()->addDay();\n\n        $this->assertSame(1.0, $start->diffInDays($end));\n        $this->assertSame(0, $start->diffInWeekdays($end));\n    }\n\n    public function testDiffInWeekdaysPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(21, $dt->diffInWeekdays($dt->copy()->addMonth()));\n    }\n\n    public function testDiffInWeekdaysNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(20, $dt->diffInWeekdays($dt->copy()->startOfMonth(), true));\n    }\n\n    public function testDiffInWeekdaysNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-20, $dt->diffInWeekdays($dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInWeekendDaysPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(10, $dt->diffInWeekendDays($dt->copy()->endOfMonth()));\n    }\n\n    public function testDiffInWeekendDaysNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(10, $dt->diffInWeekendDays($dt->copy()->startOfMonth(), true));\n    }\n\n    public function testDiffInWeekendDaysNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 31);\n        $this->assertSame(-10, $dt->diffInWeekendDays($dt->copy()->startOfMonth()));\n    }\n\n    public function testDiffInWeeksPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(52, (int) $dt->diffInWeeks($dt->copy()->addYear()));\n    }\n\n    public function testDiffInWeeksNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-52, (int) $dt->diffInWeeks($dt->copy()->subYear()));\n    }\n\n    public function testDiffInWeeksNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(52, (int) $dt->diffInWeeks($dt->copy()->subYear(), true));\n    }\n\n    public function testDiffInWeeksVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(1.0, Carbon::now()->subWeek()->diffInWeeks());\n        });\n    }\n\n    public function testDiffInWeeksEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(0.86, round($dt->diffInWeeks($dt->copy()->addWeek()->subDay()), 2));\n    }\n\n    public function testDiffInHoursPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(26.0, $dt->diffInHours($dt->copy()->addDay()->addHours(2)));\n    }\n\n    public function testDiffInHoursNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-22.0, $dt->diffInHours($dt->copy()->subDay()->addHours(2)));\n    }\n\n    public function testDiffInHoursNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(22.0, $dt->diffInHours($dt->copy()->subDay()->addHours(2), true));\n    }\n\n    public function testDiffInHoursVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(48.0, Carbon::now()->subDays(2)->diffInHours());\n        }, Carbon::create(2012, 1, 15));\n    }\n\n    public function testDiffInHoursEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1.52, round($dt->diffInHours($dt->copy()->addHour()->addMinutes(31)), 2));\n    }\n\n    public function testDiffInHoursWithTimezones()\n    {\n        date_default_timezone_set('Africa/Algiers');\n        Carbon::setTestNow();\n\n        $dtToronto = Carbon::create(2012, 1, 1, 0, 0, 0, 'America/Toronto');\n        $dtVancouver = Carbon::create(2012, 1, 1, 0, 0, 0, 'America/Vancouver');\n\n        $this->assertSame(-3.0, $dtVancouver->diffInHours($dtToronto), 'Midnight in Toronto is 3 hours from midnight in Vancouver');\n\n        $dtToronto = Carbon::createFromDate(2012, 1, 1, 'America/Toronto');\n        usleep(2);\n        $dtVancouver = Carbon::createFromDate(2012, 1, 1, 'America/Vancouver');\n\n        $this->assertSame(0, ((int) round($dtVancouver->diffInHours($dtToronto))) % 24);\n\n        $dtToronto = Carbon::createMidnightDate(2012, 1, 1, 'America/Toronto');\n        $dtVancouver = Carbon::createMidnightDate(2012, 1, 1, 'America/Vancouver');\n\n        $this->assertSame(-3.0, $dtVancouver->diffInHours($dtToronto), 'Midnight in Toronto is 3 hours from midnight in Vancouver');\n    }\n\n    public function testDiffInMinutesPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(62.0, $dt->diffInMinutes($dt->copy()->addHour()->addMinutes(2)));\n    }\n\n    public function testDiffInMinutesPositiveALot()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1502.0, $dt->diffInMinutes($dt->copy()->addHours(25)->addMinutes(2)));\n    }\n\n    public function testDiffInMinutesNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-58.0, $dt->diffInMinutes($dt->copy()->subHour()->addMinutes(2)));\n    }\n\n    public function testDiffInMinutesNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(58.0, $dt->diffInMinutes($dt->copy()->subHour()->addMinutes(2), true));\n    }\n\n    public function testDiffInMinutesVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(60.0, Carbon::now()->subHour()->diffInMinutes());\n        });\n    }\n\n    public function testDiffInMinutesEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1.52, round($dt->diffInMinutes($dt->copy()->addMinute()->addSeconds(31)), 2));\n    }\n\n    public function testDiffInSecondsPositive()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(62.0, $dt->diffInSeconds($dt->copy()->addMinute()->addSeconds(2)));\n    }\n\n    public function testDiffInSecondsPositiveALot()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(7202.0, $dt->diffInSeconds($dt->copy()->addHours(2)->addSeconds(2)));\n    }\n\n    public function testDiffInSecondsNegativeWithSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(-58.0, $dt->diffInSeconds($dt->copy()->subMinute()->addSeconds(2)));\n    }\n\n    public function testDiffInSecondsNegativeNoSign()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(58.0, $dt->diffInSeconds($dt->copy()->subMinute()->addSeconds(2), true));\n    }\n\n    public function testDiffInSecondsVsDefaultNow()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(3600.0, Carbon::now()->subHour()->diffInSeconds());\n        });\n    }\n\n    public function testDiffInSecondsEnsureIsTruncated()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1);\n        $this->assertSame(1.0, $dt->diffInSeconds($dt->copy()->addSeconds((int) 1.9)));\n    }\n\n    public function testDiffInSecondsWithTimezones()\n    {\n        $dtOttawa = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $dtVancouver = Carbon::createFromDate(2000, 1, 1, 'America/Vancouver');\n        $this->assertSame(0, $dtOttawa->diffInSeconds($dtVancouver) % (24 * 3600));\n\n        $dtOttawa = Carbon::createMidnightDate(2000, 1, 1, 'America/Toronto');\n        $dtVancouver = Carbon::createMidnightDate(2000, 1, 1, 'America/Vancouver');\n        $this->assertSame(3.0 * 60 * 60, $dtOttawa->diffInSeconds($dtVancouver));\n    }\n\n    public function testDiffInSecondsWithTimezonesAndVsDefault()\n    {\n        $vanNow = Carbon::now('America/Vancouver');\n        $hereNow = $vanNow->copy()->setTimezone(Carbon::now()->tz);\n        $this->wrapWithTestNow(function () use ($vanNow) {\n            $this->assertSame(0.0, $vanNow->diffInSeconds());\n        }, $hereNow);\n    }\n\n    public function testDiffForHumansNowAndSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('0 seconds ago', Carbon::now()->diffForHumans());\n        });\n    }\n\n    /**\n     * @see https://github.com/briannesbitt/Carbon/issues/2136\n     */\n    public function testDiffInTheFuture()\n    {\n        Carbon::setTestNow('2020-07-22 09:15');\n\n        $this->assertSame(\n            '1 week from now',\n            Carbon::parse('2020-07-30 13:51:15')\n                ->diffForHumans(['options' => CarbonInterface::ROUND]),\n        );\n    }\n\n    public function testDiffForHumansNowAndSecondWithTimezone()\n    {\n        $vanNow = Carbon::now('America/Vancouver');\n        $hereNow = $vanNow->copy()->setTimezone(Carbon::now()->tz);\n        $this->wrapWithTestNow(function () use ($vanNow) {\n            $this->assertSame('0 seconds ago', $vanNow->diffForHumans());\n        }, $hereNow);\n    }\n\n    public function testDiffForHumansNowAndSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds ago', Carbon::now()->subSeconds(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds ago', Carbon::now()->subSeconds(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute ago', Carbon::now()->subMinute()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes ago', Carbon::now()->subMinutes(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes ago', Carbon::now()->subMinutes(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour ago', Carbon::now()->subHour()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours ago', Carbon::now()->subHours(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours ago', Carbon::now()->subHours(23)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day ago', Carbon::now()->subDay()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days ago', Carbon::now()->subDays(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days ago', Carbon::now()->subDays(6)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week ago', Carbon::now()->subWeek()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks ago', Carbon::now()->subWeeks(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks ago', Carbon::now()->subWeeks(3)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndMonth()\n    {\n        Carbon::setTestNow('2018-12-01');\n        $this->assertSame('4 weeks ago', Carbon::now()->subWeeks(4)->diffForHumans());\n        $this->assertSame('1 month ago', Carbon::now()->subMonth()->diffForHumans());\n    }\n\n    public function testDiffForHumansNowAndMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months ago', Carbon::now()->subMonthsNoOverflow(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months ago', Carbon::now()->subMonthsNoOverflow(11)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year ago', Carbon::now()->subYear()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years ago', Carbon::now()->subYears(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 second from now', Carbon::now()->addSecond()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds from now', Carbon::now()->addSeconds(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds from now', Carbon::now()->addSeconds(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute from now', Carbon::now()->addMinute()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes from now', Carbon::now()->addMinutes(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes from now', Carbon::now()->addMinutes(59)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour from now', Carbon::now()->addHour()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours from now', Carbon::now()->addHours(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours from now', Carbon::now()->addHours(23)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day from now', Carbon::now()->addDay()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days from now', Carbon::now()->addDays(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days from now', Carbon::now()->addDays(6)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week from now', Carbon::now()->addWeek()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks from now', Carbon::now()->addWeeks(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks from now', Carbon::now()->addWeeks(3)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('4 weeks from now', Carbon::now()->addWeeks(4)->diffForHumans());\n            $this->assertSame('1 month from now', Carbon::now()->addMonth()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months from now', Carbon::now()->addMonths(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndNearlyFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months from now', Carbon::now()->addMonths(11)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year from now', Carbon::now()->addYear()->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansNowAndFutureYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years from now', Carbon::now()->addYears(2)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansOtherAndSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 second before', Carbon::now()->diffForHumans(Carbon::now()->addSecond()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds before', Carbon::now()->diffForHumans(Carbon::now()->addSeconds(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds before', Carbon::now()->diffForHumans(Carbon::now()->addSeconds(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute before', Carbon::now()->diffForHumans(Carbon::now()->addMinute()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes before', Carbon::now()->diffForHumans(Carbon::now()->addMinutes(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes before', Carbon::now()->diffForHumans(Carbon::now()->addMinutes(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour before', Carbon::now()->diffForHumans(Carbon::now()->addHour()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours before', Carbon::now()->diffForHumans(Carbon::now()->addHours(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours before', Carbon::now()->diffForHumans(Carbon::now()->addHours(23)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day before', Carbon::now()->diffForHumans(Carbon::now()->addDay()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days before', Carbon::now()->diffForHumans(Carbon::now()->addDays(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days before', Carbon::now()->diffForHumans(Carbon::now()->addDays(6)));\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithDefaultPartsCount()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week ago', Carbon::now()->subDays(8)->diffForHumans());\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithPartsCount1()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(\n                '1 week ago',\n                Carbon::now()->subDays(8)->diffForHumans(null, false, false, 1)\n            );\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithPartsCount2()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(\n                '1 week 1 day ago',\n                Carbon::now()->subDays(8)->diffForHumans(null, false, false, 2)\n            );\n        });\n    }\n\n    public function testDiffForHumansOverWeekWithMicrosecondsBuggyGap()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame(\n                '23 hours 59 minutes 59 seconds after',\n                Carbon::parse('2018-12-03 12:34:45.123456')\n                    ->diffForHumans('2018-12-02 12:34:45.123476', ['parts' => 3])\n            );\n        });\n    }\n\n    public function testDiffForHumansOtherAndWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week before', Carbon::now()->diffForHumans(Carbon::now()->addWeek()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks before', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks before', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(3)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('4 weeks before', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(4)));\n            $this->assertSame('1 month before', Carbon::now()->diffForHumans(Carbon::now()->addMonth()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months before', Carbon::now()->diffForHumans(Carbon::now()->addMonths(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months before', Carbon::now()->diffForHumans(Carbon::now()->addMonths(11)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year before', Carbon::now()->diffForHumans(Carbon::now()->addYear()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years before', Carbon::now()->diffForHumans(Carbon::now()->addYears(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureSecond()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 second after', Carbon::now()->diffForHumans(Carbon::now()->subSecond()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 seconds after', Carbon::now()->diffForHumans(Carbon::now()->subSeconds(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds after', Carbon::now()->diffForHumans(Carbon::now()->subSeconds(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureMinute()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 minute after', Carbon::now()->diffForHumans(Carbon::now()->subMinute()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 minutes after', Carbon::now()->diffForHumans(Carbon::now()->subMinutes(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 minutes after', Carbon::now()->diffForHumans(Carbon::now()->subMinutes(59)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureHour()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 hour after', Carbon::now()->diffForHumans(Carbon::now()->subHour()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 hours after', Carbon::now()->diffForHumans(Carbon::now()->subHours(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('23 hours after', Carbon::now()->diffForHumans(Carbon::now()->subHours(23)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureDay()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 day after', Carbon::now()->diffForHumans(Carbon::now()->subDay()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days after', Carbon::now()->diffForHumans(Carbon::now()->subDays(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('6 days after', Carbon::now()->diffForHumans(Carbon::now()->subDays(6)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureWeek()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 week after', Carbon::now()->diffForHumans(Carbon::now()->subWeek()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks after', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureMonth()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 weeks after', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(3)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureMonth()\n    {\n        Carbon::setTestNow('2018-12-01');\n        $this->assertSame('4 weeks after', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(4)));\n        $this->assertSame('1 month after', Carbon::now()->diffForHumans(Carbon::now()->subMonth()));\n    }\n\n    public function testDiffForHumansOtherAndFutureMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months after', Carbon::now()->diffForHumans(Carbon::now()->subMonthsNoOverflow(2)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndNearlyFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('11 months after', Carbon::now()->diffForHumans(Carbon::now()->subMonthsNoOverflow(11)));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureYear()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year after', Carbon::now()->diffForHumans(Carbon::now()->subYear()));\n        });\n    }\n\n    public function testDiffForHumansOtherAndFutureYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 years after', Carbon::now()->diffForHumans(Carbon::now()->subYears(2)));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteSeconds()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('59 seconds', Carbon::now()->diffForHumans(Carbon::now()->subSeconds(59), true));\n            $this->assertSame('59 seconds', Carbon::now()->diffForHumans(Carbon::now()->addSeconds(59), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteMinutes()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('30 minutes', Carbon::now()->diffForHumans(Carbon::now()->subMinutes(30), true));\n            $this->assertSame('30 minutes', Carbon::now()->diffForHumans(Carbon::now()->addMinutes(30), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteHours()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('3 hours', Carbon::now()->diffForHumans(Carbon::now()->subHours(3), true));\n            $this->assertSame('3 hours', Carbon::now()->diffForHumans(Carbon::now()->addHours(3), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteDays()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 days', Carbon::now()->diffForHumans(Carbon::now()->subDays(2), true));\n            $this->assertSame('2 days', Carbon::now()->diffForHumans(Carbon::now()->addDays(2), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteWeeks()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 weeks', Carbon::now()->diffForHumans(Carbon::now()->subWeeks(2), true));\n            $this->assertSame('2 weeks', Carbon::now()->diffForHumans(Carbon::now()->addWeeks(2), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteMonths()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2 months', Carbon::now()->diffForHumans(Carbon::now()->subMonthsNoOverflow(2), true));\n            $this->assertSame('2 months', Carbon::now()->diffForHumans(Carbon::now()->addMonthsNoOverflow(2), true));\n        });\n    }\n\n    public function testDiffForHumansAbsoluteYears()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), true));\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), true));\n        });\n    }\n\n    public function testDiffForHumansWithOptions()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year after', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year before', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year from now', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year ago', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year after', Carbon::now()->diffForHumans(Carbon::now()->subYears(1), CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n            $this->assertSame('1 year before', Carbon::now()->diffForHumans(Carbon::now()->addYears(1), CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n            $this->assertSame('1 year', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_ABSOLUTE));\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_AUTO));\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_NOW));\n            $this->assertSame('1 year before', Carbon::now()->subYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n            $this->assertSame('1 year after', Carbon::now()->addYears(1)->diffForHumans(null, CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n        });\n    }\n\n    public function testDiffForHumansWithMagicMethods()\n    {\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('1 year', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->subYears(1)->subMonth()));\n            $this->assertSame('1 year 1 month', Carbon::now()->longAbsoluteDiffForHumans(2, Carbon::now()->subYears(1)->subMonth()));\n            $this->assertSame('1 year 1 month', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->subYears(1)->subMonth(), 2));\n            $this->assertSame('1 year', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year', Carbon::now()->longAbsoluteDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr', Carbon::now()->shortAbsoluteDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr', Carbon::now()->shortAbsoluteDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year after', Carbon::now()->longRelativeDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year before', Carbon::now()->longRelativeDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr after', Carbon::now()->shortRelativeDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr before', Carbon::now()->shortRelativeDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year from now', Carbon::now()->longRelativeToNowDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year ago', Carbon::now()->longRelativeToNowDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr from now', Carbon::now()->shortRelativeToNowDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr ago', Carbon::now()->shortRelativeToNowDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year after', Carbon::now()->longRelativeToOtherDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1 year before', Carbon::now()->longRelativeToOtherDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1yr after', Carbon::now()->shortRelativeToOtherDiffForHumans(Carbon::now()->subYears(1)));\n            $this->assertSame('1yr before', Carbon::now()->shortRelativeToOtherDiffForHumans(Carbon::now()->addYears(1)));\n            $this->assertSame('1 year', Carbon::now()->subYears(1)->longAbsoluteDiffForHumans());\n            $this->assertSame('1 year', Carbon::now()->addYears(1)->longAbsoluteDiffForHumans());\n            $this->assertSame('1yr', Carbon::now()->subYears(1)->shortAbsoluteDiffForHumans());\n            $this->assertSame('1yr', Carbon::now()->addYears(1)->shortAbsoluteDiffForHumans());\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->longRelativeDiffForHumans());\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->longRelativeDiffForHumans());\n            $this->assertSame('1yr ago', Carbon::now()->subYears(1)->shortRelativeDiffForHumans());\n            $this->assertSame('1yr from now', Carbon::now()->addYears(1)->shortRelativeDiffForHumans());\n            $this->assertSame('1 year ago', Carbon::now()->subYears(1)->longRelativeToNowDiffForHumans());\n            $this->assertSame('1 year from now', Carbon::now()->addYears(1)->longRelativeToNowDiffForHumans());\n            $this->assertSame('1yr ago', Carbon::now()->subYears(1)->shortRelativeToNowDiffForHumans());\n            $this->assertSame('1yr from now', Carbon::now()->addYears(1)->shortRelativeToNowDiffForHumans());\n            $this->assertSame('1 year before', Carbon::now()->subYears(1)->longRelativeToOtherDiffForHumans());\n            $this->assertSame('1 year after', Carbon::now()->addYears(1)->longRelativeToOtherDiffForHumans());\n            $this->assertSame('1yr before', Carbon::now()->subYears(1)->shortRelativeToOtherDiffForHumans());\n            $this->assertSame('1yr after', Carbon::now()->addYears(1)->shortRelativeToOtherDiffForHumans());\n        });\n    }\n\n    public function testDiffForHumansWithShorterMonthShouldStillBeAMonth()\n    {\n        $feb15 = Carbon::parse('2015-02-15');\n        $mar15 = Carbon::parse('2015-03-15');\n        $this->assertSame('1 month after', $mar15->diffForHumans($feb15));\n    }\n\n    public function testDiffForHumansWithDateTimeInstance()\n    {\n        $feb15 = new DateTime('2015-02-15');\n        $mar15 = Carbon::parse('2015-03-15');\n        $this->assertSame('1 month after', $mar15->diffForHumans($feb15));\n    }\n\n    public function testDiffForHumansWithDateString()\n    {\n        $mar13 = Carbon::parse('2018-03-13');\n        $this->assertSame('1 month before', $mar13->diffForHumans('2018-04-13'));\n    }\n\n    public function testDiffForHumansWithDateTimeString()\n    {\n        $mar13 = Carbon::parse('2018-03-13');\n        $this->assertSame('1 month before', $mar13->diffForHumans('2018-04-13 08:00:00'));\n    }\n\n    public function testDiffWithString()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 25)->endOfDay();\n\n        $this->assertSame(384.0, round($dt1->diffInHours('2000-01-10', true)));\n        $this->assertSame(383.0, floor($dt1->diffInHours('2000-01-10', true)));\n    }\n\n    public function testDiffWithDateTime()\n    {\n        $dt1 = Carbon::createFromDate(2000, 1, 25)->endOfDay();\n        $dt2 = new DateTime('2000-01-10');\n\n        $this->assertSame(-384.0, round($dt1->diffInHours($dt2)));\n    }\n\n    public function testDiffOptions()\n    {\n        $this->assertSame(1, Carbon::NO_ZERO_DIFF);\n        $this->assertSame(2, Carbon::JUST_NOW);\n        $this->assertSame(4, Carbon::ONE_DAY_WORDS);\n        $this->assertSame(8, Carbon::TWO_DAY_WORDS);\n        $this->assertSame(16, Carbon::SEQUENTIAL_PARTS_ONLY);\n\n        $options = Carbon::getHumanDiffOptions();\n        $this->assertSame(0, $options);\n\n        $date = Carbon::create(2018, 3, 12, 2, 5, 6, 'UTC');\n        $this->assertSame('0 seconds before', $date->diffForHumans($date));\n\n        Carbon::setHumanDiffOptions(0);\n        $this->assertSame(0, Carbon::getHumanDiffOptions());\n\n        $this->assertSame('0 seconds before', $date->diffForHumans($date));\n\n        Carbon::setLocale('fr');\n        $this->assertSame('0 seconde avant', $date->diffForHumans($date));\n\n        Carbon::setLocale('en');\n        Carbon::setHumanDiffOptions(Carbon::JUST_NOW);\n        $this->assertSame(2, Carbon::getHumanDiffOptions());\n        $this->assertSame('0 seconds before', $date->diffForHumans($date));\n        $this->assertSame('just now', Carbon::now()->diffForHumans());\n\n        Carbon::setHumanDiffOptions(Carbon::ONE_DAY_WORDS | Carbon::TWO_DAY_WORDS | Carbon::NO_ZERO_DIFF | Carbon::SEQUENTIAL_PARTS_ONLY);\n        $this->assertSame(29, Carbon::getHumanDiffOptions());\n\n        Carbon::disableHumanDiffOption(Carbon::SEQUENTIAL_PARTS_ONLY);\n\n        $oneDayAfter = Carbon::create(2018, 3, 13, 2, 5, 6, 'UTC');\n        $oneDayBefore = Carbon::create(2018, 3, 11, 2, 5, 6, 'UTC');\n        $twoDayAfter = Carbon::create(2018, 3, 14, 2, 5, 6, 'UTC');\n        $twoDayBefore = Carbon::create(2018, 3, 10, 2, 5, 6, 'UTC');\n\n        $this->assertSame('1 day after', $oneDayAfter->diffForHumans($date));\n        $this->assertSame('1 day before', $oneDayBefore->diffForHumans($date));\n        $this->assertSame('2 days after', $twoDayAfter->diffForHumans($date));\n        $this->assertSame('2 days before', $twoDayBefore->diffForHumans($date));\n\n        $this->assertSame('tomorrow', Carbon::now()->addDay()->diffForHumans());\n        $this->assertSame('yesterday', Carbon::now()->subDay()->diffForHumans());\n        $this->assertSame('after tomorrow', Carbon::now()->addDays(2)->diffForHumans());\n        $this->assertSame('before yesterday', Carbon::now()->subDays(2)->diffForHumans());\n\n        Carbon::disableHumanDiffOption(Carbon::TWO_DAY_WORDS);\n        $this->assertSame(5, Carbon::getHumanDiffOptions());\n        Carbon::disableHumanDiffOption(Carbon::TWO_DAY_WORDS);\n        $this->assertSame(5, Carbon::getHumanDiffOptions());\n\n        $this->assertSame('tomorrow', Carbon::now()->addDay()->diffForHumans());\n        $this->assertSame('yesterday', Carbon::now()->subDay()->diffForHumans());\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->diffForHumans());\n        $this->assertSame('2 days ago', Carbon::now()->subDays(2)->diffForHumans());\n\n        Carbon::enableHumanDiffOption(Carbon::JUST_NOW);\n        $this->assertSame(7, Carbon::getHumanDiffOptions());\n        Carbon::enableHumanDiffOption(Carbon::JUST_NOW);\n        $this->assertSame(7, Carbon::getHumanDiffOptions());\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 4, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 11, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 12, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n        $this->assertSame('1 month 1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n        ]));\n        $this->assertSame('1 month 1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2020, 1, 11, 0, 0, 0, 'UTC');\n        $this->assertSame('1 year 1 week before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 year before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 2, 5, 0, 0, 0, 'UTC');\n        $this->assertSame('1 month 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 month before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        $origin = Carbon::create(2019, 1, 4, 0, 0, 0, 'UTC');\n        $comparison = Carbon::create(2019, 1, 12, 0, 1, 0, 'UTC');\n        $this->assertSame('1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n        ]));\n        $this->assertSame('1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 2,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n        $this->assertSame('1 week 1 day 1 minute before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n        ]));\n        $this->assertSame('1 week 1 day before', $origin->diffForHumans($comparison, [\n            'parts' => 3,\n            'options' => CarbonInterface::SEQUENTIAL_PARTS_ONLY,\n        ]));\n\n        Carbon::setHumanDiffOptions($options);\n    }\n\n    public function testDiffForHumansArrayParameter()\n    {\n        Carbon::setTestNow('2000-01-01 00:00:00');\n        $date = Carbon::now()->subtract('2 days, 3 hours and 40 minutes');\n        $this->assertSame('2 days ago', $date->diffForHumans([\n            'parts' => 1,\n            'join' => true,\n        ]));\n        $this->assertSame('2 days and 3 hours ago', $date->diffForHumans([\n            'parts' => 2,\n            'join' => true,\n        ]));\n        $this->assertSame('hace 2 días y 3 horas', $date->copy()->locale('es')->diffForHumans([\n            'parts' => 2,\n            'join' => true,\n        ]));\n        $this->assertSame('2 days, 3 hours and 40 minutes ago', $date->diffForHumans([\n            'parts' => -1,\n            'join' => true,\n        ]));\n        $this->assertSame('3 days, 3 hours and 40 minutes before', $date->diffForHumans(Carbon::now()->addDay(), [\n            'parts' => -1,\n            'join' => true,\n        ]));\n        $this->assertSame('3 days, 3 hours and 40 minutes before', $date->diffForHumans([\n            'other' => Carbon::now()->addDay(),\n            'parts' => -1,\n            'join' => true,\n        ]));\n        $this->assertSame('2 days, 3 hours ago', $date->diffForHumans([\n            'parts' => 2,\n            'join' => ', ',\n        ]));\n        $this->assertSame('2d, 3h ago', $date->diffForHumans([\n            'parts' => 2,\n            'join' => ', ',\n            'short' => true,\n        ]));\n        $this->assertSame('2 days, 3 hours before', $date->diffForHumans([\n            'parts' => 2,\n            'join' => ', ',\n            'syntax' => CarbonInterface::DIFF_RELATIVE_TO_OTHER,\n        ]));\n        $this->assertSame('yesterday', Carbon::yesterday()->diffForHumans([\n            'options' => CarbonInterface::ONE_DAY_WORDS,\n        ]));\n        $this->assertSame('1 day ago', Carbon::yesterday()->diffForHumans([\n            'options' => 0,\n        ]));\n    }\n\n    public function testFromNow()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now('UTC')->addDays(2)->fromNow());\n        Carbon::setLocale('fr');\n        $this->assertSame('dans 2 jours', Carbon::now('UTC')->addDays(2)->fromNow());\n        Carbon::setLocale('en');\n        $this->assertSame('2 days after', Carbon::now('UTC')->addDays(2)->fromNow(CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n        $this->assertSame('2d from now', Carbon::now('UTC')->addDays(2)->addHours(5)->fromNow(null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now('UTC')->addDays(2)->addHours(5)->fromNow(true, false, 2));\n    }\n\n    public function testFromNowBackwardCompatibleSyntax()\n    {\n        $date = Carbon::parse('-5 days');\n        $this->assertSame('5 days', $date->fromNow(Carbon::now(), true));\n\n        $date = Carbon::parse('+5 days');\n        $this->assertSame('5 days', $date->fromNow(Carbon::now(), true));\n    }\n\n    public function testFrom()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->from());\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->from(null));\n        $this->assertSame('2 days after', Carbon::now()->addDay()->from(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours après', Carbon::now()->addDay()->from(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDay()->from(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d after', Carbon::now()->addDay()->addHours(5)->from(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->from(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testSince()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->since());\n        $this->assertSame('2 days from now', Carbon::now()->addDays(2)->since(null));\n        $this->assertSame('2 days after', Carbon::now()->addDay()->since(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours après', Carbon::now()->addDay()->since(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days from now', Carbon::now()->addDay()->since(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d after', Carbon::now()->addDay()->addHours(5)->since(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->since(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testToNow()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now('UTC')->addDays(2)->toNow());\n        Carbon::setLocale('fr');\n        $this->assertSame('il y a 2 jours', Carbon::now('UTC')->addDays(2)->toNow());\n        Carbon::setLocale('en');\n        $this->assertSame('2 days before', Carbon::now('UTC')->addDays(2)->toNow(CarbonInterface::DIFF_RELATIVE_TO_OTHER));\n        $this->assertSame('2d ago', Carbon::now('UTC')->addDays(2)->addHours(5)->toNow(null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now('UTC')->addDays(2)->addHours(5)->toNow(true, false, 2));\n    }\n\n    public function testTo()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->to());\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->to(null));\n        $this->assertSame('2 days before', Carbon::now()->addDay()->to(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours avant', Carbon::now()->addDay()->to(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDay()->to(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d before', Carbon::now()->addDay()->addHours(5)->to(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->to(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testUntil()\n    {\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->until());\n        $this->assertSame('2 days ago', Carbon::now()->addDays(2)->until(null));\n        $this->assertSame('2 days before', Carbon::now()->addDay()->until(Carbon::now()->subDay()));\n        Carbon::setLocale('fr');\n        $this->assertSame('2 jours avant', Carbon::now()->addDay()->until(Carbon::now()->subDay()));\n        Carbon::setLocale('en');\n        $this->assertSame('2 days ago', Carbon::now()->addDay()->until(Carbon::now()->subDay(), CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('2d before', Carbon::now()->addDay()->addHours(5)->until(Carbon::now()->subDay(), null, true));\n        $this->assertSame('2 days 5 hours', Carbon::now()->addDay()->addHours(5)->until(Carbon::now()->subDay(), true, false, 2));\n    }\n\n    public function testDiffWithInvalidType()\n    {\n        $this->expectException(TypeError::class);\n\n        Carbon::createFromDate(2000, 1, 25)->diffInHours(10);\n    }\n\n    public function testDiffWithInvalidObject()\n    {\n        $this->expectException(TypeError::class);\n\n        Carbon::createFromDate(2000, 1, 25)->diffInHours(new CarbonInterval());\n    }\n\n    public function testDiffForHumansWithIncorrectDateTimeStringWhichIsNotACarbonInstance()\n    {\n        $this->expectException(InvalidFormatException::class);\n        $this->expectExceptionMessage('Failed to parse time string (2018-04-13---08:00:00) at position 10');\n\n        $mar13 = Carbon::parse('2018-03-13');\n        $mar13->diffForHumans('2018-04-13---08:00:00');\n    }\n\n    public function testFloatDiff()\n    {\n        date_default_timezone_set('UTC');\n\n        $this->assertSame(8986.665965, Carbon::parse('2018-03-31 23:55:12.321456')->floatDiffInSeconds(Carbon::parse('2018-04-01 02:24:58.987421')));\n\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInDays(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInWeeks(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(0.959000397985738, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2018-04-12 14:24:58.987421'), true));\n        $this->assertVeryClose(0.959000397985738, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-03-13 20:55:12.321456'), true));\n        $this->assertVeryClose(0.959000397985738, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2018-04-12 14:24:58.987421')));\n        $this->assertVeryClose(-0.959000397985738, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-03-13 20:55:12.321456')));\n\n        $this->assertVeryClose(16.557633744585264, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(15.959000397985738, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(15.959000397985738, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(15.959000397985738, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInMonths(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-15.959000397985738, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInMonths(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3746000338015283, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9609014036645421, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-01-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2023-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInYears(Carbon::parse('2023-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00')->floatDiffInMonths(Carbon::parse('2018-11-28 00:00:00'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris'), true));\n\n        $this->assertVeryClose(-0.9999999999884258, Carbon::parse('2020-12-17 00:00:00.000001')->floatDiffInDays('2020-12-16 00:00:00.000002'));\n\n        $this->assertSame(-1.0, Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00')->floatDiffInMonths(Carbon::parse('2018-10-28 00:00:00')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris')->floatDiffInMonths(Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')));\n    }\n\n    public function testFloatDiffWithRealUnits()\n    {\n        $from = Carbon::parse('2021-03-27 20:00 Europe/Warsaw');\n        $to = Carbon::parse('2021-03-27 20:00 Europe/London');\n        $from->floatDiffInRealDays($to);\n\n        $this->assertSame('2021-03-27 20:00:00 Europe/Warsaw', $from->format('Y-m-d H:i:s e'));\n        $this->assertSame('2021-03-27 20:00:00 Europe/London', $to->format('Y-m-d H:i:s e'));\n\n        date_default_timezone_set('UTC');\n        $this->assertVeryClose(1.0006944444444446, Carbon::parse('2018-12-01 00:00')->floatDiffInRealDays(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-26 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-03-29 20:00'));\n        $this->assertVeryClose(1.0416666666666667, Carbon::parse('2021-10-30 20:00 Europe/Warsaw')->floatDiffInRealDays('2021-10-31 20:00'));\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInRealDays(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInRealDays(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInRealWeeks(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2018-04-12 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-03-13 20:55:12.321456'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2018-04-12 14:24:58.987421'), false));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-03-13 20:55:12.321456'), false));\n\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInRealWeeks(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInRealWeeks(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2018-04-12 14:24:58.987421')));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-03-13 20:55:12.321456')));\n\n        $this->assertVeryClose(16.557633744585264, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealMonths(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealMonths(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3746000338015283, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9609014036645421, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-01-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2023-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInRealYears(Carbon::parse('2023-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInRealYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(1.0336021505376345, Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00')->floatDiffInRealMonths(Carbon::parse('2018-11-28 00:00:00'), true));\n        $this->assertVeryClose(1.0013888888888889, Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris'), true));\n\n        $this->assertVeryClose(-1.0336021505376345, Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00')->floatDiffInRealMonths(Carbon::parse('2018-10-28 00:00:00')));\n        $this->assertVeryClose(-1.0013888888888889, Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris')->floatDiffInRealMonths(Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')));\n\n        Carbon::setTestNow('2021-03-28 20:00 Europe/Warsaw');\n        $this->assertSame(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInRealDays());\n    }\n\n    public function testFloatDiffWithUTCUnits()\n    {\n        $from = Carbon::parse('2021-03-27 20:00 Europe/Warsaw');\n        $to = Carbon::parse('2021-03-27 20:00 Europe/London');\n        $from->floatDiffInUtcDays($to);\n\n        $this->assertSame('2021-03-27 20:00:00 Europe/Warsaw', $from->format('Y-m-d H:i:s e'));\n        $this->assertSame('2021-03-27 20:00:00 Europe/London', $to->format('Y-m-d H:i:s e'));\n\n        date_default_timezone_set('UTC');\n        $this->assertVeryClose(1.0006944444444446, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcDays(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-26 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-03-28 20:00'));\n        $this->assertVeryClose(1.9583333333333335, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-03-29 20:00'));\n        $this->assertVeryClose(1.0416666666666667, Carbon::parse('2021-10-30 20:00 Europe/Warsaw')->floatDiffInUtcDays('2021-10-31 20:00'));\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcDays(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(1.0006944444444443, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcDays(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcWeeks(Carbon::parse('2018-12-02 00:01')));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2018-04-12 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-03-13 20:55:12.321456'), true));\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2018-04-12 14:24:58.987421'), false));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-03-13 20:55:12.321456'), false));\n\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcWeeks(Carbon::parse('2018-12-02 00:01')));\n        $this->assertVeryClose(1.0006944444444443 / 7, Carbon::parse('2018-12-01 00:00')->floatDiffInUtcWeeks(Carbon::parse('2018-12-02 00:01'), true));\n\n        $this->assertVeryClose(0.9590003979857377, Carbon::parse('2018-03-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2018-04-12 14:24:58.987421')));\n        $this->assertVeryClose(-0.9590003979857377, Carbon::parse('2018-04-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-03-13 20:55:12.321456')));\n\n        $this->assertVeryClose(16.557633744585264, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(15.9590003979857377, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcMonths(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-15.9590003979857377, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcMonths(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertSame(1.0, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3746000338015283, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-06-30 14:24:58.987421'), true));\n        $this->assertVeryClose(0.9609014036645421, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-01-30 14:24:58.987421'), true));\n\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(1.3252849653083778, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2019-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-1.3252849653083778, Carbon::parse('2019-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2023-06-12 14:24:58.987421'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456'), true));\n        $this->assertVeryClose(5.325284965308378, Carbon::parse('2018-02-13 20:55:12.321456')->floatDiffInUtcYears(Carbon::parse('2023-06-12 14:24:58.987421')));\n        $this->assertVeryClose(-5.325284965308378, Carbon::parse('2023-06-12 14:24:58.987421')->floatDiffInUtcYears(Carbon::parse('2018-02-13 20:55:12.321456')));\n\n        $this->assertVeryClose(1.0336021505376345, Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris'), true));\n        $this->assertSame(1.0, Carbon::parse('2018-10-28 00:00:00')->floatDiffInUtcMonths(Carbon::parse('2018-11-28 00:00:00'), true));\n        $this->assertVeryClose(1.0013888888888889, Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris'), true));\n\n        $this->assertVeryClose(-1.0336021505376345, Carbon::parse('2018-11-01 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-10-01 00:00:00', 'Europe/Paris')));\n        $this->assertSame(-1.0, Carbon::parse('2018-11-28 00:00:00')->floatDiffInUtcMonths(Carbon::parse('2018-10-28 00:00:00')));\n        $this->assertVeryClose(-1.0013888888888889, Carbon::parse('2018-11-28 00:00:00', 'Europe/Paris')->floatDiffInUtcMonths(Carbon::parse('2018-10-28 00:00:00', 'Europe/Paris')));\n\n        Carbon::setTestNow('2021-03-28 20:00 Europe/Warsaw');\n        $this->assertSame(0.9583333333333334, Carbon::parse('2021-03-27 20:00 Europe/Warsaw')->floatDiffInUtcDays());\n    }\n\n    /**\n     * https://bugs.php.net/bug.php?id=77007\n     * https://github.com/briannesbitt/Carbon/issues/1503\n     */\n    public function testPhpBug77007()\n    {\n        $this->assertSame(-3.0, Carbon::now()->addMinutes(3)->diffInMinutes());\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:07.237419');\n\n        $this->assertSame(0.322766, $startDate->diffInSeconds($endDate));\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:07.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:00.322766', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(0.322766, $startDate->diffInSeconds($endDate));\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:05.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:01.677234', $startDate->diff($endDate, true)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(1.677234, $startDate->diffInSeconds($endDate, true));\n\n        $this->assertSame('- 00-00-00 00:00:01.677234', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(-1.677234, $startDate->diffInSeconds($endDate, false));\n\n        $startDate = Carbon::parse('2018-10-11 20:59:06.914653');\n        $endDate = Carbon::parse('2018-10-11 20:59:06.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:00.677234', $startDate->diff($endDate, true)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(0.677234, $startDate->diffInSeconds($endDate, true));\n\n        $this->assertSame('- 00-00-00 00:00:00.677234', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(-0.677234, $startDate->diffInSeconds($endDate, false));\n\n        $startDate = Carbon::parse('2017-12-31 23:59:59.914653');\n        $endDate = Carbon::parse('2018-01-01 00:00:00.237419');\n\n        $this->assertSame('+ 00-00-00 00:00:00.322766', $startDate->diff($endDate)->format('%R %Y-%M-%D %H:%I:%S.%F'));\n        $this->assertSame(0.322766, $startDate->diffInSeconds($endDate));\n    }\n\n    public function testPHPBug80974()\n    {\n        $this->assertSame(3, Carbon::parse('2018-07-01 America/Toronto')->diffAsDateInterval('2018-07-02 America/Vancouver')->h);\n        $this->assertSame(0, Carbon::parse('2018-07-01')->utc()->diffAsDateInterval('2018-07-02')->days);\n        $this->assertSame(1, Carbon::parse('2018-07-01')->utc()->diffAsDateInterval(Carbon::parse('2018-07-02'))->days);\n        $this->assertSame(1, Carbon::parse('2018-07-01')->diffAsDateInterval(Carbon::parse('2018-07-02')->utc())->days);\n    }\n\n    public function testThreeMonthMinusOneDay()\n    {\n        $start = new Carbon('2022-11-11 22:29:50.000000');\n        $end = $start->addMonths(3);\n        $now = $start->addDay();\n\n        $this->assertSame(3.0, $start->diffInMonths($end));\n        $this->assertSame(3 - 1 / 31, $now->diffInMonths($end));\n\n        $start = new Carbon('2022-04-11 22:29:50.000000');\n        $end = $start->addMonths(3);\n        $now = $start->addDay();\n\n        $this->assertSame(3.0, $start->diffInMonths($end));\n        $this->assertSame(3 - 1 / 30, $now->diffInMonths($end));\n    }\n\n    public function testDiffWithZeroAndNonZeroMicroseconds()\n    {\n        $requestTime = new Carbon('2018-11-14 18:23:12.0 +00:00');\n        $serverTime = new Carbon('2018-11-14 18:23:12.307628 +00:00');\n\n        $this->assertSame(-0.307628, $serverTime->diffInSeconds($requestTime));\n\n        $requestTime = new Carbon('2019-02-10 18:23:12.0 +00:00');\n        $serverTime = new Carbon('2019-02-10 18:23:12.307628 +00:00');\n\n        $this->assertSame(-0.307628, $serverTime->diffInSeconds($requestTime));\n    }\n\n    public function testNearlyFullDayDiffInSeconds()\n    {\n        $d1 = Carbon::parse('2019-06-15 12:34:56.123456');\n        $d2 = Carbon::parse('2019-06-16 12:34:56.123455');\n\n        $this->assertVeryClose(-86399.99999899999, $d2->diffInSeconds($d1));\n    }\n\n    public function testNearlyFullDayDiffInMicroseconds()\n    {\n        $d1 = Carbon::parse('2019-06-15 12:34:56.123456');\n        $d2 = Carbon::parse('2019-06-16 12:34:56.123455');\n\n        $this->assertVeryClose(-86399999999.0, $d2->diffInMicroseconds($d1));\n    }\n\n    public function testExactMonthDiffInSeconds()\n    {\n        $d1 = Carbon::make('2019-01-23 12:00:00');\n        $d2 = Carbon::make('2019-02-23 12:00:00');\n\n        $this->assertSame(-2678400.0, $d2->diffInSeconds($d1));\n    }\n\n    public function testDiffInUnit()\n    {\n        $this->assertSame(5.5, Carbon::make('2020-08-13 05:00')->diffInUnit('hour', '2020-08-13 10:30'));\n    }\n\n    public function testDiffInUnitException()\n    {\n        $this->expectException(UnknownUnitException::class);\n        $this->expectExceptionMessage(\"Unknown unit 'moons'.\");\n        $this->assertSame(5.5, Carbon::make('2020-08-13 05:00')->diffInUnit('moon', '2020-08-13 10:30'));\n    }\n\n    public function testDaysDiffPreservation()\n    {\n        $deletedDate = Carbon::now()->startOfDay()->addDays(31);\n\n        $this->assertSame('31 days', $deletedDate->diffForHumans(Carbon::now()->startOfDay(), [\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'skip' => ['m', 'w'],\n            'minimumUnit' => 'd',\n        ]));\n\n        $this->assertSame('31 days', $deletedDate->diffForHumans(Carbon::now()->startOfDay()->subHours(5), [\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'skip' => ['m', 'w'],\n            'minimumUnit' => 'd',\n        ]));\n\n        $this->assertSame('30 days', $deletedDate->diffForHumans(Carbon::now()->startOfDay()->addHours(5), [\n            'syntax' => CarbonInterface::DIFF_ABSOLUTE,\n            'skip' => ['m', 'w'],\n            'minimumUnit' => 'd',\n        ]));\n    }\n\n    public function testAFormat()\n    {\n        $past = new Carbon('-3 Days');\n        $today = new Carbon('today');\n        $interval = $today->diff($past);\n\n        $this->assertSame('2', $interval->format('%a'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ExpressiveComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass ExpressiveComparisonTest extends AbstractTestCase\n{\n    public function testEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->equalTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->equalTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testEqualWithTimezoneTrue()\n    {\n        $this->assertTrue(Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto')->equalTo(Carbon::create(2000, 1, 1, 9, 0, 0, 'America/Vancouver')));\n    }\n\n    public function testNotEqualToTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->notEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testNotEqualToFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->notEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThan(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->greaterThan(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testGreaterThanWithTimezoneTrue()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 8, 59, 59, 'America/Vancouver');\n        $this->assertTrue($dt1->greaterThan($dt2));\n    }\n\n    public function testGreaterThanWithTimezoneFalse()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 12, 0, 0, 'America/Toronto');\n        $dt2 = Carbon::create(2000, 1, 1, 9, 0, 1, 'America/Vancouver');\n        $this->assertFalse($dt1->greaterThan($dt2));\n    }\n\n    public function testGreaterThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testGreaterThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testGreaterThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->greaterThanOrEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThan(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lessThan(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testLessThanOrEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(2000, 1, 2)));\n    }\n\n    public function testLessThanOrEqualTrueEqual()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(2000, 1, 1)));\n    }\n\n    public function testLessThanOrEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->lessThanOrEqualTo(Carbon::createFromDate(1999, 12, 31)));\n    }\n\n    public function testBetweenEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n    }\n\n    public function testBetweenNotEqualTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n    }\n\n    public function testBetweenEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), true));\n    }\n\n    public function testBetweenNotEqualFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 1), Carbon::createFromDate(2000, 1, 31), false));\n    }\n\n    public function testBetweenEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2000, 1, 15)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testBetweenEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(1999, 12, 31)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), true));\n    }\n\n    public function testBetweenNotEqualSwitchFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2000, 1, 1)->between(Carbon::createFromDate(2000, 1, 31), Carbon::createFromDate(2000, 1, 1), false));\n    }\n\n    public function testMinIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->minimum());\n    }\n\n    public function testMinWithNow()\n    {\n        $dt = Carbon::create(2012, 1, 1, 0, 0, 0)->minimum();\n        $this->assertCarbon($dt, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMinWithInstance()\n    {\n        $dt1 = Carbon::create(2013, 12, 31, 23, 59, 59);\n        $dt2 = Carbon::create(2012, 1, 1, 0, 0, 0)->minimum($dt1);\n        $this->assertCarbon($dt2, 2012, 1, 1, 0, 0, 0);\n    }\n\n    public function testMaxIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->maximum());\n    }\n\n    public function testMaxWithNow()\n    {\n        $dt = Carbon::create(2099, 12, 31, 23, 59, 59)->maximum();\n        $this->assertCarbon($dt, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testMaxWithInstance()\n    {\n        $dt1 = Carbon::create(2012, 1, 1, 0, 0, 0);\n        $dt2 = Carbon::create(2099, 12, 31, 23, 59, 59)->maximum($dt1);\n        $this->assertCarbon($dt2, 2099, 12, 31, 23, 59, 59);\n    }\n\n    public function testIsBirthday()\n    {\n        $dt1 = Carbon::createFromDate(1987, 4, 23);\n        $dt2 = Carbon::createFromDate(2014, 9, 26);\n        $dt3 = Carbon::createFromDate(2014, 4, 23);\n        $this->assertFalse($dt2->isBirthday($dt1));\n        $this->assertTrue($dt3->isBirthday($dt1));\n    }\n\n    public function testIsLastOfMonth()\n    {\n        $dt1 = Carbon::createFromDate(2017, 1, 31);\n        $dt2 = Carbon::createFromDate(2016, 2, 28);\n        $dt3 = Carbon::createFromDate(2016, 2, 29);\n        $dt4 = Carbon::createFromDate(2018, 5, 5);\n\n        $this->assertTrue($dt1->isLastOfMonth());\n        $this->assertFalse($dt2->isLastOfMonth());\n        $this->assertTrue($dt3->isLastOfMonth());\n        $this->assertFalse($dt4->isLastOfMonth());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/Fixtures/BadIsoCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable\\Fixtures;\n\nuse Carbon\\CarbonImmutable as Carbon;\n\nclass BadIsoCarbon extends Carbon\n{\n    public static function getIsoUnits(): array\n    {\n        return [\n            'MMM' => ['fooxyz', ['barxyz']],\n        ];\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/Fixtures/Mixin.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable\\Fixtures;\n\nuse Carbon\\CarbonImmutable;\n\nclass Mixin\n{\n    public $timezone;\n\n    public function setUserTimezone()\n    {\n        $mixin = $this;\n\n        return function ($timezone) use ($mixin) {\n            $mixin->timezone = $timezone;\n        };\n    }\n\n    public function userFormat()\n    {\n        $mixin = $this;\n\n        return function ($format) use ($mixin) {\n            /** @var CarbonImmutable $date */\n            $date = $this;\n\n            if ($mixin->timezone) {\n                $date = $date->setTimezone($mixin->timezone);\n            }\n\n            return $date->format($format);\n        };\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/Fixtures/MyCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable\\Fixtures;\n\nuse Carbon\\CarbonImmutable as Carbon;\n\nclass MyCarbon extends Carbon\n{\n    //\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/FluidSettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass FluidSettersTest extends AbstractTestCase\n{\n    public function testFluidYearSetter()\n    {\n        $d = Carbon::now();\n        $d2 = $d->year(1995);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->year, $d->year);\n        $this->assertSame(1995, $d2->year);\n    }\n\n    public function testFluidMonthSetter()\n    {\n        $d = Carbon::now();\n        $d2 = $d->month(3);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->month, $d->month);\n        $this->assertSame(3, $d2->month);\n    }\n\n    public function testFluidMonthSetterWithWrap()\n    {\n        $d = Carbon::createFromDate(2012, 8, 21);\n        $d2 = $d->month(13);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame(8, $d->month);\n        $this->assertSame(1, $d2->month);\n    }\n\n    public function testFluidDaySetter()\n    {\n        $d = Carbon::now();\n        $d2 = $d->day(2);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->day, $d->day);\n        $this->assertSame(2, $d2->day);\n    }\n\n    public function testFluidDaySetterWithWrap()\n    {\n        $d = Carbon::createFromDate(2000, 1, 3);\n        $d2 = $d->day(32);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame(3, $d->day);\n        $this->assertSame(1, $d2->day);\n    }\n\n    public function testFluidSetDate()\n    {\n        $d = Carbon::createFromDate(2000, 1, 1);\n        $d2 = $d->setDate(1995, 13, 32);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertCarbon($d, 2000, 1, 1);\n        $this->assertCarbon($d2, 1996, 2, 1);\n    }\n\n    public function testFluidHourSetter()\n    {\n        $d = Carbon::now();\n        $d2 = $d->hour(2);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->hour, $d->hour);\n        $this->assertSame(2, $d2->hour);\n    }\n\n    public function testFluidHourSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d2 = $d->hour(25);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->hour, $d->hour);\n        $this->assertSame(1, $d2->hour);\n    }\n\n    public function testFluidMinuteSetter()\n    {\n        $d = Carbon::now();\n        $d2 = $d->minute(2);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->minute, $d->minute);\n        $this->assertSame(2, $d2->minute);\n    }\n\n    public function testFluidMinuteSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d2 = $d->minute(61);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->minute, $d->minute);\n        $this->assertSame(1, $d2->minute);\n    }\n\n    public function testFluidSecondSetter()\n    {\n        $d = Carbon::now();\n        $d2 = $d->second(2);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->second, $d->second);\n        $this->assertSame(2, $d2->second);\n    }\n\n    public function testFluidSecondSetterWithWrap()\n    {\n        $d = Carbon::now();\n        $d2 = $d->second(62);\n        $this->assertInstanceOfCarbon($d2);\n        $this->assertInstanceOf(Carbon::class, $d2);\n        $this->assertSame($this->immutableNow->second, $d->second);\n        $this->assertSame(2, $d2->second);\n    }\n\n    public function testFluidSetTime()\n    {\n        $d = Carbon::createFromDate(2000, 1, 1);\n        $this->assertInstanceOfCarbon($d2 = $d->setTime(25, 61, 61));\n        $this->assertCarbon($d2, 2000, 1, 2, 2, 2, 1);\n    }\n\n    public function testFluidTimestampSetter()\n    {\n        $d = Carbon::now();\n        $this->assertInstanceOfCarbon($d2 = $d->timestamp(10));\n        $this->assertSame(10, $d2->timestamp);\n\n        $this->assertInstanceOfCarbon($d2 = $d->timestamp(1600887164.88952298));\n        $this->assertSame('2020-09-23 14:52:44.889523', $d2->format('Y-m-d H:i:s.u'));\n\n        $this->assertInstanceOfCarbon($d2 = $d->timestamp('0.88951247 1600887164'));\n        $this->assertSame('2020-09-23 14:52:44.889512', $d2->format('Y-m-d H:i:s.u'));\n\n        $this->assertInstanceOfCarbon($d2 = $d->timestamp('0.88951247/1600887164/12.56'));\n        $this->assertSame('2020-09-23 14:52:57.449512', $d2->format('Y-m-d H:i:s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/GenericMacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse BadMethodCallException;\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCaseWithOldNow;\nuse Throwable;\n\nclass GenericMacroTest extends AbstractTestCaseWithOldNow\n{\n    public function testGenericMacro()\n    {\n        Carbon::genericMacro(function ($method) {\n            $time = preg_replace('/[A-Z]/', ' $0', $method);\n\n            try {\n                return self::this()->modify($time);\n            } catch (Throwable $exception) {\n                if (preg_match('(Could not modify with|Failed to parse)', $exception->getMessage())) {\n                    throw new BadMethodCallException('Try next macro', 0, $exception);\n                }\n\n                throw $exception;\n            }\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('2017-07-02', $now->nextSunday()->format('Y-m-d'));\n        $this->assertSame('2017-06-26', Carbon::lastMonday()->format('Y-m-d'));\n\n        $message = null;\n\n        try {\n            Carbon::fooBar();\n        } catch (BadMethodCallException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertSame('Method '.Carbon::class.'::fooBar does not exist.', $message);\n\n        $message = null;\n\n        try {\n            $now->barBiz();\n        } catch (BadMethodCallException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertSame('Method barBiz does not exist.', $message);\n    }\n\n    public function testGenericMacroPriority()\n    {\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'myPrefix')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'first';\n        });\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'myPrefix')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'second';\n        }, 1);\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'myPrefix')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'third';\n        }, -1);\n        Carbon::macro('myPrefixFooBar', function () {\n            return 'myPrefixFooBar';\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('second', $now->myPrefixSomething());\n        $this->assertSame('second', Carbon::myPrefixSomething());\n        $this->assertSame('myPrefixFooBar', $now->myPrefixFooBar());\n        $this->assertSame('myPrefixFooBar', Carbon::myPrefixFooBar());\n    }\n\n    public function testLocalGenericMacroPriority()\n    {\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'mlp')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'first';\n        });\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'mlp')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'second';\n        }, 1);\n        Carbon::genericMacro(function ($method) {\n            if (!str_starts_with($method, 'mlp')) {\n                throw new BadMethodCallException('Try next macro', 0);\n            }\n\n            return 'third';\n        }, -1);\n        Carbon::macro('mlpFooBar', function () {\n            return 'mlpFooBar';\n        });\n\n        /** @var mixed $date */\n        $date = Carbon::now()->settings([\n            'genericMacros' => [\n                function ($method) {\n                    if (!str_starts_with($method, 'mlp')) {\n                        throw new BadMethodCallException('Try next macro', 0);\n                    }\n\n                    return 'local-first';\n                },\n                function ($method) {\n                    if (!str_starts_with($method, 'mlp')) {\n                        throw new BadMethodCallException('Try next macro', 0);\n                    }\n\n                    return 'local-second';\n                },\n            ],\n        ]);\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('local-first', $date->mlpSomething());\n        $this->assertSame('second', $now->mlpSomething());\n        $this->assertSame('second', Carbon::mlpSomething());\n        $this->assertSame('mlpFooBar', $date->mlpFooBar());\n        $this->assertSame('mlpFooBar', $now->mlpFooBar());\n        $this->assertSame('mlpFooBar', Carbon::mlpFooBar());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/GettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass GettersTest extends AbstractTestCase\n{\n    public function testGettersThrowExceptionOnUnknownGetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Unknown getter 'doesNotExit'\",\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $d->doesNotExit;\n    }\n\n    public function testGettersThrowExceptionOnUnknownOfGetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Unknown getter 'fooOfBar'\",\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $d->fooOfBar;\n    }\n\n    public function testYearGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(1234, $d->year);\n    }\n\n    public function testYearIsoGetter()\n    {\n        $d = Carbon::createFromDate(2012, 12, 31);\n        $this->assertSame(2013, $d->yearIso);\n    }\n\n    public function testMonthGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(5, $d->month);\n    }\n\n    public function testDayGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(6, $d->day);\n    }\n\n    public function testHourGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(7, $d->hour);\n    }\n\n    public function testMinuteGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(8, $d->minute);\n    }\n\n    public function testSecondGetter()\n    {\n        $d = Carbon::create(1234, 5, 6, 7, 8, 9);\n        $this->assertSame(9, $d->second);\n    }\n\n    public function testMicroGetter()\n    {\n        $micro = 345678;\n        $d = Carbon::parse('2014-01-05 12:34:11.'.$micro);\n        $this->assertSame($micro, $d->micro);\n    }\n\n    public function testMicroGetterWithDefaultNow()\n    {\n        $now = Carbon::getTestNow();\n        Carbon::setTestNow(null);\n\n        $start = microtime(true);\n        usleep(10000);\n        $d = Carbon::now();\n        usleep(10000);\n        $end = microtime(true);\n        $microTime = $d->getTimestamp() + $d->micro / 1000000;\n\n        $this->assertGreaterThan($start, $microTime);\n        $this->assertLessThan($end, $microTime);\n\n        Carbon::setTestNow($now);\n    }\n\n    public function testDayOfWeekGetter()\n    {\n        $d = Carbon::create(2012, 5, 7, 7, 8, 9);\n        $this->assertSame(Carbon::MONDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 8, 7, 8, 9);\n        $this->assertSame(Carbon::TUESDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 9, 7, 8, 9);\n        $this->assertSame(Carbon::WEDNESDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 10, 0, 0, 0);\n        $this->assertSame(Carbon::THURSDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 11, 23, 59, 59);\n        $this->assertSame(Carbon::FRIDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 12, 12, 0, 0);\n        $this->assertSame(Carbon::SATURDAY, $d->dayOfWeek);\n        $d = Carbon::create(2012, 5, 13, 12, 0, 0);\n        $this->assertSame(Carbon::SUNDAY, $d->dayOfWeek);\n    }\n\n    public function testDayOfWeekIsoGetter()\n    {\n        $d = Carbon::create(2012, 5, 7, 7, 8, 9);\n        $this->assertSame(1, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 8, 7, 8, 9);\n        $this->assertSame(2, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 9, 7, 8, 9);\n        $this->assertSame(3, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 10, 0, 0, 0);\n        $this->assertSame(4, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 11, 23, 59, 59);\n        $this->assertSame(5, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 12, 12, 0, 0);\n        $this->assertSame(6, $d->dayOfWeekIso);\n        $d = Carbon::create(2012, 5, 13, 12, 0, 0);\n        $this->assertSame(7, $d->dayOfWeekIso);\n    }\n\n    public function testDayOfYearGetter()\n    {\n        $d = Carbon::createFromDate(2012, 5, 7);\n        $this->assertSame(128, $d->dayOfYear);\n    }\n\n    public function testDaysInMonthGetter()\n    {\n        $d = Carbon::createFromDate(2012, 5, 7);\n        $this->assertSame(31, $d->daysInMonth);\n    }\n\n    public function testTimestampGetter()\n    {\n        $d = Carbon::create();\n        $d = $d->setTimezone('GMT');\n        $this->assertSame(0, $d->setDateTime(1970, 1, 1, 0, 0, 0)->timestamp);\n    }\n\n    public function testGetAge()\n    {\n        $d = Carbon::now();\n        $this->assertSame(0, $d->age);\n    }\n\n    public function testGetAgeWithRealAge()\n    {\n        $d = Carbon::createFromDate(1975, 5, 21);\n        $age = (int) (substr((string) ((int) (date('Ymd')) - (int) (date('Ymd', $d->timestamp))), 0, -4));\n\n        $this->assertSame($age, $d->age);\n    }\n\n    public static function dataForTestQuarter(): array\n    {\n        return [\n            [1, 1],\n            [2, 1],\n            [3, 1],\n            [4, 2],\n            [5, 2],\n            [6, 2],\n            [7, 3],\n            [8, 3],\n            [9, 3],\n            [10, 4],\n            [11, 4],\n            [12, 4],\n        ];\n    }\n\n    #[DataProvider('dataForTestQuarter')]\n    public function testQuarterFirstOfMonth(int $month, int $quarter)\n    {\n        $c = Carbon::create(2015, $month, 1)->startOfMonth();\n        $this->assertSame($quarter, $c->quarter);\n    }\n\n    #[DataProvider('dataForTestQuarter')]\n    public function testQuarterMiddleOfMonth(int $month, int $quarter)\n    {\n        $c = Carbon::create(2015, $month, 15, 12, 13, 14);\n        $this->assertSame($quarter, $c->quarter);\n    }\n\n    #[DataProvider('dataForTestQuarter')]\n    public function testQuarterLastOfMonth(int $month, int $quarter)\n    {\n        $c = Carbon::create(2015, $month, 1)->endOfMonth();\n        $this->assertSame($quarter, $c->quarter);\n    }\n\n    public function testGetLocalTrue()\n    {\n        // Default timezone has been set to America/Toronto in AbstractTestCase.php\n        // @see : https://en.wikipedia.org/wiki/List_of_UTC_time_offsets\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->local);\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1, 'America/New_York')->local);\n    }\n\n    public function testGetLocalFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 7, 1, 'UTC')->local);\n        $this->assertFalse(Carbon::createFromDate(2012, 7, 1, 'Europe/London')->local);\n    }\n\n    public function testGetUtcFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2013, 1, 1, 'America/Toronto')->utc);\n        $this->assertFalse(Carbon::createFromDate(2013, 1, 1, 'Europe/Paris')->utc);\n    }\n\n    public function testGetUtcTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Atlantic/Reykjavik')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/Lisbon')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Africa/Casablanca')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Africa/Dakar')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/Dublin')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'Europe/London')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'UTC')->utc);\n        $this->assertTrue(Carbon::createFromDate(2013, 1, 1, 'GMT')->utc);\n    }\n\n    public function testGetDstFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->dst);\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->isDST());\n    }\n\n    public function testGetDstTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 7, 1, 'America/Toronto')->dst);\n        $this->assertTrue(Carbon::createFromDate(2012, 7, 1, 'America/Toronto')->isDST());\n    }\n\n    public function testGetMidDayAt()\n    {\n        $d = Carbon::now();\n        $this->assertSame(12, $d->getMidDayAt());\n    }\n\n    public function testOffsetForTorontoWithDST()\n    {\n        $this->assertSame(-18000, Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->offset);\n    }\n\n    public function testOffsetForTorontoNoDST()\n    {\n        $this->assertSame(-14400, Carbon::createFromDate(2012, 6, 1, 'America/Toronto')->offset);\n    }\n\n    public function testOffsetForGMT()\n    {\n        $this->assertSame(0, Carbon::createFromDate(2012, 6, 1, 'GMT')->offset);\n    }\n\n    public function testOffsetHoursForTorontoWithDST()\n    {\n        $this->assertSame(-5, Carbon::createFromDate(2012, 1, 1, 'America/Toronto')->offsetHours);\n    }\n\n    public function testOffsetHoursForTorontoNoDST()\n    {\n        $this->assertSame(-4, Carbon::createFromDate(2012, 6, 1, 'America/Toronto')->offsetHours);\n    }\n\n    public function testOffsetHoursForGMT()\n    {\n        $this->assertSame(0, Carbon::createFromDate(2012, 6, 1, 'GMT')->offsetHours);\n    }\n\n    public function testIsLeapYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1)->isLeapYear());\n    }\n\n    public function testIsLeapYearFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2011, 1, 1)->isLeapYear());\n    }\n\n    public function testIsLongYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2015, 1, 1)->isLongYear());\n    }\n\n    public function testIsLongYearFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2016, 1, 1)->isLongYear());\n    }\n\n    public function testWeekOfMonth()\n    {\n        $this->assertSame(5, Carbon::createFromDate(2012, 9, 30)->weekOfMonth);\n        $this->assertSame(4, Carbon::createFromDate(2012, 9, 28)->weekOfMonth);\n        $this->assertSame(3, Carbon::createFromDate(2012, 9, 20)->weekOfMonth);\n        $this->assertSame(2, Carbon::createFromDate(2012, 9, 8)->weekOfMonth);\n        $this->assertSame(1, Carbon::createFromDate(2012, 9, 1)->weekOfMonth);\n    }\n\n    public function testWeekNumberInMonthIsNotFromTheBeginning()\n    {\n        $this->assertSame(5, Carbon::createFromDate(2017, 2, 28)->weekNumberInMonth);\n        $this->assertSame(5, Carbon::createFromDate(2017, 2, 27)->weekNumberInMonth);\n        $this->assertSame(4, Carbon::createFromDate(2017, 2, 26)->weekNumberInMonth);\n        $this->assertSame(4, Carbon::createFromDate(2017, 2, 20)->weekNumberInMonth);\n        $this->assertSame(3, Carbon::createFromDate(2017, 2, 19)->weekNumberInMonth);\n        $this->assertSame(3, Carbon::createFromDate(2017, 2, 13)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2017, 2, 12)->weekNumberInMonth);\n        $this->assertSame(2, Carbon::createFromDate(2017, 2, 6)->weekNumberInMonth);\n        $this->assertSame(1, Carbon::createFromDate(2017, 2, 1)->weekNumberInMonth);\n    }\n\n    public function testWeekOfYearFirstWeek()\n    {\n        $this->assertSame(52, Carbon::createFromDate(2012, 1, 1)->weekOfYear);\n        $this->assertSame(1, Carbon::createFromDate(2012, 1, 2)->weekOfYear);\n    }\n\n    public function testWeekOfYearLastWeek()\n    {\n        $this->assertSame(52, Carbon::createFromDate(2012, 12, 30)->weekOfYear);\n        $this->assertSame(1, Carbon::createFromDate(2012, 12, 31)->weekOfYear);\n    }\n\n    public function testGetTimezone()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->timezone->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->timezone->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->timezone->getName());\n    }\n\n    public function testGetTz()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->tz->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->tz->getName());\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->tz->getName());\n    }\n\n    public function testGetTimezoneName()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->timezoneName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->timezoneName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->timezoneName);\n    }\n\n    public function testGetTzName()\n    {\n        $dt = Carbon::createFromDate(2000, 1, 1, 'America/Toronto');\n        $this->assertSame('America/Toronto', $dt->tzName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, -5);\n        $this->assertSame('America/Chicago', $dt->timezoneName);\n\n        $dt = Carbon::createFromDate(2000, 1, 1, '-5');\n        $this->assertSame('-05:00', $dt->timezoneName);\n    }\n\n    public function testShortDayName()\n    {\n        $dt = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame('Mon', $dt->shortDayName);\n        $this->assertSame('lun.', $dt->locale('fr')->shortDayName);\n    }\n\n    public function testMinDayName()\n    {\n        $dt = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame('Mo', $dt->minDayName);\n        $this->assertSame('lu', $dt->locale('fr')->minDayName);\n    }\n\n    public function testShortMonthName()\n    {\n        $dt = Carbon::createFromDate(2018, 7, 6);\n        $this->assertSame('Jul', $dt->shortMonthName);\n        $this->assertSame('juil.', $dt->locale('fr')->shortMonthName);\n    }\n\n    public function testGetDays()\n    {\n        $days = [\n            Carbon::SUNDAY => 'Sunday',\n            Carbon::MONDAY => 'Monday',\n            Carbon::TUESDAY => 'Tuesday',\n            Carbon::WEDNESDAY => 'Wednesday',\n            Carbon::THURSDAY => 'Thursday',\n            Carbon::FRIDAY => 'Friday',\n            Carbon::SATURDAY => 'Saturday',\n        ];\n\n        $this->assertSame($days, Carbon::getDays());\n    }\n\n    public function testUnitOfUnit()\n    {\n        $date = Carbon::createFromDate(2018, 7, 6);\n        $this->assertSame(6, $date->dayOfQuarter);\n\n        $date = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame(6 + 31, $date->dayOfQuarter);\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'UTC');\n        $this->assertSame((95 * 24 + 4) * 60 + 50, $date->minuteOfYear);\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame((95 * 24 + 3) * 60 + 50, $date->minuteOfYear);\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(0, $date->yearOfMinute);\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(1, $date->dayOfMinute);\n    }\n\n    public function testUnitOfUnitMethod()\n    {\n        $date = Carbon::createFromDate(2018, 7, 6);\n\n        $this->assertSame(6, $date->dayOfQuarter());\n\n        $date = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame(6 + 31, $date->dayOfQuarter());\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'UTC');\n        $this->assertSame((95 * 24 + 4) * 60 + 50, $date->minuteOfYear());\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame((95 * 24 + 3) * 60 + 50, $date->minuteOfYear());\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(0, $date->yearOfMinute());\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(1, $date->dayOfMinute());\n    }\n\n    public function testUnitInUnit()\n    {\n        $date = Carbon::createFromDate(2018, 7, 6);\n        $this->assertSame(7, $date->daysInWeek);\n\n        $date = Carbon::createFromDate(2018, 8, 6);\n        $this->assertSame(92, $date->daysInQuarter);\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'UTC');\n        $this->assertSame(365 * 24 * 60, $date->minutesInYear);\n\n        $date = Carbon::create(2018, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(365 * 24 * 60, $date->minutesInYears);\n\n        $date = Carbon::create(2024, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(366 * 24 * 60, $date->minuteInYear);\n\n        $date = Carbon::create(2024, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(0, $date->yearsInMinute);\n\n        $date = Carbon::create(2024, 4, 6, 4, 50, 0, 'America/Toronto');\n        $this->assertSame(0, $date->daysInMinute);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/InstanceTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\Carbon as CarbonMutable;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterface;\nuse DateTime;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass InstanceTest extends AbstractTestCase\n{\n    public function testInstanceFromDateTime()\n    {\n        $dating = Carbon::instance(DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11'));\n        $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);\n        $dating = Carbon::parse(DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11'));\n        $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);\n    }\n\n    public function testInstanceFromCarbon()\n    {\n        $dating = Carbon::instance(Carbon::create(1975, 5, 21, 22, 32, 11));\n        $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);\n    }\n\n    public function testInstanceFromDateTimeKeepsTimezoneName()\n    {\n        $dating = Carbon::instance(DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11')->setTimezone(new DateTimeZone('America/Vancouver')));\n        $this->assertSame('America/Vancouver', $dating->tzName);\n    }\n\n    public function testInstanceFromCarbonKeepsTimezoneName()\n    {\n        $dating = Carbon::instance(Carbon::create(1975, 5, 21, 22, 32, 11)->setTimezone(new DateTimeZone('America/Vancouver')));\n        $this->assertSame('America/Vancouver', $dating->tzName);\n    }\n\n    public function testInstanceFromDateTimeKeepsMicros()\n    {\n        $micro = 254687;\n        $datetime = DateTime::createFromFormat('Y-m-d H:i:s.u', '2014-02-01 03:45:27.'.$micro);\n        $carbon = Carbon::instance($datetime);\n        $this->assertSame($micro, $carbon->micro);\n    }\n\n    public function testInstanceFromCarbonKeepsMicros()\n    {\n        $micro = 254687;\n        $carbon = Carbon::createFromFormat('Y-m-d H:i:s.u', '2014-02-01 03:45:27.'.$micro);\n        $carbon = Carbon::instance($carbon);\n        $this->assertSame($micro, $carbon->micro);\n    }\n\n    public function testTimezoneCopy()\n    {\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        $carbon = CarbonMutable::instance($carbon);\n        $this->assertSame('2017-06-27 13:14:15.123456 Europe/Paris', $carbon->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testInstanceStateSetBySetStateMethod()\n    {\n        $carbon = Carbon::__set_state([\n            'date' => '2017-05-18 13:02:15.273420',\n            'timezone_type' => 3,\n            'timezone' => 'UTC',\n        ]);\n        $this->assertInstanceOf(Carbon::class, $carbon);\n        $this->assertSame('2017-05-18 13:02:15.273420', $carbon->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testInstanceStateSetBySetStateString()\n    {\n        $carbon = Carbon::__set_state('2017-05-18 13:02:15.273420');\n        $this->assertInstanceOf(Carbon::class, $carbon);\n        $this->assertSame('2017-05-18 13:02:15.273420', $carbon->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testDeserializationOccursCorrectly()\n    {\n        $carbon = new Carbon('2017-06-27 13:14:15.000000');\n        $serialized = 'return '.var_export($carbon, true).';';\n        $deserialized = eval($serialized);\n\n        $this->assertInstanceOf(Carbon::class, $deserialized);\n    }\n\n    public function testMutableConversions()\n    {\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        $carbon = $carbon->locale('en_CA');\n        $copy = $carbon->toImmutable();\n\n        $this->assertEquals($copy, $carbon);\n        $this->assertSame($copy, $carbon);\n        $this->assertSame('en_CA', $copy->locale());\n        $this->assertInstanceOf(CarbonImmutable::class, $copy);\n        $this->assertTrue($copy->isImmutable());\n        $this->assertFalse($copy->isMutable());\n        $this->assertSame('2017-06-27 13:14:15.123456', $copy->format(CarbonInterface::MOCK_DATETIME_FORMAT));\n        $this->assertSame('Europe/Paris', $copy->tzName);\n        $this->assertNotSame($copy, $copy->modify('+1 day'));\n\n        $copy = $carbon->toMutable();\n\n        $this->assertEquals($copy, $carbon);\n        $this->assertNotSame($copy, $carbon);\n        $this->assertSame('en_CA', $copy->locale());\n        $this->assertInstanceOf(CarbonMutable::class, $copy);\n        $this->assertFalse($copy->isImmutable());\n        $this->assertTrue($copy->isMutable());\n        $this->assertSame('2017-06-27 13:14:15.123456', $copy->format(CarbonInterface::MOCK_DATETIME_FORMAT));\n        $this->assertSame('Europe/Paris', $copy->tzName);\n        $this->assertSame($copy, $copy->modify('+1 day'));\n    }\n\n    public function testInvalidCast()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'DateTimeZone has not the instance() method needed to cast the date.',\n        ));\n\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        $carbon->cast(DateTimeZone::class);\n    }\n\n    public function testChildCast()\n    {\n        $class = \\get_class(new class() extends Carbon {\n            public function foo()\n            {\n                return 42;\n            }\n        });\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        /** @var object $casted */\n        $casted = $carbon->cast($class);\n\n        $this->assertInstanceOf($class, $casted);\n        $this->assertInstanceOf(Carbon::class, $casted);\n        $this->assertSame(42, $casted->foo());\n        $this->assertSame('2017-06-27', $casted->format('Y-m-d'));\n    }\n\n    public function testSiblingCast()\n    {\n        $class = \\get_class(new class() extends DateTime {\n            public function foo()\n            {\n                return 42;\n            }\n        });\n        $carbon = new Carbon('2017-06-27 13:14:15.123456', 'Europe/Paris');\n        /** @var object $casted */\n        $casted = $carbon->cast($class);\n\n        $this->assertInstanceOf($class, $casted);\n        $this->assertInstanceOf(DateTime::class, $casted);\n        $this->assertSame(42, $casted->foo());\n        $this->assertSame('2017-06-27', $casted->format('Y-m-d'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/IsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Unit;\nuse DateInterval;\nuse DateTime;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse stdClass;\nuse Tests\\AbstractTestCase;\nuse TypeError;\n\nclass IsTest extends AbstractTestCase\n{\n    public function testIsWeekdayTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 2)->isWeekday());\n    }\n\n    public function testIsWeekdayFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 1)->isWeekday());\n    }\n\n    public function testIsWeekendTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2012, 1, 1)->isWeekend());\n    }\n\n    public function testIsWeekendFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2012, 1, 2)->isWeekend());\n    }\n\n    public function testIsYesterdayTrue()\n    {\n        $this->assertTrue(Carbon::now()->subDay()->isYesterday());\n    }\n\n    public function testIsYesterdayFalseWithToday()\n    {\n        $this->assertFalse(Carbon::now()->endOfDay()->isYesterday());\n    }\n\n    public function testIsYesterdayFalseWith2Days()\n    {\n        $this->assertFalse(Carbon::now()->subDays(2)->startOfDay()->isYesterday());\n    }\n\n    public function testIsTodayTrue()\n    {\n        $this->assertTrue(Carbon::now()->isToday());\n    }\n\n    public function testIsCurrentWeek()\n    {\n        $this->assertFalse(Carbon::now()->subWeek()->isCurrentWeek());\n        $this->assertFalse(Carbon::now()->addWeek()->isCurrentWeek());\n        $this->assertTrue(Carbon::now()->isCurrentWeek());\n        $this->assertTrue(Carbon::now()->startOfWeek()->isCurrentWeek());\n        $this->assertTrue(Carbon::now()->endOfWeek()->isCurrentWeek());\n    }\n\n    public function testIsSameWeek()\n    {\n        $this->assertFalse(Carbon::now()->subWeek()->isSameWeek(Carbon::now()));\n        $this->assertFalse(Carbon::now()->addWeek()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::now()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::now()->startOfWeek()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::now()->endOfWeek()->isSameWeek(Carbon::now()));\n        $this->assertTrue(Carbon::parse('2019-01-01')->isSameWeek(Carbon::parse('2018-12-31')));\n    }\n\n    public function testIsNextWeekTrue()\n    {\n        $this->assertTrue(Carbon::now()->addWeek()->isNextWeek());\n    }\n\n    public function testIsLastWeekTrue()\n    {\n        $this->assertTrue(Carbon::now()->subWeek()->isLastWeek());\n    }\n\n    public function testIsNextWeekFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->addWeek(2)->isNextWeek());\n    }\n\n    public function testIsLastWeekFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->subWeek(2)->isLastWeek());\n    }\n\n    public function testIsNextQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->addQuarterNoOverflow()->isNextQuarter());\n    }\n\n    public function testIsLastQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->subQuarterNoOverflow()->isLastQuarter());\n    }\n\n    public function testIsNextQuarterFalse()\n    {\n        $this->assertFalse(Carbon::now()->addQuartersNoOverflow(2)->isNextQuarter());\n        $this->assertFalse(Carbon::now()->addQuartersNoOverflow(5)->isNextQuarter());\n    }\n\n    public function testIsLastQuarterFalse()\n    {\n        $this->assertFalse(Carbon::now()->subQuartersNoOverflow(2)->isLastQuarter());\n        $this->assertFalse(Carbon::now()->subQuartersNoOverflow(5)->isLastQuarter());\n    }\n\n    public function testIsNextMonthTrue()\n    {\n        $this->assertTrue(Carbon::now()->addMonthNoOverflow()->isNextMonth());\n    }\n\n    public function testIsLastMonthTrue()\n    {\n        $this->assertTrue(Carbon::now()->subMonthNoOverflow()->isLastMonth());\n    }\n\n    public function testIsNextMonthFalse()\n    {\n        $this->assertFalse(Carbon::now()->addMonthsNoOverflow(2)->isNextMonth());\n        $this->assertFalse(Carbon::now()->addMonthsNoOverflow(13)->isNextMonth());\n    }\n\n    public function testIsLastMonthFalse()\n    {\n        $this->assertFalse(Carbon::now()->subMonthsNoOverflow(2)->isLastMonth());\n        $this->assertFalse(Carbon::now()->subMonthsNoOverflow(13)->isLastMonth());\n    }\n\n    public function testIsNextYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->addYear()->isNextYear());\n    }\n\n    public function testIsLastYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->subYear()->isLastYear());\n    }\n\n    public function testIsNextYearFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->addYear(2)->isNextYear());\n    }\n\n    public function testIsLastYearFalse()\n    {\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $this->assertFalse($date->subYear(2)->isLastYear());\n    }\n\n    public function testIsTodayFalseWithYesterday()\n    {\n        $this->assertFalse(Carbon::now()->subDay()->endOfDay()->isToday());\n    }\n\n    public function testIsTodayFalseWithTomorrow()\n    {\n        $this->assertFalse(Carbon::now()->addDay()->startOfDay()->isToday());\n    }\n\n    public function testIsTodayWithTimezone()\n    {\n        $this->assertTrue(Carbon::now('Asia/Tokyo')->isToday());\n    }\n\n    public function testIsTomorrowTrue()\n    {\n        $this->assertTrue(Carbon::now()->addDay()->isTomorrow());\n    }\n\n    public function testIsTomorrowFalseWithToday()\n    {\n        $this->assertFalse(Carbon::now()->endOfDay()->isTomorrow());\n    }\n\n    public function testIsTomorrowFalseWith2Days()\n    {\n        $this->assertFalse(Carbon::now()->addDays(2)->startOfDay()->isTomorrow());\n    }\n\n    public function testIsFutureTrue()\n    {\n        $this->assertTrue(Carbon::now()->addSecond()->isFuture());\n    }\n\n    public function testIsFutureFalse()\n    {\n        $this->assertFalse(Carbon::now()->isFuture());\n    }\n\n    public function testIsFutureFalseInThePast()\n    {\n        $this->assertFalse(Carbon::now()->subSecond()->isFuture());\n    }\n\n    public function testIsPastTrue()\n    {\n        $this->assertTrue(Carbon::now()->subSecond()->isPast());\n    }\n\n    public function testIsPastFalse()\n    {\n        $this->assertFalse(Carbon::now()->addSecond()->isPast());\n    }\n\n    public function testNowIsPastFalse()\n    {\n        $this->assertFalse(Carbon::now()->isPast());\n    }\n\n    public function testIsNowOrFutureTrue()\n    {\n        $this->assertTrue(Carbon::now()->addSecond()->isNowOrFuture());\n    }\n\n    public function testIsNowOrFutureFalse()\n    {\n        $this->assertFalse(Carbon::now()->subSecond()->isNowOrFuture());\n    }\n\n    public function testNowIsNowOrFutureTrue()\n    {\n        $this->assertTrue(Carbon::now()->isNowOrFuture());\n    }\n\n    public function testIsNowOrPastTrue()\n    {\n        $this->assertTrue(Carbon::now()->subSecond()->isNowOrPast());\n    }\n\n    public function testIsNowOrPastFalse()\n    {\n        $this->assertFalse(Carbon::now()->addSecond()->isNowOrPast());\n    }\n\n    public function testNowIsNowOrPastTrue()\n    {\n        $this->assertTrue(Carbon::now()->isNowOrPast());\n    }\n\n    public function testIsLeapYearTrue()\n    {\n        $this->assertTrue(Carbon::createFromDate(2016, 1, 1)->isLeapYear());\n    }\n\n    public function testIsLeapYearFalse()\n    {\n        $this->assertFalse(Carbon::createFromDate(2014, 1, 1)->isLeapYear());\n    }\n\n    public function testIsCurrentYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentYear());\n    }\n\n    public function testIsCurrentYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->subYear()->isCurrentYear());\n    }\n\n    public function testIsSameYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameYear(Carbon::now()));\n    }\n\n    public function testIsSameYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameYear(Carbon::now()->subYear()));\n    }\n\n    public function testIsCurrentDecadeTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentDecade());\n    }\n\n    public function testIsCurrentDecadeFalse()\n    {\n        $this->assertFalse(Carbon::now()->subDecade()->isCurrentDecade());\n    }\n\n    public function testIsSameDecadeTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameDecade(Carbon::now()));\n        $this->assertTrue(Carbon::now()->isSameUnit('millennium', Carbon::now()));\n    }\n\n    public function testIsSameDecadeFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameDecade(Carbon::now()->subDecade()));\n        $this->assertFalse(Carbon::now()->isSameUnit('millennium', Carbon::now()->subMillennia(2)));\n    }\n\n    public function testIsSameFoobar()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Bad comparison unit: \\'foobar\\'',\n        ));\n\n        Carbon::now()->isSameUnit('foobar', Carbon::now()->subMillennium());\n    }\n\n    public function testIsCurrentQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentQuarter());\n    }\n\n    public function testIsCurrentQuarterFalse()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::now()->subQuarter()->isCurrentQuarter());\n        Carbon::resetMonthsOverflow();\n    }\n\n    public function testIsSameQuarterTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(Carbon::now()));\n    }\n\n    public function testIsSameQuarterTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(new DateTime()));\n    }\n\n    public function testIsSameQuarterFalse()\n    {\n        Carbon::useMonthsOverflow(false);\n        $this->assertFalse(Carbon::now()->isSameQuarter(Carbon::now()->subQuarter()));\n        Carbon::resetMonthsOverflow();\n    }\n\n    public function testIsSameQuarterFalseWithDateTime()\n    {\n        $now = Carbon::now();\n        $dt = new DateTime();\n        $dt->modify((Carbon::MONTHS_PER_QUARTER * -1).' month');\n\n        if ($dt->format('d') !== $now->format('d')) {\n            $dt->modify('last day of previous month');\n        }\n\n        $this->assertFalse($now->isSameQuarter($dt));\n    }\n\n    public function testIsSameQuarterAndYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(Carbon::now(), true));\n    }\n\n    public function testIsSameQuarterAndYearTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameQuarter(new DateTime(), true));\n    }\n\n    public function testIsSameQuarterAndYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameQuarter(Carbon::now()->subYear(), true));\n    }\n\n    public function testIsSameQuarterAndYearFalseWithDateTime()\n    {\n        $dt = new DateTime();\n        $dt->modify('-1 year');\n        $this->assertFalse(Carbon::now()->isSameQuarter($dt, true));\n    }\n\n    public function testIsCurrentMonth()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentMonth());\n        $dt = Carbon::now();\n        $dt = $dt->modify(Carbon::now()->year.$dt->format('-m-').'01');\n        $this->assertTrue($dt->isCurrentMonth());\n        $dt = $dt->modify((Carbon::now()->year + 1).$dt->format('-m-').'28');\n        $this->assertFalse($dt->isCurrentMonth());\n    }\n\n    public function testIsCurrentMonthFalse()\n    {\n        $this->assertFalse(Carbon::now()->day(15)->subMonth()->isCurrentMonth());\n        $this->assertFalse(Carbon::now()->day(15)->addYear()->isCurrentMonth());\n    }\n\n    public function testIsSameMonth()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(Carbon::now()));\n        $dt = Carbon::now();\n        for ($year = 1990; $year < Carbon::now()->year; $year++) {\n            $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n            $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n        }\n    }\n\n    public function testIsSameMonthTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(new DateTime()));\n        $dt = new DateTime();\n        for ($year = 1990; $year < 2200; $year++) {\n            $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n            $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertTrue(Carbon::now()->isSameMonth($dt, false));\n        }\n    }\n\n    public function testIsSameMonthOfSameYear()\n    {\n        $this->assertFalse(Carbon::now()->isSameMonth(Carbon::now()->day(15)->subMonth()));\n        $this->assertTrue(Carbon::now()->isSameMonth(Carbon::now()));\n        $dt = Carbon::now();\n        for ($year = 1990; $year < Carbon::now()->year; $year++) {\n            $dt = $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n            $dt = $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n        }\n        $year = Carbon::now()->year;\n        $dt = $dt->modify($year.$dt->format('-m-').'01');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        $dt = $dt->modify($year.$dt->format('-m-').'28');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        for ($year = Carbon::now()->year + 1; $year < 2200; $year++) {\n            $dt = $dt->modify($year.$dt->format('-m-').'01');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n            $dt = $dt->modify($year.$dt->format('-m-').'28');\n            $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n        }\n    }\n\n    public function testIsSameMonthFalseWithDateTime()\n    {\n        $dt = new DateTime();\n        $dt = $dt->modify('-2 month');\n        $this->assertFalse(Carbon::now()->isSameMonth($dt));\n    }\n\n    public function testIsSameMonthAndYearTrue()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(Carbon::now(), true));\n        $dt = Carbon::now();\n        $dt = $dt->modify($dt->format('Y-m-').'01');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        $dt = $dt->modify($dt->format('Y-m-').'28');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n    }\n\n    public function testIsSameMonthAndYearTrueWithDateTime()\n    {\n        $this->assertTrue(Carbon::now()->isSameMonth(new DateTime(), true));\n        $dt = new DateTime();\n        $dt = $dt->modify($dt->format('Y-m-').'01');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n        $dt = $dt->modify($dt->format('Y-m-').'28');\n        $this->assertTrue(Carbon::now()->isSameMonth($dt, true));\n    }\n\n    public function testIsSameMonthAndYearFalse()\n    {\n        $this->assertFalse(Carbon::now()->isSameMonth(Carbon::now()->subYear(), true));\n    }\n\n    public function testIsSameMonthAndYearFalseWithDateTime()\n    {\n        $dt = new DateTime();\n        $dt = $dt->modify('-1 year');\n        $this->assertFalse(Carbon::now()->isSameMonth($dt, true));\n    }\n\n    public function testIsSameDayTrue()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameDay(Carbon::createFromDate(2012, 1, 2)));\n        $this->assertTrue($current->isSameDay(Carbon::create(2012, 1, 2, 23, 59, 59)));\n    }\n\n    public function testIsSameDayWithString()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameDay('2012-01-02 15:00:25'));\n        $this->assertTrue($current->isSameDay('2012-01-02'));\n    }\n\n    public function testIsSameDayTrueWithDateTime()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameDay(new DateTime('2012-01-02')));\n        $this->assertTrue($current->isSameDay(new DateTime('2012-01-02 23:59:59')));\n    }\n\n    public function testIsSameDayFalse()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertFalse($current->isSameDay(Carbon::createFromDate(2012, 1, 3)));\n        $this->assertFalse($current->isSameDay(Carbon::createFromDate(2012, 6, 2)));\n    }\n\n    public function testIsSameDayFalseWithDateTime()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertFalse($current->isSameDay(new DateTime('2012-01-03')));\n        $this->assertFalse($current->isSameDay(new DateTime('2012-05-02')));\n    }\n\n    public function testIsCurrentDayTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentDay());\n        $this->assertTrue(Carbon::now()->hour(0)->isCurrentDay());\n        $this->assertTrue(Carbon::now()->hour(23)->isCurrentDay());\n    }\n\n    public function testIsCurrentDayFalse()\n    {\n        $this->assertFalse(Carbon::now()->subDay()->isCurrentDay());\n        $this->assertFalse(Carbon::now()->subMonth()->isCurrentDay());\n    }\n\n    public function testIsSameHourTrue()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertTrue($current->isSameHour(Carbon::create(2018, 5, 6, 12)));\n        $this->assertTrue($current->isSameHour(Carbon::create(2018, 5, 6, 12, 59, 59)));\n    }\n\n    public function testIsSameHourTrueWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertTrue($current->isSameHour(new DateTime('2018-05-06T12:00:00')));\n        $this->assertTrue($current->isSameHour(new DateTime('2018-05-06T12:59:59')));\n    }\n\n    public function testIsSameHourFalse()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertFalse($current->isSameHour(Carbon::create(2018, 5, 6, 13)));\n        $this->assertFalse($current->isSameHour(Carbon::create(2018, 5, 5, 12)));\n    }\n\n    public function testIsSameHourFalseWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12);\n        $this->assertFalse($current->isSameHour(new DateTime('2018-05-06T13:00:00')));\n        $this->assertFalse($current->isSameHour(new DateTime('2018-06-06T12:00:00')));\n    }\n\n    public function testIsCurrentHourTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentHour());\n        $this->assertTrue(Carbon::now()->second(1)->isCurrentHour());\n        $this->assertTrue(Carbon::now()->second(12)->isCurrentHour());\n        $this->assertTrue(Carbon::now()->minute(0)->isCurrentHour());\n        $this->assertTrue(Carbon::now()->minute(59)->second(59)->isCurrentHour());\n    }\n\n    public function testIsCurrentHourFalse()\n    {\n        $this->assertFalse(Carbon::now()->subHour()->isCurrentHour());\n        $this->assertFalse(Carbon::now()->subDay()->isCurrentHour());\n    }\n\n    public function testIsSameMinuteTrue()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertTrue($current->isSameMinute(Carbon::create(2018, 5, 6, 12, 30)));\n        $current = Carbon::create(2018, 5, 6, 12, 30, 15);\n        $this->assertTrue($current->isSameMinute(Carbon::create(2018, 5, 6, 12, 30, 45)));\n    }\n\n    public function testIsSameMinuteTrueWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertTrue($current->isSameMinute(new DateTime('2018-05-06T12:30:00')));\n        $current = Carbon::create(2018, 5, 6, 12, 30, 20);\n        $this->assertTrue($current->isSameMinute(new DateTime('2018-05-06T12:30:40')));\n    }\n\n    public function testIsSameMinuteFalse()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertFalse($current->isSameMinute(Carbon::create(2018, 5, 6, 13, 31)));\n        $this->assertFalse($current->isSameMinute(Carbon::create(2019, 5, 6, 13, 30)));\n    }\n\n    public function testIsSameMinuteFalseWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30);\n        $this->assertFalse($current->isSameMinute(new DateTime('2018-05-06T13:31:00')));\n        $this->assertFalse($current->isSameMinute(new DateTime('2018-05-06T17:30:00')));\n    }\n\n    public function testIsCurrentMinuteTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentMinute());\n        $this->assertTrue(Carbon::now()->second(0)->isCurrentMinute());\n        $this->assertTrue(Carbon::now()->second(59)->isCurrentMinute());\n    }\n\n    public function testIsCurrentMinuteFalse()\n    {\n        $this->assertFalse(Carbon::now()->subMinute()->isCurrentMinute());\n        $this->assertFalse(Carbon::now()->subHour()->isCurrentMinute());\n    }\n\n    public function testIsSameSecondTrue()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $other = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertTrue($current->isSameSecond($other));\n        $this->assertTrue($current->modify($current->hour.':'.$current->minute.':'.$current->second.'.0')->isSameSecond($other));\n        $this->assertTrue($current->modify($current->hour.':'.$current->minute.':'.$current->second.'.999999')->isSameSecond($other));\n    }\n\n    public function testIsSameSecondTrueWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertTrue($current->isSameSecond(new DateTime('2018-05-06T12:30:13')));\n    }\n\n    public function testIsSameSecondFalse()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertFalse($current->isSameSecond(Carbon::create(2018, 5, 6, 12, 30, 55)));\n        $this->assertFalse($current->isSameSecond(Carbon::create(2018, 5, 6, 14, 30, 13)));\n    }\n\n    public function testIsSameSecondFalseWithDateTime()\n    {\n        $current = Carbon::create(2018, 5, 6, 12, 30, 13);\n        $this->assertFalse($current->isSameSecond(new DateTime('2018-05-06T13:30:54')));\n        $this->assertFalse($current->isSameSecond(new DateTime('2018-05-06T13:36:13')));\n    }\n\n    public function testIsCurrentSecondTrue()\n    {\n        $this->assertTrue(Carbon::now()->isCurrentSecond());\n        $now = Carbon::now();\n        $this->assertTrue($now->modify($now->hour.':'.$now->minute.':'.$now->second.'.0')->isCurrentSecond());\n        $this->assertTrue($now->modify($now->hour.':'.$now->minute.':'.$now->second.'.999999')->isCurrentSecond());\n    }\n\n    public function testIsCurrentSecondFalse()\n    {\n        $this->assertFalse(Carbon::now()->subSecond()->isCurrentSecond());\n        $this->assertFalse(Carbon::now()->subDay()->isCurrentSecond());\n    }\n\n    public function testIsSameMicrosecond()\n    {\n        $current = new Carbon('2018-05-06T13:30:54.123456');\n        $this->assertTrue($current->isSameMicrosecond(new DateTime('2018-05-06T13:30:54.123456')));\n        $this->assertFalse($current->isSameMicrosecond(new DateTime('2018-05-06T13:30:54.123457')));\n        $this->assertFalse($current->isSameMicrosecond(new DateTime('2019-05-06T13:30:54.123456')));\n        $this->assertFalse($current->isSameMicrosecond(new DateTime('2018-05-06T13:30:55.123456')));\n        $this->assertTrue($current->isSameSecond($current->copy()));\n        $this->assertTrue(Carbon::now()->isCurrentMicrosecond());\n        $this->assertFalse(Carbon::now()->subMicrosecond()->isCurrentMicrosecond());\n        $this->assertFalse(Carbon::now()->isLastMicrosecond());\n        $this->assertTrue(Carbon::now()->subMicrosecond()->isLastMicrosecond());\n        $this->assertFalse(Carbon::now()->isNextMicrosecond());\n        $this->assertTrue(Carbon::now()->addMicrosecond()->isNextMicrosecond());\n        $this->assertTrue(Carbon::now()->subMicroseconds(Carbon::MICROSECONDS_PER_SECOND)->isLastSecond());\n        $this->assertSame(4.0, Carbon::now()->subMicroseconds(4 * Carbon::MICROSECONDS_PER_SECOND)->diffInSeconds(Carbon::now()));\n    }\n\n    public function testIsDayOfWeek()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 5, 31)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 21)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isDayOfWeek('sunday'));\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isDayOfWeek('SUNDAY'));\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::SUNDAY)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek(0));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('sunday'));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('SUNDAY'));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('monday'));\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('MONDAY'));\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isDayOfWeek('sunday'));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isDayOfWeek('SUNDAY'));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('monday'));\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('MONDAY'));\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek(0));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('sunday'));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isDayOfWeek('SUNDAY'));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('monday'));\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isDayOfWeek('MONDAY'));\n    }\n\n    public function testIsSameAs()\n    {\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $this->assertTrue($current->isSameAs('c', $current));\n    }\n\n    public function testIsSameAsWithInvalidArgument()\n    {\n        $this->expectException(TypeError::class);\n\n        $current = Carbon::createFromDate(2012, 1, 2);\n        $current->isSameAs('Y-m-d', new stdClass());\n    }\n\n    public function testIsSunday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 5, 31)->isSunday());\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 21)->isSunday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isSunday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::SUNDAY)->isSunday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isSunday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::MONDAY)->isSunday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::MONDAY)->isSunday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::MONDAY)->isSunday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isSunday());\n    }\n\n    public function testIsMonday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 1)->isMonday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::MONDAY)->isMonday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::MONDAY)->isMonday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::MONDAY)->isMonday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::TUESDAY)->isMonday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::TUESDAY)->isMonday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::TUESDAY)->isMonday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::TUESDAY)->isMonday());\n    }\n\n    public function testIsTuesday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 2)->isTuesday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::TUESDAY)->isTuesday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::TUESDAY)->isTuesday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::TUESDAY)->isTuesday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::WEDNESDAY)->isTuesday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::WEDNESDAY)->isTuesday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::WEDNESDAY)->isTuesday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::WEDNESDAY)->isTuesday());\n    }\n\n    public function testIsWednesday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 3)->isWednesday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::WEDNESDAY)->isWednesday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::WEDNESDAY)->isWednesday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::WEDNESDAY)->isWednesday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::THURSDAY)->isWednesday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::THURSDAY)->isWednesday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::THURSDAY)->isWednesday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::THURSDAY)->isWednesday());\n    }\n\n    public function testIsThursday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 4)->isThursday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::THURSDAY)->isThursday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::THURSDAY)->isThursday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::THURSDAY)->isThursday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::FRIDAY)->isThursday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::FRIDAY)->isThursday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::FRIDAY)->isThursday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::FRIDAY)->isThursday());\n    }\n\n    public function testIsFriday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 5)->isFriday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::FRIDAY)->isFriday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::FRIDAY)->isFriday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::FRIDAY)->isFriday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::SATURDAY)->isFriday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SATURDAY)->isFriday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::SATURDAY)->isFriday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SATURDAY)->isFriday());\n    }\n\n    public function testIsSaturday()\n    {\n        // True in the past past\n        $this->assertTrue(Carbon::createFromDate(2015, 6, 6)->isSaturday());\n        $this->assertTrue(Carbon::now()->subWeek()->previous(Carbon::SATURDAY)->isSaturday());\n\n        // True in the future\n        $this->assertTrue(Carbon::now()->addWeek()->previous(Carbon::SATURDAY)->isSaturday());\n        $this->assertTrue(Carbon::now()->addMonth()->previous(Carbon::SATURDAY)->isSaturday());\n\n        // False in the past\n        $this->assertFalse(Carbon::now()->subWeek()->previous(Carbon::SUNDAY)->isSaturday());\n        $this->assertFalse(Carbon::now()->subMonth()->previous(Carbon::SUNDAY)->isSaturday());\n\n        // False in the future\n        $this->assertFalse(Carbon::now()->addWeek()->previous(Carbon::SUNDAY)->isSaturday());\n        $this->assertFalse(Carbon::now()->addMonth()->previous(Carbon::SUNDAY)->isSaturday());\n    }\n\n    public function testIsStartOfDay()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay(false));\n        $this->assertTrue(Carbon::parse('00:00:00.999999')->isStartOfDay(false));\n        $this->assertTrue(Carbon::now()->startOfDay()->isStartOfDay(false));\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isStartOfDay(false));\n        $this->assertFalse(Carbon::now()->endOfDay()->isStartOfDay(false));\n\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay());\n        $this->assertTrue(Carbon::parse('00:00:00.999999')->isStartOfDay());\n        $this->assertTrue(Carbon::now()->startOfDay()->isStartOfDay());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isStartOfDay());\n        $this->assertFalse(Carbon::now()->endOfDay()->isStartOfDay());\n    }\n\n    public function testIsStartOfDayInterval()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('00:14:59.999999')->isStartOfDay('15 minutes'));\n        $this->assertFalse(Carbon::parse('00:15:00')->isStartOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('00:59:59.999999')->isStartOfDay(Unit::Hour));\n        $this->assertFalse(Carbon::parse('01:00:00')->isStartOfDay(Unit::Hour));\n        $this->assertTrue(Carbon::parse('00:00:59.999999')->isStartOfDay(new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('00:01:00')->isStartOfDay(new DateInterval('PT1M')));\n\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('00:14:59.999999')->isStartOfDay(interval: '15 minutes'));\n        $this->assertFalse(Carbon::parse('00:15:00')->isStartOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('00:59:59.999999')->isStartOfDay(interval: Unit::Hour));\n        $this->assertFalse(Carbon::parse('01:00:00')->isStartOfDay(interval: Unit::Hour));\n        $this->assertTrue(Carbon::parse('00:00:59.999999')->isStartOfDay(interval: new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('00:01:00')->isStartOfDay(interval: new DateInterval('PT1M')));\n\n        $this->assertTrue(Carbon::parse('00:01:59.999999')->isStartOfDay(interval: CarbonInterval::minutes(2)));\n        $this->assertFalse(Carbon::parse('00:02:00')->isStartOfDay(interval: CarbonInterval::minutes(2)));\n\n        // Always false with negative interval\n        $this->assertFalse(Carbon::parse('00:00:00')->isStartOfDay(interval: CarbonInterval::minutes(-2)));\n\n        // Always true with  interval bigger than 1 day\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isStartOfDay(interval: CarbonInterval::hours(36)));\n    }\n\n    public function testIsStartOfUnit()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfUnit(Unit::Hour));\n\n        $this->assertFalse(Carbon::parse('00:00:00.000001')->isStartOfUnit(Unit::Hour));\n        $this->assertFalse(Carbon::parse('00:00:01')->isStartOfUnit(Unit::Hour));\n\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfUnit(Unit::Hour, '5 minutes'));\n        $this->assertTrue(Carbon::parse('00:04:59.999999')->isStartOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertFalse(Carbon::parse('00:05:00')->isStartOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertTrue(Carbon::parse('Monday')->isStartOfUnit(Unit::Week));\n        $this->assertTrue(Carbon::parse('Monday 23:59:59.999999')->isStartOfUnit(Unit::Week));\n\n        $this->assertFalse(Carbon::parse('Tuesday')->isStartOfUnit(Unit::Week));\n        $this->assertFalse(Carbon::parse('Monday')->isStartOfUnit(Unit::Week, CarbonInterval::day(-1)));\n    }\n\n    public function testIsStartOfDayWithMicroseconds()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isStartOfDay(true));\n        $this->assertTrue(Carbon::now()->startOfDay()->isStartOfDay(true));\n\n        $this->assertFalse(Carbon::parse('00:00:00.000001')->isStartOfDay(true));\n    }\n\n    public function testIsEndOfDay()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59')->isEndOfDay(false));\n        $this->assertTrue(Carbon::parse('23:59:59.000000')->isEndOfDay(false));\n        $this->assertTrue(Carbon::now()->endOfDay()->isEndOfDay(false));\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isEndOfDay(false));\n        $this->assertFalse(Carbon::now()->startOfDay()->isEndOfDay(false));\n\n        $this->assertTrue(Carbon::parse('23:59:59')->isEndOfDay());\n        $this->assertTrue(Carbon::parse('23:59:59.000000')->isEndOfDay());\n        $this->assertTrue(Carbon::now()->endOfDay()->isEndOfDay());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isEndOfDay());\n        $this->assertFalse(Carbon::now()->startOfDay()->isEndOfDay());\n    }\n\n    public function testIsEndOfDayInterval()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('23:45:00')->isEndOfDay('15 minutes'));\n        $this->assertFalse(Carbon::parse('23:44:59.999999')->isEndOfDay('15 minutes'));\n        $this->assertTrue(Carbon::parse('23:00:00')->isEndOfDay(Unit::Hour));\n        $this->assertFalse(Carbon::parse('22:59:59.999999')->isEndOfDay(Unit::Hour));\n        $this->assertTrue(Carbon::parse('23:59:00')->isEndOfDay(new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('23:58:59.999999')->isEndOfDay(new DateInterval('PT1M')));\n\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('23:45:00')->isEndOfDay(interval: '15 minutes'));\n        $this->assertFalse(Carbon::parse('23:44:59.999999')->isEndOfDay(interval: '15 minutes'));\n        $this->assertTrue(Carbon::parse('23:00:00')->isEndOfDay(interval: Unit::Hour));\n        $this->assertFalse(Carbon::parse('22:59:59.999999')->isEndOfDay(interval: Unit::Hour));\n        $this->assertTrue(Carbon::parse('23:59:00')->isEndOfDay(interval: new DateInterval('PT1M')));\n        $this->assertFalse(Carbon::parse('23:58:59.999999')->isEndOfDay(interval: new DateInterval('PT1M')));\n\n        // Always false with negative interval\n        $this->assertFalse(Carbon::parse('00:00:00')->isEndOfDay(interval: CarbonInterval::minutes(-2)));\n\n        // Always true with  interval bigger than 1 day\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay(interval: CarbonInterval::hours(36)));\n    }\n\n    public function testIsEndOfDayWithMicroseconds()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfDay(true));\n        $this->assertTrue(Carbon::now()->endOfDay()->isEndOfDay(true));\n\n        $this->assertFalse(Carbon::parse('23:59:59')->isEndOfDay(true));\n        $this->assertFalse(Carbon::parse('23:59:59.999998')->isEndOfDay(true));\n    }\n\n    public function testIsEndOfUnit()\n    {\n        $this->assertTrue(Carbon::parse('23:59:59.999999')->isEndOfUnit(Unit::Hour));\n\n        $this->assertFalse(Carbon::parse('23:59:59.999998')->isEndOfUnit(Unit::Hour));\n        $this->assertFalse(Carbon::parse('23:59:59')->isEndOfUnit(Unit::Hour));\n\n        $this->assertTrue(Carbon::parse('23:55:00.000001')->isEndOfUnit(Unit::Hour, '5 minutes'));\n        $this->assertTrue(Carbon::parse('23:55:00')->isEndOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertFalse(Carbon::parse('23:54:59.999999')->isEndOfUnit(Unit::Hour, '5 minutes'));\n\n        $this->assertTrue(Carbon::parse('Sunday 23:59:59')->isEndOfUnit(Unit::Week, '2 days'));\n        $this->assertTrue(Carbon::parse('Saturday 00:00')->isEndOfUnit(Unit::Week, '2 days'));\n\n        $this->assertFalse(Carbon::parse('Saturday 00:00')->isEndOfUnit(Unit::Week));\n        $this->assertFalse(Carbon::parse('Friday 23:59:59.999999')->isEndOfUnit(Unit::Week, '2 days'));\n        $this->assertFalse(Carbon::parse('Sunday 23:59:59.999999')->isEndOfUnit(Unit::Week, CarbonInterval::day(-1)));\n    }\n\n    public function testIsMidnight()\n    {\n        $this->assertTrue(Carbon::parse('00:00:00')->isMidnight());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isMidnight());\n    }\n\n    public function testIsMidday()\n    {\n        $this->assertTrue(Carbon::parse('12:00:00')->isMidday());\n\n        $this->assertFalse(Carbon::parse('15:30:45')->isMidday());\n    }\n\n    public function testHasFormat()\n    {\n        $this->assertTrue(Carbon::hasFormat('1975-05-01', 'Y-m-d'));\n        $this->assertTrue(Carbon::hasFormat('12/30/2019', 'm/d/Y'));\n        $this->assertTrue(Carbon::hasFormat('30/12/2019', 'd/m/Y'));\n        $this->assertTrue(Carbon::hasFormat('Sun 21st', 'D jS'));\n\n        $this->assertTrue(Carbon::hasFormat('2000-07-01T00:00:00+00:00', DateTime::ATOM));\n        $this->assertTrue(Carbon::hasFormat('Y-01-30\\\\', '\\\\Y-m-d\\\\\\\\'));\n\n        // @see https://github.com/briannesbitt/Carbon/issues/2180\n        $this->assertTrue(Carbon::hasFormat('2020-09-01 12:00:00Europe/Moscow', 'Y-m-d H:i:se'));\n\n        $this->assertTrue(Carbon::hasFormat('2012-12-04 22:59.32130', 'Y-m-d H:s.vi'));\n\n        // Format failure\n        $this->assertFalse(Carbon::hasFormat('', 'd m Y'));\n        $this->assertFalse(Carbon::hasFormat('1975-05-01', 'd m Y'));\n        $this->assertFalse(Carbon::hasFormat('Foo 21st', 'D jS'));\n        $this->assertFalse(Carbon::hasFormat('Sun 51st', 'D jS'));\n        $this->assertFalse(Carbon::hasFormat('Sun 21xx', 'D jS'));\n\n        // Regex failure\n        $this->assertFalse(Carbon::hasFormat('1975-5-1', 'Y-m-d'));\n        $this->assertFalse(Carbon::hasFormat('19-05-01', 'Y-m-d'));\n        $this->assertFalse(Carbon::hasFormat('30/12/2019', 'm/d/Y'));\n        $this->assertFalse(Carbon::hasFormat('12/30/2019', 'd/m/Y'));\n\n        $this->assertTrue(Carbon::hasFormat('2012-12-04 22:59.32130', 'Y-m-d H:s.vi'));\n    }\n\n    public static function dataForFormatLetters(): array\n    {\n        return [\n            'd' => ['d'],\n            'D' => ['D'],\n            'j' => ['j'],\n            'l' => ['l'],\n            'N' => ['N'],\n            'S' => ['S'],\n            'w' => ['w'],\n            'z' => ['z'],\n            'W' => ['W'],\n            'F' => ['F'],\n            'm' => ['m'],\n            'M' => ['M'],\n            'n' => ['n'],\n            't' => ['t'],\n            'L' => ['L'],\n            'o' => ['o'],\n            'Y' => ['Y'],\n            'y' => ['y'],\n            'a' => ['a'],\n            'A' => ['A'],\n            'B' => ['B'],\n            'g' => ['g'],\n            'G' => ['G'],\n            'h' => ['h'],\n            'H' => ['H'],\n            'i' => ['i'],\n            's' => ['s'],\n            'u' => ['u'],\n            'v' => ['v'],\n            'e' => ['e'],\n            'I' => ['I'],\n            'O' => ['O'],\n            'P' => ['P'],\n            'T' => ['T'],\n            'Z' => ['Z'],\n            'U' => ['U'],\n            'c' => ['c'],\n            'r' => ['r'],\n        ];\n    }\n\n    #[DataProvider('dataForFormatLetters')]\n    public function testHasFormatWithSingleLetter($letter)\n    {\n        $output = Carbon::now()->format($letter);\n        $this->assertTrue(Carbon::hasFormat($output, $letter), \"'$letter' format should match '$output'\");\n    }\n\n    public function testIs()\n    {\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2018'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2018-06'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-07'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('06-02'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('06-03'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('05-02'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-03'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-05-02'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2020-06-02'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('Sunday'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('Monday'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('June'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('May'));\n        $this->assertFalse(Carbon::parse('2023-10-01 00:00:00')->is('February'));\n        $this->assertFalse(Carbon::parse('2023-10-01 00:00:00')->is('January'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('12:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('12:26'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('12:23:00'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('12h'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('15h'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('12:00'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('15:00'));\n        $this->assertTrue(Carbon::parse('2019-06-02 15:23:45')->is('3pm'));\n        $this->assertFalse(Carbon::parse('2019-06-02 15:23:45')->is('4pm'));\n        $this->assertFalse(Carbon::parse('2019-06-02 15:23:45')->is('3am'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02 12:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-03 12:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02 15:23'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02 12:33'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('2 June 2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('1 June 2019'));\n        $this->assertTrue(Carbon::parse('2019-06-02 12:23:45')->is('June 2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('August 2019'));\n        $this->assertFalse(Carbon::parse('2019-06-02 12:23:45')->is('June 2018'));\n    }\n\n    public function testHasFormatWithDots()\n    {\n        $this->assertTrue(Carbon::hasFormat('2020.09.09', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020009009', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020-09-09', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020*09*09', 'Y.m.d'));\n        $this->assertFalse(Carbon::hasFormat('2020k09d09', 'Y.m.d'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/IssetTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass IssetTest extends AbstractTestCase\n{\n    public function testIssetReturnFalseForUnknownProperty(): void\n    {\n        $this->assertFalse(isset($this->immutableNow->sdfsdfss));\n    }\n\n    public static function dataForTestIssetReturnTrueForProperties(): Generator\n    {\n        yield ['age'];\n        yield ['century'];\n        yield ['day'];\n        yield ['dayName'];\n        yield ['dayOfWeek'];\n        yield ['dayOfWeekIso'];\n        yield ['dayOfYear'];\n        yield ['daysInMonth'];\n        yield ['daysInYear'];\n        yield ['decade'];\n        yield ['dst'];\n        yield ['englishDayOfWeek'];\n        yield ['englishMonth'];\n        yield ['firstWeekDay'];\n        yield ['hour'];\n        yield ['isoWeek'];\n        yield ['isoWeekYear'];\n        yield ['isoWeeksInYear'];\n        yield ['lastWeekDay'];\n        yield ['latinMeridiem'];\n        yield ['latinUpperMeridiem'];\n        yield ['local'];\n        yield ['locale'];\n        yield ['localeDayOfWeek'];\n        yield ['localeMonth'];\n        yield ['meridiem'];\n        yield ['micro'];\n        yield ['microsecond'];\n        yield ['millennium'];\n        yield ['milli'];\n        yield ['millisecond'];\n        yield ['milliseconds'];\n        yield ['minDayName'];\n        yield ['minute'];\n        yield ['month'];\n        yield ['monthName'];\n        yield ['noZeroHour'];\n        yield ['offset'];\n        yield ['offsetHours'];\n        yield ['offsetMinutes'];\n        yield ['quarter'];\n        yield ['second'];\n        yield ['shortDayName'];\n        yield ['shortEnglishDayOfWeek'];\n        yield ['shortEnglishMonth'];\n        yield ['shortLocaleDayOfWeek'];\n        yield ['shortLocaleMonth'];\n        yield ['shortMonthName'];\n        yield ['timestamp'];\n        yield ['timezone'];\n        yield ['timezoneAbbreviatedName'];\n        yield ['timezoneName'];\n        yield ['tz'];\n        yield ['tzAbbrName'];\n        yield ['tzName'];\n        yield ['upperMeridiem'];\n        yield ['utc'];\n        yield ['week'];\n        yield ['weekNumberInMonth'];\n        yield ['weekOfMonth'];\n        yield ['weekOfYear'];\n        yield ['weekYear'];\n        yield ['weeksInYear'];\n        yield ['year'];\n        yield ['yearIso'];\n    }\n\n    #[DataProvider('dataForTestIssetReturnTrueForProperties')]\n    public function testIssetReturnTrueForProperties(string $property): void\n    {\n        Carbon::useStrictMode(false);\n        $this->assertTrue(isset($this->immutableNow->{$property}));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/JsonSerializationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCaseWithOldNow;\n\nclass JsonSerializationTest extends AbstractTestCaseWithOldNow\n{\n    public function testCarbonAllowsCustomSerializer()\n    {\n        Carbon::serializeUsing(function (Carbon $carbon) {\n            return $carbon->getTimestamp();\n        });\n\n        $result = json_decode(json_encode(Carbon::now()), true);\n\n        $this->assertSame(1498569255, $result);\n    }\n\n    public function testCarbonAllowsCustomSerializerString()\n    {\n        Carbon::serializeUsing('Y-m-d');\n\n        $this->assertSame('\"2017-06-27\"', json_encode(Carbon::now()));\n    }\n\n    public function testCarbonAllowsCustomSerializerViaSettings()\n    {\n        $date = Carbon::now()->settings([\n            'toJsonFormat' => 'H:i:s',\n        ]);\n\n        $this->assertSame('\"13:14:15\"', json_encode($date));\n    }\n\n    public function testCarbonCanSerializeToJson()\n    {\n        $this->assertSame('2017-06-27T13:14:15.000000Z', Carbon::now()->jsonSerialize());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/LastErrorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Traits\\Creator;\nuse DateTime;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhp;\nuse Tests\\AbstractTestCase;\n\nclass LastErrorTest extends AbstractTestCase\n{\n    /**\n     * @var array\n     */\n    protected $lastErrors;\n\n    /**\n     * @var array\n     */\n    protected $noErrors;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->lastErrors = [\n            'warning_count' => 1,\n            'warnings' => ['11' => 'The parsed date was invalid'],\n            'error_count' => 0,\n            'errors' => [],\n        ];\n    }\n\n    #[RequiresPhp('>=8.2')]\n    public function testCreateHandlesLastErrors()\n    {\n        $carbon = new Carbon('2017-02-30');\n        $datetime = new DateTime('2017-02-30');\n\n        $this->assertSame($this->lastErrors, $carbon->getLastErrors());\n        $this->assertSame($carbon->getLastErrors(), $datetime->getLastErrors());\n\n        $carbon = new Carbon('2017-02-15');\n\n        $this->assertFalse($carbon->getLastErrors());\n    }\n\n    public function testLastErrorsInitialization()\n    {\n        $obj = new class() {\n            use Creator;\n\n            /** @phpstan-ignore-next-line */\n            public function __construct($time = null, $tz = null)\n            {\n            }\n\n            public function triggerError()\n            {\n                self::setLastErrors([\n                    'warning_count' => 1,\n                    'warnings' => ['11' => 'The parsed date was invalid'],\n                    'error_count' => 0,\n                    'errors' => [],\n                ]);\n            }\n        };\n        $this->assertFalse($obj::getLastErrors());\n        $obj->triggerError();\n        $this->assertSame($this->lastErrors, $obj::getLastErrors());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/LocalizationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Language;\nuse Carbon\\Translator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Symfony\\Component\\Translation\\IdentityTranslator;\nuse Symfony\\Component\\Translation\\Loader\\ArrayLoader;\nuse Symfony\\Component\\Translation\\MessageCatalogue;\nuse Symfony\\Component\\Translation\\Translator as SymfonyTranslator;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonImmutable\\Fixtures\\MyCarbon;\n\n#[Group('localization')]\nclass LocalizationTest extends AbstractTestCase\n{\n    protected function tearDown(): void\n    {\n        parent::tearDown();\n        Carbon::setLocale('en');\n    }\n\n    public function testGetTranslator()\n    {\n        /** @var Translator $t */\n        $t = Carbon::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('en', $t->getLocale());\n    }\n\n    public function testResetTranslator()\n    {\n        /** @var Translator $t */\n        $t = MyCarbon::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('en', $t->getLocale());\n    }\n\n    #[TestWith([\n        'fr',\n        ['fr_FR.UTF-8', 'fr_FR.utf8', 'fr_FR', 'fr'],\n        'il y a 2 secondes',\n    ])]\n    #[TestWith([\n        'sr',\n        ['sr_ME.UTF-8', 'sr_ME.utf8', 'sr_ME', 'sr'],\n        ['pre 2 sekunde' /* sr */, 'prije 2 sekunde' /* sr_ME */],\n    ])]\n    #[TestWith([\n        'zh',\n        ['zh_TW.UTF-8', 'zh_TW.utf8', 'zh_TW', 'zh'],\n        '2秒前',\n    ])]\n    public function testSetLocaleToAutoFromSupportedLocale(string $language, array $locales, array|string $twoSecondsAgo)\n    {\n        $currentLocale = setlocale(LC_ALL, '0');\n\n        $this->setLocaleOrSkip(...$locales);\n\n        try {\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n        } finally {\n            setlocale(LC_ALL, $currentLocale);\n        }\n\n        $this->assertStringStartsWith($language, $locale);\n        $this->assertContains($diff, (array) $twoSecondsAgo);\n    }\n\n    public function testSetLocaleToAutoFromUnsupportedLocale()\n    {\n        $currentLocale = setlocale(LC_ALL, '0');\n\n        $this->setLocaleOrSkip('ar_AE.UTF-8', 'ar_AE.utf8', 'ar_AE', 'ar');\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->resetMessages();\n        $translator->setLocale('en');\n        $directories = $translator->getDirectories();\n        $directory = sys_get_temp_dir().'/carbon'.mt_rand(0, 9999999);\n        mkdir($directory);\n\n        foreach (glob(__DIR__.'/../../src/Carbon/Lang/*.php') as $file) {\n            copy($file, \"$directory/\".basename($file));\n        }\n\n        try {\n            $translator->setDirectories([$directory]);\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n        } finally {\n            $translator->setDirectories([$directory]);\n            setlocale(LC_ALL, $currentLocale);\n            $this->remove($directory);\n            $translator->setDirectories($directories);\n        }\n\n        $this->assertStringStartsWith('ar', $locale);\n        $this->assertSame('منذ ثانيتين', $diff);\n    }\n\n    public function testSetLocaleToAutoFallback()\n    {\n        $currentLocale = setlocale(LC_ALL, '0');\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->resetMessages();\n\n        $translator->setLocale('en');\n        $directories = $translator->getDirectories();\n        $directory = sys_get_temp_dir().'/carbon'.mt_rand(0, 9999999);\n\n        try {\n            $this->setLocaleOrSkip('fr_FR.UTF-8', 'fr_FR.utf8', 'fr_FR', 'fr');\n\n            mkdir($directory);\n\n            $files = [\n                'en',\n                'zh_Hans',\n                'zh',\n                'fr',\n                'fr_CA',\n            ];\n\n            foreach ($files as $file) {\n                copy(__DIR__.\"/../../src/Carbon/Lang/$file.php\", \"$directory/$file.php\");\n            }\n\n            $translator->setDirectories([$directory]);\n\n            /** @var Translator $translator */\n            $translator = Carbon::getTranslator();\n            $translator->resetMessages();\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n            setlocale(LC_ALL, $currentLocale);\n\n            $this->assertSame('fr', $locale);\n            $this->assertSame('il y a 2 secondes', $diff);\n\n            $this->setLocaleOrSkip('zh_CN.UTF-8', 'zh_CN.utf8', 'zh_CN', 'zh');\n\n            /** @var Translator $translator */\n            $translator = Carbon::getTranslator();\n            $translator->resetMessages();\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n            setlocale(LC_ALL, $currentLocale);\n\n            $this->assertSame('zh', $locale);\n            $this->assertSame('2秒前', $diff);\n\n            $this->setLocaleOrSkip('yo_NG.UTF-8', 'yo_NG.utf8', 'yo_NG', 'yo');\n\n            /** @var Translator $translator */\n            $translator = Carbon::getTranslator();\n            $translator->resetMessages();\n            Carbon::setLocale('en');\n            Carbon::setLocale('auto');\n            $locale = Carbon::getLocale();\n            $diff = Carbon::now()->subSeconds(2)->diffForHumans();\n            setlocale(LC_ALL, $currentLocale);\n\n            $this->assertSame('en', $locale);\n            $this->assertSame('2 seconds ago', $diff);\n        } finally {\n            setlocale(LC_ALL, $currentLocale);\n            $translator->setDirectories($directories);\n            $this->remove($directory);\n        }\n    }\n\n    /**\n     * @see \\Tests\\CarbonImmutable\\LocalizationTest::testSetLocale\n     * @see \\Tests\\CarbonImmutable\\LocalizationTest::testSetTranslator\n     */\n    public static function dataForLocales(): array\n    {\n        return [\n            'af' => ['af'],\n            'ar' => ['ar'],\n            'ar_DZ' => ['ar_DZ'],\n            'ar_KW' => ['ar_KW'],\n            'ar_LY' => ['ar_LY'],\n            'ar_MA' => ['ar_MA'],\n            'ar_SA' => ['ar_SA'],\n            'ar_Shakl' => ['ar_Shakl'],\n            'ar_TN' => ['ar_TN'],\n            'az' => ['az'],\n            'be' => ['be'],\n            'bg' => ['bg'],\n            'bm' => ['bm'],\n            'bn' => ['bn'],\n            'bo' => ['bo'],\n            'br' => ['br'],\n            'bs' => ['bs'],\n            'bs_BA' => ['bs_BA'],\n            'ca' => ['ca'],\n            'cs' => ['cs'],\n            'cv' => ['cv'],\n            'cy' => ['cy'],\n            'da' => ['da'],\n            'de' => ['de'],\n            'de_AT' => ['de_AT'],\n            'de_CH' => ['de_CH'],\n            'dv' => ['dv'],\n            'dv_MV' => ['dv_MV'],\n            'el' => ['el'],\n            'en' => ['en'],\n            'en_AU' => ['en_AU'],\n            'en_CA' => ['en_CA'],\n            'en_GB' => ['en_GB'],\n            'en_IE' => ['en_IE'],\n            'en_IL' => ['en_IL'],\n            'en_NZ' => ['en_NZ'],\n            'eo' => ['eo'],\n            'es' => ['es'],\n            'es_DO' => ['es_DO'],\n            'es_US' => ['es_US'],\n            'et' => ['et'],\n            'eu' => ['eu'],\n            'fa' => ['fa'],\n            'fi' => ['fi'],\n            'fo' => ['fo'],\n            'fr' => ['fr'],\n            'fr_CA' => ['fr_CA'],\n            'fr_CH' => ['fr_CH'],\n            'fy' => ['fy'],\n            'gd' => ['gd'],\n            'gl' => ['gl'],\n            'gom_Latn' => ['gom_Latn'],\n            'gu' => ['gu'],\n            'he' => ['he'],\n            'hi' => ['hi'],\n            'hr' => ['hr'],\n            'hu' => ['hu'],\n            'hy' => ['hy'],\n            'hy_AM' => ['hy_AM'],\n            'id' => ['id'],\n            'is' => ['is'],\n            'it' => ['it'],\n            'ja' => ['ja'],\n            'jv' => ['jv'],\n            'ka' => ['ka'],\n            'kk' => ['kk'],\n            'km' => ['km'],\n            'kn' => ['kn'],\n            'ko' => ['ko'],\n            'ku' => ['ku'],\n            'ky' => ['ky'],\n            'lb' => ['lb'],\n            'lo' => ['lo'],\n            'lt' => ['lt'],\n            'lv' => ['lv'],\n            'me' => ['me'],\n            'mi' => ['mi'],\n            'mk' => ['mk'],\n            'ml' => ['ml'],\n            'mn' => ['mn'],\n            'mr' => ['mr'],\n            'ms' => ['ms'],\n            'ms_MY' => ['ms_MY'],\n            'mt' => ['mt'],\n            'my' => ['my'],\n            'nb' => ['nb'],\n            'ne' => ['ne'],\n            'nl' => ['nl'],\n            'nl_BE' => ['nl_BE'],\n            'nn' => ['nn'],\n            'no' => ['no'],\n            'oc' => ['oc'],\n            'pa_IN' => ['pa_IN'],\n            'pl' => ['pl'],\n            'ps' => ['ps'],\n            'pt' => ['pt'],\n            'pt_BR' => ['pt_BR'],\n            'ro' => ['ro'],\n            'ru' => ['ru'],\n            'sd' => ['sd'],\n            'se' => ['se'],\n            'sh' => ['sh'],\n            'si' => ['si'],\n            'sk' => ['sk'],\n            'sl' => ['sl'],\n            'sq' => ['sq'],\n            'sr' => ['sr'],\n            'sr_Cyrl' => ['sr_Cyrl'],\n            'sr_Cyrl_ME' => ['sr_Cyrl_ME'],\n            'sr_Latn_ME' => ['sr_Latn_ME'],\n            'sr_ME' => ['sr_ME'],\n            'ss' => ['ss'],\n            'sv' => ['sv'],\n            'sw' => ['sw'],\n            'ta' => ['ta'],\n            'te' => ['te'],\n            'tet' => ['tet'],\n            'tg' => ['tg'],\n            'th' => ['th'],\n            'tl_PH' => ['tl_PH'],\n            'tlh' => ['tlh'],\n            'tr' => ['tr'],\n            'tzl' => ['tzl'],\n            'tzm' => ['tzm'],\n            'tzm_Latn' => ['tzm_Latn'],\n            'ug_CN' => ['ug_CN'],\n            'uk' => ['uk'],\n            'ur' => ['ur'],\n            'uz' => ['uz'],\n            'uz_Latn' => ['uz_Latn'],\n            'vi' => ['vi'],\n            'yo' => ['yo'],\n            'zh' => ['zh'],\n            'zh_CN' => ['zh_CN'],\n            'zh_HK' => ['zh_HK'],\n            'zh_TW' => ['zh_TW'],\n        ];\n    }\n\n    #[DataProvider('dataForLocales')]\n    public function testSetLocale(string $locale)\n    {\n        Carbon::setLocale($locale);\n        $this->assertTrue($this->areSameLocales($locale, Carbon::getLocale()));\n    }\n\n    #[DataProvider('dataForLocales')]\n    public function testSetTranslator(string $locale)\n    {\n        $ori = Carbon::getTranslator();\n        $t = new Translator($locale);\n        $t->addLoader('array', new ArrayLoader());\n        Carbon::setTranslator($t);\n\n        /** @var Translator $t */\n        $t = Carbon::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertTrue($this->areSameLocales($locale, $t->getLocale()));\n        Carbon::setTranslator($ori);\n    }\n\n    public function testSetLocaleWithKnownLocale()\n    {\n        Carbon::setLocale('fr');\n        $this->assertSame('fr', Carbon::getLocale());\n    }\n\n    #[TestWith(['DE'])]\n    #[TestWith(['pt-BR'])]\n    #[TestWith(['pt-br'])]\n    #[TestWith(['PT-br'])]\n    #[TestWith(['PT-BR'])]\n    #[TestWith(['pt_br'])]\n    #[TestWith(['PT_br'])]\n    #[TestWith(['PT_BR'])]\n    public function testSetLocaleWithMalformedLocale(string $malformedLocale)\n    {\n        Carbon::setLocale($malformedLocale);\n        $split = preg_split('/[-_]/', $malformedLocale);\n\n        $this->assertSame(\n            strtolower($split[0]).(\\count($split) === 1 ? '' : '_'.strtoupper($split[1])),\n            Carbon::getLocale(),\n        );\n    }\n\n    public function testSetLocaleWithNonExistingLocale()\n    {\n        Carbon::setLocale('pt-XX');\n\n        $this->assertSame('pt', Carbon::getLocale());\n    }\n\n    public function testSetLocaleWithUnknownLocale()\n    {\n        Carbon::setLocale('zz');\n\n        $this->assertSame('en', Carbon::getLocale());\n    }\n\n    public function testCustomTranslation()\n    {\n        Carbon::setLocale('en');\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        /** @var MessageCatalogue $messages */\n        $messages = $translator->getCatalogue('en');\n        $resources = $messages->all('messages');\n        $resources['day'] = '1 boring day|%count% boring days';\n        $translator->addResource('array', $resources, 'en');\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        $this->assertSame('3 boring days 4 hours', $diff);\n\n        Carbon::setLocale('en');\n    }\n\n    public function testAddCustomTranslation()\n    {\n        $enBoring = [\n            'day' => '1 boring day|%count% boring days',\n        ];\n\n        Carbon::setLocale('en');\n        $this->assertSame('en', Carbon::getLocale());\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages('en', $enBoring);\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        $this->assertSame('3 boring days 4 hours', $diff);\n\n        $translator->resetMessages('en');\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        $this->assertSame('3 days 4 hours', $diff);\n\n        $translator->setMessages('en_Boring', $enBoring);\n\n        $this->assertSame($enBoring, $translator->getMessages('en_Boring'));\n\n        $messages = $translator->getMessages();\n\n        $this->assertArrayHasKey('en', $messages);\n        $this->assertArrayHasKey('en_Boring', $messages);\n        $this->assertSame($enBoring, $messages['en_Boring']);\n\n        Carbon::setLocale('en_Boring');\n        $this->assertSame('en_Boring', Carbon::getLocale());\n\n        $diff = Carbon::create(2018, 1, 1, 0, 0, 0)\n            ->diffForHumans(Carbon::create(2018, 1, 4, 4, 0, 0), true, false, 2);\n\n        // en_Boring inherit en because it starts with \"en\", see symfony-translation behavior\n        $this->assertSame('3 boring days 4 hours', $diff);\n\n        $translator->resetMessages();\n\n        $this->assertSame([], $translator->getMessages());\n\n        Carbon::setLocale('en');\n        $this->assertSame('en', Carbon::getLocale());\n    }\n\n    public function testCustomWeekStart()\n    {\n        Carbon::setLocale('ru');\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n\n        $translator->setMessages('ru', [\n            'first_day_of_week' => 1,\n        ]);\n\n        $calendar = Carbon::parse('2018-07-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-07 00:00:00'));\n        $this->assertSame('В следующий вторник, в 0:00', $calendar);\n        $calendar = Carbon::parse('2018-07-12 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-12 00:00:00'));\n        $this->assertSame('В воскресенье, в 0:00', $calendar);\n\n        $translator->setMessages('ru', [\n            'first_day_of_week' => 5,\n        ]);\n\n        $calendar = Carbon::parse('2018-07-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-07 00:00:00'));\n        $this->assertSame('Во вторник, в 0:00', $calendar);\n        $calendar = Carbon::parse('2018-07-12 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-07-12 00:00:00'));\n        $this->assertSame('В следующее воскресенье, в 0:00', $calendar);\n\n        $translator->resetMessages('ru');\n\n        Carbon::setLocale('en');\n    }\n\n    public function testAddAndRemoveDirectory()\n    {\n        $directory = sys_get_temp_dir().'/carbon'.mt_rand(0, 9999999);\n        mkdir($directory);\n        copy(__DIR__.'/../../src/Carbon/Lang/fr.php', \"$directory/foo.php\");\n        copy(__DIR__.'/../../src/Carbon/Lang/fr.php', \"$directory/bar.php\");\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        Carbon::setLocale('en');\n\n        Carbon::setLocale('foo');\n        $this->assertSame('Saturday', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        $translator->addDirectory($directory);\n\n        Carbon::setLocale('foo');\n        $this->assertSame('samedi', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        Carbon::setLocale('en');\n        $translator->removeDirectory($directory);\n\n        Carbon::setLocale('bar');\n        $this->assertSame('Saturday', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        Carbon::setLocale('foo');\n        $this->assertSame('samedi', Carbon::parse('2018-07-07 00:00:00')->isoFormat('dddd'));\n\n        Carbon::setLocale('en');\n    }\n\n    public function testLocaleHasShortUnits()\n    {\n        $withShortUnit = [\n            'year' => 'foo',\n            'y' => 'bar',\n        ];\n        $withShortHourOnly = [\n            'year' => 'foo',\n            'y' => 'foo',\n            'day' => 'foo',\n            'd' => 'foo',\n            'hour' => 'foo',\n            'h' => 'bar',\n        ];\n        $withoutShortUnit = [\n            'year' => 'foo',\n        ];\n        $withSameShortUnit = [\n            'year' => 'foo',\n            'y' => 'foo',\n        ];\n        $withShortHourOnlyLocale = 'zz_'.ucfirst(strtolower('withShortHourOnly'));\n        $withShortUnitLocale = 'zz_'.ucfirst(strtolower('withShortUnit'));\n        $withoutShortUnitLocale = 'zz_'.ucfirst(strtolower('withoutShortUnit'));\n        $withSameShortUnitLocale = 'zz_'.ucfirst(strtolower('withSameShortUnit'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withShortUnitLocale, $withShortUnit);\n        $translator->setMessages($withShortHourOnlyLocale, $withShortHourOnly);\n        $translator->setMessages($withoutShortUnitLocale, $withoutShortUnit);\n        $translator->setMessages($withSameShortUnitLocale, $withSameShortUnit);\n\n        $this->assertTrue(Carbon::localeHasShortUnits($withShortUnitLocale));\n        $this->assertTrue(Carbon::localeHasShortUnits($withShortHourOnlyLocale));\n        $this->assertFalse(Carbon::localeHasShortUnits($withoutShortUnitLocale));\n        $this->assertFalse(Carbon::localeHasShortUnits($withSameShortUnitLocale));\n    }\n\n    public function testLocaleHasDiffSyntax()\n    {\n        $withDiffSyntax = [\n            'year' => 'foo',\n            'ago' => ':time ago',\n            'from_now' => ':time from now',\n            'after' => ':time after',\n            'before' => ':time before',\n        ];\n        $withoutDiffSyntax = [\n            'year' => 'foo',\n        ];\n        $withDiffSyntaxLocale = 'zz_'.ucfirst(strtolower('withDiffSyntax'));\n        $withoutDiffSyntaxLocale = 'zz_'.ucfirst(strtolower('withoutDiffSyntax'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withDiffSyntaxLocale, $withDiffSyntax);\n        $translator->setMessages($withoutDiffSyntaxLocale, $withoutDiffSyntax);\n\n        $this->assertTrue(Carbon::localeHasDiffSyntax($withDiffSyntaxLocale));\n        $this->assertFalse(Carbon::localeHasDiffSyntax($withoutDiffSyntaxLocale));\n\n        $this->assertTrue(Carbon::localeHasDiffSyntax('ka'));\n        $this->assertFalse(Carbon::localeHasDiffSyntax('foobar'));\n    }\n\n    public function testLocaleHasDiffOneDayWords()\n    {\n        $withOneDayWords = [\n            'year' => 'foo',\n            'diff_now' => 'just now',\n            'diff_yesterday' => 'yesterday',\n            'diff_tomorrow' => 'tomorrow',\n        ];\n        $withoutOneDayWords = [\n            'year' => 'foo',\n        ];\n        $withOneDayWordsLocale = 'zz_'.ucfirst(strtolower('withOneDayWords'));\n        $withoutOneDayWordsLocale = 'zz_'.ucfirst(strtolower('withoutOneDayWords'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withOneDayWordsLocale, $withOneDayWords);\n        $translator->setMessages($withoutOneDayWordsLocale, $withoutOneDayWords);\n\n        $this->assertTrue(Carbon::localeHasDiffOneDayWords($withOneDayWordsLocale));\n        $this->assertFalse(Carbon::localeHasDiffOneDayWords($withoutOneDayWordsLocale));\n    }\n\n    public function testLocaleHasDiffTwoDayWords()\n    {\n        $withTwoDayWords = [\n            'year' => 'foo',\n            'diff_before_yesterday' => 'before yesterday',\n            'diff_after_tomorrow' => 'after tomorrow',\n        ];\n        $withoutTwoDayWords = [\n            'year' => 'foo',\n        ];\n        $withTwoDayWordsLocale = 'zz_'.ucfirst(strtolower('withTwoDayWords'));\n        $withoutTwoDayWordsLocale = 'zz_'.ucfirst(strtolower('withoutTwoDayWords'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withTwoDayWordsLocale, $withTwoDayWords);\n        $translator->setMessages($withoutTwoDayWordsLocale, $withoutTwoDayWords);\n\n        $this->assertTrue(Carbon::localeHasDiffTwoDayWords($withTwoDayWordsLocale));\n        $this->assertFalse(Carbon::localeHasDiffTwoDayWords($withoutTwoDayWordsLocale));\n    }\n\n    public function testLocaleHasPeriodSyntax()\n    {\n        $withPeriodSyntax = [\n            'year' => 'foo',\n            'period_recurrences' => 'once|%count% times',\n            'period_interval' => 'every :interval',\n            'period_start_date' => 'from :date',\n            'period_end_date' => 'to :date',\n        ];\n        $withoutPeriodSyntax = [\n            'year' => 'foo',\n        ];\n        $withPeriodSyntaxLocale = 'zz_'.ucfirst(strtolower('withPeriodSyntax'));\n        $withoutPeriodSyntaxLocale = 'zz_'.ucfirst(strtolower('withoutPeriodSyntax'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages($withPeriodSyntaxLocale, $withPeriodSyntax);\n        $translator->setMessages($withoutPeriodSyntaxLocale, $withoutPeriodSyntax);\n\n        $this->assertTrue(Carbon::localeHasPeriodSyntax($withPeriodSyntaxLocale));\n        $this->assertFalse(Carbon::localeHasPeriodSyntax($withoutPeriodSyntaxLocale));\n\n        $this->assertTrue(Carbon::localeHasPeriodSyntax('nl'));\n    }\n\n    public function testGetAvailableLocales()\n    {\n        $this->assertCount(\\count(glob(__DIR__.'/../../src/Carbon/Lang/*.php')), Carbon::getAvailableLocales());\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n        $translator->setMessages('zz_ZZ', []);\n        $this->assertContains('zz_ZZ', Carbon::getAvailableLocales());\n\n        Carbon::setTranslator(new SymfonyTranslator('en'));\n        $this->assertSame(['en'], Carbon::getAvailableLocales());\n    }\n\n    public function testGetAvailableLocalesInfo()\n    {\n        $infos = Carbon::getAvailableLocalesInfo();\n        $this->assertCount(\\count(Carbon::getAvailableLocales()), Carbon::getAvailableLocalesInfo());\n        $this->assertArrayHasKey('en', $infos);\n        $this->assertInstanceOf(Language::class, $infos['en']);\n        $this->assertSame('English', $infos['en']->getIsoName());\n    }\n\n    public function testGeorgianSpecialFromNowTranslation()\n    {\n        $diff = Carbon::now()->locale('ka')->addWeeks(3)->diffForHumans();\n\n        $this->assertSame('3 კვირაში', $diff);\n    }\n\n    public function testWeekDayMultipleForms()\n    {\n        $date = Carbon::parse('2018-10-10')->locale('ru');\n\n        $this->assertSame('в среду', $date->isoFormat('[в] dddd'));\n        $this->assertSame('среда, 10 октября 2018', $date->isoFormat('dddd, D MMMM YYYY'));\n        $this->assertSame('среда', $date->dayName);\n        $this->assertSame('ср', $date->isoFormat('dd'));\n\n        $date = Carbon::parse('2018-10-10')->locale('uk');\n\n        $this->assertSame('середа, 10', $date->isoFormat('dddd, D'));\n        $this->assertSame('в середу', $date->isoFormat('[в] dddd'));\n        $this->assertSame('минулої середи', $date->isoFormat('[минулої] dddd'));\n    }\n\n    public function testTranslationCustomWithCustomTranslator()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Translator does not implement Symfony\\Contracts\\Translation\\TranslatorInterface '.\n            'and Symfony\\Component\\Translation\\TranslatorBagInterface. '.\n            'Symfony\\Component\\Translation\\IdentityTranslator has been given.',\n        ));\n\n        $date = Carbon::create(2018, 1, 1, 0, 0, 0);\n        $date->setLocalTranslator(new IdentityTranslator());\n\n        $date->getTranslationMessage('foo');\n    }\n\n    public function testTranslateTimeStringTo()\n    {\n        $date = Carbon::parse('2019-07-05')->locale('de');\n        $baseString = $date->isoFormat('LLLL');\n\n        $this->assertSame('Freitag, 5. Juli 2019 00:00', $baseString);\n        $this->assertSame('Friday, 5. July 2019 00:00', $date->translateTimeStringTo($baseString));\n        $this->assertSame('vendredi, 5. juillet 2019 00:00', $date->translateTimeStringTo($baseString, 'fr'));\n    }\n\n    public function testFallbackLocales()\n    {\n        // /!\\ Used for backward compatibility, please avoid this method\n        // @see testMultiLocales() as preferred method\n\n        $myDialect = 'xx_MY_Dialect';\n        $secondChoice = 'xy_MY_Dialect';\n        $thirdChoice = 'it_CH';\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n\n        $translator->setMessages($myDialect, [\n            'day' => ':count yub yub',\n        ]);\n\n        $translator->setMessages($secondChoice, [\n            'day' => ':count buza',\n            'hour' => ':count ohto',\n        ]);\n\n        Carbon::setLocale($myDialect);\n        Carbon::setFallbackLocale($thirdChoice);\n\n        $this->assertSame($thirdChoice, Carbon::getFallbackLocale());\n        $this->assertSame('3 yub yub e 5 ora fa', Carbon::now()->subDays(3)->subHours(5)->ago([\n            'parts' => 2,\n            'join' => true,\n        ]));\n\n        Carbon::setTranslator(new Translator('en'));\n\n        /** @var Translator $translator */\n        $translator = Carbon::getTranslator();\n\n        $translator->setMessages($myDialect, [\n            'day' => ':count yub yub',\n        ]);\n\n        $translator->setMessages($secondChoice, [\n            'day' => ':count buza',\n            'hour' => ':count ohto',\n        ]);\n\n        Carbon::setLocale($myDialect);\n        Carbon::setFallbackLocale($secondChoice);\n        Carbon::setFallbackLocale($thirdChoice);\n\n        $this->assertSame($thirdChoice, Carbon::getFallbackLocale());\n        $this->assertSame('3 yub yub e 5 ohto fa', Carbon::now()->subDays(3)->subHours(5)->ago([\n            'parts' => 2,\n            'join' => true,\n        ]));\n\n        Carbon::setTranslator(new IdentityTranslator());\n\n        $this->assertNull(Carbon::getFallbackLocale());\n\n        Carbon::setTranslator(new Translator('en'));\n    }\n\n    public function testMultiLocales()\n    {\n        $myDialect = 'xx_MY_Dialect';\n        $secondChoice = 'xy_MY_Dialect';\n        $thirdChoice = 'it_CH';\n\n        Translator::get($myDialect)->setTranslations([\n            'day' => ':count yub yub',\n        ]);\n\n        Translator::get($secondChoice)->setTranslations([\n            'day' => ':count buza',\n            'hour' => ':count ohto',\n        ]);\n\n        $date = Carbon::now()->subDays(3)->subHours(5)->locale($myDialect, $secondChoice, $thirdChoice);\n\n        $this->assertSame('3 yub yub e 5 ohto fa', $date->ago([\n            'parts' => 2,\n            'join' => true,\n        ]));\n    }\n\n    public function testStandAloneMonthsInLLLFormat()\n    {\n        $this->assertSame(\n            '29 февраля 2020 г., 12:24',\n            Carbon::parse('2020-02-29 12:24:00')->locale('ru_RU')->isoFormat('LLL'),\n            'Use \"months\" for date formatting',\n        );\n    }\n\n    public function testStandAloneMonthName()\n    {\n        $this->assertSame(\n            'февраль',\n            Carbon::parse('2020-02-29 12:24:00')->locale('ru_RU')->monthName,\n            'Use \"months_standalone\" the month alone',\n        );\n    }\n\n    public function testShortMonthNameInFormat()\n    {\n        $this->assertSame(\n            '29. мая',\n            Carbon::parse('2020-05-29 12:24:00')->locale('ru_RU')->isoFormat('D. MMM'),\n            'Use \"months_short\" for date formatting',\n        );\n        $this->assertSame(\n            'май',\n            Carbon::parse('2020-05-29 12:24:00')->locale('ru_RU')->isoFormat('MMM'),\n            'Use \"months_short\" for date formatting',\n        );\n    }\n\n    public function testStandAloneShortMonthName()\n    {\n        $this->assertSame(\n            'май',\n            Carbon::parse('2020-05-29 12:24:00')->locale('ru_RU')->shortMonthName,\n            'Use \"months_short_standalone\" the month alone',\n        );\n    }\n\n    public function testAgoDeclension()\n    {\n        $this->assertSame(\n            'година',\n            CarbonInterval::hour()->locale('uk')->forHumans(['aUnit' => true]),\n        );\n\n        $this->assertSame(\n            'годину тому',\n            Carbon::now()->subHour()->locale('uk')->diffForHumans(['aUnit' => true]),\n        );\n    }\n\n    public function testPolishDeclensions()\n    {\n        $hour = Carbon::now()->addHour()->locale('pl');\n        $minute = Carbon::now()->addMinute()->locale('pl');\n        $second = Carbon::now()->addSecond()->locale('pl');\n        $this->assertSame('za 1 godzinę', $hour->diffForHumans());\n        $this->assertSame('za 1 minutę', $minute->diffForHumans());\n        $this->assertSame('za 1 sekundę', $second->diffForHumans());\n        $this->assertSame('za godzinę', $hour->diffForHumans(['aUnit' => true]));\n        $this->assertSame('za minutę', $minute->diffForHumans(['aUnit' => true]));\n        $this->assertSame('za sekundę', $second->translate('from_now', ['time' => 'sekunda']));\n    }\n\n    public function testDeclensionModes()\n    {\n        Carbon::setTestNow('2022-12-30');\n        $this->assertSame(\n            '2 жил 3 сар 1 өдөр 1с өмнө',\n            Carbon::now()\n                ->subYears(2)\n                ->subMonths(3)\n                ->subDay()\n                ->subSecond()\n                ->locale('mn')\n                ->diffForHumans(null, null, true, 4)\n        );\n        $this->assertSame(\n            '2 жил 3 сар 1 өдөр 1 секундын өмнө',\n            Carbon::now()\n                ->subYears(2)\n                ->subMonths(3)\n                ->subDay()\n                ->subSecond()\n                ->locale('mn')\n                ->diffForHumans(null, null, false, 4)\n        );\n    }\n\n    #[TestWith(['мая', 'May'])]\n    #[TestWith(['май', 'May'])]\n    #[TestWith(['февраль', 'February'])]\n    #[TestWith(['февраля', 'February'])]\n    public function testTranslateMonthsEitherStandaloneOrNot(string $ru, string $en)\n    {\n        $this->assertSame($en, \\Carbon\\Carbon::translateTimeString($ru, 'ru', 'en'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/MacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse BadMethodCallException;\nuse Carbon\\CarbonImmutable as Carbon;\nuse CarbonTimezoneTrait;\nuse Closure;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhpExtension;\nuse SubCarbonImmutable;\nuse Tests\\AbstractTestCaseWithOldNow;\nuse Tests\\Carbon\\Fixtures\\FooBar;\nuse Tests\\CarbonImmutable\\Fixtures\\Mixin;\n\nclass MacroTest extends AbstractTestCaseWithOldNow\n{\n    #[RequiresPhpExtension('calendar')]\n    public function testCarbonIsMacroableWhenNotCalledDynamically()\n    {\n        Carbon::macro('easterDays', function ($year = 2019) {\n            return easter_days($year);\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame(22, $now->easterDays(2020));\n        $this->assertSame(31, $now->easterDays());\n\n        Carbon::macro('otherParameterName', function ($other = true) {\n            return $other;\n        });\n\n        $this->assertTrue($now->otherParameterName());\n    }\n\n    #[RequiresPhpExtension('calendar')]\n    public function testCarbonIsMacroableWhenNotCalledDynamicallyUsingThis()\n    {\n        Carbon::macro('diffFromEaster', function ($year) {\n            /** @var Carbon $date */\n            $date = $this;\n\n            return $date->toDateTime()->diff(\n                Carbon::create($year, 3, 21)\n                    ->setTimezone($date->getTimezone())\n                    ->addDays(easter_days($year))\n                    ->endOfDay(),\n            );\n        });\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame(1020, $now->diffFromEaster(2020)->days);\n    }\n\n    #[RequiresPhpExtension('calendar')]\n    public function testCarbonIsMacroableWhenCalledStatically()\n    {\n        Carbon::macro('easterDate', function ($year) {\n            return Carbon::create($year, 3, 21)->addDays(easter_days($year));\n        });\n\n        $this->assertSame('05/04', Carbon::easterDate(2015)->format('d/m'));\n    }\n\n    public function testCarbonIsMacroableWithNonClosureCallables()\n    {\n        Carbon::macro('lower2', 'strtolower');\n\n        /** @var mixed $now */\n        $now = Carbon::now();\n\n        $this->assertSame('abc', $now->lower2('ABC'));\n        $this->assertSame('abc', Carbon::lower2('ABC'));\n    }\n\n    public function testCarbonIsMixinable()\n    {\n        include_once __DIR__.'/Fixtures/Mixin.php';\n        $mixin = new Mixin();\n        Carbon::mixin($mixin);\n        Carbon::setUserTimezone('America/Belize');\n\n        /** @var mixed $date */\n        $date = Carbon::parse('2000-01-01 12:00:00', 'UTC');\n\n        $this->assertSame('06:00 America/Belize', $date->userFormat('H:i e'));\n    }\n\n    public function testCarbonRaisesExceptionWhenStaticMacroIsNotFound()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method Carbon\\CarbonImmutable::nonExistingStaticMacro does not exist.',\n        ));\n\n        Carbon::nonExistingStaticMacro();\n    }\n\n    public function testCarbonRaisesExceptionWhenMacroIsNotFound()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method nonExistingMacro does not exist.',\n        ));\n\n        /** @var mixed $date */\n        $date = Carbon::now();\n        $date->nonExistingMacro();\n    }\n\n    public function testTraitMixin()\n    {\n        Carbon::mixin(FooBar::class);\n        Carbon::setTestNow('2019-07-19 00:00:00');\n\n        $this->assertSame('supergirl / Friday / immutable', Carbon::super('girl'));\n        $this->assertSame('superboy / Thursday / immutable', Carbon::parse('2019-07-18')->super('boy'));\n\n        $this->assertInstanceOf(Carbon::class, Carbon::me());\n    }\n\n    public function testTraitWithNamedParameters()\n    {\n        require_once __DIR__.'/../Fixtures/CarbonTimezoneTrait.php';\n\n        Carbon::mixin(CarbonTimezoneTrait::class);\n        $now = Carbon::now();\n        $now = eval(\"return \\$now->toAppTz(tz: 'Europe/Paris');\");\n\n        $this->assertSame('Europe/Paris', $now->format('e'));\n    }\n\n    public function testSerializationAfterTraitChaining()\n    {\n        require_once __DIR__.'/../Fixtures/CarbonTimezoneTrait.php';\n\n        Carbon::mixin(CarbonTimezoneTrait::class);\n        Carbon::setTestNow('2023-05-24 14:49');\n\n        $date = Carbon::toAppTz(false, 'Europe/Paris');\n\n        $this->assertSame('2023-05-24 16:49 Europe/Paris', unserialize(serialize($date))->format('Y-m-d H:i e'));\n\n        $date = Carbon::parse('2023-06-12 11:49')->toAppTz(false, 'Europe/Paris');\n\n        $this->assertSame('2023-06-12 13:49 Europe/Paris', unserialize(serialize($date))->format('Y-m-d H:i e'));\n    }\n\n    public function testSubClassMacro()\n    {\n        require_once __DIR__.'/../Fixtures/SubCarbonImmutable.php';\n\n        $subCarbon = new SubCarbonImmutable('2024-01-24 00:00');\n\n        SubCarbonImmutable::macro('diffInDecades', function (SubCarbonImmutable|string|null $dt = null, $abs = true) {\n            return (int) ($this->diffInYears($dt, $abs) / 10);\n        });\n\n        $this->assertSame(2, $subCarbon->diffInDecades(new SubCarbonImmutable('2049-01-24 00:00')));\n        $this->assertSame(2, $subCarbon->diffInDecades('2049-01-24 00:00'));\n\n        SubCarbonImmutable::resetMacros();\n    }\n\n    public function testLazyMixinMethodCall()\n    {\n        $test = new class() {\n            public static array $calledMethods = [];\n\n            public function __construct()\n            {\n                self::$calledMethods[] = __METHOD__;\n            }\n\n            public function __destruct()\n            {\n                self::$calledMethods[] = __METHOD__;\n            }\n\n            public static function noReturnType()\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return static fn () => 'foo';\n            }\n\n            public static function returnVoid(): void\n            {\n                self::$calledMethods[] = __METHOD__;\n            }\n\n            public static function returnArray(): array\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return [];\n            }\n\n            public static function returnObject(): object\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return (object) [];\n            }\n\n            public static function returnClosure(): Closure\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return static fn () => 'foo';\n            }\n\n            public static function returnMixed(): mixed\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return static fn () => 'foo';\n            }\n\n            public static function returnOtherBuiltIn(): bool\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return true;\n            }\n\n            public static function returnUnion(): bool|array\n            {\n                self::$calledMethods[] = __METHOD__;\n\n                return true;\n            }\n\n            public static function getCalledMethods(): array\n            {\n                return self::$calledMethods;\n            }\n        };\n\n        Carbon::mixin($test);\n        Carbon::resetMacros();\n\n        $this->assertSame([\n            '__construct', // Only happening because of $test = new class()... but none from Carbon::mixin()\n            'noReturnType',\n            'returnArray',\n            'returnObject',\n            'returnClosure',\n            'returnMixed',\n            'returnUnion',\n        ], array_map(\n            static fn (string $name) => explode('::', $name, 2)[1],\n            $test::getCalledMethods(),\n        ));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ModifyNearDSTChangeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse Tests\\AbstractTestCase;\n\nclass ModifyNearDSTChangeTest extends AbstractTestCase\n{\n    /**\n     * Tests transition through DST change hour in non default timezone.\n     */\n    #[Group('dst')]\n    #[DataProvider('dataForTransitionTests')]\n    public function testTransitionInNonDefaultTimezone(string $dateString, int $addHours, string $expected): void\n    {\n        date_default_timezone_set('Europe/london');\n        $date = Carbon::parse($dateString, 'America/New_York');\n        $date = $date->addHours($addHours);\n        $this->assertSame($expected, $date->format('c'));\n    }\n\n    /**\n     * Tests transition through DST change hour in default timezone.\n     */\n    #[Group('dst')]\n    #[DataProvider('dataForTransitionTests')]\n    public function testTransitionInDefaultTimezone(string $dateString, int $addHours, string $expected): void\n    {\n        date_default_timezone_set('America/New_York');\n        $date = Carbon::parse($dateString, 'America/New_York');\n        $date = $date->addHours($addHours);\n        $this->assertSame($expected, $date->format('c'));\n    }\n\n    public static function dataForTransitionTests(): Generator\n    {\n        // arguments:\n        // - Date string to Carbon::parse in America/New_York.\n        // - Hours to add\n        // - Resulting string in 'c' format\n\n        // testForwardTransition\n        // When standard time was about to reach 2010-03-14T02:00:00-05:00 clocks were turned forward 1 hour to\n        // 2010-03-14T03:00:00-04:00 local daylight time instead\n        yield [\n            '2010-03-14T00:00:00',\n            24,\n            '2010-03-15T01:00:00-04:00',\n        ];\n\n        // testBackwardTransition\n        // When local daylight time was about to reach 2010-11-07T02:00:00-04:00 clocks were turned backward 1 hour\n        // to 2010-11-07T01:00:00-05:00 local standard time instead\n        yield ['2010-11-07T00:00:00', 24, '2010-11-07T23:00:00-05:00'];\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ModifyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass ModifyTest extends AbstractTestCase\n{\n    public function testSimpleModify()\n    {\n        $a = new Carbon('2014-03-30 00:00:00');\n        $b = $a->addHours(24);\n        $this->assertSame(24.0, $a->diffInHours($b));\n    }\n\n    public function testSimpleModifyWithNamedParameter()\n    {\n        $a = new Carbon('2014-03-30 00:00:00');\n        $b = $a->addHours(value: 24);\n        $this->assertSame(24.0, $a->diffInHours($b));\n    }\n\n    public function testTimezoneModify()\n    {\n        $php81Fix = 1.0;\n        // For daylight saving time reason 2014-03-30 0h59 is immediately followed by 2h00\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addHours(24);\n        $this->assertSame(23.0 + $php81Fix, $a->diffInHours($b));\n        $this->assertSame(23.0 + $php81Fix, $b->diffInHours($a, true));\n        $this->assertSame(-23.0 - $php81Fix, $b->diffInHours($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60, $b->diffInMinutes($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60 * 60, $b->diffInSeconds($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60 * 60 * 1000, $b->diffInMilliseconds($a));\n        $this->assertSame(-(23.0 + $php81Fix) * 60 * 60 * 1000000, $b->diffInMicroseconds($a));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealHours(24);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n        $b = $b->subRealHours(24);\n        $this->assertSame(0.0, $b->diffInHours($a, false));\n        $this->assertSame(0.0, $b->diffInHours($a, false));\n\n        $a = new Carbon('2014-03-30 00:59:00', 'Europe/London');\n        $a = $a->addRealHour();\n        $this->assertSame('02:59', $a->format('H:i'));\n        $a = $a->subRealHour();\n        $this->assertSame('00:59', $a->format('H:i'));\n\n        $a = new Carbon('2014-03-30 00:59:00', 'Europe/London');\n        $a = $a->addRealMinutes(2);\n        $this->assertSame('02:01', $a->format('H:i'));\n        $a = $a->subRealMinutes(2);\n        $this->assertSame('00:59', $a->format('H:i'));\n\n        $a = new Carbon('2014-03-30 00:59:30', 'Europe/London');\n        $a = $a->addRealMinute();\n        $this->assertSame('02:00:30', $a->format('H:i:s'));\n        $a = $a->subRealMinute();\n        $this->assertSame('00:59:30', $a->format('H:i:s'));\n\n        $a = new Carbon('2014-03-30 00:59:30', 'Europe/London');\n        $a = $a->addRealSeconds(40);\n        $this->assertSame('02:00:10', $a->format('H:i:s'));\n        $a = $a->subRealSeconds(40);\n        $this->assertSame('00:59:30', $a->format('H:i:s'));\n\n        $a = new Carbon('2014-03-30 00:59:59', 'Europe/London');\n        $a = $a->addRealSecond();\n        $this->assertSame('02:00:00', $a->format('H:i:s'));\n        $a = $a->subRealSecond();\n        $this->assertSame('00:59:59', $a->format('H:i:s'));\n\n        $a = new Carbon('2014-03-30 00:59:59.990000', 'Europe/London');\n        $a = $a->addRealMilliseconds(20);\n        $this->assertSame('02:00:00.010000', $a->format('H:i:s.u'));\n        $a = $a->subRealMilliseconds(20);\n        $this->assertSame('00:59:59.990000', $a->format('H:i:s.u'));\n\n        $a = new Carbon('2014-03-30 00:59:59.999990', 'Europe/London');\n        $a = $a->addRealMicroseconds(20);\n        $this->assertSame('02:00:00.000010', $a->format('H:i:s.u'));\n        $a = $a->subRealMicroseconds(20);\n        $this->assertSame('00:59:59.999990', $a->format('H:i:s.u'));\n\n        $a = new Carbon('2014-03-30 00:59:59.999999', 'Europe/London');\n        $a = $a->addRealMicrosecond();\n        $this->assertSame('02:00:00.000000', $a->format('H:i:s.u'));\n        $a = $a->subRealMicrosecond();\n        $this->assertSame('00:59:59.999999', $a->format('H:i:s.u'));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealDay();\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealWeeks(1 / 7);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealMonths(1 / 30);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealQuarters(1 / 90);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealYears(1 / 365);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealDecades(1 / 3650);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealCenturies(1 / 36500);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n\n        $a = new Carbon('2014-03-30 00:00:00', 'Europe/London');\n        $b = $a->addRealMillennia(1 / 365000);\n        $this->assertSame(-24.0, $b->diffInHours($a, false));\n        $this->assertSame(-24.0 * 60, $b->diffInMinutes($a, false));\n        $this->assertSame(-24.0 * 60 * 60, $b->diffInSeconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000, $b->diffInMilliseconds($a, false));\n        $this->assertSame(-24.0 * 60 * 60 * 1000000, $b->diffInMicroseconds($a, false));\n    }\n\n    public function testNextAndPrevious()\n    {\n        Carbon::setTestNow('2019-06-02 13:27:09.816752');\n\n        $this->assertSame('2019-06-02 14:00:00', Carbon::now()->next('2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::now()->previous('2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 14:00:00', Carbon::now()->next('14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::now()->previous('14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-03 09:00:00', Carbon::now()->next('9am')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 09:00:00', Carbon::now()->previous('9am')->format('Y-m-d H:i:s'));\n\n        $this->assertSame('2019-06-02 14:00:00', Carbon::parse('next 2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::parse('previous 2pm')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 14:00:00', Carbon::parse('next 14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-01 14:00:00', Carbon::parse('previous 14h')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-03 09:00:00', Carbon::parse('next 9am')->format('Y-m-d H:i:s'));\n        $this->assertSame('2019-06-02 09:00:00', Carbon::parse('previous 9am')->format('Y-m-d H:i:s'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/NowAndOtherStaticHelpersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTime;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass NowAndOtherStaticHelpersTest extends AbstractTestCase\n{\n    public function testNow()\n    {\n        $dt = Carbon::now();\n        $this->assertSame($this->immutableNow->getTimestamp(), $dt->timestamp);\n\n        Carbon::setTestNow();\n        $before = $this->getTimestamp();\n        $dt = Carbon::now();\n        $after = $this->getTimestamp();\n        $this->assertGreaterThanOrEqual($before, $dt->timestamp);\n        $this->assertLessThanOrEqual($after, $dt->timestamp);\n    }\n\n    public function testGetPreciseTimestamp()\n    {\n        $dt = Carbon::parse('2018-01-06 12:34:10.987126');\n        $this->assertSame(1515260.0, $dt->getPreciseTimestamp(-3));\n        $this->assertSame(151526005.0, $dt->getPreciseTimestamp(-1));\n        $this->assertSame(1515260051.0, $dt->getPreciseTimestamp(0));\n        $this->assertSame(15152600510.0, $dt->getPreciseTimestamp(1));\n        $this->assertSame(151526005099.0, $dt->getPreciseTimestamp(2));\n        $this->assertSame(1515260050987.0, $dt->valueOf());\n        $this->assertSame(15152600509871.0, $dt->getPreciseTimestamp(4));\n        $this->assertSame(151526005098713.0, $dt->getPreciseTimestamp(5));\n        $this->assertSame(1515260050987126.0, $dt->getPreciseTimestamp(6));\n        $this->assertSame(151526005098712600.0, $dt->getPreciseTimestamp(8));\n        $this->assertSame(1515260050987126000.0, $dt->getPreciseTimestamp(9));\n    }\n\n    public function testGetTimestampMs()\n    {\n        $dt = Carbon::parse('2018-01-06 12:34:10.987126');\n        $this->assertSame(1515260050987, $dt->getTimestampMs());\n    }\n\n    public function testNowWithTimezone()\n    {\n        $dt = Carbon::now('Europe/London');\n        $this->assertSame($this->immutableNow->getTimestamp(), $dt->timestamp);\n\n        Carbon::setTestNow();\n        $before = $this->getTimestamp();\n        $dt = Carbon::now('Europe/London');\n        $after = $this->getTimestamp();\n        $this->assertGreaterThanOrEqual($before, $dt->timestamp);\n        $this->assertLessThanOrEqual($after, $dt->timestamp);\n        $this->assertSame('Europe/London', $dt->tzName);\n    }\n\n    public function testToday()\n    {\n        $dt = Carbon::today();\n        $this->assertSame(date('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testTodayWithTimezone()\n    {\n        $dt = Carbon::today('Europe/London');\n        $dt2 = new DateTime('now', new DateTimeZone('Europe/London'));\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testTomorrow()\n    {\n        $dt = Carbon::tomorrow();\n        $dt2 = new DateTime('tomorrow');\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testTomorrowWithTimezone()\n    {\n        $dt = Carbon::tomorrow('Europe/London');\n        $dt2 = new DateTime('tomorrow', new DateTimeZone('Europe/London'));\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testYesterday()\n    {\n        $dt = Carbon::yesterday();\n        $dt2 = new DateTime('yesterday');\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n\n    public function testYesterdayWithTimezone()\n    {\n        $dt = Carbon::yesterday('Europe/London');\n        $dt2 = new DateTime('yesterday', new DateTimeZone('Europe/London'));\n        $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/NowDerivativesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass NowDerivativesTest extends AbstractTestCase\n{\n    public function testNowWithSameTimezone()\n    {\n        $dt = Carbon::now('Europe/London');\n        $dt2 = $dt->nowWithSameTz();\n\n        $this->assertSame($dt2->toDateTimeString(), $dt->toDateTimeString());\n        $this->assertSame($dt2->tzName, $dt->tzName);\n\n        Carbon::setTestNow(new Carbon('2017-07-29T07:57:27.123456Z'));\n        $dt = Carbon::createFromTime(13, 40, 00, 'Africa/Asmara');\n        $dt2 = $dt->nowWithSameTz();\n        Carbon::setTestNow();\n\n        $this->assertSame($dt->format('H:i'), '13:40');\n        $this->assertSame($dt2->format('H:i'), '10:57');\n        $this->assertSame($dt2->tzName, $dt->tzName);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/ObjectsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse DateTime;\nuse DateTimeImmutable;\nuse stdClass;\nuse Tests\\AbstractTestCase;\n\nclass ObjectsTest extends AbstractTestCase\n{\n    public function testToObject()\n    {\n        $dt = Carbon::now();\n        $dtToObject = $dt->toObject();\n\n        $this->assertInstanceOf(stdClass::class, $dtToObject);\n\n        $this->assertObjectHasProperty('year', $dtToObject);\n        $this->assertSame($dt->year, $dtToObject->year);\n\n        $this->assertObjectHasProperty('month', $dtToObject);\n        $this->assertSame($dt->month, $dtToObject->month);\n\n        $this->assertObjectHasProperty('day', $dtToObject);\n        $this->assertSame($dt->day, $dtToObject->day);\n\n        $this->assertObjectHasProperty('dayOfWeek', $dtToObject);\n        $this->assertSame($dt->dayOfWeek, $dtToObject->dayOfWeek);\n\n        $this->assertObjectHasProperty('dayOfYear', $dtToObject);\n        $this->assertSame($dt->dayOfYear, $dtToObject->dayOfYear);\n\n        $this->assertObjectHasProperty('hour', $dtToObject);\n        $this->assertSame($dt->hour, $dtToObject->hour);\n\n        $this->assertObjectHasProperty('minute', $dtToObject);\n        $this->assertSame($dt->minute, $dtToObject->minute);\n\n        $this->assertObjectHasProperty('second', $dtToObject);\n        $this->assertSame($dt->second, $dtToObject->second);\n\n        $this->assertObjectHasProperty('micro', $dtToObject);\n        $this->assertSame($dt->micro, $dtToObject->micro);\n\n        $this->assertObjectHasProperty('timestamp', $dtToObject);\n        $this->assertSame($dt->timestamp, $dtToObject->timestamp);\n\n        $this->assertObjectHasProperty('timezone', $dtToObject);\n        $this->assertEquals($dt->timezone, $dtToObject->timezone);\n\n        $this->assertObjectHasProperty('formatted', $dtToObject);\n        $this->assertSame($dt->format(Carbon::DEFAULT_TO_STRING_FORMAT), $dtToObject->formatted);\n    }\n\n    public function testToDateTime()\n    {\n        $dt = Carbon::create(2000, 3, 26);\n        $date = $dt->toDateTime();\n\n        $this->assertInstanceOf(DateTime::class, $date);\n\n        $this->assertSame('2000-03-26', $date->format('Y-m-d'));\n\n        $date = $dt->toDate();\n\n        $this->assertInstanceOf(DateTime::class, $date);\n\n        $this->assertSame('2000-03-26', $date->format('Y-m-d'));\n    }\n\n    public function testToDateTimeImmutable()\n    {\n        $dt = Carbon::create(2000, 3, 26);\n        $date = $dt->toDateTimeImmutable();\n\n        $this->assertInstanceOf(DateTimeImmutable::class, $date);\n\n        $this->assertSame('2000-03-26', $date->format('Y-m-d'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/PhpBug72338Test.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\n/**\n * The problem is, that $date->setTimezone($tz) with $tz in 'HH:MM' notation ([\"timezone_type\"]=>int(1)) put DateTime object\n *   on inconsistent state. It looks like internal timestamp becomes changed and it affects to such functions:\n *\n * * $date->modify() uses changed timestamp and result is wrong\n *\n * * $date->setTimezone($tz) settle this changed timestamp, even in case if $tz is not in 'HH:MM' format\n *\n * * $date->format('U') returns changed timestamp\n *\n * @link https://bugs.php.net/bug.php?id=72338 This bug on bugs.php.net\n *\n * @internal I use days changing in tests because using seconds|minute|hours may run setTimezone within.\n */\nclass PhpBug72338Test extends AbstractTestCase\n{\n    /**\n     * Ensures that modify don't use changed timestamp\n     */\n    public function testModify()\n    {\n        $date = Carbon::createFromTimestamp(0)->setTimezone('+02:00')->modify('+1 day');\n        $this->assertSame('86400', $date->format('U'));\n    }\n\n    /**\n     * Ensures that $date->format('U') returns unchanged timestamp\n     */\n    public function testTimestamp()\n    {\n        $date = Carbon::createFromTimestamp(0)->setTimezone('+02:00');\n        $this->assertSame('0', $date->format('U'));\n    }\n\n    /**\n     * Ensures that date created from string with timezone and with same timezone set by setTimezone() is equal\n     */\n    public function testEqualSetAndCreate()\n    {\n        $date = Carbon::createFromTimestamp(0)->setTimezone('+02:00');\n        $date1 = new Carbon('1970-01-01T02:00:00+02:00');\n        $this->assertSame($date->format('U'), $date1->format('U'));\n    }\n\n    /**\n     * Ensures that second call to setTimezone() don't changing timestamp\n     */\n    public function testSecondSetTimezone()\n    {\n        $date = Carbon::createFromTimestamp(0)->setTimezone('+02:00')->setTimezone('Europe/Moscow');\n        $this->assertSame('0', $date->format('U'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/RelativeDateStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass RelativeDateStringTest extends AbstractTestCase\n{\n    public $scenarios = [\n\n        // ensure regular timestamps are flagged as relative\n        '2018-01-02 03:04:05' => ['date' => '2018-01-02', 'is_relative' => false],\n        '1500-01-02 12:00:00' => ['date' => '1500-01-02', 'is_relative' => false],\n        '1985-12-10' => ['date' => '1985-12-10', 'is_relative' => false],\n        'Dec 2017' => ['date' => '2017-12-01', 'is_relative' => false],\n        '25-Dec-2017' => ['date' => '2017-12-25', 'is_relative' => false],\n        '25 December 2017' => ['date' => '2017-12-25', 'is_relative' => false],\n        '25 Dec 2017' => ['date' => '2017-12-25', 'is_relative' => false],\n        'Dec 25 2017' => ['date' => '2017-12-25', 'is_relative' => false],\n\n        // dates not relative now\n        'first day of January 2008' => ['date' => '2008-01-01', 'is_relative' => false],\n        'first day of January 1999' => ['date' => '1999-01-01', 'is_relative' => false],\n        'last day of January 1999' => ['date' => '1999-01-31', 'is_relative' => false],\n        'last monday of January 1999' => ['date' => '1999-01-25', 'is_relative' => false],\n        'first day of January 0001' => ['date' => '0001-01-01', 'is_relative' => false],\n        'monday december 1750' => ['date' => '1750-12-07', 'is_relative' => false],\n        'december 1750' => ['date' => '1750-12-01', 'is_relative' => false],\n        'last sunday of January 2005' => ['date' => '2005-01-30', 'is_relative' => false],\n        'January 2008' => ['date' => '2008-01-01', 'is_relative' => false],\n\n        // dates relative to now\n        'first day of next month' => ['date' => '2017-02-01', 'is_relative' => true],\n        'sunday noon' => ['date' => '2017-01-01', 'is_relative' => true],\n        'sunday midnight' => ['date' => '2017-01-01', 'is_relative' => true],\n        'monday december' => ['date' => '2017-12-04', 'is_relative' => true],\n        'next saturday' => ['date' => '2017-01-07', 'is_relative' => true],\n        'april' => ['date' => '2017-04-01', 'is_relative' => true],\n    ];\n\n    public function testKeywordMatching()\n    {\n        foreach ($this->scenarios as $string => $expected) {\n            $actual = Carbon::hasRelativeKeywords($string);\n\n            $this->assertSame(\n                $expected['is_relative'],\n                $actual,\n                \"Failed relative keyword matching for scenario: {$string} (expected: {$expected['is_relative']})\",\n            );\n        }\n    }\n\n    public function testRelativeInputStrings()\n    {\n        Carbon::setTestNow('2017-01-01 12:00:00');\n\n        foreach ($this->scenarios as $string => $expected) {\n            $actual = Carbon::parse($string)->format('Y-m-d');\n\n            $this->assertSame(\n                $expected['date'],\n                $actual,\n                \"Failed relative date scenario: {$string}\",\n            );\n        }\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/RelativeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass RelativeTest extends AbstractTestCase\n{\n    public function testSecondsSinceMidnight()\n    {\n        $d = Carbon::today()->addSeconds(30);\n        $this->assertSame(30.0, $d->secondsSinceMidnight());\n\n        $d = Carbon::today()->addDays(1);\n        $this->assertSame(0.0, $d->secondsSinceMidnight());\n\n        $d = Carbon::today()->addDays(1)->addSeconds(120);\n        $this->assertSame(120.0, $d->secondsSinceMidnight());\n\n        $d = Carbon::today()->addMonths(3)->addSeconds(42);\n        $this->assertSame(42.0, $d->secondsSinceMidnight());\n    }\n\n    public function testSecondsUntilEndOfDay()\n    {\n        $d = Carbon::today()->endOfDay();\n        $this->assertSame(0.0, $d->secondsUntilEndOfDay());\n\n        $d = Carbon::today()->endOfDay()->subSeconds(60);\n        $this->assertSame(60.0, $d->secondsUntilEndOfDay());\n\n        $d = Carbon::create(2014, 10, 24, 12, 34, 56);\n        $this->assertVeryClose(41103.999999, $d->secondsUntilEndOfDay());\n\n        $d = Carbon::create(2014, 10, 24, 0, 0, 0);\n        $this->assertVeryClose(86399.99999899999, $d->secondsUntilEndOfDay());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/RoundTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass RoundTest extends AbstractTestCase\n{\n    public function testRoundWithDefaultUnit()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->round();\n        $this->assertNotEquals($ref, $copy);\n        $this->assertNotSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->round(5), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->floor()->round(5), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->round(3), 2315, 7, 18, 22, 42, 18, 0);\n        $this->assertCarbon($dt->copy()->round(4), 2315, 7, 18, 22, 42, 16, 0);\n        $this->assertCarbon($dt->copy()->round(10), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->round(0.5), 2315, 7, 18, 22, 42, 17, 500000);\n        $this->assertCarbon($dt->copy()->round(0.25), 2315, 7, 18, 22, 42, 17, 750000);\n        $this->assertCarbon($dt->copy()->round(3.8), 2315, 7, 18, 22, 42, 19, 800000);\n\n        $this->assertCarbon($dt->copy()->floor(5), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->floor()->floor(5), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->floor(3), 2315, 7, 18, 22, 42, 15, 0);\n        $this->assertCarbon($dt->copy()->floor(4), 2315, 7, 18, 22, 42, 16, 0);\n        $this->assertCarbon($dt->copy()->floor(10), 2315, 7, 18, 22, 42, 10, 0);\n        $this->assertCarbon($dt->copy()->floor(0.5), 2315, 7, 18, 22, 42, 17, 500000);\n        $this->assertCarbon($dt->copy()->floor(0.25), 2315, 7, 18, 22, 42, 17, 500000);\n        $this->assertCarbon($dt->copy()->floor(3.8), 2315, 7, 18, 22, 42, 15, 0);\n\n        $this->assertCarbon($dt->copy()->ceil(5), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->floor()->ceil(5), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->ceil(3), 2315, 7, 18, 22, 42, 18, 0);\n        $this->assertCarbon($dt->copy()->ceil(4), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->ceil(10), 2315, 7, 18, 22, 42, 20, 0);\n        $this->assertCarbon($dt->copy()->ceil(0.5), 2315, 7, 18, 22, 42, 18, 0);\n        $this->assertCarbon($dt->copy()->ceil(0.25), 2315, 7, 18, 22, 42, 17, 750000);\n        $this->assertCarbon($dt->copy()->ceil(3.8), 2315, 7, 18, 22, 42, 19, 800000);\n    }\n\n    public function testRoundWithBaseUnit()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->roundSecond();\n        $this->assertNotEquals($ref, $copy);\n        $this->assertNotSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->roundDay(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundDay(5), 2315, 7, 21, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilDay(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorDay(), 2315, 7, 18, 0, 0, 0, 0);\n\n        $this->assertCarbon($dt->copy()->roundYear(), 2316, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->subMonths(2)->roundYear(), 2315, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundYear(2), 2315, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorYear(2), 2315, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilYear(2), 2317, 1, 1, 0, 0, 0, 0);\n\n        $this->assertCarbon($dt->copy()->roundMonth(), 2315, 8, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorMonth(), 2315, 7, 1, 0, 0, 0, 0);\n    }\n\n    public function testRoundWithMetaUnit()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->roundSecond();\n        $this->assertNotEquals($ref, $copy);\n        $this->assertNotSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->roundMillisecond(), 2315, 7, 18, 22, 42, 17, 644000);\n        $this->assertCarbon($dt->copy()->roundMillennium(), 2001, 1, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundQuarter(), 2315, 7, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundQuarters(2), 2315, 7, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->subMonth()->floorQuarter(), 2315, 4, 1, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->subMonth()->floorQuarters(2), 2315, 1, 1, 0, 0, 0, 0);\n    }\n\n    public function testRoundWeek()\n    {\n        $dt = Carbon::create(2315, 7, 18, 22, 42, 17.643971);\n        $copy = $dt->copy();\n        $ref = $copy->roundSecond();\n        $this->assertNotEquals($ref, $copy);\n        $this->assertNotSame($ref, $copy);\n        $this->assertCarbon($ref, 2315, 7, 18, 22, 42, 18, 0);\n\n        $this->assertCarbon($dt->copy()->floorWeek(), 2315, 7, 12, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilWeek(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundWeek(), 2315, 7, 19, 0, 0, 0, 0);\n\n        $dt = Carbon::create(2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->floorWeek(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->ceilWeek(), 2315, 7, 19, 0, 0, 0, 0);\n        $this->assertCarbon($dt->copy()->roundWeek(), 2315, 7, 19, 0, 0, 0, 0);\n    }\n\n    public function testCeilMonth()\n    {\n        $this->assertCarbon(Carbon::parse('2021-01-29')->ceilMonth(), 2021, 2, 1, 0, 0, 0);\n        $this->assertCarbon(Carbon::parse('2021-01-31')->ceilMonth(), 2021, 2, 1, 0, 0, 0);\n        $this->assertCarbon(Carbon::parse('2021-12-17')->ceilMonth(), 2022, 1, 1, 0, 0, 0);\n    }\n\n    public function testFloorMonth()\n    {\n        $this->assertCarbon(Carbon::parse('2021-05-31')->floorMonth(3), 2021, 4, 1, 0, 0, 0);\n    }\n\n    public function testRoundInvalidArgument()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'foobar\\'.',\n        ));\n\n        Carbon::now()->roundUnit('foobar');\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/SerializationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonTimeZone;\nuse DateTimeImmutable;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhpExtension;\nuse ReflectionClass;\nuse ReflectionObject;\nuse ReflectionProperty;\nuse Tests\\AbstractTestCase;\nuse Throwable;\n\nclass SerializationTest extends AbstractTestCase\n{\n    protected string $serialized;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->serialized = \\extension_loaded('msgpack')\n            ? 'O:22:\"Carbon\\CarbonImmutable\":4:{s:4:\"date\";s:26:\"2016-02-01 13:20:25.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";s:18:\"dumpDateProperties\";a:2:{s:4:\"date\";s:26:\"2016-02-01 13:20:25.000000\";s:8:\"timezone\";s:15:\"America/Toronto\";}}'\n            : 'O:22:\"Carbon\\CarbonImmutable\":3:{s:4:\"date\";s:26:\"2016-02-01 13:20:25.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}';\n    }\n\n    protected function cleanSerialization(string $serialization): string\n    {\n        return preg_replace('/s:\\d+:\"[^\"]*dumpDateProperties\"/', 's:18:\"dumpDateProperties\"', $serialization);\n    }\n\n    public function testSerialize()\n    {\n        $dt = Carbon::create(2016, 2, 1, 13, 20, 25);\n        $this->assertSame($this->serialized, $this->cleanSerialization($dt->serialize()));\n        $this->assertSame($this->serialized, $this->cleanSerialization(serialize($dt)));\n    }\n\n    public function testFromUnserialized()\n    {\n        $dt = Carbon::fromSerialized($this->serialized);\n        $this->assertCarbon($dt, 2016, 2, 1, 13, 20, 25);\n        $timezone = $dt->getTimezone();\n        $this->assertSame(CarbonTimeZone::class, $timezone::class);\n        $this->assertSame('America/Toronto', $timezone->getName());\n\n        $dt = unserialize($this->serialized);\n        $timezone = $dt->getTimezone();\n        $this->assertCarbon($dt, 2016, 2, 1, 13, 20, 25);\n        $this->assertSame(CarbonTimeZone::class, $timezone::class);\n        $this->assertSame('America/Toronto', $timezone->getName());\n    }\n\n    public function testSerialization()\n    {\n        $this->assertEquals(Carbon::now(), unserialize(serialize(Carbon::now())));\n    }\n\n    public static function dataForTestFromUnserializedWithInvalidValue()\n    {\n        return [\n            [null],\n            [true],\n            [false],\n            [123],\n            ['foobar'],\n        ];\n    }\n\n    #[DataProvider('dataForTestFromUnserializedWithInvalidValue')]\n    public function testFromUnserializedWithInvalidValue(mixed $value)\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Invalid serialized value: $value\",\n        ));\n\n        Carbon::fromSerialized($value);\n    }\n\n    public function testDateSerializationReflectionCompatibility()\n    {\n        $tz = $this->firstValidTimezoneAmong(['America/Los_Angeles', 'US/Pacific'])->getName();\n\n        try {\n            $reflection = (new ReflectionClass(DateTimeImmutable::class))->newInstanceWithoutConstructor();\n\n            @$reflection->date = '1990-01-17 10:28:07';\n            @$reflection->timezone_type = 3;\n            @$reflection->timezone = $tz;\n\n            $date = unserialize(serialize($reflection));\n        } catch (Throwable $exception) {\n            $this->markTestSkipped(\n                \"It fails on DateTime so Carbon can't support it, error was:\\n\".$exception->getMessage()\n            );\n        }\n\n        $this->assertSame('1990-01-17 10:28:07', $date->format('Y-m-d h:i:s'));\n\n        $reflection = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n\n        @$reflection->date = '1990-01-17 10:28:07';\n        @$reflection->timezone_type = 3;\n        @$reflection->timezone = $tz;\n\n        $date = unserialize(serialize($reflection));\n\n        $this->assertSame('1990-01-17 10:28:07', $date->format('Y-m-d h:i:s'));\n\n        $reflection = new ReflectionObject(Carbon::parse('1990-01-17 10:28:07'));\n        $target = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n        /** @var ReflectionProperty[] $properties */\n        $properties = [];\n\n        foreach ($reflection->getProperties() as $property) {\n            $properties[$property->getName()] = $property;\n        }\n\n        $setValue = function ($key, $value) use (&$properties, &$target) {\n            if (isset($properties[$key])) {\n                $properties[$key]->setValue($target, $value);\n\n                return;\n            }\n\n            @$target->$key = $value;\n        };\n\n        $setValue('date', '1990-01-17 10:28:07');\n        $setValue('timezone_type', 3);\n        $setValue('timezone', $tz);\n\n        $date = unserialize(serialize($target));\n\n        $this->assertSame('1990-01-17 10:28:07', $date->format('Y-m-d h:i:s'));\n    }\n\n    #[RequiresPhpExtension('msgpack')]\n    public function testMsgPackExtension(): void\n    {\n        $string = '2018-06-01 21:25:13.321654 Europe/Vilnius';\n        $date = Carbon::parse('2018-06-01 21:25:13.321654 Europe/Vilnius');\n        $message = @msgpack_pack($date);\n        $copy = msgpack_unpack($message);\n\n        $this->assertSame($string, $copy->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testSerializeRawMethod(): void\n    {\n        $date = Carbon::parse('2018-06-01 21:25:13.321654 Europe/Vilnius');\n\n        $expected = [\n            'date' => '2018-06-01 21:25:13.321654',\n            'timezone_type' => 3,\n            'timezone' => 'Europe/Vilnius',\n        ];\n\n        if (\\extension_loaded('msgpack')) {\n            $expected['dumpDateProperties'] = [\n                'date' => $date->format('Y-m-d H:i:s.u'),\n                'timezone' => $date->tzName,\n            ];\n        }\n\n        $this->assertSame($expected, $date->__serialize());\n\n        $date->locale('lt_LT');\n        $expected['dumpLocale'] = 'lt_LT';\n\n        $this->assertSame($expected, $date->__serialize());\n    }\n\n    public function testNewInstanceWithoutConstructor(): void\n    {\n        $tz = $this->firstValidTimezoneAmong(['America/Los_Angeles', 'US/Pacific'])->getName();\n\n        /** @var Carbon $date */\n        $date = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n\n        @$date->date = '1990-01-17 10:28:07';\n        @$date->timezone_type = 3;\n        @$date->timezone = $tz;\n        @$date->dumpLocale = 'es';\n\n        @$date->constructedObjectId = spl_object_hash($this);\n        $date->__construct('1990-01-17 10:28:07', $tz);\n        $date->locale('es');\n\n        $this->assertSame('1990-01-17 10:28:07 '.$tz, $date->format('Y-m-d H:i:s e'));\n        $this->assertSame('es', $date->locale);\n    }\n\n    public function testUnserializeRawMethod(): void\n    {\n        /** @var Carbon $date */\n        $date = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n\n        $date->__unserialize([\n            'date' => '2018-06-01 21:25:13.321654',\n            'timezone_type' => 3,\n            'timezone' => 'Europe/Vilnius',\n        ]);\n\n        $this->assertSame('2018-06-01 21:25:13.321654 Europe/Vilnius', $date->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('en', $date->locale);\n\n        /** @var Carbon $date */\n        $date = (new ReflectionClass(Carbon::class))->newInstanceWithoutConstructor();\n\n        $date->__unserialize([\n            'date' => '2018-06-01 21:25:13.321654',\n            'timezone_type' => 3,\n            'timezone' => 'Europe/Vilnius',\n            'dumpLocale' => 'lt_LT',\n        ]);\n\n        $this->assertSame('2018-06-01 21:25:13.321654 Europe/Vilnius', $date->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('lt_LT', $date->locale);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/SetDateAndTimeFromTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass SetDateAndTimeFromTest extends AbstractTestCase\n{\n    public function testSetDateFrom()\n    {\n        $this->assertCarbon(\n            Carbon::create(2001, 1, 1, 1, 1, 1)\n                ->setDateFrom(Carbon::create(2002, 2, 2, 2, 2, 2)),\n            2002,\n            2,\n            2,\n            1,\n            1,\n            1,\n        );\n    }\n\n    public function testSetTimeFrom()\n    {\n        $this->assertCarbon(\n            Carbon::create(2001, 1, 1, 1, 1, 1)\n                ->setTimeFrom(Carbon::create(2002, 2, 2, 2, 2, 2)),\n            2001,\n            1,\n            1,\n            2,\n            2,\n            2,\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/SetStateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\Traits\\Serialization;\nuse stdClass;\nuse Tests\\AbstractTestCase;\n\nclass SetStateTest extends AbstractTestCase\n{\n    public function testSteState(): void\n    {\n        $obj = new class(null) {\n            use Serialization;\n\n            public function __construct(public mixed $data)\n            {\n            }\n\n            public static function instance($value): static\n            {\n                return new static($value);\n            }\n\n            public function callSetState($value)\n            {\n                return static::__set_state($value);\n            }\n        };\n\n        $data = $obj->callSetState(['foo' => 'bar']);\n\n        $this->assertInstanceOf(\\get_class($obj), $data);\n        $this->assertInstanceOf(stdClass::class, $data->data);\n        $this->assertSame('bar', $data->data->foo);\n        $this->assertSame(['foo' => 'bar'], (array) $data->data);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/SettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\Exceptions\\UnitException;\nuse Carbon\\Month;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse RuntimeException;\nuse Tests\\AbstractTestCase;\n\nclass SettersTest extends AbstractTestCase\n{\n    public function testYearSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->year = 1995;\n    }\n\n    public function testMonthSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->month = 3;\n    }\n\n    public function testMonthEnumOnWrongUnit()\n    {\n        $this->expectExceptionObject(new UnitException(\n            'Month enum cannot be used to set hour',\n        ));\n\n        $d = Carbon::now();\n        $d->setHours(Month::February);\n    }\n\n    public function testMonthEnum()\n    {\n        $d = Carbon::parse('2023-10-25 21:14:51');\n        $result = $d->setMonth(Month::February);\n\n        $this->assertSame('2023-02-25 21:14:51', $result->format('Y-m-d H:i:s'));\n\n        $result = $d->setMonth(Month::July);\n\n        $this->assertSame('2023-07-25 21:14:51', $result->format('Y-m-d H:i:s'));\n    }\n\n    public function testMonthFloatFailWithDecimalPart()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'month cannot be changed to float value 2.5, integer expected',\n        ));\n\n        $d = Carbon::parse('2023-10-25 21:14:51');\n        $d->setMonth(2.5);\n    }\n\n    public function testMonthFloatPassWithZeroDecimalPart()\n    {\n        $d = Carbon::parse('2023-10-25 21:14:51');\n        $result = $d->setMonth(2.0);\n\n        $this->assertSame('2023-02-25 21:14:51', $result->format('Y-m-d H:i:s'));\n    }\n\n    public function testMonthSetterWithWrap()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->month = 13;\n    }\n\n    public function testDaySetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->day = 2;\n    }\n\n    public function testDaySetterWithWrap()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::createFromDate(2012, 8, 5);\n        $d->day = 32;\n    }\n\n    public function testHourSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->hour = 2;\n    }\n\n    public function testHourSetterWithWrap()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->hour = 25;\n    }\n\n    public function testMinuteSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->minute = 2;\n    }\n\n    public function testMinuteSetterWithWrap()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->minute = 65;\n    }\n\n    public function testSecondSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->second = 2;\n    }\n\n    public function testTimeSetter()\n    {\n        $d = Carbon::now();\n        $d = $d->setTime(1, 1, 1);\n        $this->assertSame(1, $d->second);\n        $d = $d->setTime(1, 1);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testTimeSetterWithChaining()\n    {\n        $d = Carbon::now();\n        $d = $d->setTime(2, 2, 2)->setTime(1, 1, 1);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertSame(1, $d->second);\n        $d = $d->setTime(2, 2, 2)->setTime(1, 1);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testTimeSetterWithZero()\n    {\n        $d = Carbon::now();\n        $d = $d->setTime(1, 1);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testDateTimeSetter()\n    {\n        $d = Carbon::now();\n        $d = $d->setDateTime($d->year, $d->month, $d->day, 1, 1, 1);\n        $this->assertSame(1, $d->second);\n    }\n\n    public function testDateTimeSetterWithZero()\n    {\n        $d = Carbon::now();\n        $d = $d->setDateTime($d->year, $d->month, $d->day, 1, 1);\n        $this->assertSame(0, $d->second);\n    }\n\n    public function testDateTimeSetterWithChaining()\n    {\n        $d = Carbon::now();\n        $d = $d->setDateTime(2013, 9, 24, 17, 4, 29);\n        $this->assertInstanceOfCarbon($d);\n        $d = $d->setDateTime(2014, 10, 25, 18, 5, 30);\n        $this->assertInstanceOfCarbon($d);\n        $this->assertCarbon($d, 2014, 10, 25, 18, 5, 30);\n    }\n\n    /**\n     * @link https://github.com/briannesbitt/Carbon/issues/539\n     */\n    public function testSetDateAfterStringCreation()\n    {\n        $d = new Carbon('first day of this month');\n        $this->assertSame(1, $d->day);\n        $d = $d->setDate($d->year, $d->month, 12);\n        $this->assertSame(12, $d->day);\n    }\n\n    public function testSecondSetterWithWrap()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->second = 65;\n    }\n\n    public function testTimestampSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        $d = Carbon::now();\n        $d->timestamp = 10;\n    }\n\n    public function testSetTimezoneWithInvalidTimezone()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        $d = Carbon::now();\n        $d->setTimezone('sdf');\n    }\n\n    public function testTimezoneWithInvalidTimezone()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->timezone = 'sdf';\n    }\n\n    public function testTimezoneWithInvalidTimezoneSetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        $d = Carbon::now();\n        $d->timezone('sdf');\n    }\n\n    public function testTzWithInvalidTimezone()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->tz = 'sdf';\n    }\n\n    public function testTzWithInvalidTimezoneSetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown or bad timezone (sdf)',\n        ));\n\n        $d = Carbon::now();\n        $d->tz('sdf');\n    }\n\n    public function testSetTimezoneUsingString()\n    {\n        $d = Carbon::now();\n        $d = $d->setTimezone('America/Toronto');\n        $this->assertSame('America/Toronto', $d->tzName);\n    }\n\n    public function testShiftTimezone()\n    {\n        $d = Carbon::parse('2018-08-13 10:53:12', 'Europe/Paris');\n        $d2 = $d->copy()->setTimezone('America/Toronto');\n        $this->assertSame(0, $d2->getTimestamp() - $d->getTimestamp());\n        $this->assertSame('04:53:12', $d2->format('H:i:s'));\n\n        $d = Carbon::parse('2018-08-13 10:53:12', 'Europe/Paris');\n        $d2 = $d->copy()->shiftTimezone('America/Toronto');\n        $this->assertSame(21600, $d2->getTimestamp() - $d->getTimestamp());\n        $this->assertSame('America/Toronto', $d2->tzName);\n        $this->assertSame('10:53:12', $d2->format('H:i:s'));\n\n        $d = Carbon::parse('2018-03-25 00:53:12.321654 America/Toronto')->shiftTimezone('Europe/Oslo');\n        $this->assertSame('2018-03-25 00:53:12.321654 Europe/Oslo', $d->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testTimezoneUsingString()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->timezone = 'America/Toronto';\n    }\n\n    public function testTzUsingString()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->tz = 'America/Toronto';\n    }\n\n    public function testSetTimezoneUsingDateTimeZone()\n    {\n        $d = Carbon::now();\n        $d = $d->setTimezone(new DateTimeZone('America/Toronto'));\n        $this->assertSame('America/Toronto', $d->tzName);\n    }\n\n    public function testTimezoneUsingDateTimeZone()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->timezone = new DateTimeZone('America/Toronto');\n    }\n\n    public function testTzUsingDateTimeZone()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->tz = new DateTimeZone('America/Toronto');\n    }\n\n    public function testInvalidSetter()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Carbon\\CarbonImmutable class is immutable.',\n        ));\n\n        /** @var mixed $d */\n        $d = Carbon::now();\n        $d->doesNotExit = 'bb';\n    }\n\n    #[TestWith([9, 15, 30, '09:15:30'])]\n    #[TestWith([9, 15, 0, '09:15'])]\n    #[TestWith([9, 0, 0, '09'])]\n    #[TestWith([9, 5, 3, '9:5:3'])]\n    #[TestWith([9, 5, 0, '9:5'])]\n    #[TestWith([9, 0, 0, '9'])]\n    public function testSetTimeFromTimeString(int $hour, int $minute, int $second, string $time)\n    {\n        Carbon::setTestNow(Carbon::create(2016, 2, 12, 1, 2, 3));\n        $d = Carbon::now()->setTimeFromTimeString($time);\n        $this->assertCarbon($d, 2016, 2, 12, $hour, $minute, $second);\n    }\n\n    public function testWeekendDaysSetter()\n    {\n        $weekendDays = [Carbon::FRIDAY, Carbon::SATURDAY];\n        $d = Carbon::now();\n        $d->setWeekendDays($weekendDays);\n        $this->assertSame($weekendDays, $d->getWeekendDays());\n        Carbon::setWeekendDays([Carbon::SATURDAY, Carbon::SUNDAY]);\n    }\n\n    public function testMidDayAtSetter()\n    {\n        $d = Carbon::now();\n        $d->setMidDayAt(11);\n        $this->assertSame(11, $d->getMidDayAt());\n        $d->setMidDayAt(12);\n        $this->assertSame(12, $d->getMidDayAt());\n    }\n\n    public function testSetter()\n    {\n        $d = Carbon::now();\n        $d->setMidDayAt(11);\n        $this->assertSame(11, $d->getMidDayAt());\n        $d->setMidDayAt(12);\n        $this->assertSame(12, $d->getMidDayAt());\n    }\n\n    public function testSetUnitNoOverflowFebruary()\n    {\n        $d = Carbon::parse('2024-02-29')->setUnitNoOverFlow('day', 31, 'month');\n\n        $this->assertInstanceOf(Carbon::class, $d);\n        $this->assertSame('2024-02-29 23:59:59.999999', $d->format('Y-m-d H:i:s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/SettingsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Tests\\AbstractTestCase;\n\nclass SettingsTest extends AbstractTestCase\n{\n    public function testSettings()\n    {\n        $paris = Carbon::parse('2018-01-31 00:00:00')->settings([\n            'timezone' => 'Europe/Paris',\n            'locale' => 'fr_FR',\n            'monthOverflow' => true,\n            'yearOverflow' => true,\n        ]);\n        $this->assertEquals([\n            'timezone' => 'Europe/Paris',\n            'locale' => 'fr_FR',\n            'monthOverflow' => true,\n            'yearOverflow' => true,\n        ], $paris->getSettings());\n        $saoPaulo = Carbon::parse('2018-01-31 00:00:00')->settings([\n            'timezone' => 'America/Sao_Paulo',\n            'locale' => 'pt',\n            'monthOverflow' => false,\n            'yearOverflow' => false,\n        ]);\n        $this->assertEquals([\n            'timezone' => 'America/Sao_Paulo',\n            'locale' => 'pt',\n            'monthOverflow' => false,\n            'yearOverflow' => false,\n        ], $saoPaulo->getSettings());\n\n        $this->assertSame('2 jours 1 heure avant', $paris->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), null, false, 3));\n        $this->assertSame('4 dias 21 horas antes', $saoPaulo->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), null, false, 3));\n        $this->assertSame('2 jours et une heure avant', $paris->addMonth()->from(Carbon::parse('2018-03-05', 'UTC'), ['parts' => 3, 'join' => true, 'aUnit' => true]));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/StartEndOfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass StartEndOfTest extends AbstractTestCase\n{\n    public function testStartOfDay()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt2 = $dt->startOfDay());\n        $this->assertCarbon($dt2, $dt->year, $dt->month, $dt->day, 0, 0, 0, 0);\n    }\n\n    public function testEndOfDay()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt2 = $dt->endOfDay());\n        $this->assertCarbon($dt2, $dt->year, $dt->month, $dt->day, 23, 59, 59, 999999);\n    }\n\n    public function testStartOfMonthIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfMonth());\n    }\n\n    public function testStartOfMonthFromNow()\n    {\n        $dt = Carbon::now()->startOfMonth();\n        $this->assertCarbon($dt, $dt->year, $dt->month, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMonthFromLastDay()\n    {\n        $dt = Carbon::create(2000, 1, 31, 2, 3, 4)->startOfMonth();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfYearIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfYear());\n    }\n\n    public function testStartOfYearFromNow()\n    {\n        $dt = Carbon::now()->startOfYear();\n        $this->assertCarbon($dt, $dt->year, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfYearFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->startOfYear();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfYearFromLastDay()\n    {\n        $dt = Carbon::create(2000, 12, 31, 23, 59, 59)->startOfYear();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testEndOfMonthIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfMonth());\n    }\n\n    public function testEndOfMonth()\n    {\n        $dt = Carbon::create(2000, 1, 1, 2, 3, 4)->endOfMonth();\n        $this->assertCarbon($dt, 2000, 1, 31, 23, 59, 59);\n    }\n\n    public function testEndOfMonthFromLastDay()\n    {\n        $dt = Carbon::create(2000, 1, 31, 2, 3, 4)->endOfMonth();\n        $this->assertCarbon($dt, 2000, 1, 31, 23, 59, 59);\n    }\n\n    public function testEndOfYearIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfYear());\n    }\n\n    public function testEndOfYearFromNow()\n    {\n        $dt = Carbon::now()->endOfYear();\n        $this->assertCarbon($dt, $dt->year, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfYearFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->endOfYear();\n        $this->assertCarbon($dt, 2000, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfYearFromLastDay()\n    {\n        $dt = Carbon::create(2000, 12, 31, 23, 59, 59)->endOfYear();\n        $this->assertCarbon($dt, 2000, 12, 31, 23, 59, 59);\n    }\n\n    public function testStartOfDecadeIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfDecade());\n    }\n\n    public function testStartOfDecadeFromNow()\n    {\n        $dt = Carbon::now()->startOfDecade();\n        $this->assertCarbon($dt, $dt->year - $dt->year % 10, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfDecadeFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->startOfDecade();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfDecadeFromLastDay()\n    {\n        $dt = Carbon::create(2009, 12, 31, 23, 59, 59)->startOfDecade();\n        $this->assertCarbon($dt, 2000, 1, 1, 0, 0, 0);\n    }\n\n    public function testEndOfDecadeIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfDecade());\n    }\n\n    public function testEndOfDecadeFromNow()\n    {\n        $dt = Carbon::now()->endOfDecade();\n        $this->assertCarbon($dt, $dt->year - $dt->year % 10 + 9, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfDecadeFromFirstDay()\n    {\n        $dt = Carbon::create(2000, 1, 1, 1, 1, 1)->endOfDecade();\n        $this->assertCarbon($dt, 2009, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfDecadeFromLastDay()\n    {\n        $dt = Carbon::create(2009, 12, 31, 23, 59, 59)->endOfDecade();\n        $this->assertCarbon($dt, 2009, 12, 31, 23, 59, 59);\n    }\n\n    public function testStartOfCenturyIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfCentury());\n    }\n\n    public function testStartOfCenturyFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfCentury();\n        $this->assertCarbon($dt, $now->year - $now->year % 100 + 1, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfCenturyFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfCentury();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfCenturyFromLastDay()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfCentury();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMillenniumIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfMillennium());\n    }\n\n    public function testStartOfMillenniumFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfMillennium();\n        $this->assertCarbon($dt, $now->year - $now->year % 1000 + 1, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMillenniumFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfMillennium();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfMillenniumFromLastDay()\n    {\n        $dt = Carbon::create(3000, 12, 31, 23, 59, 59)->startOfMillennium();\n        $this->assertCarbon($dt, 2001, 1, 1, 0, 0, 0);\n    }\n\n    public function testStartOfHourIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfHour());\n    }\n\n    public function testStartOfHourFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfHour();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, 0, 0);\n    }\n\n    public function testStartOfHourFromFirstMinute()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 0, 0);\n    }\n\n    public function testStartOfHourFromLastMinute()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 0, 0);\n    }\n\n    public function testEndOfHourIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfHour());\n    }\n\n    public function testEndOfHourFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfHour();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, 59, 59);\n    }\n\n    public function testEndOfHourFromFirstMinute()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, rand(0, 59))->endOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 59, 59);\n    }\n\n    public function testEndOfHourFromLastMinute()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, rand(0, 59))->endOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, 59, 59);\n    }\n\n    public function testStartOfMinuteIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfMinute());\n    }\n\n    public function testStartOfMinuteFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->startOfMinute();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, $now->minute, 0);\n    }\n\n    public function testStartOfMinuteFromFirstSecond()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->startOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 0);\n    }\n\n    public function testStartOfMinuteFromLastSecond()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->startOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 0);\n    }\n\n    public function testEndOfMinuteIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfMinute());\n    }\n\n    public function testEndOfMinuteFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfMinute();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, $now->hour, $now->minute, 59);\n    }\n\n    public function testEndOfMinuteFromFirstSecond()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->endOfMinute();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 59);\n    }\n\n    public function testEndOfMinuteFromLastSecond()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->endOfHour();\n        $this->assertCarbon($dt, $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, 59);\n    }\n\n    public function testMidDayIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->midDay());\n    }\n\n    public function testMidDayFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->midDay();\n        $this->assertCarbon($dt, $now->year, $now->month, $now->day, 12, 0, 0);\n    }\n\n    public function testEndOfCenturyIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfCentury());\n    }\n\n    public function testEndOfCenturyFromNow()\n    {\n        $now = Carbon::now();\n        $dt = Carbon::now()->endOfCentury();\n        $this->assertCarbon($dt, $now->year - $now->year % 100 + 100, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfCenturyFromFirstDay()\n    {\n        $dt = Carbon::create(2001, 1, 1, 1, 1, 1)->endOfCentury();\n        $this->assertCarbon($dt, 2100, 12, 31, 23, 59, 59);\n    }\n\n    public function testEndOfCenturyFromLastDay()\n    {\n        $dt = Carbon::create(2100, 12, 31, 23, 59, 59)->endOfCentury();\n        $this->assertCarbon($dt, 2100, 12, 31, 23, 59, 59);\n    }\n\n    public function testStartOfQuarterIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->startOfQuarter());\n    }\n\n    #[TestWith([1, 1])]\n    #[TestWith([2, 1])]\n    #[TestWith([3, 1])]\n    #[TestWith([4, 4])]\n    #[TestWith([5, 4])]\n    #[TestWith([6, 4])]\n    #[TestWith([7, 7])]\n    #[TestWith([8, 7])]\n    #[TestWith([9, 7])]\n    #[TestWith([10, 10])]\n    #[TestWith([11, 10])]\n    #[TestWith([12, 10])]\n    public function testStartOfQuarter(int $month, int $startOfQuarterMonth)\n    {\n        $dt = Carbon::create(2015, $month, 15, 1, 2, 3);\n        $this->assertCarbon($dt->startOfQuarter(), 2015, $startOfQuarterMonth, 1, 0, 0, 0);\n    }\n\n    public function testEndOfQuarterIsFluid()\n    {\n        $dt = Carbon::now();\n        $this->assertInstanceOfCarbon($dt->endOfQuarter());\n    }\n\n    #[TestWith([1, 3, 31])]\n    #[TestWith([2, 3, 31])]\n    #[TestWith([3, 3, 31])]\n    #[TestWith([4, 6, 30])]\n    #[TestWith([5, 6, 30])]\n    #[TestWith([6, 6, 30])]\n    #[TestWith([7, 9, 30])]\n    #[TestWith([8, 9, 30])]\n    #[TestWith([9, 9, 30])]\n    #[TestWith([10, 12, 31])]\n    #[TestWith([11, 12, 31])]\n    #[TestWith([12, 12, 31])]\n    public function testEndOfQuarter(int $month, int $endOfQuarterMonth, int $endOfQuarterDay)\n    {\n        $dt = Carbon::create(2015, $month, 15, 1, 2, 3);\n        $this->assertCarbon($dt->endOfQuarter(), 2015, $endOfQuarterMonth, $endOfQuarterDay, 23, 59, 59);\n    }\n\n    public function testAverageIsFluid()\n    {\n        $dt = Carbon::now()->average();\n        $this->assertInstanceOfCarbon($dt);\n    }\n\n    public function testAverageFromSame()\n    {\n        $dt1 = Carbon::create(2000, 1, 31, 2, 3, 4);\n        $dt2 = Carbon::create(2000, 1, 31, 2, 3, 4)->average($dt1);\n        $this->assertCarbon($dt2, 2000, 1, 31, 2, 3, 4);\n    }\n\n    public function testAverageFromGreater()\n    {\n        $dt1 = Carbon::create(2000, 1, 1, 1, 1, 1);\n        $dt2 = Carbon::create(2009, 12, 31, 23, 59, 59)->average($dt1);\n        $this->assertCarbon($dt2, 2004, 12, 31, 12, 30, 30);\n    }\n\n    public function testAverageFromLower()\n    {\n        $dt1 = Carbon::create(2009, 12, 31, 23, 59, 59);\n        $dt2 = Carbon::create(2000, 1, 1, 1, 1, 1)->average($dt1);\n        $this->assertCarbon($dt2, 2004, 12, 31, 12, 30, 30);\n    }\n\n    public function testAverageWithCloseDates()\n    {\n        $dt1 = Carbon::parse('2004-01-24 09:46:56.500000');\n        $dt2 = Carbon::parse('2004-01-24 09:46:56.600000');\n\n        $this->assertSame('2004-01-24 09:46:56.550000', $dt1->average($dt2)->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testAverageWithFarDates()\n    {\n        $dt1 = Carbon::parse('-2018-05-07 12:34:46.500000', 'UTC');\n        $dt2 = Carbon::parse('6025-10-11 20:59:06.600000', 'UTC');\n\n        $this->assertSame('2004-01-24 04:46:56.550000', $dt1->average($dt2)->format('Y-m-d H:i:s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/StringsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\FactoryImmutable;\nuse DateTime;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\nuse Tests\\CarbonImmutable\\Fixtures\\BadIsoCarbon;\n\nclass StringsTest extends AbstractTestCase\n{\n    public function testToString()\n    {\n        $d = Carbon::now();\n        $this->assertSame(Carbon::now()->toDateTimeString(), ''.$d);\n    }\n\n    public function testSetToStringFormatString()\n    {\n        Carbon::setToStringFormat('jS \\o\\f F, Y g:i:s a');\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('25th of December, 1975 2:15:16 pm', ''.$d);\n    }\n\n    public function testSetToStringFormatClosure()\n    {\n        Carbon::setToStringFormat(function (CarbonInterface $d) {\n            $format = $d->year === 1976 ?\n                'jS \\o\\f F g:i:s a' :\n                'jS \\o\\f F, Y g:i:s a';\n\n            return $d->format($format);\n        });\n\n        $d = Carbon::create(1976, 12, 25, 14, 15, 16);\n        $this->assertSame('25th of December 2:15:16 pm', ''.$d);\n\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('25th of December, 1975 2:15:16 pm', ''.$d);\n    }\n\n    public function testSetToStringFormatViaSettings()\n    {\n        $factory = new FactoryImmutable([\n            'toStringFormat' => function (CarbonInterface $d) {\n                return $d->isoFormat('dddd');\n            },\n        ]);\n\n        $d = $factory->create(1976, 12, 25, 14, 15, 16);\n        $this->assertSame('Saturday', ''.$d);\n    }\n\n    public function testResetToStringFormat()\n    {\n        $d = Carbon::now();\n        Carbon::setToStringFormat('123');\n        Carbon::resetToStringFormat();\n        $this->assertSame($d->toDateTimeString(), ''.$d);\n    }\n\n    public function testExtendedClassToString()\n    {\n        $d = MyCarbon::now();\n        $this->assertSame($d->toDateTimeString(), ''.$d);\n    }\n\n    public function testToDateString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25', $d->toDateString());\n    }\n\n    public function testToFormattedDateString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Dec 25, 1975', $d->toFormattedDateString());\n    }\n\n    public function testToTimeString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('14:15:16', $d->toTimeString());\n    }\n\n    public function testToDateTimeString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25 14:15:16', $d->toDateTimeString());\n    }\n\n    public function testToDateTimeStringWithPaddedZeroes()\n    {\n        $d = Carbon::create(2000, 5, 2, 4, 3, 4);\n        $this->assertSame('2000-05-02 04:03:04', $d->toDateTimeString());\n    }\n\n    public function testToDayDateTimeString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, Dec 25, 1975 2:15 PM', $d->toDayDateTimeString());\n    }\n\n    public function testToAtomString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toAtomString());\n    }\n\n    public function testToCOOKIEString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame(\n            DateTime::COOKIE === 'l, d-M-y H:i:s T'\n                ? 'Thursday, 25-Dec-75 14:15:16 EST'\n                : 'Thursday, 25-Dec-1975 14:15:16 EST',\n            $d->toCookieString(),\n        );\n    }\n\n    public function testToIso8601String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toIso8601String());\n    }\n\n    public function testToIso8601ZuluString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T19:15:16Z', $d->toIso8601ZuluString());\n    }\n\n    public function testToRC822String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 75 14:15:16 -0500', $d->toRfc822String());\n    }\n\n    public function testToRfc850String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thursday, 25-Dec-75 14:15:16 EST', $d->toRfc850String());\n    }\n\n    public function testToRfc1036String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 75 14:15:16 -0500', $d->toRfc1036String());\n    }\n\n    public function testToRfc1123String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 -0500', $d->toRfc1123String());\n    }\n\n    public function testToRfc2822String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 -0500', $d->toRfc2822String());\n    }\n\n    public function testToRfc3339String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toRfc3339String());\n\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16.000-05:00', $d->toRfc3339String(true));\n    }\n\n    public function testToRssString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 -0500', $d->toRssString());\n    }\n\n    public function testToW3cString()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('1975-12-25T14:15:16-05:00', $d->toW3cString());\n    }\n\n    public function testToRfc7231String()\n    {\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16, 'GMT');\n        $this->assertSame('Thu, 25 Dec 1975 14:15:16 GMT', $d->toRfc7231String());\n\n        $d = Carbon::create(1975, 12, 25, 14, 15, 16);\n        $this->assertSame('Thu, 25 Dec 1975 19:15:16 GMT', $d->toRfc7231String());\n    }\n\n    public function testIsoFormat()\n    {\n        $d = Carbon::parse('midnight');\n        $this->assertSame('24', $d->isoFormat('k'));\n\n        $d = Carbon::parse('2017-01-01');\n        $this->assertSame('2017', $d->isoFormat('g'));\n        $this->assertSame('2017', $d->locale('en_US')->isoFormat('g'));\n        $this->assertSame('2016', $d->locale('fr')->isoFormat('g'));\n        $this->assertSame('2016', $d->isoFormat('G'));\n        $this->assertSame('2016', $d->locale('en_US')->isoFormat('G'));\n        $this->assertSame('2016', $d->locale('fr')->isoFormat('G'));\n\n        $d = Carbon::parse('2015-12-31');\n        $this->assertSame('2016', $d->isoFormat('g'));\n        $this->assertSame('2016', $d->locale('en_US')->isoFormat('g'));\n        $this->assertSame('2015', $d->locale('fr')->isoFormat('g'));\n        $this->assertSame('2015', $d->isoFormat('G'));\n        $this->assertSame('2015', $d->locale('en_US')->isoFormat('G'));\n        $this->assertSame('2015', $d->locale('fr')->isoFormat('G'));\n\n        $d = Carbon::parse('2017-01-01 22:25:24.182937');\n        $this->assertSame('1 18 182 1829 18293 182937', $d->isoFormat('S SS SSS SSSS SSSSS SSSSSS'));\n\n        $this->assertSame('02017 +002017', $d->isoFormat('YYYYY YYYYYY'));\n        $this->assertSame(-117, Carbon::create(-117, 1, 1)->year);\n        $this->assertSame('-00117 -000117', Carbon::create(-117, 1, 1)->isoFormat('YYYYY YYYYYY'));\n\n        $this->assertSame('M01', $d->isoFormat('\\\\MMM'));\n\n        $this->assertSame('Jan', $d->isoFormat('MMM'));\n        $this->assertSame('janv.', $d->locale('fr')->isoFormat('MMM'));\n        $this->assertSame('ene.', $d->locale('es')->isoFormat('MMM'));\n        $this->assertSame('1 de enero de 2017', $d->locale('es')->isoFormat('LL'));\n        $this->assertSame('1 de ene. de 2017', $d->locale('es')->isoFormat('ll'));\n\n        $this->assertSame('1st', Carbon::parse('2018-06-01')->isoFormat('Do'));\n        $this->assertSame('11th', Carbon::parse('2018-06-11')->isoFormat('Do'));\n        $this->assertSame('21st', Carbon::parse('2018-06-21')->isoFormat('Do'));\n        $this->assertSame('15th', Carbon::parse('2018-06-15')->isoFormat('Do'));\n    }\n\n    public function testBadIsoFormat()\n    {\n        $d = BadIsoCarbon::parse('midnight');\n\n        $this->assertSame('', $d->isoFormat('MMM'));\n    }\n\n    public function testTranslatedFormat()\n    {\n        $this->assertSame('1st', Carbon::parse('01-01-01')->translatedFormat('jS'));\n        $this->assertSame('1er', Carbon::parse('01-01-01')->locale('fr')->translatedFormat('jS'));\n        $this->assertSame('31 мая', Carbon::parse('2019-05-15')->locale('ru')->translatedFormat('t F'));\n        $this->assertSame('5 май', Carbon::parse('2019-05-15')->locale('ru')->translatedFormat('n F'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/SubTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Unit;\nuse DateTimeImmutable;\nuse Tests\\AbstractTestCase;\n\nclass SubTest extends AbstractTestCase\n{\n    public function testSubMethod()\n    {\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub('year', 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, Unit::Year)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(Unit::Year, 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub('2 years')->year);\n        $lastNegated = null;\n        $date = Carbon::createFromDate(1975)->sub(\n            function (DateTimeImmutable $date, bool $negated = false) use (&$lastNegated): DateTimeImmutable {\n                $lastNegated = $negated;\n\n                return new DateTimeImmutable($date->format('Y-m-d H:i:s').' - 2 years');\n            },\n        );\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(1973, $date->year);\n        $this->assertTrue($lastNegated);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract('year', 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, Unit::Year)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(Unit::Year, 2)->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract('2 years')->year);\n        $lastNegated = null;\n        $this->assertSame(1973, Carbon::createFromDate(1975)->subtract(\n            function (DateTimeImmutable $date, bool $negated = false) use (&$lastNegated): DateTimeImmutable {\n                $lastNegated = $negated;\n\n                return new DateTimeImmutable($date->format('Y-m-d H:i:s').' - 2 years');\n            },\n        )->year);\n        $this->assertTrue($lastNegated);\n        /** @var CarbonInterval $interval */\n        $interval = include __DIR__.'/../Fixtures/dynamicInterval.php';\n        $originalDate = Carbon::parse('2020-06-08');\n        $date = $originalDate->sub($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-05-31', $date->format('Y-m-d'));\n        $this->assertNotSame($originalDate, $date);\n        $date = Carbon::parse('2020-07-16')->subtract($interval);\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-06-30', $date->format('Y-m-d'));\n    }\n\n    public function testSubYearsPositive()\n    {\n        $this->assertSame(1974, Carbon::createFromDate(1975)->subYears(1)->year);\n    }\n\n    public function testSubYearsZero()\n    {\n        $this->assertSame(1975, Carbon::createFromDate(1975)->subYears(0)->year);\n    }\n\n    public function testSubYearsNegative()\n    {\n        $this->assertSame(1976, Carbon::createFromDate(1975)->subYears(-1)->year);\n    }\n\n    public function testSubYear()\n    {\n        $this->assertSame(1974, Carbon::createFromDate(1975)->subYear()->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'year')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'years')->year);\n        $this->assertSame(1973, Carbon::createFromDate(1975)->sub(CarbonInterval::years(2))->year);\n    }\n\n    public function testSubMonthsPositive()\n    {\n        $this->assertSame(12, Carbon::createFromDate(1975, 1, 1)->subMonths(1)->month);\n    }\n\n    public function testSubMonthsZero()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 1, 1)->subMonths(0)->month);\n    }\n\n    public function testSubMonthsNegative()\n    {\n        $this->assertSame(2, Carbon::createFromDate(1975, 1, 1)->subMonths(-1)->month);\n    }\n\n    public function testSubMonth()\n    {\n        $this->assertSame(12, Carbon::createFromDate(1975, 1, 1)->subMonth()->month);\n    }\n\n    public function testSubDaysPositive()\n    {\n        $this->assertSame(30, Carbon::createFromDate(1975, 5, 1)->subDays(1)->day);\n    }\n\n    public function testSubDaysZero()\n    {\n        $this->assertSame(1, Carbon::createFromDate(1975, 5, 1)->subDays(0)->day);\n    }\n\n    public function testSubDaysNegative()\n    {\n        $this->assertSame(2, Carbon::createFromDate(1975, 5, 1)->subDays(-1)->day);\n    }\n\n    public function testSubDay()\n    {\n        $this->assertSame(30, Carbon::createFromDate(1975, 5, 1)->subDay()->day);\n    }\n\n    public function testSubWeekdaysPositive()\n    {\n        $this->assertSame(22, Carbon::createFromDate(2012, 1, 4)->subWeekdays(9)->day);\n    }\n\n    public function testSubWeekdaysZero()\n    {\n        $this->assertSame(4, Carbon::createFromDate(2012, 1, 4)->subWeekdays(0)->day);\n    }\n\n    public function testSubWeekdaysNegative()\n    {\n        $this->assertSame(13, Carbon::createFromDate(2012, 1, 31)->subWeekdays(-9)->day);\n    }\n\n    public function testSubWeekday()\n    {\n        $this->assertSame(6, Carbon::createFromDate(2012, 1, 9)->subWeekday()->day);\n    }\n\n    public function testSubWeekdayDuringWeekend()\n    {\n        $this->assertSame(6, Carbon::createFromDate(2012, 1, 8)->subWeekday()->day);\n    }\n\n    public function testSubWeeksPositive()\n    {\n        $this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->subWeeks(1)->day);\n    }\n\n    public function testSubWeeksZero()\n    {\n        $this->assertSame(21, Carbon::createFromDate(1975, 5, 21)->subWeeks(0)->day);\n    }\n\n    public function testSubWeeksNegative()\n    {\n        $this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->subWeeks(-1)->day);\n    }\n\n    public function testSubWeek()\n    {\n        $this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->subWeek()->day);\n    }\n\n    public function testSubHoursPositive()\n    {\n        $this->assertSame(23, Carbon::createFromTime(0)->subHours(1)->hour);\n    }\n\n    public function testSubHoursZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0)->subHours(0)->hour);\n    }\n\n    public function testSubHoursNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0)->subHours(-1)->hour);\n    }\n\n    public function testSubHour()\n    {\n        $this->assertSame(23, Carbon::createFromTime(0)->subHour()->hour);\n    }\n\n    public function testSubMinutesPositive()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0)->subMinutes(1)->minute);\n    }\n\n    public function testSubMinutesZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0)->subMinutes(0)->minute);\n    }\n\n    public function testSubMinutesNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0)->subMinutes(-1)->minute);\n    }\n\n    public function testSubMinute()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0)->subMinute()->minute);\n    }\n\n    public function testSubSecondsPositive()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0, 0)->subSeconds(1)->second);\n    }\n\n    public function testSubSecondsZero()\n    {\n        $this->assertSame(0, Carbon::createFromTime(0, 0, 0)->subSeconds(0)->second);\n    }\n\n    public function testSubSecondsNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subSeconds(-1)->second);\n    }\n\n    public function testSubSecond()\n    {\n        $this->assertSame(59, Carbon::createFromTime(0, 0, 0)->subSecond()->second);\n    }\n\n    public function testSubMillisecondsPositive()\n    {\n        $this->assertSame(999, Carbon::createFromTime(0, 0, 0)->subMilliseconds(1)->millisecond);\n    }\n\n    public function testSubMillisecondsZero()\n    {\n        $this->assertSame(100, Carbon::createFromTime(0, 0, 0.1)->subMilliseconds(0)->millisecond);\n    }\n\n    public function testSubMillisecondsNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subMilliseconds(-1)->millisecond);\n        $this->assertSame(101, Carbon::createFromTime(0, 0, 0.1)->subMilliseconds(-1)->millisecond);\n    }\n\n    public function testSubMillisecond()\n    {\n        $this->assertSame(99, Carbon::createFromTime(0, 0, 0.1)->subMillisecond()->millisecond);\n    }\n\n    public function testSubMicrosecondsPositive()\n    {\n        $this->assertSame(999999, Carbon::createFromTime(0, 0, 0)->subMicroseconds(1)->microsecond);\n    }\n\n    public function testSubMicrosecondsZero()\n    {\n        $this->assertSame(100000, Carbon::createFromTime(0, 0, 0.1)->subMicroseconds(0)->microsecond);\n    }\n\n    public function testSubMicrosecondsNegative()\n    {\n        $this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subMicroseconds(-1)->microsecond);\n        $this->assertSame(100001, Carbon::createFromTime(0, 0, 0.1)->subMicroseconds(-1)->microsecond);\n    }\n\n    public function testSubMicrosecond()\n    {\n        $this->assertSame(99999, Carbon::createFromTime(0, 0, 0.1)->subMicrosecond()->microsecond);\n    }\n\n    /**\n     * Test non plural methods with non default args.\n     */\n    public function testSubYearPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975);\n\n        $this->assertSame(1973, $date->subYear(2)->year);\n    }\n\n    public function testSubMonthPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 1);\n\n        $this->assertSame(3, $date->subMonth(2)->month);\n    }\n\n    public function testSubMonthNoOverflowPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(2011, 4, 30);\n        $date = $date->subMonthNoOverflow(2);\n\n        $this->assertSame(2, $date->month);\n        $this->assertSame(28, $date->day);\n    }\n\n    public function testSubDayPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromDate(1975, 5, 10);\n\n        $this->assertSame(8, $date->subDay(2)->day);\n    }\n\n    public function testSubHourPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n\n        $this->assertSame(22, $date->subHour(2)->hour);\n    }\n\n    public function testSubMinutePassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n\n        $this->assertSame(58, $date->subMinute(2)->minute);\n    }\n\n    public function testSubSecondPassingArg()\n    {\n        /** @var mixed $date */\n        $date = Carbon::createFromTime(0);\n\n        $this->assertSame(58, $date->subSecond(2)->second);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/TestingAidsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterface;\nuse Closure;\nuse DateTime;\nuse DateTimeZone;\nuse Exception;\nuse stdClass;\nuse Tests\\AbstractTestCase;\n\nclass TestingAidsTest extends AbstractTestCase\n{\n    public function wrapWithTestNow(Closure $func, ?CarbonInterface $dt = null): void\n    {\n        Carbon::setTestNow($dt ?: Carbon::now());\n        $func();\n        Carbon::setTestNow();\n    }\n\n    public function testTestingAidsWithTestNowNotSet()\n    {\n        Carbon::setTestNow();\n\n        $this->assertFalse(Carbon::hasTestNow());\n        $this->assertNull(Carbon::getTestNow());\n    }\n\n    public function testTestingAidsWithTestNowSet()\n    {\n        Carbon::setTestNow($yesterday = Carbon::yesterday());\n\n        $this->assertTrue(Carbon::hasTestNow());\n        $this->assertSame($yesterday->format('Y-m-d H:i:s.u e'), Carbon::getTestNow()->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testTestingAidsWithTestNowSetToString()\n    {\n        Carbon::setTestNow('2016-11-23');\n        $this->assertTrue(Carbon::hasTestNow());\n        $this->assertEquals(Carbon::getTestNow(), Carbon::parse('2016-11-23'));\n    }\n\n    public function testConstructorWithTestValueSet()\n    {\n        Carbon::setTestNow($yesterday = Carbon::yesterday());\n\n        $this->assertEquals($yesterday, new Carbon());\n        $this->assertEquals($yesterday, new Carbon(null));\n        $this->assertEquals($yesterday, new Carbon(''));\n        $this->assertEquals($yesterday, new Carbon('now'));\n    }\n\n    public function testNowWithTestValueSet()\n    {\n        Carbon::setTestNow($yesterday = Carbon::yesterday());\n\n        $this->assertEquals($yesterday, Carbon::now());\n    }\n\n    public function testNowWithDateTime()\n    {\n        Carbon::setTestNow(new DateTime('2021-05-26 08:41:59'));\n\n        $this->assertSame('2021-05-26 08:41:59', Carbon::now()->format('Y-m-d H:i:s'));\n    }\n\n    public function testNowWithClosureValue()\n    {\n        $mockedNow = Carbon::parse('2019-09-21 12:34:56.123456');\n        $delta = 0;\n\n        Carbon::setTestNow(function (Carbon $now) use (&$mockedNow, &$delta) {\n            $this->assertInstanceOfCarbon($now);\n\n            return $mockedNow->copy()->tz($now->tz)->addMicroseconds($delta);\n        });\n\n        $this->assertSame('2019-09-21 12:34:56.123456', Carbon::now()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-09-21 00:00:00.000000', Carbon::today()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-09-22 00:00:00.000000', Carbon::create('tomorrow')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2018-06-15 12:34:00.000000', Carbon::create(2018, 6, 15, null, null)->format('Y-m-d H:i:s.u'));\n\n        $delta = 11111111;\n\n        $date = Carbon::now();\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2019-09-21 12:35:07.234567', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::today();\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2019-09-21 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create('tomorrow');\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2019-09-22 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create(2018, 6, 15, null, null);\n        $this->assertSame('America/Toronto', $date->tzName);\n        $this->assertSame('2018-06-15 12:35:00.000000', $date->format('Y-m-d H:i:s.u'));\n\n        date_default_timezone_set('UTC');\n\n        $date = Carbon::now();\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2019-09-21 16:35:07.234567', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::today();\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2019-09-21 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create('tomorrow');\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2019-09-22 00:00:00.000000', $date->format('Y-m-d H:i:s.u'));\n        $date = Carbon::create(2018, 6, 15, null, null);\n        $this->assertSame('UTC', $date->tzName);\n        $this->assertSame('2018-06-15 16:35:00.000000', $date->format('Y-m-d H:i:s.u'));\n\n        date_default_timezone_set('America/Toronto');\n    }\n\n    public function testParseWithTestValueSet()\n    {\n        $testNow = Carbon::yesterday();\n\n        $this->wrapWithTestNow(function () use ($testNow) {\n            $this->assertEquals($testNow, Carbon::parse(null));\n            $this->assertEquals($testNow, Carbon::parse(''));\n            $this->assertEquals($testNow, Carbon::parse('now'));\n        }, $testNow);\n    }\n\n    public function testParseRelativeWithTestValueSet()\n    {\n        $testNow = Carbon::parse('2013-09-01 05:15:05');\n\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2013-09-01 05:10:05', Carbon::parse('5 minutes ago')->toDateTimeString());\n            $this->assertSame('2013-08-25 05:15:05', Carbon::parse('1 week ago')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 00:00:00', Carbon::parse('tomorrow')->toDateTimeString());\n            $this->assertSame('2013-09-01 00:00:00', Carbon::parse('today')->toDateTimeString());\n            $this->assertSame('2013-08-31 00:00:00', Carbon::parse('yesterday')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 05:15:05', Carbon::parse('+1 day')->toDateTimeString());\n            $this->assertSame('2013-08-31 05:15:05', Carbon::parse('-1 day')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 00:00:00', Carbon::parse('next monday')->toDateTimeString());\n            $this->assertSame('2013-09-03 00:00:00', Carbon::parse('next tuesday')->toDateTimeString());\n            $this->assertSame('2013-09-04 00:00:00', Carbon::parse('next wednesday')->toDateTimeString());\n            $this->assertSame('2013-09-05 00:00:00', Carbon::parse('next thursday')->toDateTimeString());\n            $this->assertSame('2013-09-06 00:00:00', Carbon::parse('next friday')->toDateTimeString());\n            $this->assertSame('2013-09-07 00:00:00', Carbon::parse('next saturday')->toDateTimeString());\n            $this->assertSame('2013-09-08 00:00:00', Carbon::parse('next sunday')->toDateTimeString());\n\n            $this->assertSame('2013-08-26 00:00:00', Carbon::parse('last monday')->toDateTimeString());\n            $this->assertSame('2013-08-27 00:00:00', Carbon::parse('last tuesday')->toDateTimeString());\n            $this->assertSame('2013-08-28 00:00:00', Carbon::parse('last wednesday')->toDateTimeString());\n            $this->assertSame('2013-08-29 00:00:00', Carbon::parse('last thursday')->toDateTimeString());\n            $this->assertSame('2013-08-30 00:00:00', Carbon::parse('last friday')->toDateTimeString());\n            $this->assertSame('2013-08-31 00:00:00', Carbon::parse('last saturday')->toDateTimeString());\n            $this->assertSame('2013-08-25 00:00:00', Carbon::parse('last sunday')->toDateTimeString());\n\n            $this->assertSame('2013-09-02 00:00:00', Carbon::parse('this monday')->toDateTimeString());\n            $this->assertSame('2013-09-03 00:00:00', Carbon::parse('this tuesday')->toDateTimeString());\n            $this->assertSame('2013-09-04 00:00:00', Carbon::parse('this wednesday')->toDateTimeString());\n            $this->assertSame('2013-09-05 00:00:00', Carbon::parse('this thursday')->toDateTimeString());\n            $this->assertSame('2013-09-06 00:00:00', Carbon::parse('this friday')->toDateTimeString());\n            $this->assertSame('2013-09-07 00:00:00', Carbon::parse('this saturday')->toDateTimeString());\n            $this->assertSame('2013-09-01 00:00:00', Carbon::parse('this sunday')->toDateTimeString());\n\n            $this->assertSame('2013-10-01 05:15:05', Carbon::parse('first day of next month')->toDateTimeString());\n            $this->assertSame('2013-09-30 05:15:05', Carbon::parse('last day of this month')->toDateTimeString());\n        }, $testNow);\n    }\n\n    public function testHasRelativeKeywords()\n    {\n        $this->assertFalse(Carbon::hasRelativeKeywords('sunday 2015-02-23'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('today +2014 days'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('next sunday -3600 seconds'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('last day of this month'));\n        $this->assertFalse(Carbon::hasRelativeKeywords('last day of december 2015'));\n        $this->assertTrue(Carbon::hasRelativeKeywords('first sunday of next month'));\n        $this->assertFalse(Carbon::hasRelativeKeywords('first sunday of January 2017'));\n    }\n\n    public function testParseRelativeWithMinusSignsInDate()\n    {\n        $testNow = Carbon::parse('2013-09-01 05:15:05');\n\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2000-01-03 00:00:00', Carbon::parse('2000-1-3')->toDateTimeString());\n            $this->assertSame('2000-10-10 00:00:00', Carbon::parse('2000-10-10')->toDateTimeString());\n        }, $testNow);\n\n        $this->assertSame('2000-01-03 00:00:00', Carbon::parse('2000-1-3')->toDateTimeString());\n        $this->assertSame('2000-10-10 00:00:00', Carbon::parse('2000-10-10')->toDateTimeString());\n    }\n\n    public function testTimeZoneWithTestValueSet()\n    {\n        $testNow = Carbon::parse('2013-07-01 12:00:00', 'America/New_York');\n\n        $this->wrapWithTestNow(function () {\n            $this->assertSame('2013-07-01T12:00:00-04:00', Carbon::parse('now')->toIso8601String());\n            $this->assertSame('2013-07-01T11:00:00-05:00', Carbon::parse('now', 'America/Mexico_City')->toIso8601String());\n            $this->assertSame('2013-07-01T09:00:00-07:00', Carbon::parse('now', 'America/Vancouver')->toIso8601String());\n        }, $testNow);\n    }\n\n    public function testCreateFromPartialFormat()\n    {\n        Carbon::setTestNowAndTimezone(Carbon::parse('2013-09-01 05:10:15', 'America/Vancouver'));\n\n        // Simple partial time.\n        $this->assertSame('2018-05-06T05:10:15-07:00', Carbon::createFromFormat('Y-m-d', '2018-05-06')->toIso8601String());\n        $this->assertSame('2013-09-01T10:20:30-07:00', Carbon::createFromFormat('H:i:s', '10:20:30')->toIso8601String());\n\n        // Custom timezone.\n        $this->assertSame('2013-09-01T10:20:00+03:00', Carbon::createFromFormat('H:i e', '10:20 Europe/Kiev')->toIso8601String());\n        $this->assertSame('2013-09-01T10:20:00+01:00', Carbon::createFromFormat('H:i', '10:20', 'Europe/London')->toIso8601String());\n        $this->assertSame('2013-09-01T11:30:00+07:00', Carbon::createFromFormat('H:i:s e', '11:30:00+07:00')->toIso8601String());\n        $this->assertSame('2013-09-01T11:30:00+05:00', Carbon::createFromFormat('H:i:s', '11:30:00', '+05:00')->toIso8601String());\n\n        // Escaped timezone.\n        $this->assertSame('2013-09-01T05:10:15-07:00', Carbon::createFromFormat('\\e', 'e')->toIso8601String());\n\n        // Weird format, naive modify would fail here.\n        $this->assertSame('2005-08-09T05:10:15-07:00', Carbon::createFromFormat('l jS \\of F Y', 'Tuesday 9th of August 2005')->toIso8601String());\n        $this->assertSame('2013-09-01T00:12:13-07:00', Carbon::createFromFormat('i:s', '12:13')->toIso8601String());\n        $this->assertSame('2018-09-05T05:10:15-07:00', Carbon::createFromFormat('Y/d', '2018/5')->toIso8601String());\n\n        // Resetting to epoch.\n        $this->assertSame('2018-05-06T00:00:00-07:00', Carbon::createFromFormat('!Y-m-d', '2018-05-06')->toIso8601String());\n        $this->assertSame('1970-01-01T10:20:30-08:00', Carbon::createFromFormat('Y-m-d! H:i:s', '2018-05-06 10:20:30')->toIso8601String());\n        $this->assertSame('2018-05-06T00:00:00-07:00', Carbon::createFromFormat('Y-m-d|', '2018-05-06')->toIso8601String());\n        $this->assertSame('1970-01-01T10:20:30-08:00', Carbon::createFromFormat('|H:i:s', '10:20:30')->toIso8601String());\n\n        $kyiv = $this->firstValidTimezoneAmong(['Europe/Kyiv', 'Europe/Kiev'])->getName();\n        // Resetting to epoch (timezone fun).\n        $this->assertSame('1970-01-01T00:00:00-08:00', Carbon::createFromFormat('|', '')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+03:00', Carbon::createFromFormat('e|', $kyiv)->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+01:00', Carbon::createFromFormat('|', '', 'Europe/London')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00-08:00', Carbon::createFromFormat('!', '')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+03:00', Carbon::createFromFormat('!e', $kyiv)->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00+01:00', Carbon::createFromFormat('!', '', 'Europe/London')->toIso8601String());\n        $this->assertSame('1970-01-01T00:00:00-08:00', Carbon::createFromFormat('e!', $kyiv)->toIso8601String());\n\n        // Escaped epoch resets.\n        $this->assertSame('2013-09-01T05:10:15-07:00', Carbon::createFromFormat('\\|', '|')->toIso8601String());\n        $this->assertSame('2013-09-01T05:10:15-07:00', Carbon::createFromFormat('\\!', '!')->toIso8601String());\n        $this->assertSame('2013-09-01T05:10:15+03:00', Carbon::createFromFormat('e \\!', $kyiv.' !')->toIso8601String());\n\n        Carbon::setTestNow('2023-12-05 21:09:54');\n        $this->assertSame('2023-12-05 15:00:00.000000', Carbon::createFromFormat('H', '15')->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testCreateFromPartialFormatWithMicroseconds()\n    {\n        Carbon::setTestNowAndTimezone(Carbon::parse('2013-09-01 05:10:15.123456', 'America/Vancouver'));\n\n        $this->assertSame('2018-05-06 05:10:15.123456', Carbon::createFromFormat('Y-m-d', '2018-05-06')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2013-09-01 10:20:30.654321', Carbon::createFromFormat('H:i:s.u', '10:20:30.654321')->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testCreateFromDateTimeInterface()\n    {\n        Carbon::setTestNowAndTimezone(date_create_immutable('2013-09-01 05:10:15.123456', new DateTimeZone('America/Vancouver')));\n\n        $this->assertSame('2018-05-06 05:10:15.123456', Carbon::createFromFormat('Y-m-d', '2018-05-06')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2013-09-01 10:20:30.654321', Carbon::createFromFormat('H:i:s.u', '10:20:30.654321')->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testWithTestNow()\n    {\n        $self = $this;\n        $testNow = '2020-09-16 10:20:00';\n        $object = new stdClass();\n\n        $result = Carbon::withTestNow($testNow, static function () use ($self, $testNow, $object) {\n            $currentTime = Carbon::now();\n            $self->assertSame($testNow, $currentTime->format('Y-m-d H:i:s'));\n\n            return $object;\n        });\n\n        $this->assertSame($object, $result);\n\n        $currentTime = Carbon::now();\n        $this->assertNotEquals($testNow, $currentTime->format('Y-m-d H:i:s'));\n    }\n\n    public function testWithTestNowWithException()\n    {\n        $testNow = '2020-09-16 10:20:00';\n\n        try {\n            Carbon::withTestNow($testNow, static function () {\n                throw new Exception();\n            });\n        } catch (Exception $e) {\n            // ignore\n        }\n\n        $currentTime = Carbon::now();\n        $this->assertNotEquals($testNow, $currentTime->format('Y-m-d H:i:s'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonImmutable/WeekTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonImmutable;\n\nuse Carbon\\CarbonImmutable as Carbon;\nuse Carbon\\CarbonInterface;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass WeekTest extends AbstractTestCase\n{\n    public const SAMPLE = [\n        '1990-12-20' => [\n            1990,\n            1990,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-21' => [\n            1990,\n            1990,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-22' => [\n            1990,\n            1990,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-23' => [\n            1990,\n            1990,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1990-12-24' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-25' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-26' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-27' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-28' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-29' => [\n            1990,\n            1990,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-30' => [\n            1991,\n            1990,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1990-12-31' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-01' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-02' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-03' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-04' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-05' => [\n            1991,\n            1991,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-06' => [\n            1991,\n            1991,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1991-01-07' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-01-08' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-01-09' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-01-10' => [\n            1991,\n            1991,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1991-12-20' => [\n            1991,\n            1991,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1991-12-21' => [\n            1991,\n            1991,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1991-12-22' => [\n            1991,\n            1991,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1991-12-23' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-24' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-25' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-26' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-27' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-28' => [\n            1991,\n            1991,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-29' => [\n            1992,\n            1991,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1991-12-30' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1991-12-31' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1992-01-01' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-02' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-03' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-04' => [\n            1992,\n            1992,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-05' => [\n            1992,\n            1992,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '1992-01-06' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-07' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-08' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-09' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-01-10' => [\n            1992,\n            1992,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1992-12-20' => [\n            1992,\n            1992,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '1992-12-21' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-22' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-23' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-24' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-25' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-26' => [\n            1992,\n            1992,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-27' => [\n            1993,\n            1992,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '1992-12-28' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1992-12-29' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1992-12-30' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1992-12-31' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1993-01-01' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1993-01-02' => [\n            1993,\n            1992,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1993-01-03' => [\n            1993,\n            1992,\n            2,\n            53,\n            52,\n            52,\n        ],\n        '1993-01-04' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-05' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-06' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-07' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-08' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-09' => [\n            1993,\n            1993,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1993-01-10' => [\n            1993,\n            1993,\n            3,\n            1,\n            52,\n            52,\n        ],\n        '1993-12-20' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-21' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-22' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-23' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-24' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-25' => [\n            1993,\n            1993,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-26' => [\n            1994,\n            1993,\n            1,\n            51,\n            52,\n            52,\n        ],\n        '1993-12-27' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-28' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-29' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-30' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1993-12-31' => [\n            1994,\n            1993,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1994-01-01' => [\n            1994,\n            1993,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '1994-01-02' => [\n            1994,\n            1993,\n            2,\n            52,\n            53,\n            52,\n        ],\n        '1994-01-03' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-04' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-05' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-06' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-07' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-08' => [\n            1994,\n            1994,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-09' => [\n            1994,\n            1994,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '1994-01-10' => [\n            1994,\n            1994,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '1994-12-20' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-21' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-22' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-23' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-24' => [\n            1994,\n            1994,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-25' => [\n            1994,\n            1994,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '1994-12-26' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-27' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-28' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-29' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-30' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1994-12-31' => [\n            1994,\n            1994,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '1995-01-01' => [\n            1995,\n            1994,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1995-01-02' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-03' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-04' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-05' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-06' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-07' => [\n            1995,\n            1995,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-08' => [\n            1995,\n            1995,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1995-01-09' => [\n            1995,\n            1995,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1995-01-10' => [\n            1995,\n            1995,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1995-12-20' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-21' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-22' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-23' => [\n            1995,\n            1995,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-24' => [\n            1995,\n            1995,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1995-12-25' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-26' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-27' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-28' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-29' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-30' => [\n            1995,\n            1995,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1995-12-31' => [\n            1996,\n            1995,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1996-01-01' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-02' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-03' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-04' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-05' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-06' => [\n            1996,\n            1996,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-07' => [\n            1996,\n            1996,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1996-01-08' => [\n            1996,\n            1996,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1996-01-09' => [\n            1996,\n            1996,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1996-01-10' => [\n            1996,\n            1996,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1996-12-20' => [\n            1996,\n            1996,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1996-12-21' => [\n            1996,\n            1996,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1996-12-22' => [\n            1996,\n            1996,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1996-12-23' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-24' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-25' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-26' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-27' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-28' => [\n            1996,\n            1996,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-29' => [\n            1997,\n            1996,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1996-12-30' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1996-12-31' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-01' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-02' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-03' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-04' => [\n            1997,\n            1997,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-05' => [\n            1997,\n            1997,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1997-01-06' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-07' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-08' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-09' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-01-10' => [\n            1997,\n            1997,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '1997-12-20' => [\n            1997,\n            1997,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '1997-12-21' => [\n            1997,\n            1997,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1997-12-22' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-23' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-24' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-25' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-26' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-27' => [\n            1997,\n            1997,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-28' => [\n            1998,\n            1997,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1997-12-29' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-12-30' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1997-12-31' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '1998-01-01' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-02' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-03' => [\n            1998,\n            1998,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-04' => [\n            1998,\n            1998,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '1998-01-05' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-06' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-07' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-08' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-09' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-01-10' => [\n            1998,\n            1998,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '1998-12-20' => [\n            1998,\n            1998,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '1998-12-21' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-22' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-23' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-24' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-25' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-26' => [\n            1998,\n            1998,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-27' => [\n            1999,\n            1998,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '1998-12-28' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1998-12-29' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1998-12-30' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1998-12-31' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '1999-01-01' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1999-01-02' => [\n            1999,\n            1998,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '1999-01-03' => [\n            1999,\n            1998,\n            2,\n            53,\n            52,\n            52,\n        ],\n        '1999-01-04' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-05' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-06' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-07' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-08' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-09' => [\n            1999,\n            1999,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '1999-01-10' => [\n            1999,\n            1999,\n            3,\n            1,\n            52,\n            52,\n        ],\n        '1999-12-20' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-21' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-22' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-23' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-24' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-25' => [\n            1999,\n            1999,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-26' => [\n            2000,\n            1999,\n            1,\n            51,\n            52,\n            52,\n        ],\n        '1999-12-27' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-28' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-29' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-30' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '1999-12-31' => [\n            2000,\n            1999,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2000-01-01' => [\n            2000,\n            1999,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '2000-01-02' => [\n            2000,\n            1999,\n            2,\n            52,\n            53,\n            52,\n        ],\n        '2000-01-03' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-04' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-05' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-06' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-07' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-08' => [\n            2000,\n            2000,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-09' => [\n            2000,\n            2000,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2000-01-10' => [\n            2000,\n            2000,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '2000-12-20' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-21' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-22' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-23' => [\n            2000,\n            2000,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-24' => [\n            2000,\n            2000,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2000-12-25' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-26' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-27' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-28' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-29' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-30' => [\n            2000,\n            2000,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2000-12-31' => [\n            2001,\n            2000,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '2001-01-01' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-02' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-03' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-04' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-05' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-06' => [\n            2001,\n            2001,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-07' => [\n            2001,\n            2001,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2001-01-08' => [\n            2001,\n            2001,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2001-01-09' => [\n            2001,\n            2001,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2001-01-10' => [\n            2001,\n            2001,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2001-12-20' => [\n            2001,\n            2001,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-21' => [\n            2001,\n            2001,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-22' => [\n            2001,\n            2001,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-23' => [\n            2001,\n            2001,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2001-12-24' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-25' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-26' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-27' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-28' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-29' => [\n            2001,\n            2001,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-30' => [\n            2002,\n            2001,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2001-12-31' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-01' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-02' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-03' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-04' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-05' => [\n            2002,\n            2002,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-06' => [\n            2002,\n            2002,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2002-01-07' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-01-08' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-01-09' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-01-10' => [\n            2002,\n            2002,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2002-12-20' => [\n            2002,\n            2002,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2002-12-21' => [\n            2002,\n            2002,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2002-12-22' => [\n            2002,\n            2002,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2002-12-23' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-24' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-25' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-26' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-27' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-28' => [\n            2002,\n            2002,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-29' => [\n            2003,\n            2002,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2002-12-30' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2002-12-31' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-01' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-02' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-03' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-04' => [\n            2003,\n            2003,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-05' => [\n            2003,\n            2003,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2003-01-06' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-07' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-08' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-09' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-01-10' => [\n            2003,\n            2003,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2003-12-20' => [\n            2003,\n            2003,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2003-12-21' => [\n            2003,\n            2003,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2003-12-22' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-23' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-24' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-25' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-26' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-27' => [\n            2003,\n            2003,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-28' => [\n            2004,\n            2003,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2003-12-29' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-12-30' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2003-12-31' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2004-01-01' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-02' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-03' => [\n            2004,\n            2004,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-04' => [\n            2004,\n            2004,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2004-01-05' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-06' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-07' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-08' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-09' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-01-10' => [\n            2004,\n            2004,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2004-12-20' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-21' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-22' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-23' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-24' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-25' => [\n            2004,\n            2004,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-26' => [\n            2005,\n            2004,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '2004-12-27' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-28' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-29' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-30' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2004-12-31' => [\n            2005,\n            2004,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2005-01-01' => [\n            2005,\n            2004,\n            1,\n            53,\n            53,\n            52,\n        ],\n        '2005-01-02' => [\n            2005,\n            2004,\n            2,\n            53,\n            53,\n            52,\n        ],\n        '2005-01-03' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-04' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-05' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-06' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-07' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-08' => [\n            2005,\n            2005,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-09' => [\n            2005,\n            2005,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2005-01-10' => [\n            2005,\n            2005,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '2005-12-20' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-21' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-22' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-23' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-24' => [\n            2005,\n            2005,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-25' => [\n            2005,\n            2005,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2005-12-26' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-27' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-28' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-29' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-30' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2005-12-31' => [\n            2005,\n            2005,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2006-01-01' => [\n            2006,\n            2005,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2006-01-02' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-03' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-04' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-05' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-06' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-07' => [\n            2006,\n            2006,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-08' => [\n            2006,\n            2006,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2006-01-09' => [\n            2006,\n            2006,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2006-01-10' => [\n            2006,\n            2006,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2006-12-20' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-21' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-22' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-23' => [\n            2006,\n            2006,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-24' => [\n            2006,\n            2006,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2006-12-25' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-26' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-27' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-28' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-29' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-30' => [\n            2006,\n            2006,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2006-12-31' => [\n            2007,\n            2006,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2007-01-01' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-02' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-03' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-04' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-05' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-06' => [\n            2007,\n            2007,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-07' => [\n            2007,\n            2007,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2007-01-08' => [\n            2007,\n            2007,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2007-01-09' => [\n            2007,\n            2007,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2007-01-10' => [\n            2007,\n            2007,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2007-12-20' => [\n            2007,\n            2007,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-21' => [\n            2007,\n            2007,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-22' => [\n            2007,\n            2007,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-23' => [\n            2007,\n            2007,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2007-12-24' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-25' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-26' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-27' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-28' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-29' => [\n            2007,\n            2007,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-30' => [\n            2008,\n            2007,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2007-12-31' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-01' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-02' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-03' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-04' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-05' => [\n            2008,\n            2008,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-06' => [\n            2008,\n            2008,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2008-01-07' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-01-08' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-01-09' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-01-10' => [\n            2008,\n            2008,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2008-12-20' => [\n            2008,\n            2008,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2008-12-21' => [\n            2008,\n            2008,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2008-12-22' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-23' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-24' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-25' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-26' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-27' => [\n            2008,\n            2008,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-28' => [\n            2009,\n            2008,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2008-12-29' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-12-30' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2008-12-31' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2009-01-01' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-02' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-03' => [\n            2009,\n            2009,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-04' => [\n            2009,\n            2009,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2009-01-05' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-06' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-07' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-08' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-09' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-01-10' => [\n            2009,\n            2009,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2009-12-20' => [\n            2009,\n            2009,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '2009-12-21' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-22' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-23' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-24' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-25' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-26' => [\n            2009,\n            2009,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-27' => [\n            2010,\n            2009,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '2009-12-28' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2009-12-29' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2009-12-30' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2009-12-31' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2010-01-01' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '2010-01-02' => [\n            2010,\n            2009,\n            1,\n            53,\n            52,\n            52,\n        ],\n        '2010-01-03' => [\n            2010,\n            2009,\n            2,\n            53,\n            52,\n            52,\n        ],\n        '2010-01-04' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-05' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-06' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-07' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-08' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-09' => [\n            2010,\n            2010,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2010-01-10' => [\n            2010,\n            2010,\n            3,\n            1,\n            52,\n            52,\n        ],\n        '2010-12-20' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-21' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-22' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-23' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-24' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-25' => [\n            2010,\n            2010,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-26' => [\n            2011,\n            2010,\n            1,\n            51,\n            52,\n            52,\n        ],\n        '2010-12-27' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-28' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-29' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-30' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2010-12-31' => [\n            2011,\n            2010,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2011-01-01' => [\n            2011,\n            2010,\n            1,\n            52,\n            53,\n            52,\n        ],\n        '2011-01-02' => [\n            2011,\n            2010,\n            2,\n            52,\n            53,\n            52,\n        ],\n        '2011-01-03' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-04' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-05' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-06' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-07' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-08' => [\n            2011,\n            2011,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-09' => [\n            2011,\n            2011,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2011-01-10' => [\n            2011,\n            2011,\n            3,\n            2,\n            53,\n            52,\n        ],\n        '2011-12-20' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-21' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-22' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-23' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-24' => [\n            2011,\n            2011,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-25' => [\n            2011,\n            2011,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2011-12-26' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-27' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-28' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-29' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-30' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2011-12-31' => [\n            2011,\n            2011,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2012-01-01' => [\n            2012,\n            2011,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2012-01-02' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-03' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-04' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-05' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-06' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-07' => [\n            2012,\n            2012,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-08' => [\n            2012,\n            2012,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2012-01-09' => [\n            2012,\n            2012,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2012-01-10' => [\n            2012,\n            2012,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2012-12-20' => [\n            2012,\n            2012,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-21' => [\n            2012,\n            2012,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-22' => [\n            2012,\n            2012,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-23' => [\n            2012,\n            2012,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2012-12-24' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-25' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-26' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-27' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-28' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-29' => [\n            2012,\n            2012,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-30' => [\n            2013,\n            2012,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2012-12-31' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-01' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-02' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-03' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-04' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-05' => [\n            2013,\n            2013,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-06' => [\n            2013,\n            2013,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2013-01-07' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-01-08' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-01-09' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-01-10' => [\n            2013,\n            2013,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2013-12-20' => [\n            2013,\n            2013,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2013-12-21' => [\n            2013,\n            2013,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2013-12-22' => [\n            2013,\n            2013,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2013-12-23' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-24' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-25' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-26' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-27' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-28' => [\n            2013,\n            2013,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-29' => [\n            2014,\n            2013,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2013-12-30' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2013-12-31' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-01' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-02' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-03' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-04' => [\n            2014,\n            2014,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-05' => [\n            2014,\n            2014,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2014-01-06' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-07' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-08' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-09' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-01-10' => [\n            2014,\n            2014,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2014-12-20' => [\n            2014,\n            2014,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2014-12-21' => [\n            2014,\n            2014,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2014-12-22' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-23' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-24' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-25' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-26' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-27' => [\n            2014,\n            2014,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-28' => [\n            2015,\n            2014,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2014-12-29' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-12-30' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2014-12-31' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2015-01-01' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-02' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-03' => [\n            2015,\n            2015,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-04' => [\n            2015,\n            2015,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2015-01-05' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-06' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-07' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-08' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-09' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-01-10' => [\n            2015,\n            2015,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2015-12-20' => [\n            2015,\n            2015,\n            52,\n            51,\n            52,\n            53,\n        ],\n        '2015-12-21' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-22' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-23' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-24' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-25' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-26' => [\n            2015,\n            2015,\n            52,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-27' => [\n            2016,\n            2015,\n            1,\n            52,\n            52,\n            53,\n        ],\n        '2015-12-28' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2015-12-29' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2015-12-30' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2015-12-31' => [\n            2016,\n            2015,\n            1,\n            53,\n            52,\n            53,\n        ],\n        '2016-01-01' => [\n            2016,\n            2015,\n            1,\n            53,\n            53,\n            52,\n        ],\n        '2016-01-02' => [\n            2016,\n            2015,\n            1,\n            53,\n            53,\n            52,\n        ],\n        '2016-01-03' => [\n            2016,\n            2015,\n            2,\n            53,\n            53,\n            52,\n        ],\n        '2016-01-04' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-05' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-06' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-07' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-08' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-09' => [\n            2016,\n            2016,\n            2,\n            1,\n            53,\n            52,\n        ],\n        '2016-01-10' => [\n            2016,\n            2016,\n            3,\n            1,\n            53,\n            52,\n        ],\n        '2016-12-20' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-21' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-22' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-23' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-24' => [\n            2016,\n            2016,\n            52,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-25' => [\n            2016,\n            2016,\n            53,\n            51,\n            53,\n            52,\n        ],\n        '2016-12-26' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-27' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-28' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-29' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-30' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2016-12-31' => [\n            2016,\n            2016,\n            53,\n            52,\n            53,\n            52,\n        ],\n        '2017-01-01' => [\n            2017,\n            2016,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2017-01-02' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-03' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-04' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-05' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-06' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-07' => [\n            2017,\n            2017,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-08' => [\n            2017,\n            2017,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2017-01-09' => [\n            2017,\n            2017,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2017-01-10' => [\n            2017,\n            2017,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2017-12-20' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-21' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-22' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-23' => [\n            2017,\n            2017,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-24' => [\n            2017,\n            2017,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2017-12-25' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-26' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-27' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-28' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-29' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-30' => [\n            2017,\n            2017,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2017-12-31' => [\n            2018,\n            2017,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2018-01-01' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-02' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-03' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-04' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-05' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-06' => [\n            2018,\n            2018,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-07' => [\n            2018,\n            2018,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2018-01-08' => [\n            2018,\n            2018,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2018-01-09' => [\n            2018,\n            2018,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2018-01-10' => [\n            2018,\n            2018,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2018-12-20' => [\n            2018,\n            2018,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-21' => [\n            2018,\n            2018,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-22' => [\n            2018,\n            2018,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-23' => [\n            2018,\n            2018,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2018-12-24' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-25' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-26' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-27' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-28' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-29' => [\n            2018,\n            2018,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-30' => [\n            2019,\n            2018,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2018-12-31' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-01' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-02' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-03' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-04' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-05' => [\n            2019,\n            2019,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-06' => [\n            2019,\n            2019,\n            2,\n            1,\n            52,\n            52,\n        ],\n        '2019-01-07' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-01-08' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-01-09' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-01-10' => [\n            2019,\n            2019,\n            2,\n            2,\n            52,\n            52,\n        ],\n        '2019-12-20' => [\n            2019,\n            2019,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2019-12-21' => [\n            2019,\n            2019,\n            51,\n            51,\n            52,\n            52,\n        ],\n        '2019-12-22' => [\n            2019,\n            2019,\n            52,\n            51,\n            52,\n            52,\n        ],\n        '2019-12-23' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-24' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-25' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-26' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-27' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-28' => [\n            2019,\n            2019,\n            52,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-29' => [\n            2020,\n            2019,\n            1,\n            52,\n            52,\n            52,\n        ],\n        '2019-12-30' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2019-12-31' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            52,\n        ],\n        '2020-01-01' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-02' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-03' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-04' => [\n            2020,\n            2020,\n            1,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-05' => [\n            2020,\n            2020,\n            2,\n            1,\n            52,\n            53,\n        ],\n        '2020-01-06' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-07' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-08' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-09' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n        '2020-01-10' => [\n            2020,\n            2020,\n            2,\n            2,\n            52,\n            53,\n        ],\n    ];\n\n    public function testWeekUtils()\n    {\n        foreach (static::SAMPLE as $date => [$weekYear, $isoWeekYear, $week, $isoWeek, $weeksInYear, $isoWeeksInYear]) {\n            $carbon = Carbon::parse(\"$date 00:00:00\")->locale('en_US');\n\n            $this->assertSame($weekYear, $carbon->weekYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->weekYear() should return $weekYear\");\n            $this->assertSame($isoWeekYear, $carbon->isoWeekYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->isoWeekYear() should return $isoWeekYear\");\n            $this->assertSame($week, $carbon->week(), \"Carbon::parse(\\\"$date 00:00:00\\\")->week() should return $week\");\n            $this->assertSame($isoWeek, $carbon->isoWeek(), \"Carbon::parse(\\\"$date 00:00:00\\\")->isoWeek() should return $isoWeek\");\n            $this->assertSame($weeksInYear, $carbon->weeksInYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->weeksInYear() should return $isoWeek\");\n            $this->assertSame($isoWeeksInYear, $carbon->isoWeeksInYear(), \"Carbon::parse(\\\"$date 00:00:00\\\")->isoWeeksInYear() should return $isoWeeksInYear\");\n        }\n    }\n\n    public function testSetters()\n    {\n        $d = Carbon::parse('2018-01-01');\n        $this->assertSame(52, $d->weeksInYear);\n        $this->assertSame(52, $d->isoWeeksInYear);\n\n        $d2 = $d->week(3);\n\n        $this->assertNotSame($d, $d2);\n        $this->assertSame('2018-01-15', $d2->format('Y-m-d'));\n\n        $d2 = $d2->week(34);\n\n        $this->assertSame('2018-08-20', $d2->format('Y-m-d'));\n\n        $d2 = $d2->week(0);\n\n        $this->assertSame('2017-12-25', $d2->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d = $d->week(-1);\n\n        $this->assertSame('2017-12-18', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d = $d->week(-5);\n\n        $this->assertSame('2017-11-20', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d = $d->week(-55);\n\n        $this->assertSame('2016-12-05', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01');\n        $d = $d->week(34);\n\n        $this->assertSame('2017-08-20', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01');\n        $d = $d->isoWeek(34);\n\n        $this->assertSame('2016-08-28', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('en_US');\n        $d = $d->weekYear(2015);\n\n        $this->assertSame('2014-12-28', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2012-12-31');\n        $d = $d->weekYear(2013);\n\n        $this->assertSame('2012-12-31', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2012-12-30')->locale('en_US');\n        $d = $d->weekYear(2014);\n\n        $this->assertSame('2013-12-29', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2015-12-31');\n        $d = $d->weekYear(2013);\n\n        $this->assertSame('2013-01-03', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01');\n        $d = $d->isoWeekYear(2015);\n\n        $this->assertSame('2015-12-27', $d->format('Y-m-d'));\n\n        $d = $d->dayOfYear(300);\n\n        $this->assertSame('2015-10-27', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('fr');\n        $d = $d->weekYear(2015);\n\n        $this->assertSame('2015-12-27', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('sr');\n        $d = $d->weekYear(2017);\n\n        $this->assertSame('2017-01-01', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2017-01-01')->locale('fr');\n        $d = $d->weekYear(2012);\n\n        $this->assertSame('2012-12-30', $d->format('Y-m-d'));\n\n        $d = Carbon::parse('2018-01-01');\n        $d = $d->setISODate(2019, 4, 5);\n        $this->assertSame('2019-01-25', $d->format('Y-m-d'));\n    }\n\n    public function testWeekday()\n    {\n        $d = Carbon::parse('2018-08-08')->locale('en_US');\n        $this->assertSame(CarbonInterface::WEDNESDAY, $d->weekday());\n        $this->assertSame(CarbonInterface::WEDNESDAY, $d->isoWeekday());\n        $date = $d->weekday(CarbonInterface::SUNDAY);\n        $this->assertSame('08-05', $date->format('m-d'));\n        $this->assertSame(CarbonInterface::SUNDAY, $date->weekday());\n        $this->assertSame(7, $date->isoWeekday());\n        $date = $d->isoWeekday(7);\n        $this->assertSame('08-12', $date->format('m-d'));\n        $this->assertSame(CarbonInterface::SUNDAY, $date->weekday());\n        $this->assertSame(7, $date->isoWeekday());\n        $date = $d->weekday(CarbonInterface::MONDAY);\n        $this->assertSame('08-06', $date->format('m-d'));\n        $this->assertSame(CarbonInterface::MONDAY, $date->weekday());\n        $this->assertSame(CarbonInterface::MONDAY, $date->isoWeekday());\n        $date = $d->isoWeekday(CarbonInterface::MONDAY);\n        $this->assertSame('08-06', $date->format('m-d'));\n        $this->assertSame(CarbonInterface::MONDAY, $date->weekday());\n        $this->assertSame(CarbonInterface::MONDAY, $date->isoWeekday());\n    }\n\n    public function testWeekStartAndEnd()\n    {\n        $this->assertSame(CarbonInterface::MONDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekEndsAt());\n        Carbon::setLocale('en_US');\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekEndsAt());\n        Carbon::setLocale('ar_AR');\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::FRIDAY, Carbon::getWeekEndsAt());\n        Carbon::setLocale('fr_FR');\n        $this->assertSame(CarbonInterface::MONDAY, Carbon::getWeekStartsAt());\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekEndsAt());\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekStartsAt('en_US'));\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekEndsAt('en_US'));\n        $this->assertSame(CarbonInterface::SATURDAY, Carbon::getWeekStartsAt('ar_AR'));\n        $this->assertSame(CarbonInterface::FRIDAY, Carbon::getWeekEndsAt('ar_AR'));\n        $this->assertSame(CarbonInterface::MONDAY, Carbon::getWeekStartsAt('fr_FR'));\n        $this->assertSame(CarbonInterface::SUNDAY, Carbon::getWeekEndsAt('fr_FR'));\n    }\n\n    #[DataProvider('getDaysFromStartOfWeekDataProvider')]\n    public function testGetDaysFromStartOfWeek(string $locale, string $date, int $daysCount)\n    {\n        $this->assertSame(\n            $daysCount,\n            Carbon::parse($date)->locale($locale)->getDaysFromStartOfWeek()\n        );\n    }\n\n    public static function getDaysFromStartOfWeekDataProvider(): array\n    {\n        return [\n            'Monday en_US' => ['en_US', '2022-11-21', 1],\n            'Monday late en_US' => ['en_US', '2022-11-21 23:59', 1],\n            'Tuesday en_US' => ['en_US', '2022-11-22 00:01', 2],\n            'Thursday en_US' => ['en_US', '2022-11-24', 4],\n            'Saturday en_US' => ['en_US', '2022-11-26 23:59:59.999999', 6],\n            'Sunday en_US' => ['en_US', '2022-11-27 00:00:00', 0],\n            'Monday fr_FR' => ['fr_FR', '2022-11-21', 0],\n            'Monday late fr_FR' => ['fr_FR', '2022-11-21 23:59', 0],\n            'Tuesday fr_FR' => ['fr_FR', '2022-11-22 00:01', 1],\n            'Thursday fr_FR' => ['fr_FR', '2022-11-24', 3],\n            'Saturday fr_FR' => ['fr_FR', '2022-11-26 23:59:59.999999', 5],\n            'Sunday fr_FR' => ['fr_FR', '2022-11-27 00:00:00', 6],\n            'Monday ku' => ['ku', '2022-11-21', 2],\n            'Monday late ku' => ['ku', '2022-11-21 23:59', 2],\n            'Tuesday ku' => ['ku', '2022-11-22 00:01', 3],\n            'Thursday ku' => ['ku', '2022-11-24', 5],\n            'Saturday ku' => ['ku', '2022-11-26 23:59:59.999999', 0],\n            'Sunday ku' => ['ku', '2022-11-27 00:00:00', 1],\n        ];\n    }\n\n    #[DataProvider('getDaysFromStartOfWeekDataProviderExplicit')]\n    public function testGetDaysFromStartOfWeekExplicit(int $start, string $date, int $daysCount)\n    {\n        static $locales = [null, 'pt_BR', 'de_CH', 'ar_MA'];\n        $carbon = Carbon::parse($date);\n        $locale = $locales[array_rand($locales)];\n\n        if ($locale) {\n            $carbon = $carbon->locale($locale);\n        }\n\n        $this->assertSame($daysCount, $carbon->getDaysFromStartOfWeek($start));\n    }\n\n    public static function getDaysFromStartOfWeekDataProviderExplicit(): array\n    {\n        return [\n            'Monday 0' => [0, '2022-11-21', 1],\n            'Monday late 0' => [0, '2022-11-21 23:59', 1],\n            'Tuesday 0' => [0, '2022-11-22 00:01', 2],\n            'Thursday 0' => [0, '2022-11-24', 4],\n            'Saturday 0' => [0, '2022-11-26 23:59:59.999999', 6],\n            'Sunday 0' => [0, '2022-11-27 00:00:00', 0],\n            'Monday 1' => [1, '2022-11-21', 0],\n            'Monday late 1' => [1, '2022-11-21 23:59', 0],\n            'Tuesday 1' => [1, '2022-11-22 00:01', 1],\n            'Thursday 1' => [1, '2022-11-24', 3],\n            'Saturday 1' => [1, '2022-11-26 23:59:59.999999', 5],\n            'Sunday 1' => [1, '2022-11-27 00:00:00', 6],\n            'Monday 6' => [6, '2022-11-21', 2],\n            'Monday late 6' => [6, '2022-11-21 23:59', 2],\n            'Tuesday 6' => [6, '2022-11-22 00:01', 3],\n            'Thursday 6' => [6, '2022-11-24', 5],\n            'Saturday 6' => [6, '2022-11-26 23:59:59.999999', 0],\n            'Sunday 6' => [6, '2022-11-27 00:00:00', 1],\n        ];\n    }\n\n    public function testSetDaysFromStartOfWeek()\n    {\n        $this->assertSame(\n            '2022-11-29 23:59:59.999999',\n            Carbon::parse('2022-11-26 23:59:59.999999')\n                ->locale('ar_MA')\n                ->setDaysFromStartOfWeek(3)\n                ->format('Y-m-d H:i:s.u')\n        );\n        $this->assertSame(\n            '2022-11-24 12:34:56.123456',\n            Carbon::parse('2022-11-24 12:34:56.123456')\n                ->locale('fr_FR')\n                ->setDaysFromStartOfWeek(3)\n                ->format('Y-m-d H:i:s.u')\n        );\n        $this->assertSame(\n            '2022-11-23 12:34:56.123456',\n            Carbon::parse('2022-11-24 12:34:56.123456')\n                ->locale('en_US')\n                ->setDaysFromStartOfWeek(3)\n                ->format('Y-m-d H:i:s.u')\n        );\n        $this->assertSame(\n            '2022-11-27 12:34:56.123456',\n            Carbon::parse('2022-11-24 12:34:56.123456')\n                ->locale('en_US')\n                ->setDaysFromStartOfWeek(3, 4)\n                ->format('Y-m-d H:i:s.u')\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/AddTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse DateTime;\nuse DateTimeImmutable;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\n\nclass AddTest extends AbstractTestCase\n{\n    public function testAdd()\n    {\n        $ci = CarbonInterval::create(4, 3, 6, 7, 8, 10, 11)->add(new DateInterval('P2Y1M5DT22H33M44S'));\n        $this->assertCarbonInterval($ci, 6, 4, 54, 30, 43, 55);\n    }\n\n    public function testNamedParameters()\n    {\n        $ci = CarbonInterval::years(years: 3)->addYears(years: 4);\n        $this->assertCarbonInterval($ci, 7);\n\n        $ci = CarbonInterval::months(months: 3)->addMonths(months: 4);\n        $this->assertCarbonInterval($ci, 0, 7);\n\n        $ci = CarbonInterval::weeks(weeks: 3)->addWeeks(weeks: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 7 * 7);\n\n        $ci = CarbonInterval::days(days: 3)->addDays(days: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 7);\n\n        $ci = CarbonInterval::hours(hours: 3)->addHours(hours: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 7);\n\n        $ci = CarbonInterval::minutes(minutes: 3)->addMinutes(minutes: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 7);\n\n        $ci = CarbonInterval::seconds(seconds: 3)->addSeconds(seconds: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 7);\n\n        $ci = CarbonInterval::milliseconds(milliseconds: 3)->addMilliseconds(milliseconds: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0, 7000);\n\n        $ci = CarbonInterval::microseconds(microseconds: 3)->addMicroseconds(microseconds: 4);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0, 7);\n    }\n\n    public function testAddWithDiffDateInterval()\n    {\n        $diff = Carbon::now()->diff(Carbon::now()->addWeeks(3));\n        $ci = CarbonInterval::create(4, 3, 6, 7, 8, 10, 11)->add($diff);\n        $this->assertCarbonInterval($ci, 4, 3, 70, 8, 10, 11);\n    }\n\n    public function testAddWithNegativeDiffDateInterval()\n    {\n        $diff = Carbon::now()->diff(Carbon::now()->subWeeks(3));\n        $ci = CarbonInterval::create(4, 3, 6, 7, 8, 10, 11)->add($diff);\n        $this->assertCarbonInterval($ci, 4, 3, 28, 8, 10, 11);\n    }\n\n    public function testAddMicroseconds()\n    {\n        $diff = Carbon::now()->diff(Carbon::now()->addDays(3)->addMicroseconds(111222));\n        $ci = CarbonInterval::create(1, 0, 0, 2, 0, 0, 0, 222333)->add($diff);\n        if ($ci->seconds === 1) {\n            $ci->seconds--;\n            $ci->microseconds += 1000000;\n        }\n        $this->assertCarbonInterval($ci, 1, 0, 5, 0, 0, 0, 333555);\n        $diff = Carbon::now()->diff(Carbon::now()->addDays(3));\n        $ci = CarbonInterval::create(1, 0, 0, 2, 0, 0, 0, 222333)->add($diff);\n        $this->assertCarbonInterval($ci, 1, 0, 5, 0, 0, 0, 222333);\n        $diff = Carbon::now()->diff(Carbon::now()->addDays(3)->addMicroseconds(111222));\n        $ci = CarbonInterval::create(1, 0, 0, 2, 0, 0, 0)->add($diff);\n        if ($ci->seconds === 1) {\n            $ci->seconds--;\n            $ci->microseconds += 1000000;\n        }\n        $this->assertCarbonInterval($ci, 1, 0, 5, 0, 0, 0, 111222);\n    }\n\n    public function testAddWithRawDiffDateInterval()\n    {\n        date_default_timezone_set('UTC');\n\n        $date = new DateTime();\n        $diff = $date->diff((clone $date)->modify('3 weeks'));\n        $ci = CarbonInterval::create(4, 3, 6, 7, 8, 10, 11)->add($diff);\n        $this->assertCarbonInterval($ci, 4, 3, 70, 8, 10, 11);\n    }\n\n    public function testAddWithRawNegativeDiffDateInterval()\n    {\n        date_default_timezone_set('UTC');\n\n        $date = new DateTime();\n        $diff = $date->diff((clone $date)->modify('-3 weeks'));\n        $ci = CarbonInterval::create(4, 3, 6, 7, 8, 10, 11)->add($diff);\n        $this->assertCarbonInterval($ci, 4, 3, 28, 8, 10, 11);\n    }\n\n    #[TestWith([5, 2, 7])]\n    #[TestWith([-5, -2, -7])]\n    #[TestWith([-5, 2, -3])]\n    #[TestWith([5, -2, 3])]\n    #[TestWith([2, 5, 7])]\n    #[TestWith([-2, -5, -7])]\n    #[TestWith([-2, 5, 3])]\n    #[TestWith([2, -5, -3])]\n    public function testAddSign(int $base, int $increment, int $expectedResult)\n    {\n        $interval = new CarbonInterval();\n        $interval->hours(abs($base));\n        if ($base < 0) {\n            $interval->invert();\n        }\n        $add = new CarbonInterval();\n        $add->hours(abs($increment));\n        if ($increment < 0) {\n            $add->invert();\n        }\n        $interval->add($add);\n\n        $this->assertGreaterThanOrEqual(0, $interval->hours);\n\n        $actualResult = ($interval->invert ? -1 : 1) * $interval->hours;\n\n        $this->assertSame($expectedResult, $actualResult);\n    }\n\n    public function testAddAndSubMultipleFormats()\n    {\n        $this->assertCarbonInterval(CarbonInterval::day()->add('hours', 3), 0, 0, 1, 3, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->add(5, 'hours'), 0, 0, 1, 5, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->add(3, '4 hours'), 0, 0, 1, 12, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->add(-5, 'hours'), 0, 0, 1, -5, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(4)->add('hour'), 0, 0, 0, 5, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(4)->add(new DateInterval('P5D')), 0, 0, 5, 4, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(4)->add(CarbonInterval::minutes(30)), 0, 0, 0, 4, 30, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->sub('hours', 3), 0, 0, 1, -3, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->subtract(5, 'hours'), 0, 0, 1, -5, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->subtract(3, '4 hours'), 0, 0, 1, -12, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::day()->subtract(-5, 'hours'), 0, 0, 1, 5, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(4)->sub('hour'), 0, 0, 0, 3, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(4)->subtract(new DateInterval('P5D')), 0, 0, -5, 4, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(4)->sub(CarbonInterval::minutes(30)), 0, 0, 0, 4, -30, 0);\n    }\n\n    public function testAddWrongFormat()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'This type of data cannot be added/subtracted.',\n        ));\n\n        CarbonInterval::day()->add(Carbon::now());\n    }\n\n    public function testConvertDate()\n    {\n        $this->assertCarbon(CarbonInterval::days(3)->convertDate(new DateTime('2020-06-14')), 2020, 6, 17, 0, 0, 0);\n        $this->assertCarbon(CarbonInterval::days(3)->convertDate(new DateTimeImmutable('2020-06-14')), 2020, 6, 17, 0, 0, 0);\n        $this->assertCarbon(CarbonInterval::days(3)->convertDate(new DateTime('2020-06-14'), true), 2020, 6, 11, 0, 0, 0);\n        $this->assertCarbon(CarbonInterval::days(3)->convertDate(new DateTimeImmutable('2020-06-14'), true), 2020, 6, 11, 0, 0, 0);\n\n        $interval = new CarbonInterval(static fn (MyCarbon $carbon) => $carbon->addTwoHours());\n        $result = CarbonImmutable::parse('2024-01-18 08:00')->add($interval);\n\n        $this->assertSame(CarbonImmutable::class, $result::class);\n        $this->assertSame('2024-01-18 10:00:00', $result->format('Y-m-d H:i:s'));\n    }\n\n    public function testMagicAddAndSubMethods()\n    {\n        $this->assertCarbonInterval(CarbonInterval::days(3)->addWeeks(2), 0, 0, 17, 0, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::weeks(3)->addDays(2), 0, 0, 23, 0, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::weeks(3)->subDays(2), 0, 0, 19, 0, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(2)->subMinutes(15), 0, 0, 0, 2, -15, 0);\n        $this->assertCarbonInterval(CarbonInterval::hours(2)->subMinutes(15)->cascade(), 0, 0, 0, 1, 45, 0);\n    }\n\n    public function testPlus()\n    {\n        $this->assertCarbonInterval(CarbonInterval::days(3)->plus(0, 0, 2, 0, 26), 0, 0, 17, 26, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::days(3)->plus(0, 0, 0.25), 0, 0, 4, 18, 0, 0);\n        $interval = CarbonInterval::days(3)->plus(0, 0, 0.25)->plus(0, 0, 0.25)->cascade();\n        $this->assertCarbonInterval($interval, 0, 0, 6, 12, 0, 0);\n    }\n\n    public function testPlusWithPHP8Syntax()\n    {\n        $interval = CarbonInterval::days(3)->plus(weeks: 2, hours: 26);\n\n        $this->assertCarbonInterval($interval, 0, 0, 17, 26, 0, 0);\n\n        $interval = CarbonInterval::days(3)->plus(hours: 1, minutes: 1.5);\n\n        $this->assertCarbonInterval($interval, 0, 0, 3, 1, 1, 30);\n\n        $interval = CarbonInterval::days(3)->plus(hours: 1, minutes: -1.5);\n\n        $this->assertCarbonInterval($interval, 0, 0, 3, 1, -1, -30);\n    }\n\n    public function testMinus()\n    {\n        $this->assertCarbonInterval(CarbonInterval::days(3)->minus(0, 0, 2, 0, 26), 0, 0, 11, 26, 0, 0, 0, true);\n    }\n\n    public function testMinusWithPHP8Syntax()\n    {\n        $interval = CarbonInterval::days(3)->minus(weeks: 2, hours: 26);\n\n        $this->assertCarbonInterval($interval, 0, 0, 11, 26, 0, 0, 0, true);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/AlternativeNumbersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass AlternativeNumbersTest extends AbstractTestCase\n{\n    public function testAlternativesNumbers()\n    {\n        $this->assertSame(\n            '۵۲ ساعت',\n            CarbonInterval::hours(52)->locale('fa')->forHumans(['altNumbers' => true]),\n        );\n\n        $this->assertSame(\n            '۰۱ ساعت',\n            CarbonInterval::hour()->locale('fa')->forHumans(['altNumbers' => 'fa']),\n        );\n\n        $this->assertSame(\n            '1時間',\n            CarbonInterval::hour()->locale('ja')->forHumans(['altNumbers' => 'fa']),\n        );\n\n        $this->assertSame(\n            '۰۱ ساعت',\n            CarbonInterval::hour()->locale('fa')->forHumans(['altNumbers' => ['fa', 'ja']]),\n        );\n\n        $this->assertSame(\n            '52 ساعت',\n            CarbonInterval::hours(52)->locale('fa')->forHumans(['altNumbers' => 'ja']),\n        );\n\n        $this->assertSame(\n            '52 ساعت',\n            CarbonInterval::hours(52)->locale('fa')->forHumans(['altNumbers' => ['lzh', 'ja']]),\n        );\n\n        $this->assertSame(\n            '五十二時間',\n            CarbonInterval::hours(52)->locale('ja')->forHumans(['altNumbers' => ['lzh', 'ja']]),\n        );\n\n        $this->assertSame(\n            '-6',\n            CarbonInterval::hours(-6)->locale('fa')->translateNumber(-6),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/CascadeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass CascadeTest extends AbstractTestCase\n{\n    protected function assertIntervalSpec(CarbonInterval $interval, string $spec, bool|int $inverted = false): void\n    {\n        $this->assertSame(\n            ($inverted ? '- ' : '+ ').$spec,\n            ($interval->invert ? '- ' : '+ ').$interval->spec(),\n        );\n    }\n\n    #[TestWith(['3600s', 'PT1H'])]\n    #[TestWith(['10000s', 'PT2H46M40S'])]\n    #[TestWith(['1276d', 'P3Y9M16D'])]\n    #[TestWith(['47d 14h', 'P1M19DT14H'])]\n    #[TestWith(['2y 123mo 5w 6d 47h 160m 217s', 'P12Y4M15DT1H43M37S'])]\n    public function testCascadesOverflowedValues($spec, $expected)\n    {\n        $interval = CarbonInterval::fromString($spec)->cascade();\n        $this->assertIntervalSpec($interval, $expected);\n\n        $interval = CarbonInterval::fromString($spec)->invert()->cascade();\n        $this->assertIntervalSpec($interval, $expected, true);\n    }\n\n    #[DataProvider('dataForMixedSignsIntervalSpecs')]\n    public function testMixedSignsCascadesOverflowedValues($units, $expected, $expectingInversion)\n    {\n        $interval = new CarbonInterval(0);\n        foreach ($units as $unit => $value) {\n            $interval->$unit($value);\n        }\n        $interval->cascade();\n        $this->assertIntervalSpec($interval, $expected, $expectingInversion);\n\n        $interval = new CarbonInterval(0);\n        foreach ($units as $unit => $value) {\n            $interval->$unit($value);\n        }\n        $interval->invert()->cascade();\n        $this->assertIntervalSpec($interval, $expected, 1 - $expectingInversion);\n    }\n\n    public static function dataForMixedSignsIntervalSpecs(): Generator\n    {\n        yield [\n            [\n                'hours' => 1,\n                'minutes' => -30,\n            ],\n            'PT30M',\n            0,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'minutes' => -90,\n            ],\n            'PT30M',\n            1,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'minutes' => -90,\n                'seconds' => 3660,\n            ],\n            'PT31M',\n            0,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'minutes' => -90,\n                'seconds' => 3540,\n            ],\n            'PT29M',\n            0,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'minutes' => 90,\n                'seconds' => -3540,\n            ],\n            'PT1H31M',\n            0,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'minutes' => 90,\n                'seconds' => -3660,\n            ],\n            'PT1H29M',\n            0,\n        ];\n        yield [\n            [\n                'hours' => -1,\n                'minutes' => 90,\n                'seconds' => -3660,\n            ],\n            'PT31M',\n            1,\n        ];\n        yield [\n            [\n                'hours' => -1,\n                'minutes' => 61,\n                'seconds' => -120,\n            ],\n            'PT1M',\n            1,\n        ];\n        yield [\n            [\n                'days' => 48,\n                'hours' => -8,\n            ],\n            'P1M19DT16H',\n            0,\n        ];\n        yield [\n            [\n                'days' => 48,\n                'hours' => -28,\n            ],\n            'P1M18DT20H',\n            0,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'seconds' => -3615,\n            ],\n            'PT15S',\n            1,\n        ];\n        yield [\n            [\n                'hours' => -1,\n                'seconds' => 3615,\n            ],\n            'PT15S',\n            0,\n        ];\n        yield [\n            [\n                'hours' => 1,\n                'seconds' => -59,\n            ],\n            'PT59M1S',\n            0,\n        ];\n        yield [\n            [\n                'hours' => -1,\n                'seconds' => 59,\n            ],\n            'PT59M1S',\n            1,\n        ];\n        yield [\n            [\n                'years' => 94,\n                'months' => 11,\n                'days' => 24,\n                'hours' => 3848,\n                'microseconds' => 7991,\n            ],\n            'P95Y5M16DT8H',\n            0,\n        ];\n    }\n\n    public function testCascadesWithMicroseconds()\n    {\n        $interval = CarbonInterval::fromString('1040ms 3012µs')->cascade();\n\n        $this->assertSame('PT1S', $interval->spec());\n        $this->assertSame(43, $interval->milliseconds);\n        $this->assertSame(43012, $interval->microseconds);\n    }\n\n    #[TestWith(['3600s', '1h'])]\n    #[TestWith(['10000s', '2h 46m 40s'])]\n    #[TestWith(['1276d', '255w 1d'])]\n    #[TestWith(['47d 14h', '9w 3d 6h'])]\n    #[TestWith(['2y 123mo 5w 6d 47h 160m 217s', '2yrs 123mos 7w 2d 1h 43m 37s'])]\n    public function testCustomCascadesOverflowedValues($spec, $expected)\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minutes' => [Carbon::SECONDS_PER_MINUTE, 'seconds'],\n            'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'],\n            'dayz' => [8, 'hours'],\n            'weeks' => [5, 'dayz'],\n        ]);\n        $actual = CarbonInterval::fromString($spec)->cascade()->forHumans(true);\n        CarbonInterval::setCascadeFactors($cascades);\n\n        $this->assertSame($expected, $actual);\n    }\n\n    #[TestWith(['3600s', '1 hour'])]\n    #[TestWith(['10000s', '2 hours 46 minutes 40 seconds'])]\n    #[TestWith(['1276d', '255 weeks 1 day'])]\n    #[TestWith(['47d 14h', '9 weeks 3 days 6 hours'])]\n    #[TestWith(['2y 123mo 5w 6d 47h 160m 217s', '2 years 123 months 7 weeks 2 days 1 hour 43 minutes 37 seconds'])]\n    public function testCustomCascadesOverflowedValuesLongFormat($spec, $expected)\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minutes' => [Carbon::SECONDS_PER_MINUTE, 'seconds'],\n            'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'],\n            'dayz' => [8, 'hours'],\n            'weeks' => [5, 'dayz'],\n        ]);\n        $actual = CarbonInterval::fromString($spec)->cascade()->forHumans(false);\n        CarbonInterval::setCascadeFactors($cascades);\n\n        $this->assertSame($expected, $actual);\n    }\n\n    public function testMultipleAdd()\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minutes' => [Carbon::SECONDS_PER_MINUTE, 'seconds'],\n            'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'],\n            'days' => [8, 'hours'],\n            'weeks' => [5, 'days'],\n        ]);\n        $actual = CarbonInterval::fromString('3d')\n            ->add(CarbonInterval::fromString('1d 5h'))\n            ->add(CarbonInterval::fromString('7h'))\n            ->cascade()\n            ->forHumans(true);\n        CarbonInterval::setCascadeFactors($cascades);\n        $this->assertSame('1w 4h', $actual);\n    }\n\n    public function testFactorsGroups()\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'],\n            'weeks' => [5, 'days'],\n        ]);\n        $actual = CarbonInterval::fromString('3d 50m')\n            ->add(CarbonInterval::fromString('1d 5h 30m'))\n            ->add(CarbonInterval::fromString('7h 45m'))\n            ->add(CarbonInterval::fromString('1w 15m'))\n            ->cascade()\n            ->forHumans(true);\n        CarbonInterval::setCascadeFactors($cascades);\n        $this->assertSame('1w 4d 14h 20m', $actual);\n    }\n\n    public function testGetFactor()\n    {\n        $this->assertSame(28, CarbonInterval::getFactor('day', 'months'));\n        $this->assertSame(28, CarbonInterval::getFactor('day', 'month'));\n        $this->assertSame(28, CarbonInterval::getFactor('days', 'month'));\n        $this->assertSame(28, CarbonInterval::getFactor('day', 'month'));\n        $this->assertSame(28, CarbonInterval::getFactor('dayz', 'months'));\n    }\n\n    public function testComplexInterval()\n    {\n        $interval = CarbonInterval::create(0);\n        $this->assertFalse($interval->hasNegativeValues());\n        $this->assertFalse($interval->hasPositiveValues());\n        $interval->days = -6;\n        $this->assertTrue($interval->hasNegativeValues());\n        $this->assertFalse($interval->hasPositiveValues());\n        $interval->days = 6;\n        $this->assertFalse($interval->hasNegativeValues());\n        $this->assertTrue($interval->hasPositiveValues());\n        $interval->hours = -40;\n        $this->assertTrue($interval->hasNegativeValues());\n        $this->assertTrue($interval->hasPositiveValues());\n\n        $interval = CarbonInterval::create()\n            ->years(-714)->months(-101)->days(-737)\n            ->seconds(442)->microseconds(-19)\n            ->cascade();\n\n        $this->assertFalse($interval->hasNegativeValues());\n        $this->assertTrue($interval->hasPositiveValues());\n\n        $interval = CarbonInterval::create(0)->hours(-7024)->cascade();\n\n        $this->assertLessThan(0, $interval->totalDays);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/CloneTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass CloneTest extends AbstractTestCase\n{\n    public function testClone()\n    {\n        $first = CarbonInterval::minute();\n        $second = $first->clone();\n        $result = $first->compare($second);\n        $this->assertSame(0, $result);\n        $this->assertNotSame($second, $first);\n        $this->assertEquals($second, $first);\n    }\n\n    public function testCopy()\n    {\n        $first = CarbonInterval::minute();\n        $second = $first->copy();\n        $result = $first->compare($second);\n        $this->assertSame(0, $result);\n        $this->assertNotSame($second, $first);\n        $this->assertEquals($second, $first);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/CompareTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass CompareTest extends AbstractTestCase\n{\n    public function testNegative()\n    {\n        $first = CarbonInterval::minute();\n        $second = CarbonInterval::minutes(2);\n        $result = $first->compare($second);\n        $this->assertSame(-1, $result);\n    }\n\n    public function testPositive()\n    {\n        $first = CarbonInterval::day();\n        $second = CarbonInterval::hour();\n        $result = $first->compare($second);\n        $this->assertSame(1, $result);\n    }\n\n    public function testEqual()\n    {\n        $first = CarbonInterval::year();\n        $second = CarbonInterval::year();\n        $result = $first->compare($second);\n        $this->assertSame(0, $result);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse DateInterval;\nuse Tests\\AbstractTestCase;\n\nclass ComparisonTest extends AbstractTestCase\n{\n    public function testEqualToTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->equalTo($oneDay));\n        $this->assertTrue($oneDay->eq($oneDay));\n        $this->assertTrue($oneDay->eq(CarbonInterval::day()));\n        $this->assertTrue($oneDay->eq(new DateInterval('P1D')));\n        $this->assertTrue($oneDay->eq(CarbonInterval::hours(24)));\n        $this->assertTrue($oneDay->eq(CarbonInterval::hours(23)->minutes(60)));\n        $this->assertTrue($oneDay->eq('24 hours'));\n        $this->assertTrue($oneDay->eq('P1D'));\n        $this->assertTrue(CarbonInterval::day()->invert()->eq(CarbonInterval::days(-1)));\n        $this->assertTrue(CarbonInterval::day()->sub('1 day')->eq(CarbonInterval::create()));\n        $nextWeekday = function (CarbonInterface $date) {\n            return $date->nextWeekday();\n        };\n        $this->assertTrue(CarbonInterval::create($nextWeekday)->eq(CarbonInterval::create($nextWeekday)));\n    }\n\n    public function testEqualToFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->equalTo(CarbonInterval::hours(24)->microsecond(1)));\n        $this->assertFalse($oneDay->equalTo(['not-valid']));\n        $this->assertFalse($oneDay->eq(CarbonInterval::hours(24)->microsecond(1)));\n        $this->assertFalse($oneDay->eq(CarbonInterval::hours(23)->minutes(59)->seconds(59)->microseconds(999999)));\n        $nextWeekday = function (CarbonInterface $date) {\n            return $date->nextWeekday();\n        };\n        $nextWeekendDay = function (CarbonInterface $date) {\n            return $date->nextWeekendDay();\n        };\n        $this->assertFalse(CarbonInterval::create($nextWeekday)->eq(CarbonInterval::create($nextWeekendDay)));\n    }\n\n    public function testNotEqualToTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->notEqualTo(CarbonInterval::hours(24)->microsecond(1)));\n        $this->assertTrue($oneDay->ne(CarbonInterval::hours(24)->microsecond(1)));\n        $this->assertTrue($oneDay->ne(CarbonInterval::hours(23)->minutes(59)->seconds(59)->microseconds(999999)));\n    }\n\n    public function testNotEqualToFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->notEqualTo($oneDay));\n        $this->assertFalse($oneDay->ne($oneDay));\n        $this->assertFalse($oneDay->ne(CarbonInterval::day()));\n        $this->assertFalse($oneDay->ne(new DateInterval('P1D')));\n        $this->assertFalse($oneDay->ne(CarbonInterval::hours(24)));\n        $this->assertFalse($oneDay->ne(CarbonInterval::hours(23)->minutes(60)));\n        $this->assertFalse($oneDay->ne('24 hours'));\n        $this->assertFalse($oneDay->ne('P1D'));\n    }\n\n    public function testGreaterThanToTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->greaterThan(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertTrue($oneDay->gt(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertTrue($oneDay->gt(new DateInterval('P0DT23H59M59S')));\n        $this->assertTrue($oneDay->gt(CarbonInterval::hours(23)->minutes(59)->seconds(59)->microseconds(999999)));\n        $this->assertTrue($oneDay->gt('23 hours 59 minutes 59 seconds 999999 microseconds'));\n        $this->assertTrue($oneDay->gt('P0DT23H59M59S'));\n    }\n\n    public function testGreaterThanError()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('xxx', true),\n        ));\n\n        CarbonInterval::day()->gt('xxx');\n    }\n\n    public function testGreaterThanToFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->greaterThan($oneDay));\n        $this->assertFalse($oneDay->gt($oneDay));\n        $this->assertFalse($oneDay->gt(CarbonInterval::day()));\n        $this->assertFalse($oneDay->gt(CarbonInterval::hours(23)->minutes(60)));\n\n        $this->assertFalse($oneDay->greaterThan(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertFalse($oneDay->gt(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertFalse($oneDay->gt(CarbonInterval::hours(23)->minutes(59)->seconds(59)->milliseconds(1001)));\n    }\n\n    public function testGreaterThanOrEqualToTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->greaterThanOrEqualTo($oneDay));\n        $this->assertTrue($oneDay->gte($oneDay));\n        $this->assertTrue($oneDay->gte(CarbonInterval::day()));\n        $this->assertTrue($oneDay->gte(CarbonInterval::hours(23)->minutes(60)));\n\n        $this->assertTrue($oneDay->greaterThanOrEqualTo(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertTrue($oneDay->gte(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertTrue($oneDay->gte(CarbonInterval::hours(23)->minutes(59)->seconds(59)->microseconds(999999)));\n    }\n\n    public function testGreaterThanOrEqualError()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('xxx', true),\n        ));\n\n        CarbonInterval::day()->gte('xxx');\n    }\n\n    public function testGreaterThanOrEqualToFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->greaterThanOrEqualTo(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertFalse($oneDay->gte(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertFalse($oneDay->gte(new DateInterval('P0DT23H59M61S')));\n        $this->assertFalse($oneDay->gte(CarbonInterval::hours(23)->minutes(59)->seconds(59)->milliseconds(1001)));\n        $this->assertFalse($oneDay->gte('23 hours 59 minutes 59 seconds 59 milliseconds 1001 milliseconds'));\n        $this->assertFalse($oneDay->gte('P0DT23H59M61S'));\n    }\n\n    public function testLessThanToTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->lessThan(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertTrue($oneDay->lt(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertTrue($oneDay->lt(new DateInterval('P0DT23H59M61S')));\n        $this->assertTrue($oneDay->lt(CarbonInterval::hours(23)->minutes(59)->seconds(59)->milliseconds(1001)));\n        $this->assertTrue($oneDay->lt('23 hours 59 minutes 59 seconds 59 milliseconds 1001 milliseconds'));\n        $this->assertTrue($oneDay->lt('P0DT23H59M61S'));\n    }\n\n    public function testLessThanToFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->lessThan($oneDay));\n        $this->assertFalse($oneDay->lt($oneDay));\n        $this->assertFalse($oneDay->lt(CarbonInterval::day()));\n        $this->assertFalse($oneDay->lt(CarbonInterval::hours(23)->minutes(60)));\n\n        $this->assertFalse($oneDay->lessThan(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertFalse($oneDay->lt(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertFalse($oneDay->lt(CarbonInterval::hours(23)->minutes(59)->seconds(59)->microseconds(999999)));\n    }\n\n    public function testLessThanError()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('xxx', true),\n        ));\n\n        CarbonInterval::day()->lt('xxx');\n    }\n\n    public function testLessThanOrEqualToTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->lessThanOrEqualTo($oneDay));\n        $this->assertTrue($oneDay->lte($oneDay));\n        $this->assertTrue($oneDay->lte(CarbonInterval::day()));\n        $this->assertTrue($oneDay->lte(CarbonInterval::hours(23)->minutes(60)));\n\n        $this->assertTrue($oneDay->lessThanOrEqualTo(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertTrue($oneDay->lte(CarbonInterval::day()->add(1, 'microseconds')));\n        $this->assertTrue($oneDay->lte(CarbonInterval::hours(23)->minutes(59)->seconds(59)->milliseconds(1001)));\n    }\n\n    public function testLessThanOrEqualToFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->lessThanOrEqualTo(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertFalse($oneDay->lte(CarbonInterval::day()->sub(1, 'microseconds')));\n        $this->assertFalse($oneDay->lte(new DateInterval('P0DT23H59M59S')));\n        $this->assertFalse($oneDay->lte(CarbonInterval::hours(23)->minutes(59)->seconds(59)->microseconds(999999)));\n        $this->assertFalse($oneDay->lte('23 hours 59 minutes 59 seconds 999999 microseconds'));\n        $this->assertFalse($oneDay->lte('P0DT23H59M59S'));\n    }\n\n    public function testLessThanOrEqualError()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('xxx', true),\n        ));\n\n        CarbonInterval::day()->lte('xxx');\n    }\n\n    public function testBetweenFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->between(CarbonInterval::days(2), CarbonInterval::days(3)));\n\n        $twoDays = CarbonInterval::hours(48);\n        $this->assertFalse($twoDays->between(CarbonInterval::day(), CarbonInterval::days(2), false));\n    }\n\n    public function testBetweenTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->between(CarbonInterval::hours(12), CarbonInterval::hours(36)));\n\n        $twoDays = CarbonInterval::hours(48);\n        $this->assertTrue($twoDays->between(CarbonInterval::day(), CarbonInterval::days(3), false));\n        $this->assertTrue($twoDays->between(CarbonInterval::day(), CarbonInterval::days(3), true));\n        $this->assertTrue($twoDays->between(CarbonInterval::day(), CarbonInterval::days(3)));\n        $this->assertTrue($twoDays->between(CarbonInterval::day(), CarbonInterval::days(2)));\n    }\n\n    public function testBetweenIncludedFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->betweenIncluded(CarbonInterval::days(2), CarbonInterval::days(3)));\n    }\n\n    public function testBetweenIncludedTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->betweenIncluded(CarbonInterval::hours(12), CarbonInterval::hours(36)));\n\n        $twoDays = CarbonInterval::hours(48);\n        $this->assertTrue($twoDays->betweenIncluded(CarbonInterval::day(), CarbonInterval::days(2)));\n    }\n\n    public function testBetweenExcludedFalse()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertFalse($oneDay->betweenExcluded(CarbonInterval::days(2), CarbonInterval::days(3)));\n\n        $twoDays = CarbonInterval::hours(48);\n        $this->assertFalse($twoDays->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(2)));\n    }\n\n    public function testIsBetweenTrue()\n    {\n        $oneDay = CarbonInterval::day();\n        $this->assertTrue($oneDay->isBetween(CarbonInterval::hours(12), CarbonInterval::hours(36)));\n\n        $twoDays = CarbonInterval::hours(48);\n        $this->assertTrue($twoDays->isBetween(CarbonInterval::day(), CarbonInterval::days(3), false));\n        $this->assertTrue($twoDays->isBetween(CarbonInterval::day(), CarbonInterval::days(3), true));\n        $this->assertTrue($twoDays->isBetween(CarbonInterval::day(), CarbonInterval::days(3)));\n        $this->assertTrue($twoDays->isBetween(CarbonInterval::day(), CarbonInterval::days(2)));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ConstructTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Exceptions\\OutOfRangeException;\nuse Carbon\\Unit;\nuse DateInterval;\nuse Exception;\nuse Tests\\AbstractTestCase;\n\nclass ConstructTest extends AbstractTestCase\n{\n    public function testInheritedConstruct()\n    {\n        /** @phpstan-var CarbonInterval $ci */\n        $ci = CarbonInterval::createFromDateString('1 hour');\n        $this->assertSame('PT1H', $ci->spec());\n        $ci = new CarbonInterval('PT0S');\n        $this->assertInstanceOf(CarbonInterval::class, $ci);\n        $this->assertInstanceOf(DateInterval::class, $ci);\n        $this->assertSame('PT0S', $ci->spec());\n        $ci = new CarbonInterval('P1Y2M3D');\n        $this->assertSame('P1Y2M3D', $ci->spec());\n        $ci = CarbonInterval::create('PT0S');\n        $this->assertSame('PT0S', $ci->spec());\n        $ci = CarbonInterval::create('P1Y2M3D');\n        $this->assertSame('P1Y2M3D', $ci->spec());\n        $ci = CarbonInterval::create('P1Y2M3.0D');\n        $this->assertSame('P1Y2M3D', $ci->spec());\n        $ci = CarbonInterval::create('PT9.5H+85M');\n        $this->assertSame('PT9H115M', $ci->spec());\n        $ci = CarbonInterval::create('PT9H+85M');\n        $this->assertSame('PT9H85M', $ci->spec());\n        $ci = CarbonInterval::create('PT1999999999999.5H+85M');\n        $this->assertSame('PT1999999999999H115M', $ci->spec());\n    }\n\n    public function testConstructWithDateInterval()\n    {\n        $month = (PHP_VERSION_ID === 8_03_20) ? 6 : -6; // PHP 8.3.20 triggers segfault with negative or zero values\n        $ci = new CarbonInterval(new DateInterval('P1Y2M3D'));\n        $this->assertSame('P1Y2M3D', $ci->spec());\n        $interval = new DateInterval('P1Y2M3D');\n        $interval->m = $month;\n        $interval->invert = 1;\n        $ci = new CarbonInterval($interval);\n        $this->assertSame(1, $ci->y);\n        $this->assertSame($month, $ci->m);\n        $this->assertSame(3, $ci->d);\n        $this->assertSame(1, $ci->invert);\n    }\n\n    public function testDefaults()\n    {\n        $ci = new CarbonInterval();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n    }\n\n    public function testNulls()\n    {\n        $ci = new CarbonInterval(null, null, null, null, null, null);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n        $ci = CarbonInterval::days(null);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n    }\n\n    public function testZeroes()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 0);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::days(0);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n    }\n\n    public function testZeroesChained()\n    {\n        $ci = CarbonInterval::days(0)->week(0)->minutes(0);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n    }\n\n    public function testYears()\n    {\n        $ci = new CarbonInterval(1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 1, 0, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::years(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 2, 0, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::year();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 1, 0, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::year(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 3, 0, 0, 0, 0, 0);\n    }\n\n    public function testMonths()\n    {\n        $ci = new CarbonInterval(0, 1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 1, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::months(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 2, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::month();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 1, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::month(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 3, 0, 0, 0, 0);\n    }\n\n    public function testWeeks()\n    {\n        $ci = new CarbonInterval(0, 0, 1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 7, 0, 0, 0);\n\n        $ci = CarbonInterval::weeks(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 14, 0, 0, 0);\n\n        $ci = CarbonInterval::week();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 7, 0, 0, 0);\n\n        $ci = CarbonInterval::week(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 21, 0, 0, 0);\n    }\n\n    public function testDays()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 1, 0, 0, 0);\n\n        $ci = CarbonInterval::days(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 2, 0, 0, 0);\n\n        $ci = CarbonInterval::dayz(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 2, 0, 0, 0);\n\n        $ci = CarbonInterval::day();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 1, 0, 0, 0);\n\n        $ci = CarbonInterval::day(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 3, 0, 0, 0);\n    }\n\n    public function testHours()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 1, 0, 0);\n\n        $ci = CarbonInterval::hours(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 2, 0, 0);\n\n        $ci = CarbonInterval::hour();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 1, 0, 0);\n\n        $ci = CarbonInterval::hour(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 3, 0, 0);\n    }\n\n    public function testMinutes()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 1, 0);\n\n        $ci = CarbonInterval::minutes(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 2, 0);\n\n        $ci = CarbonInterval::minute();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 1, 0);\n\n        $ci = CarbonInterval::minute(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 3, 0);\n    }\n\n    public function testSeconds()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 0, 1);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 1);\n\n        $ci = CarbonInterval::seconds(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 2);\n\n        $ci = CarbonInterval::second();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 1);\n\n        $ci = CarbonInterval::second(3);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 3);\n    }\n\n    public function testMilliseconds()\n    {\n        $ci = CarbonInterval::milliseconds(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n        $this->assertSame(2, $ci->milliseconds);\n\n        $ci = CarbonInterval::millisecond();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n        $this->assertSame(1, $ci->milliseconds);\n    }\n\n    public function testMicroseconds()\n    {\n        $ci = CarbonInterval::microseconds(2);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n        $this->assertSame(2, $ci->microseconds);\n\n        $ci = CarbonInterval::microsecond();\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n        $this->assertSame(1, $ci->microseconds);\n    }\n\n    public function testYearsAndHours()\n    {\n        $ci = new CarbonInterval(5, 0, 0, 0, 3, 0, 0);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 5, 0, 0, 3, 0, 0);\n    }\n\n    public function testAll()\n    {\n        $ci = new CarbonInterval(5, 6, 2, 5, 9, 10, 11);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 5, 6, 19, 9, 10, 11);\n    }\n\n    public function testAllWithCreate()\n    {\n        $ci = CarbonInterval::create(5, 6, 2, 5, 9, 10, 11);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 5, 6, 19, 9, 10, 11);\n    }\n\n    public function testInstance()\n    {\n        $ci = CarbonInterval::instance(new DateInterval('P2Y1M5DT22H33M44S'));\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 2, 1, 5, 22, 33, 44);\n        $this->assertFalse($ci->days);\n    }\n\n    public function testInstanceWithSkipCopy()\n    {\n        $ci = CarbonInterval::instance(new DateInterval('P2Y1M5DT22H33M44S'));\n        $copy = CarbonInterval::instance($ci, [], true);\n        $this->assertSame($ci, $copy);\n    }\n\n    public function testInstanceWithNegativeDateInterval()\n    {\n        $di = new DateInterval('P2Y1M5DT22H33M44S');\n        $di->invert = 1;\n        $ci = CarbonInterval::instance($di);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 2, 1, 5, 22, 33, 44);\n        $this->assertFalse($ci->days);\n        $this->assertSame(1, $ci->invert);\n    }\n\n    public function testInstanceWithDays()\n    {\n        $expectedDiff = PHP_VERSION_ID < 8_02_00 ? false : 21;\n        $diff = Carbon::now()->diffAsDateInterval(Carbon::now()->addWeeks(3));\n        $ci = CarbonInterval::instance($diff);\n        $this->assertCarbonInterval($ci, 0, 0, 21, 0, 0, 0);\n        $this->assertSame($expectedDiff, $ci->days);\n        $this->assertSame($expectedDiff, $ci->toDateInterval()->days);\n        $ci2 = CarbonInterval::instance($ci->toDateInterval());\n        $this->assertCarbonInterval($ci2, 0, 0, 21, 0, 0, 0);\n        $this->assertSame($expectedDiff, $ci2->days);\n        $this->assertSame($expectedDiff, $ci2->toDateInterval()->days);\n        $ci3 = unserialize(serialize($ci2));\n        $this->assertCarbonInterval($ci3, 0, 0, 21, 0, 0, 0);\n        $this->assertSame($expectedDiff, $ci3->days);\n        $this->assertSame($expectedDiff, $ci3->toDateInterval()->days);\n\n        $ci = Carbon::now()->diffAsCarbonInterval(Carbon::now()->addWeeks(3));\n        $this->assertCarbonInterval($ci, 0, 0, 21, 0, 0, 0);\n        $this->assertSame($expectedDiff, $ci->days);\n        $this->assertSame($expectedDiff, $ci->toDateInterval()->days);\n    }\n\n    public function testInstanceWithoutDays()\n    {\n        $ci = CarbonInterval::fromString('1 day 3 hours');\n        $this->assertCarbonInterval($ci, 0, 0, 1, 3, 0, 0);\n        $this->assertFalse($ci->days);\n        $this->assertFalse($ci->toDateInterval()->days);\n        $ci2 = CarbonInterval::instance($ci->toDateInterval());\n        $this->assertCarbonInterval($ci2, 0, 0, 1, 3, 0, 0);\n        $this->assertFalse($ci2->days);\n        $this->assertFalse($ci2->toDateInterval()->days);\n        $ci3 = unserialize(serialize($ci2));\n        $this->assertCarbonInterval($ci3, 0, 0, 1, 3, 0, 0);\n        $this->assertFalse($ci3->days);\n        $this->assertFalse($ci3->toDateInterval()->days);\n    }\n\n    public function testCopy()\n    {\n        $one = CarbonInterval::days(10);\n        $two = $one->hours(6)->copy()->hours(3);\n        $this->assertCarbonInterval($one, 0, 0, 10, 6, 0, 0);\n        $this->assertCarbonInterval($two, 0, 0, 10, 3, 0, 0);\n    }\n\n    public function testMake()\n    {\n        $this->assertCarbonInterval(CarbonInterval::make(3, 'hours'), 0, 0, 0, 3, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::make('3 hours 30 m'), 0, 0, 0, 3, 30, 0);\n        $this->assertCarbonInterval(CarbonInterval::make('PT5H'), 0, 0, 0, 5, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::make('PT13.516837S'), 0, 0, 0, 0, 0, 13, 516_837);\n        $this->assertCarbonInterval(CarbonInterval::make('PT32.245S'), 0, 0, 0, 0, 0, 32, 245_000);\n        $this->assertCarbonInterval(CarbonInterval::make('PT13.000001S'), 0, 0, 0, 0, 0, 13, 1);\n        $this->assertCarbonInterval(CarbonInterval::make('PT13.001S'), 0, 0, 0, 0, 0, 13, 1_000);\n        $this->assertCarbonInterval(CarbonInterval::make(new DateInterval('P1D')), 0, 0, 1, 0, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::make(new CarbonInterval('P2M')), 0, 2, 0, 0, 0, 0);\n        $this->assertNull(CarbonInterval::make(3));\n\n        $this->assertSame(3.0, CarbonInterval::make('3 milliseconds')->totalMilliseconds);\n        $this->assertSame(3.0, CarbonInterval::make('3 microseconds')->totalMicroseconds);\n        $this->assertSame(21.0, CarbonInterval::make('3 weeks')->totalDays);\n        $this->assertSame(9.0, CarbonInterval::make('3 quarters')->totalMonths);\n        $this->assertSame(30.0, CarbonInterval::make('3 decades')->totalYears);\n        $this->assertSame(300.0, CarbonInterval::make('3 centuries')->totalYears);\n        $this->assertSame(3000.0, CarbonInterval::make('3 millennia')->totalYears);\n    }\n\n    public function testBadFormats()\n    {\n        $this->expectExceptionObject(new Exception('PT1999999999999.5.5H+85M'));\n\n        CarbonInterval::create('PT1999999999999.5.5H+85M');\n    }\n\n    public function testOutOfRange()\n    {\n        $this->expectExceptionObject(new OutOfRangeException(\n            'hour',\n            -0x7fffffffffffffff,\n            0x7fffffffffffffff,\n            999999999999999999999999\n        ));\n\n        CarbonInterval::create('PT999999999999999999999999H');\n    }\n\n    public function testCallInvalidStaticMethod()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Unknown fluent constructor \\'anything\\'',\n        ));\n\n        CarbonInterval::anything();\n    }\n\n    public function testOriginal()\n    {\n        $this->assertSame('3 hours', CarbonInterval::make(3, 'hours')->original());\n        $this->assertSame('3 hours 30 m', CarbonInterval::make('3 hours 30 m')->original());\n        $this->assertSame('PT5H', CarbonInterval::make('PT5H')->original());\n        $interval = new DateInterval('P1D');\n        $this->assertSame($interval, CarbonInterval::make($interval)->original());\n        $interval = new CarbonInterval('P2M');\n        $this->assertSame($interval, CarbonInterval::make($interval)->original());\n    }\n\n    public function testCreateFromDateString()\n    {\n        $this->assertCarbonInterval(CarbonInterval::createFromDateString('3 hours'), 0, 0, 0, 3, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::createFromDateString('46 days, 43 hours and 57 minutes'), 0, 0, 46, 43, 57, 0);\n    }\n\n    public function testCreateFromDateIncorrectString()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('foo bar', true),\n        ));\n\n        CarbonInterval::createFromDateString('foo bar');\n    }\n\n    public function testCreateFromDateIncorrectStringWithErrorAsException()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('foo bar', true),\n        ));\n\n        $this->withErrorAsException(function () {\n            CarbonInterval::createFromDateString('foo bar');\n        });\n    }\n\n    public function testMakeFromDateIncorrectString()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('foo bar', true),\n        ));\n\n        CarbonInterval::make('foo bar');\n    }\n\n    public function testMakeFromDateIncorrectStringWithErrorAsException()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('foo bar', true),\n        ));\n\n        $this->withErrorAsException(function () {\n            CarbonInterval::make('foo bar');\n        });\n    }\n\n    public function testEnums()\n    {\n        $this->assertCarbonInterval(CarbonInterval::make(3, Unit::Hour), 0, 0, 0, 3, 0, 0);\n        $this->assertCarbonInterval(CarbonInterval::make(Unit::Week), 0, 0, 7, 0, 0, 0);\n    }\n\n    public function testFromSerialization()\n    {\n        $past = new Carbon('-3 Days');\n        $today = new Carbon('today');\n        $interval = $today->diffAsCarbonInterval($past);\n        /** @var CarbonInterval $copy */\n        $copy = unserialize(serialize($interval));\n\n        $this->assertInstanceOf(CarbonInterval::class, $copy);\n\n        $this->assertSame('2 days', $interval->forHumans(parts: 1));\n        $this->assertSame('2 days', $copy->forHumans(parts: 1));\n\n        $this->assertSame(['en'], array_keys($interval->getLocalTranslator()->getMessages()) ?: ['en']);\n        $this->assertSame(['en'], array_keys($copy->getLocalTranslator()->getMessages()) ?: ['en']);\n        $this->assertSame($interval->locale, $copy->locale);\n\n        // Ignore translator for the English comparison\n        $copy->setLocalTranslator($interval->getLocalTranslator());\n\n        $this->assertSameIntervals($interval, $copy, 1);\n\n        $interval = $today->locale('ja')->diffAsCarbonInterval($past);\n        /** @var CarbonInterval $copy */\n        $copy = unserialize(serialize($interval));\n\n        $this->assertInstanceOf(CarbonInterval::class, $copy);\n\n        $this->assertSame('二日', $interval->forHumans(['altNumbers' => true, 'parts' => 1]));\n        $this->assertSame('二日', $copy->forHumans(['altNumbers' => true, 'parts' => 1]));\n\n        $this->assertSame(['ja'], array_keys($interval->getLocalTranslator()->getMessages()));\n        $this->assertSame(['ja'], array_keys($copy->getLocalTranslator()->getMessages()));\n\n        $this->assertSameIntervals($interval, $copy, 1);\n    }\n\n    public function testFromSerializationConst()\n    {\n        $past = new Carbon('2024-01-01 00:00:00');\n        $today = new Carbon('2024-01-03 06:39:47.065034');\n        $interval = $today->diffAsCarbonInterval($past);\n        /** @var CarbonInterval $copy */\n        $copy = unserialize(serialize($interval));\n\n        $this->assertInstanceOf(CarbonInterval::class, $copy);\n\n        $this->assertSame('2 days', $interval->forHumans(parts: 1));\n        $this->assertSame('2 days', $copy->forHumans(parts: 1));\n\n        $this->assertSame(['en'], array_keys($interval->getLocalTranslator()->getMessages()) ?: ['en']);\n        $this->assertSame(['en'], array_keys($copy->getLocalTranslator()->getMessages()) ?: ['en']);\n        $this->assertSame($interval->locale, $copy->locale);\n\n        // Ignore translator for the English comparison\n        $copy->setLocalTranslator($interval->getLocalTranslator());\n\n        $this->assertSameIntervals($interval, $copy, 1);\n\n        $interval = $today->locale('ja')->diffAsCarbonInterval($past);\n        /** @var CarbonInterval $copy */\n        $copy = unserialize(serialize($interval));\n\n        $this->assertInstanceOf(CarbonInterval::class, $copy);\n\n        $this->assertSame('二日', $interval->forHumans(['altNumbers' => true, 'parts' => 1]));\n        $this->assertSame('二日', $copy->forHumans(['altNumbers' => true, 'parts' => 1]));\n\n        $this->assertSame(['ja'], array_keys($interval->getLocalTranslator()->getMessages()));\n        $this->assertSame(['ja'], array_keys($copy->getLocalTranslator()->getMessages()));\n\n        $this->assertSameIntervals($interval, $copy, 1);\n    }\n\n    public function testFromV2SerializedInterval()\n    {\n        $serializedData = trim(file_get_contents(__DIR__.'/../Fixtures/serialized-interval-from-v2.txt'));\n        $interval = unserialize($serializedData);\n\n        $this->assertInstanceOf(CarbonInterval::class, $interval);\n        $this->assertSame(2, $interval->m);\n        $this->assertSame(5.4e-5, $interval->f);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/CreateFromFormatTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Carbon\\Exceptions\\ParseErrorException;\nuse Tests\\AbstractTestCase;\n\nclass CreateFromFormatTest extends AbstractTestCase\n{\n    public function testDefaults()\n    {\n        $this->expectExceptionObject(new ParseErrorException(\n            'number',\n            '',\n        ));\n\n        CarbonInterval::createFromFormat('H:i:s', '');\n    }\n\n    public function testNulls()\n    {\n        $this->expectExceptionObject(new ParseErrorException(\n            'number',\n            '',\n        ));\n\n        CarbonInterval::createFromFormat('H:i:s', null);\n    }\n\n    public function testTrailingData()\n    {\n        $this->expectExceptionObject(new ParseErrorException(\n            'end of string',\n            ':25',\n        ));\n\n        CarbonInterval::createFromFormat('H:i', '01:30:25');\n    }\n\n    public function testInvalidSubstitute()\n    {\n        $this->expectExceptionObject(\n            new ParseErrorException(\n                \"'N'\",\n                '4',\n                'Allowed substitutes for interval formats are y, Y, o, m, n, W, d, j, z, h, g, H, G, i, s, u, v'.\n                \"\\n\".\n                'See https://php.net/manual/en/function.date.php for their meaning',\n            ),\n        );\n\n        CarbonInterval::createFromFormat('N', '4');\n    }\n\n    public function testYears()\n    {\n        $ci = CarbonInterval::createFromFormat('Y', '1');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 1, 0, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::createFromFormat('Y', '2');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 2, 0, 0, 0, 0, 0);\n    }\n\n    public function testMonths()\n    {\n        $ci = CarbonInterval::createFromFormat('m', '1');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 1, 0, 0, 0, 0);\n\n        $ci = CarbonInterval::createFromFormat('m', '2');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 2, 0, 0, 0, 0);\n    }\n\n    public function testWeeks()\n    {\n        $ci = CarbonInterval::createFromFormat('W', '1');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 7, 0, 0, 0);\n\n        $ci = CarbonInterval::createFromFormat('W', '2');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 14, 0, 0, 0);\n    }\n\n    public function testDays()\n    {\n        $ci = CarbonInterval::createFromFormat('d', '1');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 1, 0, 0, 0);\n\n        $ci = CarbonInterval::createFromFormat('d', '2');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 2, 0, 0, 0);\n    }\n\n    public function testWeeksAndDays()\n    {\n        $ci = CarbonInterval::createFromFormat('W d', '3 5');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 26, 0, 0, 0);\n\n        $ci = CarbonInterval::createFromFormat('W d', '2 -6');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 8, 0, 0, 0);\n    }\n\n    public function testHours()\n    {\n        $ci = CarbonInterval::createFromFormat('H', '1');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 1, 0, 0);\n\n        $ci = CarbonInterval::createFromFormat('H', '2');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 2, 0, 0);\n    }\n\n    public function testMinutes()\n    {\n        $ci = CarbonInterval::createFromFormat('i', '01');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 1, 0);\n\n        $ci = CarbonInterval::createFromFormat('i', '02');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 2, 0);\n    }\n\n    public function testSeconds()\n    {\n        $ci = CarbonInterval::createFromFormat('s', '01');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 1);\n\n        $ci = CarbonInterval::createFromFormat('s', '02');\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 2);\n    }\n\n    public function testDecimalSeconds()\n    {\n        $ci = CarbonInterval::createFromFormat('s.v', '1.5');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 1, 500000);\n\n        $ci = CarbonInterval::createFromFormat('s.u', '1.2534');\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 1, 253400);\n    }\n\n    public function testMilliseconds()\n    {\n        $ci = CarbonInterval::createFromFormat('v', '100');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0, 100000);\n        $this->assertSame(100000, $ci->microseconds);\n\n        $ci = CarbonInterval::createFromFormat('v', '200');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0, 200000);\n    }\n\n    public function testMicroseconds()\n    {\n        $ci = CarbonInterval::createFromFormat('u', '100000');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0, 100000);\n        $this->assertSame(100000, $ci->microseconds);\n\n        $ci = CarbonInterval::createFromFormat('u', '200000');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0, 200000);\n    }\n\n    public function testTime()\n    {\n        $ci = CarbonInterval::createFromFormat('H:i:s', '00:05:00');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 5, 0, 0);\n    }\n\n    public function testAll()\n    {\n        $ci = CarbonInterval::createFromFormat('Y-m-d H:i:s.u', '2000-01-02 3:04:05.500000');\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 2000, 1, 2, 3, 4, 5, 500000);\n    }\n\n    public function testCopy()\n    {\n        $one = CarbonInterval::createFromFormat('H:i:s', '10:10:10');\n        $two = $one->copy()->hours(3)->minutes(3)->seconds(3);\n        $this->assertCarbonInterval($one, 0, 0, 0, 10, 10, 10);\n        $this->assertCarbonInterval($two, 0, 0, 0, 3, 3, 3);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/DivideTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass DivideTest extends AbstractTestCase\n{\n    public function testDivideSimple()\n    {\n        $ci = CarbonInterval::hours(3)->minutes(43)->divide(0.25);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 14, 52, 00);\n    }\n\n    public function testDivideMoreThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->divide(1 / 2.75);\n        $this->assertCarbonInterval($ci, 11, 10, 3, 20, 13, 0);\n    }\n\n    public function testDivideOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->divide(1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n    }\n\n    public function testDivideLessThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->divide(3);\n        $this->assertCarbonInterval($ci, 1, 5, 6, 9, 43, 23);\n    }\n\n    public function testDivideLessThanZero()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->divide(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(1, $ci->invert);\n    }\n\n    public function testDivideLessThanZeroWithInvertedInterval()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11);\n        $ci->invert = 1;\n        $ci->divide(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(0, $ci->invert);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/Fixtures/Mixin.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval\\Fixtures;\n\nuse Carbon\\CarbonInterval;\n\nclass Mixin\n{\n    public $factor;\n\n    public function setFactor()\n    {\n        $mixin = $this;\n\n        return function ($factor) use ($mixin) {\n            $mixin->factor = $factor;\n        };\n    }\n\n    public function doMultiply()\n    {\n        $mixin = $this;\n\n        return function () use ($mixin) {\n            /** @var CarbonInterval $interval */\n            $interval = $this;\n\n            return $interval->times($mixin->factor);\n        };\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/Fixtures/MixinTrait.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval\\Fixtures;\n\ntrait MixinTrait\n{\n    public function andAgain()\n    {\n        return $this->times(2);\n    }\n\n    public function copyAndAgain()\n    {\n        return $this->copy()->andAgain();\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/Fixtures/MyCarbonInterval.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval\\Fixtures;\n\nuse Carbon\\CarbonInterval;\n\nclass MyCarbonInterval extends CarbonInterval\n{\n    //\n}\n"
  },
  {
    "path": "tests/CarbonInterval/FloatSettersEnabledTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse RuntimeException;\nuse Tests\\AbstractTestCase;\n\nclass FloatSettersEnabledTest extends AbstractTestCase\n{\n    protected function setUp(): void\n    {\n        parent::setUp();\n        CarbonInterval::enableFloatSetters();\n    }\n\n    protected function tearDown(): void\n    {\n        CarbonInterval::enableFloatSetters(false);\n        parent::tearDown();\n    }\n\n    public function testInheritedConstruct()\n    {\n        $ci = new CarbonInterval('PT0S');\n        $ci->hours(0.5);\n        $this->assertSame('PT30M', $ci->spec());\n\n        $ci = new CarbonInterval('P1D');\n        $ci->hours(0.5);\n        $this->assertSame('P1DT30M', $ci->spec());\n\n        $ci = new CarbonInterval('PT4H');\n        $ci->hours(0.5);\n        $this->assertSame('PT30M', $ci->spec());\n\n        $period = CarbonPeriod::since('2018-04-21 00:00:00')->hours(0.5)->until('2018-04-21 02:00:00');\n        $this->assertSame('2018-04-21 00:30:00', $period->toArray()[1]->format('Y-m-d H:i:s'));\n\n        CarbonInterval::enableFloatSetters(false);\n        $ci = new CarbonInterval('PT4H');\n        $ci->hours(0.5);\n        $this->assertSame('PT0S', $ci->spec());\n    }\n\n    public function testOverridePrevention()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'You cannot set hour to a float value as minute would be overridden, '.\n            'set it first to 0 explicitly if you really want to erase its value'\n        ));\n\n        $ci = new CarbonInterval('PT10M');\n        $ci->hours(0.5);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ForHumansTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Translator as CarbonTranslator;\nuse Symfony\\Component\\Translation\\Loader\\ArrayLoader;\nuse Symfony\\Component\\Translation\\Translator;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonInterval\\Fixtures\\MyCarbonInterval;\n\nclass ForHumansTest extends AbstractTestCase\n{\n    protected function tearDown(): void\n    {\n        parent::tearDown();\n        CarbonInterval::setLocale('en');\n    }\n\n    public function testGetTranslator()\n    {\n        /** @var CarbonTranslator $t */\n        $t = CarbonInterval::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('en', $t->getLocale());\n        $this->assertSame('en', CarbonInterval::day()->locale());\n    }\n\n    public function testResetTranslator()\n    {\n        /** @var CarbonTranslator $t */\n        $t = MyCarbonInterval::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('en', $t->getLocale());\n        $this->assertSame('en', CarbonInterval::day()->locale());\n    }\n\n    public function testSetTranslator()\n    {\n        /** @var CarbonTranslator $ori */\n        $ori = CarbonInterval::getTranslator();\n        $t = new Translator('fr');\n        $t->addLoader('array', new ArrayLoader());\n        CarbonInterval::setTranslator($t);\n\n        /** @var CarbonTranslator $t */\n        $t = CarbonInterval::getTranslator();\n        $this->assertNotNull($t);\n        $this->assertSame('fr', $t->getLocale());\n        CarbonInterval::setTranslator($ori);\n    }\n\n    public function testDumpTranslator()\n    {\n        $t = new CarbonTranslator('tr_CY');\n        $this->assertSame([\n            'locale' => 'tr_CY',\n        ], $t->__debugInfo());\n    }\n\n    public function testGetLocale()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('en', CarbonInterval::getLocale());\n    }\n\n    public function testSetLocale()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('en', CarbonInterval::getLocale());\n        CarbonInterval::setLocale('fr');\n        $this->assertSame('fr', CarbonInterval::getLocale());\n    }\n\n    public function testOptions()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('1 year 2 months ago', CarbonInterval::year()->add(CarbonInterval::months(2))->forHumans(CarbonInterface::DIFF_RELATIVE_TO_NOW));\n        $this->assertSame('1 year before', CarbonInterval::year()->add(CarbonInterval::months(2))->forHumans(CarbonInterface::DIFF_RELATIVE_TO_OTHER, 1));\n    }\n\n    public function testYear()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('1 year', CarbonInterval::year()->forHumans());\n    }\n\n    public function testYearToString()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('1 year:abc', CarbonInterval::year().':abc');\n    }\n\n    public function testYears()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('2 years', CarbonInterval::years(2)->forHumans());\n    }\n\n    public function testYearsAndMonth()\n    {\n        CarbonInterval::setLocale('en');\n        $this->assertSame('2 years 1 month', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testAll()\n    {\n        CarbonInterval::setLocale('en');\n        $ci = CarbonInterval::create(11, 1, 2, 5, 22, 33, 55)->forHumans();\n        $this->assertSame('11 years 1 month 2 weeks 5 days 22 hours 33 minutes 55 seconds', $ci);\n    }\n\n    public function testYearsAndMonthInFrench()\n    {\n        CarbonInterval::setLocale('fr');\n        $this->assertSame('2 ans 1 mois', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testYearsAndMonthInGerman()\n    {\n        CarbonInterval::setLocale('de');\n        $this->assertSame('1 Jahr 1 Monat', CarbonInterval::create(1, 1)->forHumans());\n        $this->assertSame('2 Jahre 1 Monat', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testYearsAndMonthInBulgarian()\n    {\n        CarbonInterval::setLocale('bg');\n        $this->assertSame('1 година 1 месец', CarbonInterval::create(1, 1)->forHumans());\n        $this->assertSame('2 години 1 месец', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testYearsAndMonthInCatalan()\n    {\n        CarbonInterval::setLocale('ca');\n        $this->assertSame('1 any 1 mes', CarbonInterval::create(1, 1)->forHumans());\n        $this->assertSame('2 anys 1 mes', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testYearsAndMonthInCzech()\n    {\n        CarbonInterval::setLocale('cs');\n        $this->assertSame('1 rok 1 měsíc', CarbonInterval::create(1, 1)->forHumans());\n        $this->assertSame('2 roky 1 měsíc', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testYearsAndMonthInGreek()\n    {\n        CarbonInterval::setLocale('el');\n        $this->assertSame('1 χρόνος 1 μήνας', CarbonInterval::create(1, 1)->forHumans());\n        $this->assertSame('2 χρόνια 1 μήνας', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testYearsAndMonthsInDanish()\n    {\n        CarbonInterval::setLocale('da');\n        $this->assertSame('1 år 1 måned', CarbonInterval::create(1, 1)->forHumans());\n        $this->assertSame('2 år 1 måned', CarbonInterval::create(2, 1)->forHumans());\n    }\n\n    public function testCustomJoin()\n    {\n        $interval = CarbonInterval::create(1, 1, 0, 1, 1)->locale('fr');\n        $this->assertSame('1 an 1 mois 1 jour 1 heure', $interval->forHumans());\n        $this->assertSame('1 an, 1 mois, 1 jour et 1 heure', $interval->forHumans([\n            'join' => true,\n        ]));\n        $this->assertSame('1 နှစ် 1 လ 1 ရက် 1 နာရီ', $interval->copy()->locale('my')->forHumans([\n            'join' => true,\n        ]));\n        $this->assertSame('တစ်နှစ် တစ်လ တစ်ရက် တစ်နာရီ', $interval->copy()->locale('my')->forHumans([\n            'join' => true,\n            'aUnit' => true,\n        ]));\n        $this->assertSame('un an, un mois, un jour, une heure', $interval->forHumans([\n            'join' => ', ',\n            'aUnit' => true,\n        ]));\n        $this->assertSame('un an et un mois et un jour et aussi une heure', $interval->forHumans([\n            'join' => [' et ', ' et aussi '],\n            'aUnit' => true,\n        ]));\n        $interval = CarbonInterval::create(1, 1, 0, 1, 1)->locale('en');\n        $this->assertSame('1 year 1 month 1 day 1 hour', $interval->forHumans());\n        $this->assertSame('1 year, 1 month, 1 day and 1 hour', $interval->forHumans([\n            'join' => true,\n        ]));\n        $this->assertSame('1 year, 1 month, 1 day, 1 hour', $interval->forHumans([\n            'join' => ', ',\n        ]));\n        $this->assertSame('a year and a month and a day and also an hour', $interval->forHumans([\n            'join' => [' and ', ' and also '],\n            'aUnit' => true,\n        ]));\n        $this->assertSame('[1 year;1 month;1 day;1 hour]', $interval->forHumans([\n            'join' => function ($list) {\n                return '['.implode(';', $list).']';\n            },\n        ]));\n    }\n\n    public function testChineseJoin()\n    {\n        $interval = CarbonInterval::create(1, 1, 0, 1, 1)->locale('zh_Hans');\n        $this->assertSame('1年1个月1天1小时', $interval->forHumans());\n        $this->assertSame('1年1个月1天1小时', $interval->forHumans([\n            'join' => true,\n        ]));\n        $this->assertSame('1 年 1 个月 1 天 1 小时', $interval->forHumans([\n            'join' => false,\n        ]));\n        $this->assertSame('1年1个月1天1小时', $interval->forHumans([\n            'join' => '',\n        ]));\n        $this->assertSame('1 年 1 个月 1 天 1 小时', $interval->forHumans([\n            'join' => ' ',\n        ]));\n        $this->assertSame('1年-1个月-1天-1小时', $interval->forHumans([\n            'join' => '-',\n        ]));\n    }\n\n    public function testOptionsAsArray()\n    {\n        $interval = CarbonInterval::create(1, 1, 0, 1, 1)->locale('fr');\n        $this->assertSame('1 an', $interval->forHumans([\n            'join' => 'foo',\n            'parts' => 1,\n        ]));\n        $this->assertSame('il y a un an', $interval->forHumans([\n            'join' => 'foo',\n            'aUnit' => true,\n            'parts' => 1,\n            'syntax' => CarbonInterface::DIFF_RELATIVE_TO_NOW,\n        ]));\n        $interval = CarbonInterval::day();\n        $this->assertSame('1d', $interval->forHumans([\n            'short' => true,\n        ]));\n        $interval = CarbonInterval::day();\n        $this->assertSame('yesterday', $interval->forHumans([\n            'parts' => 1,\n            'syntax' => CarbonInterface::DIFF_RELATIVE_TO_NOW,\n            'options' => CarbonInterface::ONE_DAY_WORDS,\n        ]));\n    }\n\n    public function testRoundYears()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::years(2)->months(11);\n        $this->assertSame('3 years', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n        $interval = CarbonInterval::years(2)->months(5)->days(70);\n        $this->assertSame('3 years', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundMonths()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::months(2)->weeks(3);\n        $this->assertSame('3 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundUp()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->hours(23);\n        $this->assertSame('3 days', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundDown()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->hours(11);\n        $this->assertSame('2 days', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundMinutes()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->hours(11)->minutes(15);\n        $this->assertSame('2 days 11 hours', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundDownWhenNextIntervalIsNonSequential()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->minutes(59);\n        $this->assertSame('2 days', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundMultipleParts()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->minutes(45)->seconds(59);\n        $this->assertSame('2 days 46 minutes', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundMultiplePartsGap()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->seconds(59);\n        $this->assertSame('2 days 59 seconds', $interval->forHumans(['parts' => 2]));\n        $this->assertSame('2 days 59 seconds', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::ROUND]));\n        $this->assertSame('2 days', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundWeeks()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(13);\n        $this->assertSame('2 weeks', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundWeeksWithMultipleParts()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(13);\n        $this->assertSame('1 week 6 days', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundOverflowNonSequentialRoundUp()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::years(2)->months(35);\n        $this->assertSame('5 years', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundOverflowNonSequentialRoundDown()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::years(2)->months(37);\n        $this->assertSame('5 years', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n    }\n\n    public function testRoundCarryOverDoesntMatter()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(2)->hours(11)->minutes(59);\n        $this->assertSame('2 days', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n\n        $interval = CarbonInterval::days(2)->minutes(780);\n        $this->assertSame('3 days', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n\n        $interval = CarbonInterval::days(2)->minutes(59)->seconds(58);\n        $this->assertSame('2 days 1 hour', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::ROUND]));\n\n        $interval = CarbonInterval::days(2)->minutes(59)->seconds(1);\n        $this->assertSame('2 days 1 hour', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::CEIL]));\n\n        $interval = CarbonInterval::days(2)->minutes(59)->seconds(58);\n        $this->assertSame('2 days 59 minutes', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::FLOOR]));\n\n        // Floor is not the default behavior, see the difference below:\n        $interval = CarbonInterval::days(2)->minutes(59)->seconds(62);\n        $this->assertSame('2 days 1 hour', $interval->forHumans(['parts' => 2, 'options' => CarbonInterface::FLOOR]));\n\n        $interval = CarbonInterval::days(2)->minutes(59)->seconds(62);\n        $this->assertSame('2 days 59 minutes', $interval->forHumans(['parts' => 2]));\n\n        $start = Carbon::create(2009, 9)->startOfMonth();\n        $end = Carbon::create(2012, 2)->endOfMonth();\n\n        $interval = CarbonInterval::instance($start->diff($end))->forHumans(\n            Carbon::DIFF_ABSOLUTE,\n            false,\n            2,\n            Carbon::CEIL,\n        );\n\n        $this->assertSame('2 years 6 months', $interval);\n\n        $interval = CarbonInterval::months(2)->days(30);\n        $this->assertSame('3 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n        $interval = CarbonInterval::months(2)->days(31);\n        $this->assertSame('3 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n        $interval = CarbonInterval::months(2)->days(32);\n        $this->assertSame('3 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::ROUND]));\n        $interval = CarbonInterval::months(2)->days(30);\n        $this->assertSame('3 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::CEIL]));\n        $interval = CarbonInterval::months(2)->days(31);\n        $this->assertSame('3 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::CEIL]));\n        $interval = CarbonInterval::months(2)->days(32);\n        $this->assertSame('4 months', $interval->forHumans(['parts' => 1, 'options' => CarbonInterface::CEIL]));\n    }\n\n    public function testCeilShortMonth()\n    {\n        Carbon::setTestNow('2022-02-08T10:27:03Z');\n        $this->assertSame(\n            '4 weeks ago',\n            Carbon::parse('2022-01-11 15:36:29')->diffForHumans(['parts' => 1, 'options' => Carbon::CEIL])\n        );\n        $this->assertSame(\n            '1 month ago',\n            Carbon::parse('2022-01-10 16:57:38')->diffForHumans(['parts' => 1, 'options' => Carbon::CEIL])\n        );\n    }\n\n    public function testSkipUnits()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::days(15)->hours(11)->minutes(15);\n        $this->assertSame('15 days 11 hours', $interval->forHumans([\n            'parts' => 2,\n            'skip' => 'week',\n        ]));\n\n        $this->assertSame('15 days 675 minutes', $interval->forHumans([\n            'parts' => 2,\n            'skip' => ['weeks', 'hours'],\n        ]));\n\n        $interval = CarbonInterval::days(15)->hours(11)->minutes(15);\n        $this->assertSame('15 days 675 minutes', $interval->forHumans([\n            'parts' => 2,\n            'skip' => ['weeks', 'hours'],\n        ]));\n\n        $factors = CarbonInterval::getCascadeFactors();\n\n        CarbonInterval::setCascadeFactors(['weeks' => [5, 'days']]);\n\n        $interval = CarbonInterval::days(15)->hours(11)->minutes(15);\n        $this->assertSame('15 days 675 minutes', $interval->forHumans([\n            'parts' => 2,\n            'skip' => ['weeks', 'hours'],\n        ]));\n\n        CarbonInterval::setCascadeFactors([\n            'weeks' => [5, 'days'],\n            'hours' => [30, 'minutes'],\n        ]);\n\n        $interval = CarbonInterval::days(15)->hours(11)->minutes(15);\n        $this->assertSame('15 days 345 minutes', $interval->forHumans([\n            'parts' => 2,\n            'skip' => ['weeks', 'hours'],\n        ]));\n\n        CarbonInterval::setCascadeFactors($factors);\n    }\n\n    public function testGetValuesSequence()\n    {\n        $this->assertSame([], CarbonInterval::days(0)->getValuesSequence());\n    }\n\n    public function testMinimumUnitDefault()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::fromString('1 second 114 milliseconds');\n        $this->assertSame('1 second', $interval->forHumans(['parts' => 3]));\n    }\n\n    public function testMinimumUnitHours()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::fromString('1 hour 1 second 114 milliseconds');\n        $this->assertSame('1 hour', $interval->forHumans(['parts' => 3, 'minimumUnit' => 'hour']));\n    }\n\n    public function testMinimumUnitMillisecondsShort()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::fromString('1 second 114 milliseconds');\n        $this->assertSame('1s 114ms', $interval->forHumans(['parts' => 3, 'short' => true, 'minimumUnit' => 'ms']));\n    }\n\n    public function testMinimumUnitMicroseconds()\n    {\n        CarbonInterval::setLocale('fr');\n        $interval = CarbonInterval::fromString('1s 114ms 584µs');\n        $this->assertEquals(\n            '1 seconde, 114 millisecondes et 584 microsecondes',\n            $interval->forHumans(['parts' => 3, 'join' => true, 'minimumUnit' => 'µs']),\n        );\n    }\n\n    public function testMinimumUnitMillisecondsInFrenchAndGerman()\n    {\n        $interval = CarbonInterval::fromString('98756 milliseconds')->cascade();\n        $this->assertEquals(\n            'une minute, 38 secondes et 756 millisecondes',\n            $interval->locale('fr')->forHumans(['parts' => 3, 'minimumUnit' => 'ms', 'join' => true, 'aUnit' => true]),\n        );\n        $this->assertEquals(\n            'eine Minute, 38 Sekunden und 756 Millisekunden',\n            $interval->locale('de')->forHumans(['parts' => 3, 'minimumUnit' => 'ms', 'join' => true, 'aUnit' => true]),\n        );\n    }\n\n    public function testMinimumUnitNoInterval()\n    {\n        CarbonInterval::setLocale('en');\n        $interval = CarbonInterval::fromString('1 second 114 milliseconds');\n        // Test with and without NO_ZERO_DIFF\n        $this->assertSame('1 hour', $interval->forHumans(['parts' => 3, 'minimumUnit' => 'hour', 'options' => CarbonInterface::NO_ZERO_DIFF]));\n        $this->assertSame('0 hours', $interval->forHumans(['parts' => 3, 'minimumUnit' => 'hour', 'options' => 0]));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/FromStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Generator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass FromStringTest extends AbstractTestCase\n{\n    #[DataProvider('dataForValidStrings')]\n    public function testReturnsInterval(string $string, CarbonInterval $expected)\n    {\n        $result = CarbonInterval::fromString($string);\n\n        $this->assertEquals($expected->optimize(), $result->optimize(), \"'$string' does not return expected interval.\");\n    }\n\n    public static function dataForValidStrings(): Generator\n    {\n        // zero interval\n        yield ['', new CarbonInterval(0)];\n\n        // single values\n        yield ['1y', new CarbonInterval(1)];\n        yield ['1mo', new CarbonInterval(0, 1)];\n        yield ['1w', new CarbonInterval(0, 0, 1)];\n        yield ['1d', new CarbonInterval(0, 0, 0, 1)];\n        yield ['1h', new CarbonInterval(0, 0, 0, 0, 1)];\n        yield ['1m', new CarbonInterval(0, 0, 0, 0, 0, 1)];\n        yield ['1s', new CarbonInterval(0, 0, 0, 0, 0, 0, 1)];\n        yield ['1ms', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 1000)];\n        yield ['1µs', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 1)];\n\n        // single values with space\n        yield ['1 y', new CarbonInterval(1)];\n        yield ['1 mo', new CarbonInterval(0, 1)];\n        yield ['1 w', new CarbonInterval(0, 0, 1)];\n\n        // fractions with integer result\n        yield ['0.571428571429w', new CarbonInterval(0, 0, 0, 4)];\n        yield ['0.5d', new CarbonInterval(0, 0, 0, 0, 12)];\n        yield ['0.5h', new CarbonInterval(0, 0, 0, 0, 0, 30)];\n        yield ['0.5m', new CarbonInterval(0, 0, 0, 0, 0, 0, 30)];\n\n        // fractions with float result\n        yield ['1.5w', new CarbonInterval(0, 0, 1, 3, 12)];\n        yield ['2.34d', new CarbonInterval(0, 0, 0, 2, 8, 9, 36)];\n        yield ['3.12h', new CarbonInterval(0, 0, 0, 0, 3, 7, 12)];\n        yield ['3.129h', new CarbonInterval(0, 0, 0, 0, 3, 7, 44, 400000)];\n        yield ['4.24m', new CarbonInterval(0, 0, 0, 0, 0, 4, 14, 400000)];\n        yield ['3.56s', new CarbonInterval(0, 0, 0, 0, 0, 0, 3, 560000)];\n        yield ['3.56ms', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 3560)];\n\n        // combinations\n        yield ['2w 3d', new CarbonInterval(0, 0, 0, 17)];\n        yield ['1y 2mo 1.5w 3d', new CarbonInterval(1, 2, 1, 6, 12)];\n\n        // multi same values\n        yield ['1y 2y', new CarbonInterval(3)];\n        yield ['1mo 20mo', new CarbonInterval(0, 21)];\n        yield ['1w 2w 3w', new CarbonInterval(0, 0, 6)];\n        yield ['10d 20d 30d', new CarbonInterval(0, 0, 0, 60)];\n        yield ['5h 15h 25h', new CarbonInterval(0, 0, 0, 0, 45)];\n        yield ['3m 3m 3m 1m', new CarbonInterval(0, 0, 0, 0, 0, 10)];\n        yield ['55s 45s 1s 2s 3s 4s', new CarbonInterval(0, 0, 0, 0, 0, 0, 110)];\n        yield ['1500ms 1623555µs', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 3123555)];\n        yield ['430 milli', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 430000)];\n\n        // multi same values with space\n        yield ['1 y 2 y', new CarbonInterval(3)];\n        yield ['1 mo 20 mo', new CarbonInterval(0, 21)];\n        yield ['1 w      2  w       3    w', new CarbonInterval(0, 0, 6)];\n\n        // no-space values\n        yield ['2w3d', new CarbonInterval(0, 0, 0, 17)];\n        yield ['1y2mo3w4d5h6m7s', new CarbonInterval(1, 2, 3, 4, 5, 6, 7)];\n\n        // written-out units\n        yield ['1year 2month 3week 4day 5hour 6minute 7second', new CarbonInterval(1, 2, 3, 4, 5, 6, 7)];\n        yield ['1 year 2 month 3 week', new CarbonInterval(1, 2, 3)];\n        yield ['2 Years 3 Months 4 Weeks', new CarbonInterval(2, 3, 4)];\n        yield ['5 Days 6 Hours 7 Minutes 8 Seconds', new CarbonInterval(0, 0, 0, 5, 6, 7, 8)];\n\n        // ignore invalid format; parse only [num][char-format] or [num] [char-format]\n        yield ['Hello! Please add 1y2w to ...', new CarbonInterval(1, 0, 2)];\n        yield ['nothing to parse :(', new CarbonInterval(0)];\n\n        // case insensitive\n        yield ['1Y 3MO 1W 3D 12H 23M 42S', new CarbonInterval(1, 3, 1, 3, 12, 23, 42)];\n\n        // big numbers\n        yield ['1999999999999.5 hours', new CarbonInterval(0, 0, 0, 0, 1999999999999, 30, 0)];\n        yield [(0x7fffffffffffffff).' days', new CarbonInterval(0, 0, 0, 0x7fffffffffffffff, 0, 0, 0)];\n        yield ['1999999999999.5 hours -85 minutes', new CarbonInterval(0, 0, 0, 0, 1999999999999, -55, 0)];\n        yield ['2.333 seconds', new CarbonInterval(0, 0, 0, 0, 0, 0, 2, 333000)];\n    }\n\n    #[TestWith(['1q', '1q'])]\n    #[TestWith(['about 12..14m', '12..'])]\n    #[TestWith(['4h 13', '13'])]\n    public function testThrowsExceptionForUnknownValues(string $string, string $part)\n    {\n        $message = null;\n\n        try {\n            CarbonInterval::fromString($string);\n        } catch (InvalidArgumentException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertStringContainsString($part, $message);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/GettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Translator;\nuse DateTimeZone;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass GettersTest extends AbstractTestCase\n{\n    public function testGettersThrowExceptionOnUnknownGetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown getter \\'doesNotExit\\'',\n        ));\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::year();\n        $interval->doesNotExit;\n    }\n\n    public function testGet()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(4, $ci->get('years'));\n    }\n\n    public function testYearsGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(4, $ci->years);\n    }\n\n    public function testMonthsGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(5, $ci->months);\n    }\n\n    public function testWeeksGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(6, $ci->weeks);\n    }\n\n    public function testDayzExcludingWeeksGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(5, $ci->daysExcludeWeeks);\n        $this->assertSame(5, $ci->dayzExcludeWeeks);\n    }\n\n    public function testDayzGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(6 * 7 + 5, $ci->dayz);\n    }\n\n    public function testHoursGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(8, $ci->hours);\n    }\n\n    public function testMinutesGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(9, $ci->minutes);\n    }\n\n    public function testSecondsGetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $this->assertSame(10, $ci->seconds);\n    }\n\n    public function testStartAndEnd()\n    {\n        $interval = Carbon::parse('2020-08-10')->diff('2020-09-30');\n\n        $this->assertSame('2020-08-10 00:00:00', $interval->start()->format('Y-m-d H:i:s'));\n        $this->assertSame('2020-09-30 00:00:00', $interval->end()->format('Y-m-d H:i:s'));\n\n        $interval = CarbonInterval::fromString('1 month 20 days');\n\n        $this->assertNull($interval->start());\n        $this->assertNull($interval->end());\n    }\n\n    public function testDebugInfo()\n    {\n        $ci = CarbonInterval::create(4, 0, 6, 5, 0, 9, 10);\n\n        $this->assertSame([\n            'y' => 4,\n            'd' => 47,\n            'i' => 9,\n            's' => 10,\n        ], $ci->__debugInfo());\n\n        $ci->locale('it_IT');\n\n        $this->assertSame([\n            'localTranslator' => Translator::get('it_IT'),\n            'y' => 4,\n            'd' => 47,\n            'i' => 9,\n            's' => 10,\n        ], $ci->__debugInfo());\n    }\n\n    public function testGetTimezone()\n    {\n        $this->assertNull(CarbonInterval::day()->tzName);\n        $this->assertSame(\n            'America/New_York',\n            CarbonInterval::day()->setTimezone('America/New_York')->tzName,\n        );\n        $this->assertSame(\n            'America/New_York',\n            CarbonInterval::day()->setTimezone(\n                new DateTimeZone('America/New_York'),\n            )->tzName,\n        );\n        $this->assertSame(\n            '+05:00',\n            CarbonInterval::day()->setTimezone(5)->tzName,\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/MacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCaseWithOldNow;\nuse Tests\\CarbonInterval\\Fixtures\\Mixin;\nuse Tests\\CarbonInterval\\Fixtures\\MixinTrait;\n\nclass MacroTest extends AbstractTestCaseWithOldNow\n{\n    public function testCarbonIsMacroableWhenNotCalledStatically()\n    {\n        CarbonInterval::macro('twice', function () {\n            /** @var CarbonInterval $interval */\n            $interval = $this;\n\n            return $interval->times(2);\n        });\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame('2 days', $interval->twice()->forHumans());\n\n        CarbonInterval::macro('repeatInvert', function ($count = 0) {\n            /** @var CarbonInterval $interval */\n            $interval = $this;\n\n            return $count % 2 ? $interval->invert() : $interval;\n        });\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame(0, $interval->repeatInvert()->invert);\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame(1, $interval->repeatInvert(3)->invert);\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame(0, $interval->repeatInvert(4)->invert);\n\n        CarbonInterval::macro('otherParameterName', function ($other = true) {\n            return $other;\n        });\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertTrue($interval->otherParameterName());\n    }\n\n    public function testCarbonIsMacroableWhenNotCalledStaticallyUsingThis()\n    {\n        CarbonInterval::macro('repeatInvert2', function ($count = 0) {\n            /** @var CarbonInterval $interval */\n            $interval = $this;\n\n            return $count % 2 ? $interval->invert() : $interval;\n        });\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame(0, $interval->repeatInvert2()->invert);\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame(1, $interval->repeatInvert2(3)->invert);\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame(0, $interval->repeatInvert2(4)->invert);\n    }\n\n    public function testCarbonIsMacroableWhenCalledStatically()\n    {\n        CarbonInterval::macro('quarter', function () {\n            return CarbonInterval::months(3);\n        });\n\n        $this->assertSame('3 months', CarbonInterval::quarter()->forHumans());\n\n        CarbonInterval::macro('quarterIfEven', function ($value = 0) {\n            return $value % 2 ? CarbonInterval::day() : CarbonInterval::months(3);\n        });\n\n        $this->assertSame('3 months', CarbonInterval::quarterIfEven()->forHumans());\n        $this->assertSame('1 day', CarbonInterval::quarterIfEven(7)->forHumans());\n        $this->assertSame('3 months', CarbonInterval::quarterIfEven(-6)->forHumans());\n    }\n\n    public function testCarbonIsMacroableWithNonClosureCallables()\n    {\n        CarbonInterval::macro('lower', 'strtolower');\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n\n        $this->assertSame('abc', $interval->lower('ABC'));\n        $this->assertSame('abc', CarbonInterval::lower('ABC'));\n    }\n\n    public function testCarbonIsMixinable()\n    {\n        include_once __DIR__.'/Fixtures/Mixin.php';\n        $mixin = new Mixin();\n        CarbonInterval::mixin($mixin);\n        CarbonInterval::setFactor(3);\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::hours(2);\n\n        $this->assertSame('6 hours', $interval->doMultiply()->forHumans());\n    }\n\n    public function testMixinInstance()\n    {\n        include_once __DIR__.'/Fixtures/MixinTrait.php';\n        CarbonInterval::mixin(MixinTrait::class);\n\n        $input = CarbonInterval::days(2);\n        $copy = $input->copyAndAgain();\n\n        $this->assertSame('2 days', $input->forHumans());\n\n        $mutated = $input->andAgain();\n\n        $this->assertSame('4 days', $input->forHumans());\n        $this->assertSame('4 days', $mutated->forHumans());\n        $this->assertSame('4 days', $copy->forHumans());\n\n        $this->assertSame($input, $mutated);\n        $this->assertNotSame($copy, $mutated);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/MultiplyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass MultiplyTest extends AbstractTestCase\n{\n    public function testMultiplySimple()\n    {\n        $ci = CarbonInterval::hours(3)->minutes(43)->multiply(4);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 14, 52, 00);\n    }\n\n    public function testMultiplyMoreThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->multiply(2.75);\n        $this->assertCarbonInterval($ci, 11, 10, 3, 20, 13, 0);\n    }\n\n    public function testMultiplyOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->multiply(1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n    }\n\n    public function testMultiplyLessThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->multiply(0.333);\n        $this->assertCarbonInterval($ci, 1, 1, 6, 8, 53, 51);\n    }\n\n    public function testMultiplyZero()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->multiply(0);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n    }\n\n    public function testMultiplyLessThanZero()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->multiply(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(1, $ci->invert);\n    }\n\n    public function testMultiplyLessThanZeroWithInvertedInterval()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11);\n        $ci->invert = 1;\n        $ci->multiply(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(0, $ci->invert);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ParseFromLocaleTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Generator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass ParseFromLocaleTest extends AbstractTestCase\n{\n    #[DataProvider('dataForValidStrings')]\n    public function testReturnsInterval(string $string, string $locale, CarbonInterval $expected)\n    {\n        $result = CarbonInterval::parseFromLocale($string, $locale);\n\n        $this->assertEquals($expected->optimize(), $result->optimize(), \"'{$string}' does not return expected interval.\");\n    }\n\n    public static function dataForValidStrings(): Generator\n    {\n        // zero interval\n        yield ['', 'en', new CarbonInterval(0)];\n\n        // single values\n        yield ['1y', 'en', new CarbonInterval(1)];\n        yield ['1mo', 'en', new CarbonInterval(0, 1)];\n        yield ['1w', 'en', new CarbonInterval(0, 0, 1)];\n        yield ['1d', 'en', new CarbonInterval(0, 0, 0, 1)];\n        yield ['1h', 'en', new CarbonInterval(0, 0, 0, 0, 1)];\n        yield ['1m', 'en', new CarbonInterval(0, 0, 0, 0, 0, 1)];\n        yield ['1s', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 1)];\n        yield ['1ms', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 1000)];\n        yield ['1µs', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 1)];\n\n        // single values with space\n        yield ['1 y', 'en', new CarbonInterval(1)];\n        yield ['1 mo', 'en', new CarbonInterval(0, 1)];\n        yield ['1 w', 'en', new CarbonInterval(0, 0, 1)];\n\n        // fractions with integer result\n        yield ['0.571428571429w', 'en', new CarbonInterval(0, 0, 0, 4)];\n        yield ['0.5d', 'en', new CarbonInterval(0, 0, 0, 0, 12)];\n        yield ['0.5h', 'en', new CarbonInterval(0, 0, 0, 0, 0, 30)];\n        yield ['0.5m', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 30)];\n\n        // fractions with float result\n        yield ['1.5w', 'en', new CarbonInterval(0, 0, 1, 3, 12)];\n        yield ['2.34d', 'en', new CarbonInterval(0, 0, 0, 2, 8, 9, 36)];\n        yield ['3.12h', 'en', new CarbonInterval(0, 0, 0, 0, 3, 7, 12)];\n        yield ['3.129h', 'en', new CarbonInterval(0, 0, 0, 0, 3, 7, 44, 400000)];\n        yield ['4.24m', 'en', new CarbonInterval(0, 0, 0, 0, 0, 4, 14, 400000)];\n        yield ['3.56s', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 3, 560000)];\n        yield ['3.56ms', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 3560)];\n\n        // combinations\n        yield ['2w 3d', 'en', new CarbonInterval(0, 0, 0, 17)];\n        yield ['1y 2mo 1.5w 3d', 'en', new CarbonInterval(1, 2, 1, 6, 12)];\n\n        // multi same values\n        yield ['1y 2y', 'en', new CarbonInterval(3)];\n        yield ['1mo 20mo', 'en', new CarbonInterval(0, 21)];\n        yield ['1w 2w 3w', 'en', new CarbonInterval(0, 0, 6)];\n        yield ['10d 20d 30d', 'en', new CarbonInterval(0, 0, 0, 60)];\n        yield ['5h 15h 25h', 'en', new CarbonInterval(0, 0, 0, 0, 45)];\n        yield ['3m 3m 3m 1m', 'en', new CarbonInterval(0, 0, 0, 0, 0, 10)];\n        yield ['55s 45s 1s 2s 3s 4s', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 110)];\n        yield ['1500ms 1623555µs', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 3123555)];\n        yield ['430 milli', 'en', new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 430000)];\n\n        // multi same values with space\n        yield ['1 y 2 y', 'en', new CarbonInterval(3)];\n        yield ['1 mo 20 mo', 'en', new CarbonInterval(0, 21)];\n        yield ['1 w      2  w       3    w', 'en', new CarbonInterval(0, 0, 6)];\n\n        // no-space values\n        yield ['2w3d', 'en', new CarbonInterval(0, 0, 0, 17)];\n        yield ['1y2mo3w4d5h6m7s', 'en', new CarbonInterval(1, 2, 3, 4, 5, 6, 7)];\n\n        // written-out units\n        yield ['1year 2month 3week 4day 5hour 6minute 7second', 'en', new CarbonInterval(1, 2, 3, 4, 5, 6, 7)];\n        yield ['1 year 2 month 3 week', 'en', new CarbonInterval(1, 2, 3)];\n        yield ['2 Years 3 Months 4 Weeks', 'en', new CarbonInterval(2, 3, 4)];\n        yield ['5 Days 6 Hours 7 Minutes 8 Seconds', 'en', new CarbonInterval(0, 0, 0, 5, 6, 7, 8)];\n\n        // ignore invalid format; parse only [num][char-format] or [num] [char-format]\n        yield ['Hello! Please add 1y2w to ...', 'en', new CarbonInterval(1, 0, 2)];\n        yield ['nothing to parse :(', 'en', new CarbonInterval(0)];\n\n        // case insensitive\n        yield ['1Y 3MO 1W 3D 12H 23M 42S', 'en', new CarbonInterval(1, 3, 1, 3, 12, 23, 42)];\n\n        // Example for the ticket (#1756)\n        yield ['2 jours 3 heures', 'fr', new CarbonInterval(0, 0, 0, 2, 3, 0, 0)];\n    }\n\n    #[TestWith(['1q', '1q', 'en'])]\n    #[TestWith(['about 12..14m', '12..', 'en'])]\n    #[TestWith(['4h 13', '13', 'en'])]\n    public function testThrowsExceptionForUnknownValues(string $string, string $part, string $locale)\n    {\n        $message = null;\n\n        try {\n            CarbonInterval::parseFromLocale($string, $locale);\n        } catch (InvalidArgumentException $exception) {\n            $message = $exception->getMessage();\n        }\n\n        $this->assertStringContainsString($part, $message);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/RoundingTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass RoundingTest extends AbstractTestCase\n{\n    public function testThrowsExceptionForCompositeInterval()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Rounding is only possible with single unit intervals.',\n        ));\n\n        CarbonInterval::days(2)->round('2 hours 50 minutes');\n    }\n\n    public function testFloor()\n    {\n        $this->assertSame(21.0, CarbonInterval::days(21)->floorWeeks()->totalDays);\n        $this->assertSame(21.0, CarbonInterval::days(24)->floorWeeks()->totalDays);\n        $this->assertSame(21.0, CarbonInterval::days(25)->floorWeeks()->totalDays);\n        $this->assertSame(21.0, CarbonInterval::days(27)->floorWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(28)->floorWeeks()->totalDays);\n\n        $this->assertSame(1000.0, CarbonInterval::milliseconds(1234)->floor()->totalMilliseconds);\n        $this->assertSame(1000.0, CarbonInterval::milliseconds(1834)->floor()->totalMilliseconds);\n        $this->assertSame(20.0, CarbonInterval::days(21)->floor('2 days')->totalDays);\n        $this->assertSame(18.0, CarbonInterval::days(21)->floor(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(18.0, CarbonInterval::days(22)->floorUnit('day', 6)->totalDays);\n    }\n\n    public function testRound()\n    {\n        $this->assertSame(21.0, CarbonInterval::days(21)->roundWeeks()->totalDays);\n        $this->assertSame(21.0, CarbonInterval::days(24)->roundWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(25)->roundWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(27)->roundWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(28)->roundWeeks()->totalDays);\n        $this->assertSame(-7.0, CarbonInterval::make('7 days 23 hours 34 minutes')->invert()->roundWeeks()->totalDays);\n        $this->assertSame(-7.0, CarbonInterval::make('-7 days 23 hours 34 minutes')->roundWeeks()->totalDays);\n        $this->assertSame(7.0, CarbonInterval::make('-7 days 23 hours 34 minutes')->invert()->roundWeeks()->totalDays);\n\n        $this->assertSame(1000.0, CarbonInterval::milliseconds(1234)->round()->totalMilliseconds);\n        $this->assertSame(2000.0, CarbonInterval::milliseconds(1834)->round()->totalMilliseconds);\n        $this->assertSame(20.0, CarbonInterval::days(20)->round('2 days')->totalDays);\n        $this->assertSame(18.0, CarbonInterval::days(20)->round(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(22.0, CarbonInterval::days(21)->round('2 days')->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(21)->round(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(22.0, CarbonInterval::days(22)->round('2 days')->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(22)->round(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(22)->roundUnit('day', 6)->totalDays);\n    }\n\n    public function testTotalAfterRound()\n    {\n        $this->assertSame(19, CarbonInterval::make('43h3m6s')->roundMinutes()->hours);\n        $this->assertSame(43.05, CarbonInterval::make('43h3m6s')->roundMinutes()->totalHours);\n    }\n\n    public function testWithCascadeFactors()\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'millisecond' => [1000, 'microseconds'],\n            'second'      => [1000, 'milliseconds'],\n            'minute'      => [60, 'seconds'],\n            'hour'        => [60, 'minutes'],\n        ]);\n\n        $this->assertVeryClose(\n            43.166666666666664,\n            CarbonInterval::make('43h3m6s')\n                ->ceilMinutes(10)\n                ->totalHours,\n        );\n        $this->assertSame(\n            43.0,\n            CarbonInterval::make('43h3m6s')\n                ->floorMinutes(6)\n                ->totalHours\n        );\n        $this->assertSame(\n            43.05,\n            CarbonInterval::make('43h3m6s')\n                ->roundMinutes()\n                ->totalHours\n        );\n        $this->assertVeryClose(\n            43.05833333333333,\n            CarbonInterval::make('43h3m26s')\n                ->roundMinutes(0.5)\n                ->totalHours,\n        );\n        $this->assertSame(\n            -43.05,\n            CarbonInterval::make('43h3m6s')\n                ->invert()\n                ->roundMinutes(0.5)\n                ->totalHours\n        );\n\n        CarbonInterval::setCascadeFactors($cascades);\n    }\n\n    public function testCeil()\n    {\n        $this->assertSame(21.0, CarbonInterval::days(21)->ceilWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(24)->ceilWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(25)->ceilWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(27)->ceilWeeks()->totalDays);\n        $this->assertSame(28.0, CarbonInterval::days(28)->ceilWeeks()->totalDays);\n\n        $this->assertSame(2000.0, CarbonInterval::milliseconds(1234)->ceil()->totalMilliseconds);\n        $this->assertSame(2000.0, CarbonInterval::milliseconds(1834)->ceil()->totalMilliseconds);\n        $this->assertSame(20.0, CarbonInterval::days(20)->ceil('2 days')->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(20)->ceil(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(22.0, CarbonInterval::days(21)->ceil('2 days')->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(21)->ceil(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(22.0, CarbonInterval::days(22)->ceil('2 days')->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(22)->ceil(CarbonInterval::days(6))->totalDays);\n        $this->assertSame(24.0, CarbonInterval::days(22)->ceilUnit('day', 6)->totalDays);\n    }\n\n    public function testRoundCarbonInstanceToIntervalInNonDefaultLocale()\n    {\n        $interval15m = CarbonInterval::fromString('PT15M')->locale('es');\n\n        $this->assertSame(\n            '19:30',\n            Carbon::parse('2024-04-15T19:36:12')->floor($interval15m)->format('H:i')\n        );\n        $this->assertSame(\n            '19:45',\n            Carbon::parse('2024-04-15T19:36:12')->ceil($interval15m)->format('H:i')\n        );\n        $this->assertSame('15 minutos', $interval15m->forHumans());\n\n        $interval1h = DateInterval::createFromDateString('1 hour');\n        Carbon::setLocale('zh');\n\n        $this->assertSame('1小时', CarbonInterval::make($interval1h)->forHumans());\n        $this->assertSame(\n            '19:00',\n            Carbon::parse('2024-04-15T19:36:12')->floor($interval1h)->format('H:i')\n        );\n        $this->assertSame(\n            '20:00',\n            Carbon::parse('2024-04-15T19:36:12')->ceil($interval1h)->format('H:i')\n        );\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/SetStateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass SetStateTest extends AbstractTestCase\n{\n    public function testEvaluatingVarExportReturnsCarbonIntervalInstance()\n    {\n        $export = var_export(CarbonInterval::minutes(3), true);\n\n        $this->assertInstanceOfCarbonInterval(eval(\"return $export;\"));\n    }\n\n    public function testStateIsPreserved()\n    {\n        $serializedInterval = CarbonInterval::minutes(3);\n        $export = var_export($serializedInterval, true);\n\n        /** @var CarbonInterval $deserializedInterval */\n        $deserializedInterval = eval(\"return $export;\");\n\n        $this->assertTrue($deserializedInterval->eq($serializedInterval));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/SettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass SettersTest extends AbstractTestCase\n{\n    public function testSet()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->set('seconds', 34);\n        $this->assertSame(34, $ci->seconds);\n        $ci->set([\n            'seconds' => 59,\n            'minutes' => 33,\n        ]);\n        $this->assertSame(59, $ci->seconds);\n        $this->assertSame(33, $ci->minutes);\n    }\n\n    public function testYearsSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->years = 2;\n        $this->assertSame(2, $ci->years);\n        $ci->years(5);\n        $this->assertSame(5, $ci->years);\n    }\n\n    public function testMonthsSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->months = 11;\n        $this->assertSame(11, $ci->months);\n        $ci->months(8);\n        $this->assertSame(8, $ci->months);\n    }\n\n    public function testWeeksSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->weeks = 11;\n        $this->assertSame(11, $ci->weeks);\n        $this->assertSame(7 * 11, $ci->dayz);\n        $ci->weeks(4);\n        $this->assertSame(4, $ci->weeks);\n    }\n\n    public function testDayzSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->dayz = 11;\n        $this->assertSame(11, $ci->dayz);\n        $this->assertSame(1, $ci->weeks);\n        $this->assertSame(4, $ci->dayzExcludeWeeks);\n        $ci->days(1);\n        $this->assertSame(1, $ci->dayz);\n        $ci->day(3);\n        $this->assertSame(3, $ci->dayz);\n\n        $diff = (new Carbon('2024-07-15 00:00'))->diff('2024-08-12 23:15');\n\n        $this->assertSame('4 weeks 23 hours 15 minutes', $diff->forHumans());\n        $this->assertSame(PHP_VERSION_ID < 8_02_00 ? false : 28, $diff->days);\n        $this->assertSame(28, $diff->dayz);\n        $this->assertSame(28, $diff->d);\n\n        // Setting days to false has no effect\n        $diff->days(false);\n\n        $this->assertSame(PHP_VERSION_ID < 8_02_00 ? false : 28, $diff->days);\n        $this->assertSame(28, $diff->dayz);\n        $this->assertSame(28, $diff->d);\n\n        // Setting days to integer affects days and d, but not \"days\" (bolt-on by parent DateInterval class)\n        $diff->days(14);\n\n        $this->assertSame(PHP_VERSION_ID < 8_02_00 ? false : 28, $diff->days);\n        $this->assertSame(14, $diff->dayz);\n        $this->assertSame(14, $diff->d);\n    }\n\n    public function testHoursSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->hours = 12;\n        $this->assertSame(12, $ci->hours);\n        $ci->hours(0);\n        $this->assertSame(0, $ci->hours);\n    }\n\n    public function testMinutesSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->minutes = 11;\n        $this->assertSame(11, $ci->minutes);\n        $ci->minutes(9);\n        $this->assertSame(9, $ci->minutes);\n    }\n\n    public function testSecondsSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->seconds = 34;\n        $this->assertSame(34, $ci->seconds);\n        $ci->seconds(59);\n        $this->assertSame(59, $ci->seconds);\n        $ci->second(1);\n        $this->assertSame(1, $ci->seconds);\n    }\n\n    public function testMillisecondsSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->milliseconds = 34;\n        $this->assertSame(34, $ci->milliseconds);\n        $ci->milliseconds(59);\n        $this->assertSame(59, $ci->milliseconds);\n        $ci->millisecond(1);\n        $this->assertSame(1, $ci->milliseconds);\n    }\n\n    public function testMicrosecondsSetter()\n    {\n        $ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);\n        $ci->microseconds = 34;\n        $this->assertSame(34, $ci->microseconds);\n        $ci->microseconds(59);\n        $this->assertSame(59, $ci->microseconds);\n        $ci->microsecond(1);\n        $this->assertSame(1, $ci->microseconds);\n    }\n\n    public function testFluentSetters()\n    {\n        $ci = CarbonInterval::years(4)->months(2)->dayz(5)->hours(3)->minute()->seconds(59);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 4, 2, 5, 3, 1, 59);\n\n        $ci = CarbonInterval::years(4)->months(2)->weeks(2)->hours(3)->minute()->seconds(59);\n        $this->assertInstanceOfCarbonInterval($ci);\n        $this->assertCarbonInterval($ci, 4, 2, 14, 3, 1, 59);\n    }\n\n    public function testFluentSettersDaysOverwritesWeeks()\n    {\n        $ci = CarbonInterval::weeks(3)->days(5);\n        $this->assertCarbonInterval($ci, 0, 0, 5, 0, 0, 0);\n    }\n\n    public function testFluentSettersWeeksOverwritesDays()\n    {\n        $ci = CarbonInterval::days(5)->weeks(3);\n        $this->assertCarbonInterval($ci, 0, 0, 3 * 7, 0, 0, 0);\n    }\n\n    public function testFluentSettersWeeksAndDaysIsCumulative()\n    {\n        $ci = CarbonInterval::year(5)->weeksAndDays(2, 6);\n        $this->assertCarbonInterval($ci, 5, 0, 20, 0, 0, 0);\n        $this->assertSame(20, $ci->dayz);\n        $this->assertSame(2, $ci->weeks);\n        $this->assertSame(6, $ci->dayzExcludeWeeks);\n    }\n\n    public function testInvert()\n    {\n        $ci = new CarbonInterval();\n\n        $this->assertSame($ci, $ci->invert());\n        $this->assertSame(1, $ci->invert);\n\n        $this->assertSame($ci, $ci->invert());\n        $this->assertSame(0, $ci->invert);\n\n        $this->assertSame($ci, $ci->invert(true));\n        $this->assertSame(1, $ci->invert);\n\n        $this->assertSame($ci, $ci->invert(true));\n        $this->assertSame(1, $ci->invert);\n\n        $this->assertSame($ci, $ci->invert(false));\n        $this->assertSame(0, $ci->invert);\n\n        $this->assertSame($ci, $ci->invert(false));\n        $this->assertSame(0, $ci->invert);\n    }\n\n    public function testAbsolute()\n    {\n        $ci = CarbonInterval::day();\n\n        $this->assertSame($ci, $ci->absolute());\n        $this->assertSame(1.0, $ci->totalDays);\n\n        $this->assertSame(1.0, $ci->invert()->absolute()->totalDays);\n        $this->assertSame(-1.0, $ci->invert()->absolute(false)->totalDays);\n\n        $this->assertSame(1.0, $ci->invert()->abs(true)->totalDays);\n        $this->assertSame(-1.0, $ci->invert()->abs(false)->totalDays);\n    }\n\n    public function testInvalidSetter()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown setter \\'doesNotExit\\'',\n        ));\n\n        /** @var mixed $ci */\n        $ci = new CarbonInterval();\n        $ci->doesNotExit = 123;\n    }\n\n    public function testInvalidFluentSetter()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Unknown fluent setter \\'doesNotExist\\'',\n        ));\n\n        /** @var mixed $ci */\n        $ci = new CarbonInterval();\n        $ci->doesNotExist(123);\n    }\n\n    public function testInvalidStaticFluentSetter()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Unknown fluent constructor \\'doesNotExist\\'',\n        ));\n\n        CarbonInterval::doesNotExist(123);\n    }\n\n    public function testLocale()\n    {\n        /** @var CarbonInterval $interval */\n        $interval = CarbonInterval::hour()->locale('de');\n\n        $this->assertSame('de', $interval->locale);\n    }\n\n    public function testShiftTimezone()\n    {\n        $interval = CarbonInterval::hour()->shiftTimezone('America/Toronto');\n\n        $this->assertSame('America/Toronto', $interval->getSettings()['timezone']);\n\n        /** @var CarbonInterval $interval */\n        $interval = CarbonInterval::diff(\n            Carbon::parse('2020-02-02 20:20 Asia/Tokyo'),\n            Carbon::parse('2020-02-03 22:22 Europe/Madrid'),\n        )->shiftTimezone('America/Toronto');\n\n        $this->assertSame('America/Toronto', $interval->getSettings()['timezone']);\n        $this->assertSame('2020-02-02 20:20 America/Toronto', $interval->start()->format('Y-m-d H:i e'));\n        $this->assertSame('2020-02-03 22:22 America/Toronto', $interval->end()->format('Y-m-d H:i e'));\n    }\n\n    public function testSetTimezone()\n    {\n        /** @var CarbonInterval $interval */\n        $interval = CarbonInterval::hour()->setTimezone('America/Toronto');\n\n        $this->assertSame('America/Toronto', $interval->tzname);\n        $this->assertSame('America/Toronto', $interval->tz_name);\n        $this->assertSame('America/Toronto', $interval->getSettings()['timezone']);\n\n        /** @var CarbonInterval $interval */\n        $interval = CarbonInterval::diff(\n            Carbon::parse('2020-02-02 20:20 Asia/Tokyo'),\n            Carbon::parse('2020-02-03 22:22 Europe/Madrid'),\n        )->setTimezone('America/Toronto');\n\n        $this->assertSame('America/Toronto', $interval->getSettings()['timezone']);\n        $this->assertSame('2020-02-02 06:20 America/Toronto', $interval->start()->format('Y-m-d H:i e'));\n        $this->assertSame('2020-02-03 16:22 America/Toronto', $interval->end()->format('Y-m-d H:i e'));\n\n        /** @var CarbonInterval $interval */\n        $interval = CarbonInterval::hour();\n        $next = $interval->set(' * foobar', 'biz');\n\n        $this->assertSame($next, $interval);\n        $this->assertSame('1 hour', $interval->forHumans());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/SharesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass SharesTest extends AbstractTestCase\n{\n    public function testSharesMoreThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->shares(1 / 2.75);\n        $this->assertCarbonInterval($ci, 11, 8, 52, 14, 28, 30);\n    }\n\n    public function testSharesOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->shares(1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n    }\n\n    public function testSharesLessThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->shares(3);\n        $this->assertCarbonInterval($ci, 1, 1, 6, 2, 3, 4);\n    }\n\n    public function testSharesLessThanZero()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->shares(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(1, $ci->invert);\n    }\n\n    public function testSharesLessThanZeroWithInvertedInterval()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11);\n        $ci->invert = 1;\n        $ci->shares(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(0, $ci->invert);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/SpecTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse Tests\\AbstractTestCase;\n\nclass SpecTest extends AbstractTestCase\n{\n    public function testZeroInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 0, 0);\n        $this->assertSame('PT0S', $ci->spec());\n        $ci = new CarbonInterval();\n        $this->assertSame('PT0S', $ci->spec());\n        $ci = CarbonInterval::create();\n        $this->assertSame('PT0S', $ci->spec());\n    }\n\n    public function testYearInterval()\n    {\n        $ci = new CarbonInterval(1);\n        $this->assertSame('P1Y', $ci->spec());\n        $ci = CarbonInterval::create(1);\n        $this->assertSame('P1Y', $ci->spec());\n    }\n\n    public function testMonthInterval()\n    {\n        $ci = new CarbonInterval(0, 1);\n        $this->assertSame('P1M', $ci->spec());\n    }\n\n    public function testWeekInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 1);\n        $this->assertSame('P7D', $ci->spec());\n    }\n\n    public function testDayInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 1);\n        $this->assertSame('P1D', $ci->spec());\n    }\n\n    public function testMixedDateInterval()\n    {\n        $ci = new CarbonInterval(1, 2, 0, 3);\n        $this->assertSame('P1Y2M3D', $ci->spec());\n    }\n\n    public function testHourInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 1);\n        $this->assertSame('PT1H', $ci->spec());\n    }\n\n    public function testMinuteInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 1);\n        $this->assertSame('PT1M', $ci->spec());\n    }\n\n    public function testSecondInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 0, 1);\n        $this->assertSame('PT1S', $ci->spec());\n    }\n\n    public function testMicrosecondsInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 0, 0, 0, 12300);\n        $this->assertSame('PT0.012300S', $ci->spec(true));\n    }\n\n    public function testMixedTimeInterval()\n    {\n        $ci = new CarbonInterval(0, 0, 0, 0, 1, 2, 3);\n        $this->assertSame('PT1H2M3S', $ci->spec());\n    }\n\n    public function testMixedDateAndTimeInterval()\n    {\n        $ci = new CarbonInterval(1, 2, 0, 3, 4, 5, 6);\n        $this->assertSame('P1Y2M3DT4H5M6S', $ci->spec());\n    }\n\n    public function testCreatingInstanceEquals()\n    {\n        $ci = new CarbonInterval(1, 2, 0, 3, 4, 5, 6);\n        $this->assertEquals($ci->optimize(), CarbonInterval::instance(new DateInterval($ci->spec()))->optimize());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/StrictModeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass StrictModeTest extends AbstractTestCase\n{\n    public function testSetWithStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown setter \\'foobar\\'',\n        ));\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n        $interval->foobar = 'biz';\n    }\n\n    public function testGetWithStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown getter \\'foobar\\'',\n        ));\n\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n        $interval->foobar;\n    }\n\n    public function testSetAndGetWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        /** @var mixed $interval */\n        $interval = CarbonInterval::day();\n        @$interval->foobar = 'biz';\n        $this->assertSame('biz', $interval->foobar);\n    }\n\n    public function testStaticCallWithStrictMode()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Unknown fluent constructor \\'foobar\\'',\n        ));\n\n        CarbonInterval::foobar();\n    }\n\n    public function testStaticCallWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertNull(CarbonInterval::foobar());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/TimesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass TimesTest extends AbstractTestCase\n{\n    public function testTimesMoreThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->times(2.75);\n        $this->assertCarbonInterval($ci, 11, 8, 52, 14, 28, 30);\n    }\n\n    public function testTimesOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->times(1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n    }\n\n    public function testTimesLessThanOne()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->times(0.333);\n        $this->assertCarbonInterval($ci, 1, 1, 6, 2, 3, 4);\n    }\n\n    public function testTimesZero()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->times(0);\n        $this->assertCarbonInterval($ci, 0, 0, 0, 0, 0, 0);\n    }\n\n    public function testTimesLessThanZero()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11)->times(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(1, $ci->invert);\n    }\n\n    public function testTimesLessThanZeroWithInvertedInterval()\n    {\n        $ci = CarbonInterval::create(4, 3, 2, 5, 5, 10, 11);\n        $ci->invert = 1;\n        $ci->times(-1);\n        $this->assertCarbonInterval($ci, 4, 3, 19, 5, 10, 11);\n        $this->assertSame(0, $ci->invert);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ToDateIntervalTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse DateTime;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass ToDateIntervalTest extends AbstractTestCase\n{\n    public function testConvertToDateInterval()\n    {\n        $interval = CarbonInterval::days(5)->hours(3)->minutes(50)->microseconds(123456)->invert()->toDateInterval();\n\n        $this->assertSame(DateInterval::class, \\get_class($interval));\n\n        $this->assertSame(1, $interval->invert);\n        $this->assertSame(5, $interval->d);\n        $this->assertSame(3, $interval->h);\n        $this->assertSame(50, $interval->i);\n        $this->assertSame(0, $interval->s);\n        $this->assertSame(0.123456, $interval->f);\n    }\n\n    public function testCastToDateInterval()\n    {\n        $interval = CarbonInterval::days(5)->hours(3)->minutes(50)->microseconds(123456)->invert()->cast(DateInterval::class);\n\n        $this->assertSame(DateInterval::class, \\get_class($interval));\n\n        $this->assertSame(1, $interval->invert);\n        $this->assertSame(5, $interval->d);\n        $this->assertSame(3, $interval->h);\n        $this->assertSame(50, $interval->i);\n        $this->assertSame(0, $interval->s);\n        $this->assertSame(0.123456, $interval->f);\n    }\n\n    public function testBadCast()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'DateTime is not a sub-class of DateInterval.',\n        ));\n\n        CarbonInterval::days(5)->hours(3)->minutes(50)->microseconds(123456)->invert()->cast(DateTime::class);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ToPeriodTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse DateTimeZone;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass ToPeriodTest extends AbstractTestCase\n{\n    #[DataProvider('dataForToPeriodParameters')]\n    public function testConvertToDatePeriod($interval, $arguments, $expected)\n    {\n        $period = ([$interval, 'toPeriod'])(...$arguments);\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n\n        $this->assertSame($expected, $period->spec());\n    }\n\n    public static function dataForToPeriodParameters(): Generator\n    {\n        yield [\n                CarbonInterval::days(3),\n                ['2017-10-15', 4],\n                'R4/2017-10-15T00:00:00-04:00/P3D',\n            ];\n        yield [\n                CarbonInterval::hours(7),\n                ['2017-10-15', '2017-10-17'],\n                '2017-10-15T00:00:00-04:00/PT7H/2017-10-17T00:00:00-04:00',\n            ];\n        yield [\n                CarbonInterval::months(3)->days(2)->hours(10)->minutes(20),\n                ['2017-10-15'],\n                '2017-10-15T00:00:00-04:00/P3M2DT10H20M',\n            ];\n        yield [\n                CarbonInterval::minutes(30),\n                [new Carbon('2018-05-14 17:30 UTC'), new Carbon('2018-05-14 18:00 Europe/Oslo')],\n                '2018-05-14T17:30:00+00:00/PT30M/2018-05-14T18:00:00+02:00',\n            ];\n    }\n\n    public function testToDatePeriodWithTimezone(): void\n    {\n        $period = CarbonInterval::minutes(30)\n            ->setTimezone('Asia/Tokyo')\n            ->toPeriod('2021-08-14 00:00', '2021-08-14 02:00');\n\n        $this->assertSame('2021-08-14 00:00 Asia/Tokyo', $period->start()->format('Y-m-d H:i e'));\n        $this->assertSame('2021-08-14 02:00 Asia/Tokyo', $period->end()->format('Y-m-d H:i e'));\n\n        $period = CarbonInterval::minutes(30)\n            ->setTimezone(new DateTimeZone('America/New_York'))\n            ->toPeriod('2021-08-14 00:00', '2021-08-14 02:00');\n\n        $this->assertSame('2021-08-14 00:00 America/New_York', $period->start()->format('Y-m-d H:i e'));\n        $this->assertSame('2021-08-14 02:00 America/New_York', $period->end()->format('Y-m-d H:i e'));\n    }\n\n    public function testStepBy(): void\n    {\n        $days = [];\n\n        foreach (Carbon::parse('2020-08-29')->diff('2020-09-02')->stepBy('day') as $day) {\n            $days[] = \"$day\";\n        }\n\n        $this->assertSame([\n            '2020-08-29 00:00:00',\n            '2020-08-30 00:00:00',\n            '2020-08-31 00:00:00',\n            '2020-09-01 00:00:00',\n            '2020-09-02 00:00:00',\n        ], $days);\n\n        $times = [];\n\n        foreach (Carbon::parse('2020-08-29')->diff('2020-08-31')->stepBy('12 hours') as $time) {\n            $times[] = \"$time\";\n        }\n\n        $this->assertSame([\n            '2020-08-29 00:00:00',\n            '2020-08-29 12:00:00',\n            '2020-08-30 00:00:00',\n            '2020-08-30 12:00:00',\n            '2020-08-31 00:00:00',\n        ], $times);\n\n        $days = [];\n        /** @var CarbonPeriod $period */\n        $period = Carbon::parse('2020-08-29')->diff('2020-09-02')->stepBy('day');\n\n        foreach ($period->excludeEndDate() as $day) {\n            $days[] = \"$day\";\n        }\n\n        $this->assertSame([\n            '2020-08-29 00:00:00',\n            '2020-08-30 00:00:00',\n            '2020-08-31 00:00:00',\n            '2020-09-01 00:00:00',\n        ], $days);\n\n        Carbon::setTestNow('2020-08-12 06:00:50');\n        $days = [];\n\n        foreach (CarbonInterval::week()->stepBy('day') as $day) {\n            $days[] = \"$day\";\n        }\n\n        $this->assertSame([\n            '2020-08-12 06:00:50',\n            '2020-08-13 06:00:50',\n            '2020-08-14 06:00:50',\n            '2020-08-15 06:00:50',\n            '2020-08-16 06:00:50',\n            '2020-08-17 06:00:50',\n            '2020-08-18 06:00:50',\n            '2020-08-19 06:00:50',\n        ], $days);\n\n        Carbon::setTestNow(null);\n    }\n\n    public function testStepByError()\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\n            'Could not create interval from: '.var_export('1/2 days', true),\n        ));\n\n        CarbonInterval::week()->stepBy('1/2 days');\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/ToStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\CarbonInterval;\nuse Tests\\AbstractTestCase;\n\nclass ToStringTest extends AbstractTestCase\n{\n    public function testDefault()\n    {\n        CarbonInterval::setLocale('en');\n        $ci = CarbonInterval::create(11, 1, 2, 5, 22, 33, 55);\n        $this->assertSame('11 years 1 month 2 weeks 5 days 22 hours 33 minutes 55 seconds:abc', $ci.':abc');\n    }\n\n    public function testDefaultWithMicroseconds()\n    {\n        CarbonInterval::setLocale('en');\n        $ci = CarbonInterval::create(11, 1, 2, 5, 22, 33, 55, 12345);\n        $this->assertSame('11 years 1 month 2 weeks 5 days 22 hours 33 minutes 55 seconds:abc', $ci.':abc');\n    }\n\n    public function testOverrideSimple()\n    {\n        $ci = CarbonInterval::create(0, 0, 0, 0, 22, 33, 55);\n        $ci->settings(['toStringFormat' => '%H:%I:%S']);\n        $this->assertSame('22:33:55:abc', $ci.':abc');\n    }\n\n    public function testOverrideWithMicroseconds()\n    {\n        $ci = CarbonInterval::create(11, 1, 2, 5, 22, 33, 55, 12345);\n        $ci->settings(['toStringFormat' => '%R%Y-%M-%D %H:%I:%S.%F']);\n        $this->assertSame('+11-01-19 22:33:55.012345:abc', $ci.':abc');\n    }\n\n    public function testOverrideWithInvert()\n    {\n        $ci = CarbonInterval::create(11, 1, 2, 5, 22, 33, 55)->invert();\n        $ci->settings(['toStringFormat' => '%R%Y-%M-%D %H:%I:%S']);\n        $this->assertSame('-11-01-19 22:33:55:abc', $ci.':abc');\n    }\n\n    public function testClosure()\n    {\n        $ci = CarbonInterval::create(11);\n        $this->assertSame('11 years:abc', $ci.':abc');\n        CarbonInterval::setToStringFormat('%Y');\n        $this->assertSame('11:abc', $ci.':abc');\n        $ci->settings(['toStringFormat' => static function (CarbonInterval $interval) {\n            return 'Y'.($interval->years * 2);\n        }]);\n        $this->assertSame('Y22:abc', $ci.':abc');\n\n        CarbonInterval::resetToStringFormat();\n    }\n}\n"
  },
  {
    "path": "tests/CarbonInterval/TotalTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonInterval;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse DateTimeImmutable;\nuse Generator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass TotalTest extends AbstractTestCase\n{\n    #[DataProvider('dataForIntervalSpecs')]\n    public function testReturnsTotalValue($spec, $unit, $expected)\n    {\n        $this->assertSame(\n            (float) $expected,\n            CarbonInterval::fromString($spec)->total($unit),\n            \"$spec as $unit did not get the expected total\",\n        );\n    }\n\n    public static function dataForIntervalSpecs(): Generator\n    {\n        yield ['10s',                'seconds', 10];\n        yield ['100s',               'seconds', 100];\n        yield ['2d 4h 17m 35s',      'seconds', ((2 * 24 + 4) * 60 + 17) * 60 + 35];\n        yield ['1y',                 'Seconds', 12 * 4 * 7 * 24 * 60 * 60];\n        yield ['1000y',              'SECONDS', 1000 * 12 * 4 * 7 * 24 * 60 * 60];\n        yield ['235s',               'minutes', 235 / 60];\n        yield ['3h 14m 235s',        'minutes', 3 * 60 + 14 + 235 / 60];\n        yield ['27h 150m 4960s',     'hours',   27 + (150 + 4960 / 60) / 60];\n        yield ['1w',                 'days',    7];\n        yield ['2w 15d',             'weeks',   29 / 7];\n        yield ['5mo 54d 185h 7680m', 'days',    5 * 4 * 7 + 54 + (185 + 7680 / 60) / 24];\n        yield ['4y 2mo',             'days',    (4 * 12 + 2) * 4 * 7];\n        yield ['165d',               'weeks',   165 / 7];\n        yield ['5mo',                'weeks',   5 * 4];\n        yield ['6897d',              'months',  6897 / 7 / 4];\n        yield ['35mo',               'years',   35 / 12];\n    }\n\n    public function testThrowsExceptionForInvalidUnits()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown unit \\'foo\\'.',\n        ));\n\n        CarbonInterval::create()->total('foo');\n    }\n\n    public function testGetTotalsViaGetters()\n    {\n        $interval = CarbonInterval::create(0, 0, 0, 0, 150, 0, 0);\n\n        $this->assertSame(150.0 * 60 * 60 * 1000 * 1000, $interval->totalMicroseconds);\n        $this->assertSame(150.0 * 60 * 60 * 1000, $interval->totalMilliseconds);\n        $this->assertSame(150.0 * 60 * 60, $interval->totalSeconds);\n        $this->assertSame(150.0 * 60, $interval->totalMinutes);\n        $this->assertSame(150.0, $interval->totalHours);\n        $this->assertSame(150.0 / 24, $interval->totalDays);\n        $this->assertSame(150.0 / 24 / 7, $interval->totalWeeks);\n        $this->assertSame(150.0 / 24 / 7 / 4, $interval->totalMonths);\n        $this->assertSame(150.0 / 24 / 7 / 4 / 12, $interval->totalYears);\n\n        $interval = CarbonInterval::milliseconds(12312);\n\n        $this->assertSame(12312000.0, $interval->totalMicroseconds);\n        $this->assertSame(12312.0, $interval->totalMilliseconds);\n\n        $interval = CarbonInterval::milliseconds(-12312);\n\n        $this->assertSame(-12312000.0, $interval->totalMicroseconds);\n        $this->assertSame(-12312.0, $interval->totalMilliseconds);\n    }\n\n    public static function dataForNegativeIntervals(): Generator\n    {\n        yield [-1, CarbonInterval::hours(0)->hours(-150)];\n        yield [-1, CarbonInterval::hours(150)->invert()];\n        yield [1, CarbonInterval::hours(0)->hours(-150)->invert()];\n    }\n\n    #[DataProvider('dataForNegativeIntervals')]\n    public function testGetNegativeTotalsViaGetters($factor, $interval)\n    {\n        $this->assertSame($factor * 150.0 * 60 * 60 * 1000 * 1000, $interval->totalMicroseconds);\n        $this->assertSame($factor * 150.0 * 60 * 60 * 1000, $interval->totalMilliseconds);\n        $this->assertSame($factor * 150.0 * 60 * 60, $interval->totalSeconds);\n        $this->assertSame($factor * 150.0 * 60, $interval->totalMinutes);\n        $this->assertSame($factor * 150.0, $interval->totalHours);\n        $this->assertSame($factor * 150.0 / 24, $interval->totalDays);\n        $this->assertSame($factor * 150.0 / 24 / 7, $interval->totalWeeks);\n        $this->assertSame($factor * 150.0 / 24 / 7 / 4, $interval->totalMonths);\n        $this->assertSame($factor * 150.0 / 24 / 7 / 4 / 12, $interval->totalYears);\n    }\n\n    public function testTotalsWithCustomFactors()\n    {\n        $factors = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minute' => [60, 'seconds'],\n            'hour' => [60, 'minutes'],\n            'day' => [8, 'hours'],\n            'week' => [5, 'days'],\n        ]);\n\n        $this->assertSame(1.0, CarbonInterval::make('1d')->totalDays);\n        $this->assertSame(5.0, CarbonInterval::make('1w')->totalDays);\n        $this->assertSame(1.0, CarbonInterval::make('1w')->totalWeeks);\n\n        CarbonInterval::setCascadeFactors($factors);\n    }\n\n    public function testFloatHoursFactors()\n    {\n        $factors = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minute' => [60, 'seconds'],\n            'hour' => [60, 'minutes'],\n            'day' => [7.5, 'hours'],\n            'week' => [5, 'days'],\n        ]);\n\n        $this->assertSame(\n            '2 weeks 1 day 5 hours 45 minutes',\n            CarbonInterval::minutes(11 * (7.5 * 60) + (5 * 60) + 45)->cascade()->forHumans()\n        );\n\n        CarbonInterval::setCascadeFactors($factors);\n    }\n\n    public function testFloatDaysFactors()\n    {\n        $factors = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minute' => [60, 'seconds'],\n            'hour' => [60, 'minutes'],\n            'day' => [8, 'hours'],\n            'week' => [5.5, 'days'],\n        ]);\n\n        $this->assertSame(\n            '3 weeks 1 day 5 hours 45 minutes',\n            CarbonInterval::minutes(17.5 * (8 * 60) + (5 * 60) + 45)->cascade()->forHumans()\n        );\n\n        CarbonInterval::setCascadeFactors($factors);\n    }\n\n    public function testFloatInMultipleFactors()\n    {\n        $factors = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minute' => [23.2, 'seconds'],\n            'hour' => [25.662, 'minutes'],\n            'day' => [10 / 3, 'hours'],\n            'week' => [pi(), 'days'],\n        ]);\n\n        $interval = CarbonInterval::minutes(50000)->cascade();\n\n        $this->assertSame(\n            '185 weeks 2 days 3 hours 35 minutes 35 seconds',\n            $interval->forHumans()\n        );\n        // Show how we (approximately) get back to initial values\n        $this->assertEqualsWithDelta(\n            50000 * 23.2,\n            35 + (35 * 23.2) + (3 * 25.662 * 23.2) + (2 * (10 / 3) * 25.662 * 23.2) + (185 * pi() * (10 / 3) * 25.662 * 23.2),\n            3\n        );\n        // Show how total uncascade\n        $this->assertEqualsWithDelta(50000 / 25.662, $interval->totalHours, 0.05);\n        $this->assertEqualsWithDelta(50000, $interval->totalMinutes, 0.1);\n        $this->assertEqualsWithDelta(50000 * 23.2, $interval->totalSeconds, 1);\n\n        CarbonInterval::setCascadeFactors($factors);\n    }\n\n    public function testGetTotalsViaGettersWithCustomFactors()\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minutes' => [Carbon::SECONDS_PER_MINUTE, 'seconds'],\n            'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'],\n            'days' => [8, 'hours'],\n            'weeks' => [5, 'days'],\n        ]);\n        $interval = CarbonInterval::create(0, 0, 0, 0, 150, 0, 0);\n        $totalSeconds = $interval->totalSeconds;\n        $totalMinutes = $interval->totalMinutes;\n        $totalHours = $interval->totalHours;\n        $totalDays = $interval->totalDays;\n        $totalWeeks = $interval->totalWeeks;\n        $monthsError = null;\n\n        try {\n            $interval->totalMonths;\n        } catch (InvalidArgumentException $exception) {\n            $monthsError = $exception->getMessage();\n        }\n\n        $yearsError = null;\n\n        try {\n            $interval->totalYears;\n        } catch (InvalidArgumentException $exception) {\n            $yearsError = $exception->getMessage();\n        }\n\n        CarbonInterval::setCascadeFactors($cascades);\n\n        $this->assertSame(150.0 * 60 * 60, $totalSeconds);\n        $this->assertSame(150.0 * 60, $totalMinutes);\n        $this->assertSame(150.0, $totalHours);\n        $this->assertSame(150.0 / 8, $totalDays);\n        $this->assertSame(150.0 / 8 / 5, $totalWeeks);\n        $this->assertSame('Unit months have no configuration to get total from other units.', $monthsError);\n        $this->assertSame('Unit years have no configuration to get total from other units.', $yearsError);\n    }\n\n    public function testGetTotalsViaGettersWithFalseFactor()\n    {\n        $cascades = CarbonInterval::getCascadeFactors();\n        CarbonInterval::setCascadeFactors([\n            'minutes' => [Carbon::SECONDS_PER_MINUTE, 'seconds'],\n            'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'],\n            'days' => [false, 'hours'], // soft break\n            'months' => [30, 'days'],\n            'years' => [Carbon::MONTHS_PER_YEAR, 'months'],\n        ]);\n        $interval = CarbonInterval::create(3, 2, 0, 6, 150, 0, 0);\n        $totalSeconds = $interval->totalSeconds;\n        $totalMinutes = $interval->totalMinutes;\n        $totalHours = $interval->totalHours;\n        $totalDays = $interval->totalDays;\n        $totalMonths = $interval->totalMonths;\n        $totalYears = $interval->totalYears;\n        CarbonInterval::setCascadeFactors($cascades);\n\n        $this->assertSame(150.0 * 60 * 60, $totalSeconds);\n        $this->assertSame(150.0 * 60, $totalMinutes);\n        $this->assertSame(150.0, $totalHours);\n        $this->assertSame(1146.0, $totalDays);\n        $this->assertSame(1146.0 / 30, $totalMonths);\n        $this->assertSame(1146.0 / 30 / 12, $totalYears);\n    }\n\n    public function testMicrosecondsInterval()\n    {\n        $interval = CarbonInterval::milliseconds(500);\n\n        $this->assertSame(0.5, $interval->totalSeconds);\n        $this->assertSame(1 / 2 / 60, $interval->totalMinutes);\n        $this->assertSame(1 / 2 / 3600, $interval->totalHours);\n\n        $interval = CarbonInterval::milliseconds(600000)->cascade();\n\n        $this->assertSame(600000000.0, $interval->totalMicroseconds);\n        $this->assertSame(600000.0, $interval->totalMilliseconds);\n        $this->assertSame(600.0, $interval->totalSeconds);\n        $this->assertSame(10.0, $interval->totalMinutes);\n        $this->assertSame(1 / 6, $interval->totalHours);\n    }\n\n    public function testWithDiffInterval()\n    {\n        $this->assertSame(51.0, Carbon::parse('2020-08-10')->diff('2020-09-30')->totalDays);\n    }\n\n    public function testAlterationAfterDiff()\n    {\n        $t1 = Carbon::now();\n        $t2 = $t1->copy()->addMinutes(2);\n\n        $p = $t1->diffAsCarbonInterval($t2);\n        $p->addSeconds(10);\n\n        $this->assertSame(130.0, $p->totalSeconds);\n    }\n\n    public function testAbsoluteDiff()\n    {\n        Carbon::setTestNowAndTimezone(new DateTimeImmutable('now UTC'));\n\n        $diff = Carbon::now()->addDays(15)->diff('now');\n\n        $this->assertSame(-1296000000000.0, $diff->totalMicroseconds);\n        $this->assertTrue($diff->lte(CarbonInterval::minutes(30)));\n\n        $diff = Carbon::now()->addDays(15)->diff('now', true);\n\n        $this->assertSame(1296000000000.0, $diff->totalMicroseconds);\n        $this->assertFalse($diff->lte(CarbonInterval::minutes(30)));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/AliasTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass AliasTest extends AbstractTestCase\n{\n    public function testSetStartDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::start($date = '2017-09-13 12:30:45', false);\n        $this->assertEquals(Carbon::parse($date), $period->getStartDate());\n        $this->assertEquals(Carbon::parse($date), $period->start());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertEquals(Carbon::parse($date), $period->start);\n        }\n\n        $this->assertPeriodOptions($periodClass::EXCLUDE_START_DATE, $period);\n\n        $period = $period->since($date = '2014-10-12 15:42:34', true);\n        $this->assertEquals(Carbon::parse($date), $period->getStartDate());\n        $this->assertPeriodOptions(0, $period);\n\n        $period = $period->sinceNow(false);\n        $this->assertEquals(Carbon::now(), $period->getStartDate());\n        $this->assertPeriodOptions($periodClass::EXCLUDE_START_DATE, $period);\n    }\n\n    public function testSetStartDateWithNamedParameters()\n    {\n        $periodClass = static::$periodClass;\n        $date = '2017-09-13 12:30:45';\n        /** @var CarbonPeriod $period */\n        $period = $periodClass::start(date: $date, inclusive: false);\n        $this->assertEquals(Carbon::parse($date), $period->getStartDate());\n        $this->assertEquals(Carbon::parse($date), $period->start());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertEquals(Carbon::parse($date), $period->start);\n        }\n\n        $this->assertPeriodOptions(CarbonPeriod::EXCLUDE_START_DATE, $period);\n\n        /** @var CarbonPeriod $period */\n        $period = $periodClass::start(date: $date);\n        $this->assertEquals(Carbon::parse($date), $period->getStartDate());\n        $this->assertEquals(Carbon::parse($date), $period->start());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertEquals(Carbon::parse($date), $period->start);\n        }\n\n        $this->assertPeriodOptions(0, $period);\n\n        $date = '2014-10-12 15:42:34';\n        $period = $period->since(date: $date, inclusive: true);\n        $this->assertEquals(Carbon::parse($date), $period->getStartDate());\n        $this->assertPeriodOptions(0, $period);\n\n        $period = $period->sinceNow(inclusive: false);\n        $this->assertEquals(Carbon::now(), $period->getStartDate());\n        $this->assertPeriodOptions($periodClass::EXCLUDE_START_DATE, $period);\n\n        $period = $periodClass::sinceNow();\n        $this->assertEquals(Carbon::now(), $period->getStartDate());\n        $this->assertPeriodOptions(0, $period);\n    }\n\n    public function testSetEndDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::end($date = '2017-09-13 12:30:45', false);\n        $this->assertEquals(Carbon::parse($date), $period->getEndDate());\n        $this->assertEquals(Carbon::parse($date), $period->end());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertEquals(Carbon::parse($date), $period->end);\n        }\n\n        $this->assertPeriodOptions(CarbonPeriod::EXCLUDE_END_DATE, $period);\n\n        $period = $period->until($date = '2014-10-12 15:42:34', true);\n        $this->assertEquals(Carbon::parse($date), $period->getEndDate());\n        $this->assertPeriodOptions(0, $period);\n\n        $period = $period->untilNow(false);\n        $this->assertEquals(Carbon::now(), $period->getEndDate());\n        $this->assertPeriodOptions($periodClass::EXCLUDE_END_DATE, $period);\n\n        $period = $period->end(null);\n        $this->assertNull($period->getEndDate());\n    }\n\n    public function testSetEndDateWithNamedParameters()\n    {\n        $periodClass = static::$periodClass;\n        $date = '2017-09-13 12:30:45';\n        /** @var CarbonPeriod $period */\n        $period = $periodClass::end(date: $date, inclusive: false);\n        $this->assertEquals(Carbon::parse($date), $period->getEndDate());\n        $this->assertEquals(Carbon::parse($date), $period->end());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertEquals(Carbon::parse($date), $period->end);\n        }\n\n        $this->assertPeriodOptions(CarbonPeriod::EXCLUDE_END_DATE, $period);\n\n        $date = '2014-10-12 15:42:34';\n        $period = $period->until(date: $date, inclusive: true);\n        $this->assertEquals(Carbon::parse($date), $period->getEndDate());\n        $this->assertPeriodOptions(0, $period);\n\n        $period = $period->untilNow(inclusive: false);\n        $this->assertEquals(Carbon::now(), $period->getEndDate());\n        $this->assertPeriodOptions($periodClass::EXCLUDE_END_DATE, $period);\n    }\n\n    public function testManageFilters()\n    {\n        $filter = function () {\n            return true;\n        };\n\n        $periodClass = static::$periodClass;\n        $period = $periodClass::filter($filter, 'foo');\n        $this->assertSame([[$filter, 'foo']], $period->getFilters());\n        $this->assertSame([[$filter, 'foo']], $period->filters());\n\n        $period = $period->push($filter, 'bar');\n        $this->assertSame([[$filter, 'foo'], [$filter, 'bar']], $period->getFilters());\n\n        $period = $period->prepend($filter, 'pre');\n        $this->assertSame([[$filter, 'pre'], [$filter, 'foo'], [$filter, 'bar']], $period->getFilters());\n\n        $period = $period->filters([]);\n        $this->assertSame([], $period->getFilters());\n\n        $period = $period->filters($filters = [[$filter, null]]);\n        $this->assertSame($filters, $period->getFilters());\n    }\n\n    public function testSetRecurrences()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::recurrences(5);\n        $this->assertSame(5, $period->getRecurrences());\n        $this->assertSame(5, $period->recurrences());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertSame(5, $period->recurrences);\n        }\n\n        $period = $period->times(3);\n        $this->assertSame(3, $period->getRecurrences());\n\n        $period = $period->recurrences(null);\n        $this->assertNull($period->getRecurrences());\n    }\n\n    public function testManageOptions()\n    {\n        $periodClass = static::$periodClass;\n        $start = $periodClass::EXCLUDE_START_DATE;\n        $end = $periodClass::EXCLUDE_END_DATE;\n\n        $period = $periodClass::options($start);\n        $this->assertSame($start, $period->getOptions());\n\n        $period = $period->toggle($start | $end);\n        $this->assertSame($start | $end, $period->getOptions());\n\n        $period = $period->toggle($end, false);\n        $this->assertSame($start, $period->getOptions());\n        $this->assertSame($start, $period->options());\n\n        $period = $period->options(null);\n        $this->assertSame(0, $period->getOptions());\n    }\n\n    public function testSetDates()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::dates($start = '2014-10-12 15:42:34', $end = '2017-09-13 12:30:45');\n        $this->assertEquals(Carbon::parse($start), $period->getStartDate());\n        $this->assertEquals(Carbon::parse($end), $period->getEndDate());\n\n        $period = $period->dates(Carbon::now());\n        $this->assertEquals(Carbon::now(), $period->getStartDate());\n        $this->assertNull($period->getEndDate());\n    }\n\n    public function testManageInterval()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::interval('PT6H');\n        $this->assertEquals(CarbonInterval::create('PT6H')->optimize(), $period->getDateInterval()->optimize());\n        $this->assertEquals(CarbonInterval::create('PT6H')->optimize(), $period->interval()->optimize());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertEquals(CarbonInterval::create('PT6H')->optimize(), $period->interval->optimize());\n        }\n    }\n\n    public function testInvertInterval()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::invert();\n        $this->assertEquals(\n            CarbonInterval::create('P1D')->invert()->optimize(),\n            $period->getDateInterval()->optimize(),\n        );\n    }\n\n    public function testModifyIntervalPlural()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::weeks(2);\n        $this->assertSame('P14D', $period->getDateInterval()->spec());\n\n        $period = $period->years(2)->months(3)->days(4)->hours(5)->minutes(30)->seconds(15);\n        $this->assertSame('P2Y3M4DT5H30M15S', $period->getDateInterval()->spec());\n\n        $period = $period->years(0)->months(0)->dayz(0)->hours(0)->minutes(0)->seconds(1);\n        $this->assertSame('PT1S', $period->getDateInterval()->spec());\n\n        $period = $periodClass::create();\n        $this->assertSame('P1D', $period->getDateInterval()->spec());\n\n        $period = $periodClass::create()->hours(12);\n        $this->assertSame('PT12H', $period->getDateInterval()->spec());\n\n        $period = $periodClass::day()->hours(12);\n        $this->assertSame('P1DT12H', $period->getDateInterval()->spec());\n\n        $period = $periodClass::day()->resetDateInterval()->hours(12);\n        $this->assertSame('PT12H', $period->getDateInterval()->spec());\n    }\n\n    public function testModifyIntervalSingular()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::week();\n        $this->assertSame('P7D', $period->getDateInterval()->spec());\n\n        $period = $period->year()->month()->day()->hour()->minute()->second();\n        $this->assertSame('P1Y1M1DT1H1M1S', $period->getDateInterval()->spec());\n\n        $period = $period->year(2)->month(3)->day(4)->hour(5)->minute(6)->second(7);\n        $this->assertSame('P2Y3M4DT5H6M7S', $period->getDateInterval()->spec());\n    }\n\n    public function testChainAliases()\n    {\n        $periodClass = static::$periodClass;\n        Carbon::setTestNow('2018-05-15');\n        $period = $periodClass::days(3)->hours(5)->invert()\n            ->sinceNow()->until(Carbon::now()->subDays(10))\n            ->options($periodClass::EXCLUDE_START_DATE)\n            ->times(2);\n\n        $this->assertSame(\n            $this->standardizeDates([\n                Carbon::now()->subDays(3)->subHours(5), Carbon::now()->subDays(6)->subHours(10),\n            ]),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public function testCallInvalidAlias()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method foobar does not exist.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::foobar();\n    }\n\n    public function testOverrideDefaultInterval()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::hours(5);\n        $this->assertSame('PT5H', $period->getDateInterval()->spec());\n\n        $period = $periodClass::create()->hours(5);\n        $this->assertSame('PT5H', $period->getDateInterval()->spec());\n\n        $period = $periodClass::create('P1D')->hours(5);\n        $this->assertSame('P1DT5H', $period->getDateInterval()->spec());\n    }\n\n    public function testModifyIntoEmptyDateInterval()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Empty interval is not accepted.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::days(0);\n    }\n\n    public function testNamedParameters()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12');\n        $this->assertEquals('2022-09-13', $period->getStartDate()->format('Y-m-d'));\n        $this->assertEquals('2022-10-12', $period->getEndDate()->format('Y-m-d'));\n\n        $period = $period->years(years: 5);\n        $this->assertEquals('5 years', (string) $period->getDateInterval());\n\n        $period = $period->interval(interval: \\Carbon\\CarbonInterval::year(years: 3));\n        $this->assertEquals('3 years', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')->months(months: 5);\n        $this->assertEquals('5 months', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')->weeks(weeks: 5);\n        $this->assertEquals('5 weeks', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')->days(days: 5);\n        $this->assertEquals('5 days', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')->hours(hours: 5);\n        $this->assertEquals('5 hours', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')->minutes(minutes: 5);\n        $this->assertEquals('5 minutes', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')->seconds(seconds: 5);\n        $this->assertEquals('5 seconds', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')\n            ->days(days: 5)\n            ->floorDays(precision: 2);\n        $this->assertEquals('4 days', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')\n            ->days(days: 5)\n            ->roundDays(precision: 7);\n        $this->assertEquals('1 week', (string) $period->getDateInterval());\n\n        $period = $periodClass::between(start: '2022-09-13', end: '2022-10-12')\n            ->days(days: 5)\n            ->ceilDays(precision: 2);\n        $this->assertEquals('6 days', (string) $period->getDateInterval());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/CloneTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Tests\\AbstractTestCase;\n\nclass CloneTest extends AbstractTestCase\n{\n    public function testClone()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('R4/2012-07-01T00:00:00/P7D');\n        $clone = $period->clone();\n\n        $this->assertSame((string) $period, (string) $clone);\n        $this->assertNotSame($period, $clone);\n        $this->assertEquals($period, $clone);\n    }\n\n    public function testCopy()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('R4/2012-07-01T00:00:00/P7D');\n        $clone = $period->copy();\n\n        $this->assertSame((string) $period, (string) $clone);\n        $this->assertNotSame($period, $clone);\n        $this->assertEquals($period, $clone);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/ComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse DatePeriod;\nuse DateTime;\nuse DateTimeImmutable;\nuse Tests\\AbstractTestCase;\n\nclass ComparisonTest extends AbstractTestCase\n{\n    public function testEqualToTrue()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2010-01-01', '2010-02-01');\n\n        $this->assertTrue($period->equalTo($period));\n        $this->assertTrue($period->eq($period));\n        $this->assertTrue($period->eq($periodClass::create('2010-01-01', '2010-02-01')));\n        $this->assertTrue($period->eq($periodClass::create('R3/2010-01-01/P1D/2010-02-01')));\n        $this->assertTrue($period->eq(Carbon::parse('2010-01-01')->daysUntil('2010-02-01')));\n        $this->assertTrue($period->eq(\n            new DatePeriod(new DateTime('2010-01-01'), CarbonInterval::day(), new DateTime('2010-02-01'))\n        ));\n\n        $period = $periodClass::create('2010-01-01', '2010-02-01', 'P2D');\n\n        $this->assertTrue($period->eq($periodClass::create('2010-01-01', '2010-02-01', 'P2D')));\n        $this->assertTrue($period->eq($periodClass::create('2010-01-01', '2010-02-01', CarbonInterval::day(2))));\n        $this->assertTrue($period->eq($periodClass::create('2010-01-01', '2010-02-01')->setDateInterval('P2D')));\n        $this->assertTrue($period->eq($periodClass::create('R3/2010-01-01/P2D/2010-02-01')));\n\n        $period = $periodClass::create('2010-01-01', '2010-02-01', $periodClass::EXCLUDE_START_DATE);\n\n        $this->assertTrue($period->eq($periodClass::create('2010-01-01', '2010-02-01', $periodClass::EXCLUDE_START_DATE)));\n        $this->assertTrue($period->eq($periodClass::create('2010-01-01', '2010-02-01')->setOptions($periodClass::EXCLUDE_START_DATE)));\n    }\n\n    public function testEqualToFalse()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2010-01-01', '2010-02-01');\n\n        $this->assertFalse($period->equalTo($periodClass::create('2010-01-02', '2010-02-01')));\n        $this->assertFalse($period->eq($periodClass::create('2010-01-02', '2010-02-01')));\n        $this->assertFalse($period->eq($periodClass::create('2010-01-01', '2010-02-02')));\n        $this->assertFalse($period->eq($periodClass::create('2010-01-01', '2010-02-02', 'P2D')));\n        $this->assertFalse($period->eq($periodClass::create('2010-01-01', '2010-02-02', $periodClass::EXCLUDE_START_DATE)));\n    }\n\n    public function testNotEqualToTrue()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2010-01-01', '2010-02-01');\n\n        $this->assertTrue($period->notEqualTo($periodClass::create('2010-01-02', '2010-02-01')));\n        $this->assertTrue($period->ne($periodClass::create('2010-01-02', '2010-02-01')));\n        $this->assertTrue($period->ne($periodClass::create('2010-01-01', '2010-02-02')));\n        $this->assertTrue($period->ne($periodClass::create('2010-01-01', '2010-02-02', 'P2D')));\n        $this->assertTrue($period->ne($periodClass::create('2010-01-01', '2010-02-02', $periodClass::EXCLUDE_START_DATE)));\n    }\n\n    public function testNotEqualToFalse()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2010-01-01', '2010-02-01');\n\n        $this->assertFalse($period->notEqualTo($period));\n        $this->assertFalse($period->ne($period));\n        $this->assertFalse($period->ne($periodClass::create('2010-01-01', '2010-02-01')));\n        $this->assertFalse($period->ne($periodClass::create('R3/2010-01-01/P1D/2010-02-01')));\n        $this->assertFalse($period->ne(Carbon::parse('2010-01-01')->daysUntil('2010-02-01')));\n        $this->assertFalse($period->ne(\n            new DatePeriod(new DateTime('2010-01-01'), CarbonInterval::day(), new DateTime('2010-02-01'))\n        ));\n\n        $period = $periodClass::create('2010-01-01', '2010-02-01', 'P2D');\n\n        $this->assertFalse($period->ne($periodClass::create('2010-01-01', '2010-02-01', 'P2D')));\n        $this->assertFalse($period->ne($periodClass::create('2010-01-01', '2010-02-01', CarbonInterval::day(2))));\n        $this->assertFalse($period->ne($periodClass::create('2010-01-01', '2010-02-01')->setDateInterval('P2D')));\n        $this->assertFalse($period->ne($periodClass::create('R3/2010-01-01/P2D/2010-02-01')));\n\n        $period = $periodClass::create('2010-01-01', '2010-02-01', $periodClass::EXCLUDE_START_DATE);\n\n        $this->assertFalse($period->ne($periodClass::create('2010-01-01', '2010-02-01', $periodClass::EXCLUDE_START_DATE)));\n        $this->assertFalse($period->ne($periodClass::create('2010-01-01', '2010-02-01')->setOptions($periodClass::EXCLUDE_START_DATE)));\n    }\n\n    public function testStartComparisons()\n    {\n        $periodClass = static::$periodClass;\n        Carbon::setTestNow('2020-01-01');\n        CarbonImmutable::setTestNow('2020-01-01');\n\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsBefore($periodClass::create('2019-12-05', '2020-02-01')));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsBefore($periodClass::create('2020-01-07', '2020-01-08')));\n\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsBefore(CarbonInterval::days(2)));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsBefore(CarbonInterval::days(4)));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsBeforeOrAt(CarbonInterval::days(4)));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsBefore(CarbonInterval::days(5)));\n\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsAfter($periodClass::create('2019-12-05', '2020-02-01')));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsAfter($periodClass::create('2020-01-07', '2020-01-08')));\n\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsAfter(CarbonInterval::days(2)));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsAfter(CarbonInterval::days(4)));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsAfterOrAt(CarbonInterval::days(4)));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsAfter(CarbonInterval::days(5)));\n\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->startsAt('2020-02-01'));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->startsAt('2020-01-05'));\n    }\n\n    public function testEndComparisons()\n    {\n        $periodClass = static::$periodClass;\n        Carbon::setTestNow('2020-02-05');\n        CarbonImmutable::setTestNow('2020-02-05');\n\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsBefore($periodClass::create('2019-12-05', '2020-02-01')));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsBefore($periodClass::create('2020-01-07', '2020-01-08')));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsBefore($periodClass::create('2020-02-01', '2020-02-08')));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsBeforeOrAt($periodClass::create('2020-02-01', '2020-02-08')));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsBefore($periodClass::create('2020-02-03', '2020-02-08')));\n\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsBefore(CarbonInterval::days(2)->invert()));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsBefore(CarbonInterval::days(4)->invert()));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsBeforeOrAt(CarbonInterval::days(4)->invert()));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsBefore(CarbonInterval::days(5)->invert()));\n\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsAfter($periodClass::create('2019-12-05', '2020-02-01')));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsAfter($periodClass::create('2020-01-07', '2020-01-08')));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsAfterOrAt($periodClass::create('2020-02-01', '2020-01-08')));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsAfter($periodClass::create('2020-02-01', '2020-01-08')));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsAfter($periodClass::create('2020-02-02', '2020-01-08')));\n\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsAfter(CarbonInterval::days(2)->invert()));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsAfter(CarbonInterval::days(4)->invert()));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsAfterOrAt(CarbonInterval::days(4)->invert()));\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsAfter(CarbonInterval::days(5)->invert()));\n\n        $this->assertTrue($periodClass::create('2020-01-05', '2020-02-01')->endsAt('2020-02-01'));\n        $this->assertFalse($periodClass::create('2020-01-05', '2020-02-01')->endsAt('2020-01-05'));\n    }\n\n    public function testContains()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2019-08-01', '2019-08-10');\n\n        $this->assertFalse($period->contains('2019-07-31 23:59:59'));\n        $this->assertTrue($period->contains('2019-08-01'));\n        $this->assertTrue($period->contains('2019-08-02'));\n        $this->assertTrue($period->contains('2019-08-10'));\n        $this->assertFalse($period->contains('2019-08-10 00:00:01'));\n\n        $period = $periodClass::create('2019-08-01', '2019-08-10', $periodClass::EXCLUDE_START_DATE | $periodClass::EXCLUDE_END_DATE);\n\n        $this->assertFalse($period->contains('2019-08-01'));\n        $this->assertTrue($period->contains('2019-08-01 00:00:01'));\n        $this->assertTrue($period->contains('2019-08-02'));\n        $this->assertTrue($period->contains('2019-08-09 23:59:59'));\n        $this->assertFalse($period->contains('2019-08-10'));\n    }\n\n    public function testConsecutivePeriods()\n    {\n        $periodClass = static::$periodClass;\n        $july = $periodClass::create('2019-07-29', '2019-07-31');\n        $august = $periodClass::create('2019-08-01', '2019-08-12');\n\n        $this->assertFalse($july->follows($august));\n        $this->assertTrue($august->follows($july));\n\n        $this->assertTrue($july->isFollowedBy($august));\n        $this->assertFalse($august->isFollowedBy($july));\n\n        $this->assertTrue($july->isConsecutiveWith($august));\n        $this->assertTrue($august->isConsecutiveWith($july));\n\n        $this->assertFalse($july->follows('2019-08-01', '2019-08-12'));\n        $this->assertTrue($august->follows('2019-07-29', '2019-07-31'));\n\n        $this->assertTrue($july->isFollowedBy('2019-08-01', '2019-08-12'));\n        $this->assertFalse($august->isFollowedBy('2019-07-29', '2019-07-31'));\n\n        $this->assertTrue($july->isConsecutiveWith('2019-08-01', '2019-08-12'));\n        $this->assertTrue($august->isConsecutiveWith('2019-07-29', '2019-07-31'));\n\n        $july2 = new DatePeriod(\n            new DateTimeImmutable('2019-07-29'),\n            new DateInterval('P1D'),\n            new DateTimeImmutable('2019-07-31'),\n        );\n        $august2 = new DatePeriod(\n            new DateTimeImmutable('2019-08-01'),\n            new DateInterval('P1D'),\n            new DateTimeImmutable('2019-08-12'),\n        );\n\n        $this->assertFalse($july->follows($august2));\n        $this->assertTrue($august->follows($july2));\n\n        $this->assertTrue($july->isFollowedBy($august2));\n        $this->assertFalse($august->isFollowedBy($july2));\n\n        $this->assertTrue($july->isConsecutiveWith($august2));\n        $this->assertTrue($august->isConsecutiveWith($july2));\n\n        $july = $periodClass::create('2019-07-29', '2019-08-01');\n        $august = $periodClass::create('2019-08-01', '2019-08-12');\n\n        $this->assertFalse($july->follows($august));\n        $this->assertFalse($august->follows($july));\n\n        $this->assertFalse($july->isFollowedBy($august));\n        $this->assertFalse($august->isFollowedBy($july));\n\n        $this->assertFalse($july->isConsecutiveWith($august));\n        $this->assertFalse($august->isConsecutiveWith($july));\n\n        $july = $periodClass::create('2019-07-29', '2019-07-31', $periodClass::EXCLUDE_END_DATE);\n        $august = $periodClass::create('2019-08-01', '2019-08-12', $periodClass::EXCLUDE_START_DATE);\n\n        $this->assertFalse($july->follows($august));\n        $this->assertFalse($august->follows($july));\n\n        $this->assertFalse($july->isFollowedBy($august));\n        $this->assertFalse($august->isFollowedBy($july));\n\n        $this->assertFalse($july->isConsecutiveWith($august));\n        $this->assertFalse($august->isConsecutiveWith($july));\n    }\n\n    public function testConsecutivePeriodsWithExclusion()\n    {\n        $periodClass = static::$periodClass;\n        $july = $periodClass::create('2019-07-29', '2019-08-01', $periodClass::EXCLUDE_END_DATE);\n        $august = $periodClass::create('2019-07-31', '2019-08-12', $periodClass::EXCLUDE_START_DATE);\n\n        $this->assertFalse($july->follows($august));\n        $this->assertTrue($august->follows($july));\n\n        $this->assertTrue($july->isFollowedBy($august));\n        $this->assertFalse($august->isFollowedBy($july));\n\n        $this->assertTrue($july->isConsecutiveWith($august));\n        $this->assertTrue($august->isConsecutiveWith($july));\n    }\n\n    public function testConsecutivePeriodsWithDynamicEnd()\n    {\n        $periodClass = static::$periodClass;\n        $july = $periodClass::create('2019-07-29', '1 day', 4);\n        $august = $periodClass::create('2019-08-02', '2019-08-12');\n\n        $this->assertFalse($july->follows($august));\n        $this->assertTrue($august->follows($july));\n\n        $this->assertTrue($july->isFollowedBy($august));\n        $this->assertFalse($august->isFollowedBy($july));\n\n        $this->assertTrue($july->isConsecutiveWith($august));\n        $this->assertTrue($august->isConsecutiveWith($july));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/CreateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonPeriodImmutable;\nuse Carbon\\Exceptions\\InvalidPeriodParameterException;\nuse Carbon\\Exceptions\\NotAPeriodException;\nuse Carbon\\Month;\nuse Carbon\\Unit;\nuse DateInterval;\nuse DatePeriod;\nuse DateTime;\nuse Generator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse stdClass;\nuse Tests\\AbstractTestCase;\n\nclass CreateTest extends AbstractTestCase\n{\n    #[DataProvider('dataForIso8601String')]\n    public function testCreateFromIso8601String($arguments, $expected)\n    {\n        $periodClass = static::$periodClass;\n        [$iso, $options] = array_pad($arguments, 2, null);\n\n        $period = $periodClass::create($iso, $options);\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertInstanceOf(DatePeriod::class, $period);\n        $this->assertSame(\n            $this->standardizeDates($expected),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public static function dataForIso8601String(): Generator\n    {\n        yield [\n            ['R4/2012-07-01T00:00:00/P7D'],\n            ['2012-07-01', '2012-07-08', '2012-07-15', '2012-07-22'],\n        ];\n        yield [\n            ['R4/2012-07-01T00:00:00/P7D', CarbonPeriod::EXCLUDE_START_DATE],\n            ['2012-07-08', '2012-07-15', '2012-07-22', '2012-07-29'],\n        ];\n        yield [\n            ['2012-07-01/P2D/2012-07-07'],\n            ['2012-07-01', '2012-07-03', '2012-07-05', '2012-07-07'],\n        ];\n        yield [\n            ['2012-07-01/2012-07-04', CarbonPeriod::EXCLUDE_END_DATE],\n            ['2012-07-01', '2012-07-02', '2012-07-03'],\n        ];\n        yield [\n            ['R2/2012-07-01T10:30:45Z/P2D'],\n            ['2012-07-01 10:30:45 UTC', '2012-07-03 10:30:45 UTC'],\n        ];\n    }\n\n    public function testCreateFromIso8601StringWithUnboundedRecurrences()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('R/2012-07-01T00:00:00/P7D');\n\n        $this->assertSame('2012-07-01', $period->getStartDate()->toDateString());\n        $this->assertSame('P7D', $period->getDateInterval()->spec());\n        $this->assertNull($period->getEndDate());\n        $this->assertNull($period->getRecurrences());\n    }\n\n    public function testCreateFromIso8601StringWithInfiniteRecurrences()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('RINF/2012-07-01T00:00:00/P7D');\n        $this->assertSame('2012-07-01', $period->getStartDate()->toDateString());\n        $this->assertSame('P7D', $period->getDateInterval()->spec());\n        $this->assertNull($period->getEndDate());\n        $this->assertInfinite($period->getRecurrences());\n    }\n\n    #[DataProvider('dataForPartialIso8601String')]\n    public function testCreateFromPartialIso8601String($iso, $from, $to)\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create($iso);\n\n        $this->assertSame(\n            $this->standardizeDates([$from, $to]),\n            $this->standardizeDates([$period->getStartDate(), $period->getEndDate()]),\n        );\n\n        $period = new $periodClass($iso);\n\n        $this->assertSame(\n            $this->standardizeDates([$from, $to]),\n            $this->standardizeDates([$period->getStartDate(), $period->getEndDate()]),\n        );\n    }\n\n    public static function dataForPartialIso8601String(): Generator\n    {\n        yield ['2008-02-15/03-14', '2008-02-15', '2008-03-14'];\n        yield ['2007-12-14T13:30/15:30', '2007-12-14 13:30', '2007-12-14 15:30'];\n    }\n\n    #[DataProvider('dataForInvalidIso8601String')]\n    public function testCreateFromInvalidIso8601String($iso)\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            \"Invalid ISO 8601 specification: $iso\",\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create($iso);\n    }\n\n    public static function dataForInvalidIso8601String(): Generator\n    {\n        yield ['R2/R4'];\n        yield ['2008-02-15/2008-02-16/2008-02-17'];\n        yield ['P1D/2008-02-15/P2D'];\n        yield ['2008-02-15/R5'];\n        yield ['P2D/R2'];\n        yield ['/'];\n    }\n\n    #[DataProvider('dataForStartDateAndEndDate')]\n    public function testCreateFromStartDateAndEndDate($arguments, $expected)\n    {\n        $periodClass = static::$periodClass;\n        [$start, $end, $options] = array_pad($arguments, 3, null);\n\n        $start = Carbon::parse($start);\n        $end = Carbon::parse($end);\n\n        $period = $periodClass::create($start, $end, $options);\n\n        $this->assertSame(\n            $this->standardizeDates($expected),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public static function dataForStartDateAndEndDate(): Generator\n    {\n        yield [\n                ['2015-09-30', '2015-10-03'],\n                ['2015-09-30', '2015-10-01', '2015-10-02', '2015-10-03'],\n            ];\n        yield [\n                ['2015-09-30', '2015-10-03', CarbonPeriod::EXCLUDE_START_DATE],\n                ['2015-10-01', '2015-10-02', '2015-10-03'],\n            ];\n        yield [\n                ['2015-09-30', '2015-10-03', CarbonPeriod::EXCLUDE_END_DATE],\n                ['2015-09-30', '2015-10-01', '2015-10-02'],\n            ];\n        yield [\n                ['2015-09-30', '2015-10-03', CarbonPeriod::EXCLUDE_START_DATE | CarbonPeriod::EXCLUDE_END_DATE],\n                ['2015-10-01', '2015-10-02'],\n            ];\n        yield [\n                ['2015-10-02', '2015-10-03', CarbonPeriod::EXCLUDE_START_DATE | CarbonPeriod::EXCLUDE_END_DATE],\n                [],\n            ];\n        yield [\n                ['2015-10-02', '2015-10-02'],\n                ['2015-10-02'],\n            ];\n        yield [\n                ['2015-10-02', '2015-10-02', CarbonPeriod::EXCLUDE_START_DATE],\n                [],\n            ];\n        yield [\n                ['2015-10-02', '2015-10-02', CarbonPeriod::EXCLUDE_END_DATE],\n                [],\n            ];\n    }\n\n    #[DataProvider('dataForStartDateAndIntervalAndEndDate')]\n    public function testCreateFromStartDateAndIntervalAndEndDate($arguments, $expected)\n    {\n        $periodClass = static::$periodClass;\n        [$start, $interval, $end, $options] = array_pad($arguments, 4, null);\n\n        $start = Carbon::parse($start);\n        $interval = CarbonInterval::create($interval);\n        $end = Carbon::parse($end);\n\n        $period = $periodClass::create($start, $interval, $end, $options);\n\n        $this->assertSame(\n            $this->standardizeDates($expected),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public static function dataForStartDateAndIntervalAndEndDate(): Generator\n    {\n        yield [\n            ['2018-04-21', 'P3D', '2018-04-26'],\n            ['2018-04-21', '2018-04-24'],\n        ];\n        yield [\n            ['2018-04-21 16:15', 'PT15M', '2018-04-21 16:59:59'],\n            ['2018-04-21 16:15', '2018-04-21 16:30', '2018-04-21 16:45'],\n        ];\n        yield [\n            ['2018-04-21 16:15', 'PT15M', '2018-04-21 17:00'],\n            ['2018-04-21 16:15', '2018-04-21 16:30', '2018-04-21 16:45', '2018-04-21 17:00'],\n        ];\n        yield [\n            ['2018-04-21 17:00', 'PT45S', '2018-04-21 17:02', CarbonPeriod::EXCLUDE_START_DATE],\n            ['2018-04-21 17:00:45', '2018-04-21 17:01:30'],\n        ];\n        yield [\n            ['2017-12-31 22:00', 'PT2H', '2018-01-01 4:00', CarbonPeriod::EXCLUDE_END_DATE],\n            ['2017-12-31 22:00', '2018-01-01 0:00', '2018-01-01 2:00'],\n        ];\n        yield [\n            [\n                '2017-12-31 23:59',\n                'PT30S',\n                '2018-01-01 0:01',\n                CarbonPeriod::EXCLUDE_START_DATE | CarbonPeriod::EXCLUDE_END_DATE,\n            ],\n            ['2017-12-31 23:59:30', '2018-01-01 0:00', '2018-01-01 0:00:30'],\n        ];\n        yield [\n            ['2018-04-21', 'P1D', '2018-04-21'],\n            ['2018-04-21'],\n        ];\n        yield [\n            ['2018-04-21', 'P1D', '2018-04-20 23:59:59'],\n            [],\n        ];\n    }\n\n    #[DataProvider('dataForStartDateAndIntervalAndRecurrences')]\n    public function testCreateFromStartDateAndIntervalAndRecurrences($arguments, $expected)\n    {\n        $periodClass = static::$periodClass;\n        [$start, $interval, $recurrences, $options] = array_pad($arguments, 4, null);\n\n        $start = Carbon::parse($start);\n        $interval = CarbonInterval::create($interval);\n\n        $period = $periodClass::create($start, $interval, $recurrences, $options);\n\n        $this->assertSame(\n            $this->standardizeDates($expected),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public static function dataForStartDateAndIntervalAndRecurrences(): Generator\n    {\n        yield [\n            ['2018-04-16', 'P2D', 3],\n            ['2018-04-16', '2018-04-18', '2018-04-20'],\n        ];\n        yield [\n            ['2018-04-30', 'P2M', 2, CarbonPeriod::EXCLUDE_START_DATE],\n            ['2018-06-30', '2018-08-30'],\n        ];\n    }\n\n    #[DataProvider('dataForStartDateAndRecurrences')]\n    public function testCreateFromStartDateAndRecurrences($arguments, $expected)\n    {\n        $periodClass = static::$periodClass;\n        [$start, $recurrences, $options] = array_pad($arguments, 4, null);\n\n        $start = Carbon::parse($start);\n\n        $period = $periodClass::create($start, $recurrences, $options);\n\n        $this->assertSame(\n            $this->standardizeDates($expected),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public static function dataForStartDateAndRecurrences(): Generator\n    {\n        yield [\n                ['2018-04-16', 2],\n                ['2018-04-16', '2018-04-17'],\n            ];\n        yield [\n                ['2018-04-30', 1],\n                ['2018-04-30'],\n            ];\n        yield [\n                ['2018-04-30', 1, CarbonPeriod::EXCLUDE_START_DATE],\n                ['2018-05-01'],\n            ];\n        yield [\n                ['2018-05-17', 0],\n                [],\n            ];\n    }\n\n    public function testCreateFromBaseClasses()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            new DateTime('2018-04-16'),\n            new DateInterval('P1M'),\n            new DateTime('2018-07-15'),\n        );\n\n        $this->assertSame(\n            [\n                '2018-04-16 00:00:00 -04:00',\n                '2018-05-16 00:00:00 -04:00',\n                '2018-06-16 00:00:00 -04:00',\n            ],\n            $this->standardizeDates($period),\n        );\n    }\n\n    #[DataProvider('dataForInvalidParameters')]\n    public function testCreateFromInvalidParameters(...$arguments)\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid constructor parameters.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create(...$arguments);\n    }\n\n    public static function dataForInvalidParameters(): Generator\n    {\n        yield [new stdClass(), CarbonInterval::days(1), Carbon::tomorrow()];\n        yield [Carbon::now(), new stdClass(), Carbon::tomorrow()];\n        yield [Carbon::now(), CarbonInterval::days(1), new stdClass()];\n        yield [Carbon::yesterday(), Carbon::now(), Carbon::tomorrow()];\n        yield [CarbonInterval::day(), CarbonInterval::hour()];\n        yield [5, CarbonPeriod::EXCLUDE_START_DATE, CarbonPeriod::EXCLUDE_END_DATE];\n        yield ['2017-10-15/P3D', CarbonInterval::hour()];\n    }\n\n    public function testCreateOnDstForwardChange()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            '2018-03-25 1:30 Europe/Oslo',\n            'PT30M',\n            '2018-03-25 3:30 Europe/Oslo',\n        );\n\n        $this->assertSame(\n            [\n                '2018-03-25 01:30:00 +01:00',\n                '2018-03-25 03:00:00 +02:00',\n                '2018-03-25 03:30:00 +02:00',\n            ],\n            $this->standardizeDates($period),\n        );\n    }\n\n    /**\n     * Incorrect behaviour is caused by a bug in DateTime handling of DST backward change.\n     * It was fixed by incrementing date casted to UTC, but offsets are still kind of wrong.\n     *\n     * @see https://bugs.php.net/bug.php?id=72255\n     * @see https://bugs.php.net/bug.php?id=74274\n     * @see https://wiki.php.net/rfc/datetime_and_daylight_saving_time\n     */\n    public function testCreateOnDstBackwardChange()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            '2018-10-28 1:30 Europe/Oslo',\n            'PT30M',\n            '2018-10-28 3:30 Europe/Oslo',\n        );\n\n        $this->assertSame(\n            [\n                '2018-10-28 01:30:00 +02:00',\n                '2018-10-28 02:00:00 +02:00',\n                '2018-10-28 02:30:00 +02:00',\n                '2018-10-28 02:00:00 +01:00',\n                '2018-10-28 02:30:00 +01:00',\n                '2018-10-28 03:00:00 +01:00',\n                '2018-10-28 03:30:00 +01:00',\n            ],\n            $this->standardizeDates($period),\n        );\n    }\n\n    public function testInternalVariablesCannotBeIndirectlyModified()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            $start = new DateTime('2018-04-16'),\n            $interval = new DateInterval('P1M'),\n            $end = new DateTime('2018-07-15'),\n        );\n\n        $start->modify('-5 days');\n        $interval->d = 15;\n        $end->modify('+5 days');\n\n        $this->assertSame('2018-04-16', $period->getStartDate()->toDateString());\n        $this->assertSame('P1M', $period->getDateInterval()->spec());\n        $this->assertSame('2018-07-15', $period->getEndDate()->toDateString());\n\n        $period = $periodClass::create(\n            $start = new Carbon('2018-04-16'),\n            $interval = new CarbonInterval('P1M'),\n            $end = new Carbon('2018-07-15'),\n        );\n\n        $start->subDays(5);\n        $interval->days(15);\n        $end->addDays(5);\n\n        $this->assertSame('2018-04-16', $period->getStartDate()->toDateString());\n        $this->assertSame('P1M', $period->getDateInterval()->spec());\n        $this->assertSame('2018-07-15', $period->getEndDate()->toDateString());\n    }\n\n    public function testCreateFromArray()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::createFromArray([\n            '2018-03-25', 'P2D', '2018-04-01', $periodClass::EXCLUDE_END_DATE,\n        ]);\n\n        $this->assertSame('2018-03-25', $period->getStartDate()->toDateString());\n        $this->assertSame('P2D', $period->getDateInterval()->spec());\n        $this->assertSame('2018-04-01', $period->getEndDate()->toDateString());\n        $this->assertPeriodOptions($periodClass::EXCLUDE_END_DATE, $period);\n    }\n\n    public function testCreateFromIso()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::createFromIso('R3/2018-03-25/P2D/2018-04-01', $periodClass::EXCLUDE_END_DATE);\n\n        $this->assertSame('2018-03-25', $period->getStartDate()->toDateString());\n        $this->assertSame('P2D', $period->getDateInterval()->spec());\n        $this->assertSame('2018-04-01', $period->getEndDate()->toDateString());\n        $this->assertSame(3, $period->getRecurrences());\n        $this->assertPeriodOptions($periodClass::EXCLUDE_END_DATE, $period);\n    }\n\n    public function testCreateEmpty()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $this->assertEquals(new Carbon(), $period->getStartDate());\n        $this->assertSame('P1D', $period->getDateInterval()->spec());\n        $this->assertNull($period->getEndDate());\n        $this->assertNull($period->getRecurrences());\n        $this->assertPeriodOptions(0, $period);\n    }\n\n    public function testCreateFromDateStringsWithTimezones()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass = \\Carbon\\CarbonPeriodImmutable::class;\n        $period = $periodClass::create(\n            $start = '2018-03-25 10:15:30 Europe/Oslo',\n            $end = '2018-03-28 17:25:30 Asia/Kamchatka',\n        );\n\n        $this->assertSame('2018-03-25 10:15:30 Europe/Oslo', $period->first()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2018-03-27 10:15:30 Europe/Oslo', $period->last()->format('Y-m-d H:i:s e'));\n        $this->assertSame($start, $period->getStartDate()->format('Y-m-d H:i:s e'));\n        $this->assertSame($end, $period->getEndDate()->format('Y-m-d H:i:s e'));\n\n        $period = $periodClass::create(\n            '2024-01-01',\n            '2024-01-05',\n            \\Carbon\\CarbonTimeZone::create('Australia/Melbourne'),\n        );\n        $this->assertSame('Australia/Melbourne', $period->first()->timezone->getName());\n        $this->assertSame('Australia/Melbourne', $period->last()->timezone->getName());\n        $this->assertSame('Australia/Melbourne', $period->getStartDate()->timezone->getName());\n        $this->assertSame('Australia/Melbourne', $period->getEndDate()->timezone->getName());\n        $this->assertSame('2024-01-01 00:00:00 Australia/Melbourne', $period->first()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2024-01-05 00:00:00 Australia/Melbourne', $period->last()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2024-01-01 00:00:00 Australia/Melbourne', $period->getStartDate()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2024-01-05 00:00:00 Australia/Melbourne', $period->getEndDate()->format('Y-m-d H:i:s e'));\n\n        $period = $periodClass::create(\n            '2024-01-01',\n            '2024-01-05',\n            'Australia/Melbourne',\n        );\n        $this->assertSame('Australia/Melbourne', $period->first()->timezone->getName());\n        $this->assertSame('Australia/Melbourne', $period->last()->timezone->getName());\n        $this->assertSame('Australia/Melbourne', $period->getStartDate()->timezone->getName());\n        $this->assertSame('Australia/Melbourne', $period->getEndDate()->timezone->getName());\n        $this->assertSame('2024-01-01 00:00:00 Australia/Melbourne', $period->first()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2024-01-05 00:00:00 Australia/Melbourne', $period->last()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2024-01-01 00:00:00 Australia/Melbourne', $period->getStartDate()->format('Y-m-d H:i:s e'));\n        $this->assertSame('2024-01-05 00:00:00 Australia/Melbourne', $period->getEndDate()->format('Y-m-d H:i:s e'));\n    }\n\n    public function testCreateWithIntervalInFromStringFormat()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            '2018-03-25 12:00',\n            '2 days 10 hours',\n            '2018-04-01 13:30',\n        );\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-03-25 12:00', '2018-03-27 22:00', '2018-03-30 08:00']),\n            $this->standardizeDates($period),\n        );\n\n        $period = $periodClass::create(\n            '2018-04-21',\n            '3 days',\n            '2018-04-27',\n        );\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-21 00:00', '2018-04-24 00:00', '2018-04-27 00:00']),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public function testCreateFromRelativeDates()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            $start = 'previous friday',\n            $end = '+6 days',\n        );\n\n        $this->assertEquals(new Carbon($start), $period->getStartDate());\n        $this->assertEquals(new Carbon($end), $period->getEndDate());\n    }\n\n    public function testCreateFromCarbonInstances()\n    {\n        $date1 = Carbon::parse('2018-06-01');\n        $date2 = Carbon::parse('2018-06-10');\n        $period = $date1->toPeriod($date2, 'P1D');\n\n        $this->assertSame(24.0, $period->getDateInterval()->totalHours);\n        $this->assertInstanceOf(Carbon::class, $period->getStartDate());\n        $this->assertSame('2018-06-01', $period->getStartDate()->format('Y-m-d'));\n        $this->assertInstanceOf(Carbon::class, $period->getEndDate());\n        $this->assertSame('2018-06-10', $period->getEndDate()->format('Y-m-d'));\n\n        $period = Carbon::create('2019-01-02')->toPeriod(7);\n\n        $this->assertSame(24.0, $period->getDateInterval()->totalHours);\n        $this->assertInstanceOf(Carbon::class, $period->getStartDate());\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertNull($period->getEndDate());\n        $this->assertSame(7, $period->getRecurrences());\n        $end = $period->calculateEnd();\n        $this->assertInstanceOf(Carbon::class, $end);\n        $this->assertSame('2019-01-08', $end->format('Y-m-d'));\n\n        $period = Carbon::create('2019-01-02')->toPeriod('2019-02-05');\n\n        $this->assertNull($period->getRecurrences());\n        $this->assertSame(24.0, $period->getDateInterval()->totalHours);\n        $this->assertInstanceOf(Carbon::class, $period->getStartDate());\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertInstanceOf(Carbon::class, $period->getEndDate());\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n\n        $period = Carbon::create('2019-01-02')->range('2019-02-05');\n\n        $this->assertInstanceOf(Carbon::class, $period->getStartDate());\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertInstanceOf(Carbon::class, $period->getEndDate());\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n\n        $period = Carbon::create('2019-01-02')->daysUntil('2019-02-05');\n\n        $this->assertSame(24.0, $period->getDateInterval()->totalHours);\n        $this->assertInstanceOf(Carbon::class, $period->getStartDate());\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertInstanceOf(Carbon::class, $period->getEndDate());\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n\n        $period = CarbonImmutable::create('2019-01-02')->daysUntil('2019-02-05');\n\n        $this->assertInstanceOf(CarbonImmutable::class, $period->getStartDate());\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertInstanceOf(CarbonImmutable::class, $period->getEndDate());\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n\n        $period = CarbonImmutable::create('2019-01-02')->daysUntil(Carbon::parse('2019-02-05'));\n\n        $this->assertSame(CarbonImmutable::class, $period->getDateClass());\n        $this->assertInstanceOf(CarbonImmutable::class, $period->getStartDate());\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertInstanceOf(CarbonImmutable::class, $period->getEndDate());\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n\n        $period = Carbon::create('2019-01-02')->hoursUntil('2019-02-05');\n        $this->assertSame(1.0, $period->getDateInterval()->totalHours);\n\n        $this->assertSame('1 minute', Carbon::create('2019-01-02')->minutesUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('3 minutes', Carbon::create('2019-01-02')->minutesUntil('2019-02-05', 3)->getDateInterval()->forHumans());\n        $this->assertSame('3 seconds', Carbon::create('2019-01-02')->range('2019-02-05', 3, 'seconds')->getDateInterval()->forHumans());\n        $this->assertSame('1 second', Carbon::create('2019-01-02')->secondsUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame(1.0, Carbon::create('2019-01-02')->millisecondsUntil('2019-02-05')->getDateInterval()->totalMilliseconds);\n        $this->assertSame(1.0, Carbon::create('2019-01-02')->microsecondsUntil('2019-02-05')->getDateInterval()->totalMicroseconds);\n        $this->assertSame('1 week', Carbon::create('2019-01-02')->weeksUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('1 month', Carbon::create('2019-01-02')->monthsUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('3 months', Carbon::create('2019-01-02')->quartersUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('1 year', Carbon::create('2019-01-02')->yearsUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('10 years', Carbon::create('2019-01-02')->decadesUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('100 years', Carbon::create('2019-01-02')->centuriesUntil('2019-02-05')->getDateInterval()->forHumans());\n        $this->assertSame('1000 years', Carbon::create('2019-01-02')->millenniaUntil('2019-02-05')->getDateInterval()->forHumans());\n    }\n\n    public function testCreateFromCarbonInstanceInvalidMethod()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method unknownUnitsUntil does not exist.',\n        ));\n\n        /** @var object $date */\n        $date = Carbon::create('2019-01-02');\n        $date->unknownUnitsUntil('2019-02-05');\n    }\n\n    public function testInstance()\n    {\n        $periodClass = static::$periodClass;\n        $source = new DatePeriod(\n            new DateTime('2012-07-01'),\n            CarbonInterval::days(2),\n            new DateTime('2012-07-07'),\n        );\n\n        $period = $periodClass::instance($source);\n\n        $this->assertInstanceOf($periodClass, $period);\n        $this->assertSame('2012-07-01', $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period->getEndDate()->format('Y-m-d'));\n\n        $period2 = $periodClass::instance($period);\n\n        $this->assertInstanceOf($periodClass, $period2);\n        $this->assertSame('2012-07-01', $period2->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period2->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period2->getEndDate()->format('Y-m-d'));\n        $this->assertNotSame($period, $period2);\n\n        $period3 = new $periodClass($source);\n\n        $this->assertInstanceOf($periodClass, $period3);\n        $this->assertSame('2012-07-01', $period3->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period3->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period3->getEndDate()->format('Y-m-d'));\n        $this->assertNotSame($period, $period3);\n\n        $period4 = new $periodClass($period);\n\n        $this->assertInstanceOf($periodClass, $period4);\n        $this->assertSame('2012-07-01', $period4->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period4->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period4->getEndDate()->format('Y-m-d'));\n        $this->assertNotSame($period, $period4);\n    }\n\n    public function testCreateFromCarbonInstancesNamedParameters()\n    {\n        $periodClass = static::$periodClass;\n        $carbonClass = $periodClass === CarbonPeriodImmutable::class\n            ? CarbonImmutable::class\n            : Carbon::class;\n        $period = $carbonClass::create('2019-01-02')->daysUntil(endDate: '2019-02-05');\n        $this->assertInstanceOf($periodClass, $period);\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n        $this->assertSame('1 day', (string) $period->getDateInterval());\n\n        $period = $carbonClass::create('2019-01-02')->hoursUntil(endDate: '2019-02-05', factor: 12);\n        $this->assertInstanceOf($periodClass, $period);\n        $this->assertSame('2019-01-02', $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame('2019-02-05', $period->getEndDate()->format('Y-m-d'));\n        $this->assertSame('12 hours', (string) $period->getDateInterval());\n    }\n\n    public function testCast()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass === CarbonPeriodImmutable::class\n            ? (new class('2012-07-01', CarbonInterval::days(2), '2012-07-07') extends CarbonPeriodImmutable {\n                public function foo()\n                {\n                    return $this->getStartDate()->format('j').' '.\n                        $this->getDateInterval()->format('%d').' '.\n                        $this->getEndDate()->format('j');\n                }\n            })\n            : (new class('2012-07-01', CarbonInterval::days(2), '2012-07-07') extends CarbonPeriod {\n                public function foo()\n                {\n                    return $this->getStartDate()->format('j').' '.\n                        $this->getDateInterval()->format('%d').' '.\n                        $this->getEndDate()->format('j');\n                }\n            });\n        $subClass = \\get_class($period);\n\n        $this->assertInstanceOf($periodClass, $period);\n        $this->assertNotSame($periodClass, $subClass);\n        $this->assertSame('1 2 7', $period->foo());\n\n        /** @var object $period */\n        $period = $periodClass::create('2010-08-24', CarbonInterval::weeks(2), '2012-07-19')\n            ->cast($subClass);\n\n        $this->assertInstanceOf($subClass, $period);\n        $this->assertSame('24 14 19', $period->foo());\n    }\n\n    public function testBadCast()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'DateTime has not the instance() method needed to cast the date.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create('2010-08-24', CarbonInterval::weeks(2), '2012-07-19')\n            ->cast(DateTime::class);\n    }\n\n    public function testMake()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::make(new DatePeriod(\n            new DateTime('2012-07-01'),\n            CarbonInterval::days(2),\n            new DateTime('2012-07-07'),\n        ));\n\n        $this->assertInstanceOf($periodClass, $period);\n        $this->assertSame('2012-07-01', $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period->getEndDate()->format('Y-m-d'));\n\n        $period2 = $periodClass::make($period);\n\n        $this->assertInstanceOf($periodClass, $period2);\n        $this->assertSame('2012-07-01', $period2->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period2->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period2->getEndDate()->format('Y-m-d'));\n        $this->assertNotSame($period, $period2);\n\n        $period2 = $periodClass::make('2012-07-01/P2D/2012-07-07');\n\n        $this->assertInstanceOf($periodClass, $period2);\n        $this->assertSame('2012-07-01', $period2->getStartDate()->format('Y-m-d'));\n        $this->assertSame(2, $period2->getDateInterval()->d);\n        $this->assertSame('2012-07-07', $period2->getEndDate()->format('Y-m-d'));\n    }\n\n    public function testInstanceInvalidType()\n    {\n        $this->expectExceptionObject(new NotAPeriodException(\n            'Argument 1 passed to '.static::$periodClass.'::instance() '.\n            'must be an instance of DatePeriod or '.static::$periodClass.', string given.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::instance('hello');\n    }\n\n    public function testInstanceInvalidInstance()\n    {\n        $this->expectExceptionObject(new NotAPeriodException(\n            'Argument 1 passed to '.static::$periodClass.'::instance() '.\n            'must be an instance of DatePeriod or '.static::$periodClass.', instance of Carbon\\Carbon given.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::instance(Carbon::now());\n    }\n\n    public function testMutability()\n    {\n        $this->assertSame(\n            [Carbon::class, Carbon::class, Carbon::class],\n            iterator_to_array(\n                CarbonPeriod::between(Carbon::today(), Carbon::today()->addDays(2))->map('get_class'),\n            ),\n        );\n        $this->assertSame(\n            [Carbon::class, Carbon::class, Carbon::class],\n            iterator_to_array(\n                CarbonPeriod::between(CarbonImmutable::today(), CarbonImmutable::today()->addDays(2))->map('get_class'),\n            ),\n        );\n        $this->assertSame(\n            [Carbon::class, Carbon::class, Carbon::class],\n            iterator_to_array(\n                CarbonPeriod::between('today', 'today + 2 days')->map('get_class'),\n            ),\n        );\n        $this->assertSame(\n            [CarbonImmutable::class, CarbonImmutable::class, CarbonImmutable::class],\n            iterator_to_array(\n                CarbonPeriodImmutable::between(Carbon::today(), Carbon::today()->addDays(2))->map(get_class(...)),\n            ),\n        );\n        $this->assertSame(\n            [CarbonImmutable::class, CarbonImmutable::class, CarbonImmutable::class],\n            iterator_to_array(\n                CarbonPeriodImmutable::between(CarbonImmutable::today(), CarbonImmutable::today()->addDays(2))->map('get_class'),\n            ),\n        );\n        $this->assertSame(\n            [CarbonImmutable::class, CarbonImmutable::class, CarbonImmutable::class],\n            iterator_to_array(\n                CarbonPeriodImmutable::between('today', 'today + 2 days')->map('get_class'),\n            ),\n        );\n    }\n\n    public function testEnums()\n    {\n        $periodClass = static::$periodClass;\n        $immutable = ($periodClass === CarbonPeriodImmutable::class);\n        /** @var CarbonPeriod $period */\n        $period = $periodClass::create(Month::January, Unit::Month, Month::June);\n\n        $this->assertTrue($period->isStartIncluded());\n        $this->assertTrue($period->isEndIncluded());\n        $carbonClass = $immutable ? CarbonImmutable::class : Carbon::class;\n\n        $this->assertSame(\n            array_fill(0, 6, $carbonClass),\n            iterator_to_array($period->map(get_class(...))),\n        );\n        $this->assertSame(\n            ['01-01', '02-01', '03-01', '04-01', '05-01', '06-01'],\n            iterator_to_array($period->map(static fn (CarbonInterface $date) => $date->format('m-d'))),\n        );\n\n        $result = $period->setDateInterval(Unit::Week);\n\n        if ($immutable) {\n            $this->assertSame(6, $period->count());\n\n            $period = $result;\n        }\n\n        $this->assertSame(22, $period->count());\n\n        $result = $period->setDateInterval(3, Unit::Week);\n\n        if ($immutable) {\n            $this->assertSame(22, $period->count());\n\n            $period = $result;\n        }\n\n        $this->assertSame(8, $period->count());\n\n        $result = $period->setDateInterval(Unit::Quarter);\n\n        if ($immutable) {\n            $this->assertSame(8, $period->count());\n\n            $period = $result;\n        }\n\n        $this->assertSame(2, $period->count());\n    }\n\n    public function testStartAndEndFallback()\n    {\n        Carbon::setTestNow('2024-06-15');\n\n        $this->assertSame([\n            '2024-09-01',\n            '2024-09-30',\n        ], [\n            Carbon::parse('Sep 1')->toPeriod('Sep 30')->start->format('Y-m-d'),\n            Carbon::parse('Sep 1')->toPeriod('Sep 30')->end->format('Y-m-d'),\n        ]);\n\n        $periodClass = static::$periodClass;\n        $period = new $periodClass('Sep 1', 'Sep 30');\n\n        $this->assertSame([\n            '2024-09-01',\n            '2024-09-30',\n        ], [\n            $period->start->format('Y-m-d'),\n            $period->end->format('Y-m-d'),\n        ]);\n\n        $period = new $periodClass('Sep 1');\n\n        $this->assertSame([\n            '2024-09-01',\n            null,\n        ], [\n            $period->start->format('Y-m-d'),\n            $period->end?->format('Y-m-d'),\n        ]);\n    }\n\n    public function testSlashFormat()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2024-09-01/3 days/2024-09-30');\n\n        $this->assertSame('+3', $period->interval->format('%R%d'));\n        $this->assertSame('3 days', $period->dateInterval->forHumans());\n        $this->assertSame([\n            '2024-09-01',\n            '2024-09-30',\n        ], [\n            $period->start->format('Y-m-d'),\n            $period->end->format('Y-m-d'),\n        ]);\n    }\n\n    public function testInvalidTimezone()\n    {\n        $this->expectExceptionObject(new InvalidPeriodParameterException(\n            'Invalid constructor parameters.',\n        ));\n\n        $periodClass = static::$periodClass;\n        new $periodClass('2024-09-01', '3 days', '2024-09-30', 'America/Tokyo');\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/DynamicIntervalTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass DynamicIntervalTest extends AbstractTestCase\n{\n    public function testDynamicIntervalInPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $weekDayStep = function (Carbon $date, bool $negated = false): Carbon {\n            if ($negated) {\n                return $date->previousWeekDay();\n            }\n\n            return $date->nextWeekDay();\n        };\n        $period = $periodClass::create('2020-06-01', $weekDayStep, '2020-06-14');\n        $dates = [];\n\n        foreach ($period as $date) {\n            $dates[] = $date->day;\n        }\n\n        $this->assertCount(10, $period);\n        $this->assertSame(array_merge(range(1, 5), range(8, 12)), $dates);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/FilterTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonPeriodImmutable;\nuse DateInterval;\nuse DateTime;\nuse RuntimeException;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonPeriod\\Fixtures\\CarbonPeriodFactory;\nuse Tests\\CarbonPeriod\\Fixtures\\FooFilters;\n\nclass FilterTest extends AbstractTestCase\n{\n    public function dummyFilter()\n    {\n        return function () {\n            return true;\n        };\n    }\n\n    public function testGetAndSetFilters()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $this->assertSame([], $period->getFilters());\n        $result = $period->setFilters($filters = [\n            [$this->dummyFilter(), null],\n        ]);\n        $this->assertSame($filters, $result->getFilters());\n        $this->assertMutatorResult($period, $result);\n    }\n\n    public function testUpdateInternalStateWhenBuiltInFiltersAreRemoved()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            $start = new DateTime('2018-04-16'),\n            $end = new DateTime('2018-07-15'),\n        );\n\n        $result = $period->setRecurrences($recurrences = 3);\n\n        $this->assertMutatorResult($period, $result);\n\n        $result = $result->setFilters($result->getFilters());\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertEquals($end, $result->getEndDate());\n        $this->assertSame($recurrences, $result->getRecurrences());\n\n        $result = $result->setFilters([]);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertNull($result->getEndDate());\n        $this->assertNull($result->getRecurrences());\n    }\n\n    public function testResetFilters()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            $start = new DateTime('2018-04-16'),\n            $end = new DateTime('2018-07-15'),\n        );\n\n        $result = $period->addFilter($this->dummyFilter())\n            ->prependFilter($this->dummyFilter());\n\n        $this->assertMutatorResult($period, $result);\n\n        $result2 = $result->resetFilters();\n\n        $this->assertMutatorResult($result2, $result);\n\n        $this->assertSame([\n            [$periodClass::END_DATE_FILTER, null],\n        ], $period->getFilters());\n    }\n\n    public function testAddAndPrependFilters()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $result = $period->addFilter($filter1 = $this->dummyFilter())\n            ->addFilter($filter2 = $this->dummyFilter())\n            ->prependFilter($filter3 = $this->dummyFilter());\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame([\n            [$filter3, null],\n            [$filter1, null],\n            [$filter2, null],\n        ], $result->getFilters());\n    }\n\n    public function testRemoveFilterByInstance()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $result = $period->addFilter($filter1 = $this->dummyFilter())\n            ->addFilter($filter2 = $this->dummyFilter())\n            ->addFilter($filter3 = $this->dummyFilter());\n\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame([\n            [$filter1, null],\n            [$filter2, null],\n            [$filter3, null],\n        ], $result->getFilters());\n\n        $result = $result->removeFilter($filter2);\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame([\n            [$filter1, null],\n            [$filter3, null],\n        ], $result->getFilters());\n    }\n\n    public function testRemoveFilterByName()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $result = $period->addFilter($filter1 = $this->dummyFilter())\n            ->addFilter($filter2 = $this->dummyFilter(), 'foo')\n            ->addFilter($filter3 = $this->dummyFilter())\n            ->addFilter($filter4 = $this->dummyFilter(), 'foo')\n            ->addFilter($filter5 = $this->dummyFilter());\n\n        $this->assertSame([\n            [$filter1, null],\n            [$filter2, 'foo'],\n            [$filter3, null],\n            [$filter4, 'foo'],\n            [$filter5, null],\n        ], $result->getFilters());\n\n        $result = $result->removeFilter('foo');\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame([\n            [$filter1, null],\n            [$filter3, null],\n            [$filter5, null],\n        ], $result->getFilters());\n    }\n\n    public function testAcceptOnlyWeekdays()\n    {\n        $periodClass = static::$periodClass;\n\n        Carbon::setWeekendDays([\n            Carbon::SATURDAY,\n            Carbon::SUNDAY,\n        ]);\n\n        $period = $periodClass::create('R4/2018-04-14T00:00:00/P4D');\n\n        $result = $period->addFilter(function ($date) {\n            return $date->isWeekday();\n        });\n\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-18', '2018-04-26', '2018-04-30', '2018-05-04']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    /**\n     * @throws \\Exception\n     */\n    public function testAcceptOnlySingleYear()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            new DateTime('2017-04-16'),\n            new DateInterval('P5M'),\n            new DateTime('2019-07-15'),\n        );\n\n        $result = $period->addFilter(function ($date) {\n            return $date->year === 2018;\n        });\n\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-02-16', '2018-07-16', '2018-12-16']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    /**\n     * @throws \\Exception\n     */\n    public function testEndIteration()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            new DateTime('2018-04-16'),\n            new DateInterval('P3D'),\n            new DateTime('2018-07-15'),\n        );\n\n        $result = $period->addFilter(function ($date) use ($periodClass) {\n            return $date->month === 5 ? $periodClass::END_ITERATION : true;\n        });\n\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-16', '2018-04-19', '2018-04-22', '2018-04-25', '2018-04-28']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testRecurrences()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            new DateTime('2018-04-16'),\n            new DateTime('2018-07-15'),\n        );\n\n        $period = $period->setRecurrences(2);\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-16', '2018-04-17']),\n            $this->standardizeDates($period),\n        );\n\n        $result = $period->setOptions($periodClass::EXCLUDE_START_DATE);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-17', '2018-04-18']),\n            $this->standardizeDates($result),\n        );\n\n        $result = $result->setOptions($periodClass::EXCLUDE_END_DATE);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-16', '2018-04-17']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testChangeNumberOfRecurrences()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            new DateTime('2018-04-16'),\n            new DateTime('2018-07-15'),\n        );\n\n        $period = $period->setRecurrences(7)\n            ->setRecurrences(1)\n            ->setRecurrences(3);\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-16', '2018-04-17', '2018-04-18']),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public function testCallbackArguments()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            new DateTime('2018-04-16'),\n            1,\n        );\n\n        $wasCalled = false;\n\n        $test = $this;\n        $period = $period->addFilter(function ($current, $key, $iterator) use (&$wasCalled, $period, $test) {\n            $test->assertInstanceOfCarbon($current);\n            $test->assertIsInt($key);\n            $test->assertMutatorResult($period, $iterator);\n\n            return $wasCalled = true;\n        });\n\n        iterator_to_array($period);\n\n        $this->assertTrue($wasCalled);\n    }\n\n    public function testThrowExceptionWhenNextValidDateCannotBeFound()\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Could not find next valid date.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            new Carbon('2000-01-01'),\n            new CarbonInterval('PT1S'),\n            new Carbon('2000-12-31'),\n        );\n\n        $period = $period->addFilter(function () {\n            return false;\n        });\n\n        iterator_to_array($period);\n    }\n\n    public function testRemoveBuildInFilters()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(new DateTime('2018-04-16'), new DateTime('2018-07-15'))->setRecurrences(3);\n\n        $result = $period->setEndDate(null)->setRecurrences(null);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame([], $result->getFilters());\n    }\n\n    public function testAcceptEveryOther()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass(\n            new DateTime('2018-04-16'),\n            new DateTime('2018-04-20'),\n        );\n\n        // Note: Without caching validation results the dates would be unpredictable\n        // as we cannot know how many calls to the filter will occur per iteration.\n        $result = $period->addFilter(static function () {\n            static $accept;\n\n            return $accept = !$accept;\n        });\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-16', '2018-04-18', '2018-04-20']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testEndIterationFilter()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass('2018-04-16', 5);\n\n        $result = $period->addFilter($periodClass::END_ITERATION);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame([], $this->standardizeDates($result));\n    }\n\n    public function testAcceptOnlyEvenDays()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertSame(\n            $this->standardizeDates(['2012-07-04', '2012-07-10', '2012-07-16']),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public function testAddFilterFromCarbonMethod()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2018-01-01', '2018-06-01');\n\n        $result = $period->addFilter('isLastOfMonth');\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['2018-01-31', '2018-02-28', '2018-03-31', '2018-04-30', '2018-05-31']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testAddFilterFromCarbonMacro()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2018-01-01', '2018-06-01');\n\n        Carbon::macro('isTenDay', function () {\n            /** @var Carbon $date */\n            $date = $this;\n\n            return $date->day === 10;\n        });\n\n        $result = $period->addFilter('isTenDay');\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['2018-01-10', '2018-02-10', '2018-03-10', '2018-04-10', '2018-05-10']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testAddFilterFromCarbonMethodWithArguments()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2017-01-01', 'P2M16D', '2018-12-31');\n\n        $result = $period->addFilter('isSameAs', 'm', new Carbon('2018-06-01'));\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['2017-06-02', '2018-06-20']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testRemoveFilterFromCarbonMethod()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('1970-01-01', '1970-01-03')->addFilter('isFuture');\n\n        $result = $period->removeFilter('isFuture');\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame(\n            $this->standardizeDates(['1970-01-01', '1970-01-02', '1970-01-03']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testInvalidCarbonMethodShouldNotBeConvertedToCallback()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $result = $period->addFilter('toDateTimeString');\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame([\n            ['toDateTimeString', null],\n        ], $result->getFilters());\n    }\n\n    public function testAddCallableFilters()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $result = $period->addFilter($string = 'date_offset_get')\n            ->addFilter($array = [new DateTime(), 'getOffset']);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame([\n            [$string, null],\n            [$array, null],\n        ], $result->getFilters());\n    }\n\n    public function testRemoveCallableFilters()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $result = $period->setFilters([\n            [$string = 'date_offset_get', null],\n            [$array = [new DateTime(), 'getOffset'], null],\n        ]);\n\n        $this->assertMutatorResult($result, $period);\n\n        $result = $period->removeFilter($string)->removeFilter($array);\n\n        $this->assertMutatorResult($result, $period);\n        $this->assertSame([], $result->getFilters());\n    }\n\n    public function testRunCallableFilters()\n    {\n        include_once 'Fixtures/filters.php';\n\n        $periodClass = static::$periodClass;\n        $period = new $periodClass('2017-03-10', '2017-03-19');\n        $callable = [new FooFilters(), 'bar'];\n\n        $this->assertFalse($period->hasFilter($callable));\n        $this->assertFalse($period->hasFilter('foobar_filter'));\n        $this->assertFalse($period->hasFilter('not_callable'));\n\n        $result = $period->addFilter($callable)->addFilter('foobar_filter');\n\n        $this->assertMutatorResult($result, $period);\n\n        $this->assertTrue($result->hasFilter($callable));\n        $this->assertTrue($result->hasFilter('foobar_filter'));\n        $this->assertFalse($result->hasFilter('not_callable'));\n\n        $this->assertSame(\n            $this->standardizeDates(['2017-03-10', '2017-03-12', '2017-03-16', '2017-03-18']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    protected function assertMutatorResult(CarbonPeriod $a, CarbonPeriod $b): void\n    {\n        if (static::$periodClass === CarbonPeriodImmutable::class) {\n            $this->assertNotSame($a, $b);\n\n            return;\n        }\n\n        $this->assertSame($a, $b);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/AbstractCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod\\Fixtures;\n\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse DateTime;\nuse ReturnTypeWillChange;\n\nabstract class AbstractCarbon extends DateTime implements CarbonInterface\n{\n    public function __construct($time = null, $timezone = null)\n    {\n        parent::__construct($time, $timezone);\n    }\n\n    public static function __set_state($dump): static\n    {\n        return new static($dump);\n    }\n\n    #[ReturnTypeWillChange]\n    public function add($unit, $value = 1, ?bool $overflow = null): static\n    {\n        return parent::add($unit);\n    }\n\n    #[ReturnTypeWillChange]\n    public function sub($unit, $value = 1, ?bool $overflow = null): static\n    {\n        return parent::sub($unit);\n    }\n\n    #[ReturnTypeWillChange]\n    public function diff($date = null, $absolute = false): CarbonInterval\n    {\n        return CarbonInterval::instance(parent::diff($date, $absolute));\n    }\n\n    #[ReturnTypeWillChange]\n    public function modify($modify)\n    {\n        return parent::modify($modify);\n    }\n\n    public function setDate(int $year, int $month, int $day): static\n    {\n        return parent::setDate($year, $month, $day);\n    }\n\n    public function setISODate(int $year, int $week, int $day = 1): static\n    {\n        return parent::setISODate($year, $week, $day);\n    }\n\n    public function setTime($hour, $minute, $second = 0, $microsecond = 0): static\n    {\n        return parent::setTime($hour, $minute, $second, $microsecond);\n    }\n\n    public function setTimestamp(int|string|float $timestamp): static\n    {\n        return parent::setTimestamp($timestamp);\n    }\n\n    public function setTimezone(\\DateTimeZone|string|int $timeZone): static\n    {\n        return parent::setTimezone($timeZone);\n    }\n\n    public static function createFromFormat($format, $time, $tz = null): static\n    {\n        return parent::createFromFormat($format, $time, $tz);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/CarbonPeriodFactory.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod\\Fixtures;\n\nuse Carbon\\CarbonPeriod;\n\nclass CarbonPeriodFactory\n{\n    /**\n     * @template T of CarbonPeriod\n     *\n     * @param class-string<T> $periodClass\n     *\n     * @return T\n     */\n    public static function withStartIntervalEnd(string $periodClass)\n    {\n        return $periodClass::create(\n            '2012-07-01 17:30:00',\n            'P3DT5H',\n            '2012-07-15 11:15:00',\n        );\n    }\n\n    /**\n     * @template T of CarbonPeriod\n     *\n     * @param class-string<T> $periodClass\n     *\n     * @return T\n     */\n    public static function withEvenDaysFilter(string $periodClass)\n    {\n        $period = $periodClass::create(\n            '2012-07-01',\n            'P3D',\n            '2012-07-22',\n            $periodClass::EXCLUDE_END_DATE,\n        );\n\n        return $period->addFilter(function ($date) {\n            return $date->day % 2 == 0;\n        });\n    }\n\n    /**\n     * @template T of CarbonPeriod\n     *\n     * @param class-string<T> $periodClass\n     *\n     * @return T\n     */\n    public static function withCounter(string $periodClass, &$counter)\n    {\n        $counter = 0;\n\n        $period = $periodClass::create(\n            '2012-10-01',\n            3,\n        );\n\n        return $period->addFilter(function () use (&$counter) {\n            $counter++;\n\n            return true;\n        });\n    }\n\n    /**\n     * @template T of CarbonPeriod\n     *\n     * @param class-string<T> $periodClass\n     *\n     * @return T\n     */\n    public static function withStackFilter(string $periodClass)\n    {\n        $period = $periodClass::create(\n            '2001-01-01',\n        );\n\n        $stack = [\n            true, false, true, $periodClass::END_ITERATION,\n            false, false, true, true, $periodClass::END_ITERATION,\n        ];\n\n        return $period->addFilter(function () use (&$stack) {\n            return array_shift($stack);\n        });\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/FooFilters.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod\\Fixtures;\n\nclass FooFilters\n{\n    public function bar($date)\n    {\n        return $date->day % 2 === 0;\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/MacroableClass.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod\\Fixtures;\n\nuse BadMethodCallException;\nuse Carbon\\Traits\\LocalFactory;\nuse Carbon\\Traits\\Macro;\nuse Closure;\n\nclass MacroableClass\n{\n    use LocalFactory;\n    use Macro;\n\n    public $endDate;\n\n    protected array $localMacros = [];\n\n    public function getEndDate()\n    {\n        return $this->endDate;\n    }\n\n    public function setEndDate($endDate)\n    {\n        $this->endDate = $endDate;\n\n        return $this;\n    }\n\n    public function cast($className)\n    {\n        $new = new $className();\n\n        return $new->setEndDate($this->endDate);\n    }\n\n    public function __call($method, $parameters)\n    {\n        $macro = static::getMacro($method) ?? null;\n\n        if ($macro instanceof Closure) {\n            return $macro->call($this);\n        }\n\n        throw new BadMethodCallException(\"$method not found\");\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/Mixin.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod\\Fixtures;\n\nclass Mixin\n{\n    public $foo;\n\n    public function setFoo()\n    {\n        $mixin = $this;\n\n        return function ($value) use ($mixin) {\n            $mixin->foo = $value;\n        };\n    }\n\n    public function getFoo()\n    {\n        $mixin = $this;\n\n        return function () use ($mixin) {\n            return $mixin->foo;\n        };\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/MixinTrait.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod\\Fixtures;\n\ntrait MixinTrait\n{\n    public function oneMoreDay()\n    {\n        return $this->setEndDate($this->endNextDay());\n    }\n\n    public function endNextDay()\n    {\n        return $this->getEndDate()->addDay();\n    }\n\n    public function copyOneMoreDay()\n    {\n        return $this->copy()->oneMoreDay();\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/Fixtures/filters.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\Carbon;\n\nfunction foobar_filter($date)\n{\n    return $date < Carbon::parse('2017-03-13') || $date > Carbon::parse('2017-03-14');\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/GettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\Exceptions\\UnknownGetterException;\nuse Carbon\\Exceptions\\UnreachableException;\nuse DateTime;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonPeriod\\Fixtures\\CarbonPeriodFactory;\n\nclass GettersTest extends AbstractTestCase\n{\n    public function testGetStartDate()\n    {\n        $period = CarbonPeriodFactory::withStartIntervalEnd(static::$periodClass);\n\n        $date = $period->getStartDate();\n\n        $this->assertInstanceOfCarbon($date);\n\n        $this->assertSame('2012-07-01 17:30:00', $date->format('Y-m-d H:i:s'));\n    }\n\n    public function testGetEndDate()\n    {\n        $period = CarbonPeriodFactory::withStartIntervalEnd(static::$periodClass);\n\n        $date = $period->getEndDate();\n\n        $this->assertInstanceOfCarbon($date);\n\n        $this->assertSame('2012-07-15 11:15:00', $date->format('Y-m-d H:i:s'));\n    }\n\n    public function testGetDateInterval()\n    {\n        $period = CarbonPeriodFactory::withStartIntervalEnd(static::$periodClass);\n\n        $interval = $period->getDateInterval();\n\n        $this->assertInstanceOfCarbonInterval($interval);\n\n        $this->assertSame('P3DT5H', $interval->spec());\n    }\n\n    public function testGetRecurrences()\n    {\n        $periodClass = static::$periodClass;\n\n        $recurrences = $periodClass::create(new DateTime(), 5)->getRecurrences();\n\n        $this->assertSame(5, $recurrences);\n\n        $period = $periodClass::create('2024-09-01/3 days/2024-09-30');\n\n        $this->assertNull($period->get('recurrences'));\n\n        $period = $periodClass::create('R3/2024-09-01/3 days');\n\n        $this->assertSame(3, $period->get('recurrences'));\n    }\n\n    public function testGetDefaultDateInterval()\n    {\n        $periodClass = static::$periodClass;\n\n        $period = $periodClass::create(Carbon::parse('2015-09-30'), Carbon::parse('2015-10-03'));\n\n        $this->assertInstanceOfCarbonInterval($period->getDateInterval());\n\n        $this->assertSame('P1D', $period->getDateInterval()->spec());\n    }\n\n    public function testModifyStartDate()\n    {\n        $period = CarbonPeriodFactory::withStartIntervalEnd(static::$periodClass);\n\n        $period->getStartDate()->subDays(3);\n\n        $this->assertSame('2012-07-01', $period->getStartDate()->format('Y-m-d'));\n    }\n\n    public function testModifyEndDate()\n    {\n        $period = CarbonPeriodFactory::withStartIntervalEnd(static::$periodClass);\n\n        $period->getEndDate()->addDays(3);\n\n        $this->assertSame('2012-07-15', $period->getEndDate()->format('Y-m-d'));\n    }\n\n    public function testModifyDateInterval()\n    {\n        $period = CarbonPeriodFactory::withStartIntervalEnd(static::$periodClass);\n\n        $period->getDateInterval()->days(5)->hours(0);\n\n        $this->assertSame('P3DT5H', $period->getDateInterval()->spec());\n    }\n\n    public function testGetOptions()\n    {\n        $periodClass = static::$periodClass;\n\n        $period = new $periodClass();\n\n        $this->assertPeriodOptions(0, $period);\n\n        $this->assertTrue($period->isStartIncluded());\n        $this->assertTrue($period->isEndIncluded());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertTrue($period->include_start_date);\n            $this->assertTrue($period->include_end_date);\n        }\n\n        $period = new $periodClass(new DateTime(), new DateTime(), $options = $periodClass::EXCLUDE_START_DATE | $periodClass::EXCLUDE_END_DATE);\n\n        $this->assertPeriodOptions($options, $period);\n\n        $this->assertFalse($period->isStartIncluded());\n        $this->assertFalse($period->isEndIncluded());\n\n        if (PHP_VERSION < 8.2) {\n            $this->assertFalse($period->include_start_date);\n            $this->assertFalse($period->include_end_date);\n        }\n    }\n\n    public function testOverlaps()\n    {\n        $periodClass = static::$periodClass;\n\n        $range1 = $periodClass::create('2019-01-26', '2019-03-03');\n        $range2 = $periodClass::create('2019-02-15', '2019-04-01');\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26', '2019-02-13');\n        $range2 = $periodClass::create('2019-02-15', '2019-04-01');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26', '2019-02-15');\n        $range2 = $periodClass::create('2019-02-15', '2019-04-01');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26', '2019-02-15 00:00:01');\n        $range2 = $periodClass::create('2019-02-15', '2019-04-01');\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26', '2019-02-15 00:00:01');\n        $range2 = $periodClass::create('2019-02-15 00:00:01', '2019-04-01');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', '2019-01-26 13:30:12');\n        $range2 = $periodClass::create('2019-01-26 10:30:05', '2019-01-26 13:32:12');\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', INF);\n        $range2 = $periodClass::create('2999-01-26 10:30:05', '2999-01-26 13:32:12');\n\n        $this->assertFalse($range1->calculateEnd()->isStartOfTime());\n        $this->assertTrue($range1->calculateEnd()->isEndOfTime());\n        $this->assertFalse($range2->calculateEnd()->isStartOfTime());\n        $this->assertFalse($range2->calculateEnd()->isEndOfTime());\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(-1), INF);\n        $range2 = $periodClass::create('2999-01-26 10:30:05', '2999-01-26 13:32:12');\n\n        $this->assertTrue($range1->calculateEnd()->isStartOfTime());\n        $this->assertFalse($range1->calculateEnd()->isEndOfTime());\n        $this->assertFalse($range2->calculateEnd()->isStartOfTime());\n        $this->assertFalse($range2->calculateEnd()->isEndOfTime());\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', INF);\n        $range2 = $periodClass::create('1975-01-26 10:30:05', '1975-01-26 13:32:12');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(-1), INF);\n        $range2 = $periodClass::create('1975-01-26 10:30:05', '1975-01-26 13:32:12');\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', INF);\n        $range2 = $periodClass::create('2999-01-26 10:30:05', INF);\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(-1), INF);\n        $range2 = $periodClass::create('2999-01-26 10:30:05', INF);\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', INF);\n        $range2 = $periodClass::create('1975-01-26 10:30:05', INF);\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', INF);\n        $range2 = $periodClass::create('1975-01-26 10:30:05', CarbonInterval::day(-1), INF);\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(-1), INF);\n        $range2 = $periodClass::create('1975-01-26 10:30:05', INF);\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(), 365, $periodClass::EXCLUDE_START_DATE);\n        $range2 = $periodClass::create('2020-01-26 10:30:05', '2020-01-27 10:30:05');\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(), 365, $periodClass::EXCLUDE_START_DATE);\n        $range2 = $periodClass::create('2020-01-26 10:30:20', '2020-01-27 10:30:20');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(), 365);\n        $range2 = $periodClass::create('2020-01-27 10:30:20', '2020-01-28 10:30:20');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(), INF);\n        (function () {\n            $this->dateInterval->subDays(1);\n        })->call($range1);\n        $range2 = $periodClass::create('2999-01-26 10:30:05', '2999-01-26 13:32:12');\n\n        $this->assertFalse($range1->overlaps($range2));\n        $this->assertFalse($range2->overlaps($range1));\n\n        $range1 = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::day(), INF);\n        (function () {\n            $this->dateInterval->subDays(1);\n        })->call($range1);\n        $range2 = $periodClass::create('2018-01-26 10:30:05', '2019-01-26 13:32:12');\n\n        $this->assertTrue($range1->overlaps($range2));\n        $this->assertTrue($range2->overlaps($range1));\n    }\n\n    public function testOverlapsErrorForNullEnd()\n    {\n        $periodClass = static::$periodClass;\n\n        $this->expectExceptionObject(new UnreachableException(\n            \"Could not calculate period end without either explicit end or recurrences.\\n\".\n            \"If you're looking for a forever-period, use ->setRecurrences(INF).\",\n        ));\n\n        $periodClass::create('2019-01-26 10:30:12', null)->overlaps('R2/2019-01-31T10:30:45Z/P2D');\n    }\n\n    public function testOverlapsErrorForMaxAttempts()\n    {\n        $periodClass = static::$periodClass;\n\n        $this->expectExceptionObject(new UnreachableException(\n            'Could not calculate period end after iterating 10000 times.',\n        ));\n\n        $period = $periodClass::create('2019-01-26 10:30:12', CarbonInterval::minute(), 98282828);\n        $period = $period->addFilter(function ($date) {\n            return $date->minute % 2;\n        });\n        $period->overlaps('R2/2019-01-31T10:30:45Z/P2D');\n    }\n\n    public function testOverlapsCalculated()\n    {\n        $periodClass = static::$periodClass;\n\n        $this->assertTrue($periodClass::create('2019-01-27', '2019-02-02')->overlaps('R2/2019-01-31T10:30:45Z/P2D'));\n        $this->assertTrue($periodClass::create('2019-01-27', '2019-02-02')->overlaps('2018-12-31/2019-02-01'));\n        $this->assertFalse($periodClass::create('2019-01-27', '2019-02-02')->overlaps('R6/2018-12-31/P3D'));\n        $this->assertTrue($periodClass::create('2019-01-27', '2019-02-02')->overlaps('R6/2018-12-31/P6D'));\n        $this->assertFalse($periodClass::create('R6/2018-12-31/P1D')->overlaps('R3/2019-01-05/PT3H'));\n        $this->assertTrue($periodClass::create('R7/2018-12-31/P1D')->overlaps('R3/2019-01-05/PT3H'));\n    }\n\n    public function testOverlapsWithDatesCouple()\n    {\n        $periodClass = static::$periodClass;\n        $carbonClass = $periodClass === CarbonPeriod::class ? Carbon::class : CarbonImmutable::class;\n\n        $this->assertTrue($carbonClass::parse('2019-01-26')->toPeriod('2019-03-03')->overlaps('2019-02-15', '2019-04-01'));\n        $this->assertTrue($carbonClass::parse('2019-02-15')->toPeriod('2019-04-01')->overlaps('2019-02-15', '2019-04-01'));\n        $this->assertTrue($periodClass::create('2019-01-26', '2019-03-03')->overlaps('2019-02-15', '2019-04-01'));\n        $this->assertTrue($periodClass::create('2019-01-26', '2019-03-03')->overlaps($carbonClass::parse('2019-02-15')->toPeriod('2019-04-01')));\n        $this->assertTrue($carbonClass::parse('2019-01-26')->toPeriod('2019-03-03')->overlaps($carbonClass::parse('2019-02-15'), '2019-04-01'));\n        $this->assertTrue(Carbon::parse('2019-02-15')->toPeriod('2019-04-01')->overlaps('2019-02-15', CarbonImmutable::parse('2019-04-01')));\n        $this->assertTrue(CarbonImmutable::parse('2019-02-15')->toPeriod('2019-04-01')->overlaps('2019-02-15', Carbon::parse('2019-04-01')));\n        $this->assertTrue($periodClass::create('2019-01-26', '2019-03-03')->overlaps(new DateTime('2019-02-15'), new DateTime('2019-04-01')));\n\n        $this->assertFalse($carbonClass::parse('2018-01-26')->toPeriod('2018-03-03')->overlaps('2019-02-15', '2019-04-01'));\n        $this->assertFalse($carbonClass::parse('2018-02-15')->toPeriod('2018-04-01')->overlaps('2019-02-15', '2019-04-01'));\n        $this->assertFalse($periodClass::create('2018-01-26', '2018-02-13')->overlaps('2019-02-15', '2019-04-01'));\n        $this->assertFalse($periodClass::create('2018-01-26', '2018-02-13')->overlaps($carbonClass::parse('2019-02-15')->toPeriod('2019-04-01')));\n        $this->assertFalse($carbonClass::parse('2018-01-26')->toPeriod('2018-03-03')->overlaps($carbonClass::parse('2019-02-15'), '2019-04-01'));\n        $this->assertFalse(Carbon::parse('2018-02-15')->toPeriod('2018-04-01')->overlaps('2019-02-15', CarbonImmutable::parse('2019-04-01')));\n        $this->assertFalse($periodClass::create('2018-01-26', '2018-02-13')->overlaps(new DateTime('2019-02-15'), new DateTime('2019-04-01')));\n    }\n\n    public function testIsStarted()\n    {\n        $periodClass = static::$periodClass;\n\n        Carbon::setTestNow('2019-08-03 11:47:00');\n\n        $this->assertFalse($periodClass::create('2019-08-03 11:47:01', '2019-08-03 12:00:00')->isStarted());\n        $this->assertFalse($periodClass::create('2020-01-01', '2020-07-01')->isStarted());\n        $this->assertTrue($periodClass::create('2019-08-03 01:00:00', '2019-08-03 09:00:00')->isStarted());\n        $this->assertTrue($periodClass::create('2019-01-01', '2019-07-01')->isStarted());\n        $this->assertTrue($periodClass::create('2019-08-01', '2019-08-15')->isStarted());\n        $this->assertTrue($periodClass::create('2019-08-03 11:47:00', '2019-08-15 11:47:00')->isStarted());\n    }\n\n    public function testIsEnded()\n    {\n        $periodClass = static::$periodClass;\n\n        Carbon::setTestNow('2019-08-03 11:47:00');\n\n        $this->assertFalse($periodClass::create('2019-08-03 11:47:01', '2019-08-03 12:00:00')->isEnded());\n        $this->assertFalse($periodClass::create('2020-01-01', '2020-07-01')->isEnded());\n        $this->assertFalse($periodClass::create('2019-08-01', '2019-08-15')->isEnded());\n        $this->assertFalse($periodClass::create('2019-08-03 11:47:00', '2019-08-15 11:47:00')->isEnded());\n        $this->assertTrue($periodClass::create('2019-08-03 01:00:00', '2019-08-03 09:00:00')->isEnded());\n        $this->assertTrue($periodClass::create('2019-01-01', '2019-07-01')->isEnded());\n        $this->assertTrue($periodClass::create('2019-08-02 11:47:00', '2019-08-03 11:47:00')->isEnded());\n    }\n\n    public function testIsInProgress()\n    {\n        $periodClass = static::$periodClass;\n\n        Carbon::setTestNow('2019-08-03 11:47:00');\n\n        $this->assertFalse($periodClass::create('2019-08-03 11:47:01', '2019-08-03 12:00:00')->isInProgress());\n        $this->assertFalse($periodClass::create('2020-01-01', '2020-07-01')->isInProgress());\n        $this->assertFalse($periodClass::create('2019-08-03 01:00:00', '2019-08-03 09:00:00')->isInProgress());\n        $this->assertFalse($periodClass::create('2019-01-01', '2019-07-01')->isInProgress());\n        $this->assertFalse($periodClass::create('2019-08-02 11:47:00', '2019-08-03 11:47:00')->isInProgress());\n        $this->assertTrue($periodClass::create('2019-08-03 11:47:00', '2019-08-15 11:47:00')->isInProgress());\n        $this->assertTrue($periodClass::create('2019-08-01', '2019-08-15')->isInProgress());\n    }\n\n    public function testIsset()\n    {\n        $periodClass = static::$periodClass;\n\n        $this->assertTrue(isset($periodClass::create('2019-08-01', '2019-08-15')->startDate));\n        $this->assertFalse(isset($periodClass::create('2019-08-01', '2019-08-15')->middleDate));\n    }\n\n    public function testMagicGet()\n    {\n        $periodClass = static::$periodClass;\n\n        $this->assertSame(\n            '2019-08-01',\n            $periodClass::create('2019-08-01', '2019-08-15')->startDate->format('Y-m-d'),\n        );\n        $this->assertSame(\n            'en',\n            $periodClass::create('2019-08-01', '2019-08-15')->locale,\n        );\n        $this->assertSame(\n            'fi',\n            $periodClass::create('2019-08-01', '2019-08-15')->locale('fi')->locale,\n        );\n    }\n\n    public function testGet()\n    {\n        $periodClass = static::$periodClass;\n\n        $this->assertSame(\n            '2019-08-01',\n            $periodClass::create('2019-08-01', '2019-08-15')->get('start')->format('Y-m-d'),\n        );\n    }\n\n    public function testUnknownGetter()\n    {\n        $periodClass = static::$periodClass;\n        $this->expectExceptionObject(new UnknownGetterException('middle'));\n\n        $periodClass::create('2019-08-01', '2019-08-15')->get('middle');\n    }\n\n    public function testGetEnd()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2024-09-01/3 days/2024-09-30');\n\n        $this->assertSame('2024-09-30 00:00:00', $period->end->format('Y-m-d H:i:s'));\n        $this->assertSame('2024-09-30 00:00:00', $period->endDate->format('Y-m-d H:i:s'));\n    }\n\n    public function testGetCurrent()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2024-09-01/3 days/2024-09-30');\n\n        $this->assertSame('2024-09-01 00:00:00', $period->get('current')->format('Y-m-d H:i:s'));\n\n        $period->next();\n\n        $this->assertSame('2024-09-04 00:00:00', $period->get('current')->format('Y-m-d H:i:s'));\n    }\n\n    public function testGetInclude()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2024-09-01/3 days/2024-09-30');\n\n        $this->assertTrue($period->includeStartDate);\n        $this->assertTrue($period->includeEndDate);\n\n        $period = $periodClass::create('2024-09-01/3 days/2024-09-30')->excludeStartDate()->excludeEndDate();\n\n        $this->assertFalse($period->includeStartDate);\n        $this->assertFalse($period->includeEndDate);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/IterationMethodsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass IterationMethodsTest extends AbstractTestCase\n{\n    public function testForEach()\n    {\n        $result = '';\n        Carbon::create('2020-12-22')->daysUntil('2020-12-24')->forEach(function (Carbon $date) use (&$result) {\n            $result .= $date->diffInDays('2020-12-25').\" days before Christmas!\\n\";\n        });\n\n        $this->assertSame(\"3 days before Christmas!\\n\".\n            \"2 days before Christmas!\\n\".\n            \"1 days before Christmas!\\n\", $result, );\n    }\n\n    public function testMap()\n    {\n        $result = iterator_to_array(Carbon::create('2020-12-22')->daysUntil('2020-12-24')->map(function (Carbon $date) {\n            return $date->diffInDays('2020-12-25').' days before Christmas!';\n        }));\n\n        $this->assertSame([\n            '3 days before Christmas!',\n            '2 days before Christmas!',\n            '1 days before Christmas!',\n        ], $result);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/IteratorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Generator;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonPeriod\\Fixtures\\CarbonPeriodFactory;\n\nclass IteratorTest extends AbstractTestCase\n{\n    protected $iterationLimit = 100;\n\n    public function testKeyAndCurrentAreCorrectlyInstantiated()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertSame(0, $period->key());\n        $this->assertInstanceOfCarbon($period->current());\n        $this->assertSame('2012-07-04 00:00:00', $period->current()->format('Y-m-d H:i:s'));\n        $this->assertTrue($period->valid());\n    }\n\n    public function testValidIsCorrectlyInstantiated()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertTrue($period->valid());\n    }\n\n    public function testCurrentIsAlwaysCarbonInstance()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        foreach ($period as $current) {\n            $this->assertInstanceOfCarbon($current);\n            $this->assertEquals($current, $period->current());\n\n            if (PHP_VERSION < 8.2) {\n                $this->assertEquals($current, $period->current);\n            }\n        }\n    }\n\n    public function testKeysAreSequential()\n    {\n        $keys = [];\n\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        foreach ($period as $key => $current) {\n            $this->assertIsInt($keys[] = $key);\n            $this->assertSame($key, $period->key());\n        }\n\n        $this->assertSame(array_keys($keys), $keys);\n    }\n\n    public function testElementsInLoopAreAlwaysValid()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        foreach ($period as $key => $current) {\n            $this->assertTrue($period->valid());\n        }\n    }\n\n    public function testKeyAndCurrentAreCorrectlyIterated()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $period->next();\n\n        $this->assertSame(1, $period->key());\n        $this->assertSame('2012-07-10 00:00:00', $period->current()->format('Y-m-d H:i:s'));\n        $this->assertTrue($period->valid());\n    }\n\n    public function testKeyAndCurrentAreCorrectlyRewound()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $period->next();\n        $period->rewind();\n\n        $this->assertSame(0, $period->key());\n        $this->assertSame('2012-07-04 00:00:00', $period->current()->format('Y-m-d H:i:s'));\n        $this->assertTrue($period->valid());\n    }\n\n    public function testKeyAndCurrentAreNullAfterIteration()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        foreach ($period as $key => $current) {\n            //\n        }\n\n        $this->assertNull($period->key());\n        $this->assertNull($period->current());\n        $this->assertFalse($period->valid());\n    }\n\n    #[DataProvider('dataForIterateBackwardsArguments')]\n    public function testIterateBackwards(array $arguments, array $expected)\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(...$arguments);\n\n        $interval = new CarbonInterval('P3D');\n        $interval->invert = 1;\n\n        $period = $period->setDateInterval($interval);\n\n        $this->assertSame(\n            $this->standardizeDates($expected),\n            $this->standardizeDates($period),\n        );\n    }\n\n    public static function dataForIterateBackwardsArguments(): Generator\n    {\n        yield [\n            ['2015-10-15', '2015-10-06'],\n            ['2015-10-15', '2015-10-12', '2015-10-09', '2015-10-06'],\n        ];\n        yield [\n            ['2015-10-15', '2015-10-06', CarbonPeriod::EXCLUDE_START_DATE],\n            ['2015-10-12', '2015-10-09', '2015-10-06'],\n        ];\n        yield [\n            ['2015-10-15', '2015-10-06', CarbonPeriod::EXCLUDE_END_DATE],\n            ['2015-10-15', '2015-10-12', '2015-10-09'],\n        ];\n        yield [\n            ['2015-10-15', '2015-10-06', CarbonPeriod::EXCLUDE_START_DATE | CarbonPeriod::EXCLUDE_END_DATE],\n            ['2015-10-12', '2015-10-09'],\n        ];\n        yield [\n            ['2015-10-15', 3],\n            ['2015-10-15', '2015-10-12', '2015-10-09'],\n        ];\n    }\n\n    public function testChangingParametersShouldNotCauseInfiniteLoop()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create()\n            ->setStartDate($start = '2012-07-01')\n            ->setEndDate($end = '2012-07-20')\n            ->setDateInterval($interval = 'P1D')\n            ->setRecurrences($recurrences = 10)\n            ->setOptions($options = $periodClass::EXCLUDE_START_DATE | $periodClass::EXCLUDE_END_DATE)\n            ->addFilter($filter = function () {\n                return true;\n            });\n\n        $counter = 0;\n\n        foreach ($period as $current) {\n            if (++$counter >= $this->iterationLimit) {\n                break;\n            }\n\n            $period->removeFilter($filter)\n                ->prependFilter($filter)\n                ->setFilters([])\n                ->setStartDate($start)\n                ->setEndDate($end)\n                ->invertDateInterval()\n                ->setDateInterval($interval)\n                ->setRecurrences($recurrences)\n                ->setOptions($options)\n                ->resetFilters()\n                ->addFilter($filter);\n        }\n\n        $this->assertLessThan($this->iterationLimit, $counter, 'Changing parameters during the iteration caused an infinite loop.');\n    }\n\n    public function testChangeEndDateDuringIteration()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $results = [];\n\n        foreach ($period as $key => $current) {\n            $results[] = \\sprintf('%s => %s', $key, $current->toDateString());\n\n            if ($current->toDateString() === '2012-07-16') {\n                $period = $period->setEndDate($current);\n\n                // Note: Current is no longer valid, because it is now equal to end, which is excluded.\n                $this->assertNull($period->key());\n                $this->assertNull($period->current());\n                $this->assertFalse($period->valid());\n            }\n\n            if (\\count($results) >= $this->iterationLimit) {\n                $this->fail('Infinite loop detected when traversing the period.');\n            }\n        }\n\n        $this->assertSame(\n            ['0 => 2012-07-04', '1 => 2012-07-10', '2 => 2012-07-16'],\n            $results,\n        );\n    }\n\n    public function testKeepIncreasingRecurrencesDuringIteration()\n    {\n        $period = new CarbonPeriod('2012-07-01', $recurrences = 1);\n\n        $results = [];\n\n        foreach ($period as $key => $current) {\n            $results[] = \\sprintf('%s => %s', $key, $current->toDateString());\n\n            if ($recurrences < 4) {\n                $period->setRecurrences(++$recurrences);\n\n                // Note: Current is still valid, because we simply extended the period.\n                $this->assertSame($key, $period->key());\n                $this->assertEquals($current, $period->current());\n                $this->assertTrue($period->valid());\n            }\n\n            if (\\count($results) >= $this->iterationLimit) {\n                $this->fail('Infinite loop detected when traversing the period.');\n            }\n        }\n\n        $this->assertSame(\n            ['0 => 2012-07-01', '1 => 2012-07-02', '2 => 2012-07-03', '3 => 2012-07-04'],\n            $results,\n        );\n    }\n\n    public function testChangeStartDateDuringIteration()\n    {\n        $period = new CarbonPeriod('2012-07-01', '2012-07-04');\n\n        $results = [];\n\n        $newStart = new Carbon('2012-07-03');\n\n        foreach ($period as $key => $current) {\n            $results[] = \\sprintf('%s => %s', $key, $current->toDateString());\n\n            if ($current < $newStart) {\n                $period->setStartDate($newStart);\n\n                // Note: Current is still valid, because start date is used only for initialization.\n                $this->assertEquals($key, $period->key());\n                $this->assertEquals($current, $period->current());\n                $this->assertTrue($period->valid());\n            }\n\n            if (\\count($results) >= $this->iterationLimit) {\n                $this->fail('Infinite loop detected when traversing the period.');\n            }\n        }\n\n        $this->assertSame(\n            // Note: Results are not affected, because start date is used only for initialization.\n            ['0 => 2012-07-01', '1 => 2012-07-02', '2 => 2012-07-03', '3 => 2012-07-04'],\n            $results,\n        );\n    }\n\n    public function testChangeDateIntervalDuringIteration()\n    {\n        $period = new CarbonPeriod('2012-07-01', 3);\n\n        $results = [];\n\n        foreach ($period as $key => $current) {\n            $results[] = \\sprintf('%s => %s', $key, $current->toDateString());\n\n            $period->setDateInterval('P3D');\n\n            // Note: Current is still valid, because changed interval changes only subsequent items.\n            $this->assertSame($key, $period->key());\n            $this->assertEquals($current, $period->current());\n            $this->assertTrue($period->valid());\n\n            if (\\count($results) >= $this->iterationLimit) {\n                $this->fail('Infinite loop detected when traversing the period.');\n            }\n        }\n\n        $this->assertSame(\n            ['0 => 2012-07-01', '1 => 2012-07-04', '2 => 2012-07-07'],\n            $results,\n        );\n    }\n\n    public function testValidateOncePerIteration()\n    {\n        $period = CarbonPeriodFactory::withCounter(static::$periodClass, $counter);\n\n        $period->key();\n        $period->current();\n        $period->valid();\n        $this->assertSame(1, $counter);\n\n        $period->next();\n        $this->assertSame(2, $counter);\n\n        $period->key();\n        $period->current();\n        $period->valid();\n        $this->assertSame(2, $counter);\n    }\n\n    public function testInvalidateCurrentAfterChangingParameters()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2012-10-01');\n\n        $this->assertInstanceOfCarbon($period->current());\n\n        $period = $period->addFilter($periodClass::END_ITERATION);\n\n        $this->assertNull($period->current());\n    }\n\n    public function testTraversePeriodDynamically()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $results = [];\n\n        while ($current = $period->current()) {\n            $results[] = $current;\n\n            $period->next();\n\n            if (\\count($results) >= $this->iterationLimit) {\n                $this->fail('Infinite loop detected when traversing the period.');\n            }\n        }\n\n        $this->assertSame(\n            $this->standardizeDates(['2012-07-04', '2012-07-10', '2012-07-16']),\n            $this->standardizeDates($results),\n        );\n    }\n\n    public function testExtendCompletedIteration()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2018-10-10', '2018-10-11');\n\n        $results = [];\n\n        while ($period->valid()) {\n            $results[] = $period->current();\n\n            $period->next();\n        }\n\n        $period = $period->setEndDate('2018-10-13');\n\n        while ($period->valid()) {\n            $results[] = $period->current();\n\n            $period->next();\n        }\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-10-10', '2018-10-11', '2018-10-12', '2018-10-13']),\n            $this->standardizeDates($results),\n        );\n    }\n\n    public function testRevalidateCurrentAfterChangeOfParameters()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create()->setStartDate($start = new Carbon('2018-10-28'));\n        $this->assertEquals($start, $period->current());\n        $this->assertNotSame($start, $period->current());\n\n        $period = $period->addFilter($excludeStart = function ($date) use ($start) {\n            return $date != $start;\n        });\n        $this->assertNull($period->current());\n\n        $period = $period->removeFilter($excludeStart);\n        $this->assertEquals($start, $period->current());\n        $this->assertNotSame($start, $period->current());\n    }\n\n    public function testRevalidateCurrentAfterEndOfIteration()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create()->setStartDate($start = new Carbon('2018-10-28'));\n        $this->assertEquals($start, $period->current());\n        $this->assertNotSame($start, $period->current());\n\n        $period = $period->addFilter($periodClass::END_ITERATION);\n        $this->assertNull($period->current());\n\n        $period = $period->removeFilter($periodClass::END_ITERATION);\n        $this->assertEquals($start, $period->current());\n        $this->assertNotSame($start, $period->current());\n    }\n\n    public function testChangeStartDateBeforeIteration()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(new Carbon('2018-10-05'), 3)\n            ->setStartDate(new Carbon('2018-10-13'))\n            ->toggleOptions($periodClass::EXCLUDE_START_DATE, true);\n\n        $this->assertEquals(new Carbon('2018-10-14'), $period->current());\n    }\n\n    public function testChangeStartDateAfterStartedIteration()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(new Carbon('2018-10-05'), 3);\n\n        $current = $period->current();\n\n        $period->toggleOptions($periodClass::EXCLUDE_START_DATE, true);\n        $period->setStartDate(new Carbon('2018-10-13'));\n\n        $this->assertEquals($current, $period->current());\n    }\n\n    public function testInvertDateIntervalDuringIteration()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass('2018-04-11', 5);\n\n        $results = [];\n\n        foreach ($period as $key => $date) {\n            $results[] = $date;\n\n            if ($key === 2) {\n                $period->invertDateInterval();\n            }\n        }\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-04-11', '2018-04-12', '2018-04-13', '2018-04-12', '2018-04-11']),\n            $this->standardizeDates($results),\n        );\n    }\n\n    public function testManualIteration()\n    {\n        $period = CarbonPeriodFactory::withStackFilter(static::$periodClass);\n        $period->rewind();\n        $str = '';\n        while ($period->valid()) {\n            if ($period->key()) {\n                $str .= ', ';\n            }\n            $str .= $period->current()->format('m-d');\n            $period->next();\n        }\n\n        $this->assertSame('01-01, 01-03', $str);\n    }\n\n    public function testSkip()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2018-05-30', '2018-07-13');\n        $output = [];\n\n        foreach ($period as $day) {\n            /* @var Carbon $day */\n            $output[] = $day->format('Y-m-d');\n\n            if ($day->isSunday()) {\n                $this->assertTrue($period->skip(7));\n                $output[] = '...';\n            }\n        }\n\n        $this->assertSame([\n            '2018-05-30',\n            '2018-05-31',\n            '2018-06-01',\n            '2018-06-02',\n            '2018-06-03',\n            '...',\n            '2018-06-11',\n            '2018-06-12',\n            '2018-06-13',\n            '2018-06-14',\n            '2018-06-15',\n            '2018-06-16',\n            '2018-06-17',\n            '...',\n            '2018-06-25',\n            '2018-06-26',\n            '2018-06-27',\n            '2018-06-28',\n            '2018-06-29',\n            '2018-06-30',\n            '2018-07-01',\n            '...',\n            '2018-07-09',\n            '2018-07-10',\n            '2018-07-11',\n            '2018-07-12',\n            '2018-07-13',\n        ], $output);\n\n        $this->assertFalse($period->skip());\n        $this->assertFalse($period->skip(7));\n    }\n\n    public function testLocale()\n    {\n        /** @var CarbonPeriod $period */\n        $period = CarbonPeriodFactory::withStackFilter(static::$periodClass)->locale('de');\n        $str = '';\n\n        foreach ($period as $key => $date) {\n            if ($key) {\n                $str .= ', ';\n            }\n\n            $str .= $date->isoFormat('MMMM dddd');\n        }\n\n        $this->assertSame('Januar Montag, Januar Mittwoch', $str);\n    }\n\n    public function testTimezone()\n    {\n        $period = CarbonPeriodFactory::withStackFilter(static::$periodClass)->shiftTimezone('America/Toronto');\n        $str = null;\n\n        foreach ($period as $key => $date) {\n            $str = $date->format('H e');\n\n            break;\n        }\n\n        $this->assertSame('00 America/Toronto', $str);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/MacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonPeriodImmutable;\nuse ReflectionClass;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonPeriod\\Fixtures\\MacroableClass;\nuse Tests\\CarbonPeriod\\Fixtures\\Mixin;\nuse Tests\\CarbonPeriod\\Fixtures\\MixinTrait;\n\nclass MacroTest extends AbstractTestCase\n{\n    protected function tearDown(): void\n    {\n        (new ReflectionClass(static::$periodClass))\n            ->setStaticPropertyValue('macros', []);\n\n        parent::tearDown();\n    }\n\n    public function testCallMacro()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('onlyWeekdays', function () {\n            /** @var CarbonPeriod $period */\n            $period = $this;\n\n            return $period->addFilter(function ($date) {\n                return !\\in_array($date->dayOfWeek, [Carbon::SATURDAY, Carbon::SUNDAY], true);\n            });\n        });\n\n        /** @var mixed $period */\n        $period = $periodClass::create('2018-05-10', '2018-05-14');\n        $result = $period->onlyWeekdays();\n\n        $this->assertSame(\n            $periodClass === CarbonPeriod::class,\n            $period === $result,\n            'Must be same object if mutable'\n        );\n\n        $this->assertSame(\n            $this->standardizeDates(['2018-05-10', '2018-05-11', '2018-05-14']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testParameterOtherThanSelfIsNotGivenPeriodInstance()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('foobar', function ($param = 123) {\n            return $param;\n        });\n\n        /** @var mixed $period */\n        $period = $periodClass::create();\n\n        $this->assertSame(123, $period->foobar());\n    }\n\n    public function testPassPeriodInstanceAfterOptionalParameters()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('formatStartDate', function ($format = 'l, j F Y') {\n            /** @var CarbonPeriod $period */\n            $period = $this;\n\n            return $period->getStartDate()->format($format);\n        });\n\n        /** @var mixed $period */\n        $period = $periodClass::start('2016-09-11');\n\n        $this->assertSame(\n            'Sunday, 11 September 2016',\n            $period->formatStartDate(),\n        );\n    }\n\n    public function testMacroIsBindedToDatePeriodInstance()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('myself', function () {\n            return $this;\n        });\n\n        /** @var mixed $period */\n        $period = new $periodClass();\n\n        $this->assertInstanceOf($periodClass, $period->myself());\n        $this->assertSame($period, $period->myself());\n    }\n\n    public function testCallMacroStatically()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('countWeekdaysBetween', function ($from, $to) use ($periodClass) {\n            return $periodClass::create($from, $to)\n                ->addFilter(function ($date) {\n                    return !\\in_array($date->dayOfWeek, [Carbon::SATURDAY, Carbon::SUNDAY], true);\n                })\n                ->count();\n        });\n\n        $this->assertSame(\n            3,\n            $periodClass::countWeekdaysBetween('2018-05-10', '2018-05-14'),\n        );\n    }\n\n    public function testMacroIsBoundToDatePeriodClass()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('newMyself', function () {\n            return new static();\n        });\n\n        $this->assertInstanceOf($periodClass, $periodClass::newMyself());\n    }\n\n    public function testRegisterNonClosureMacro()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('lower', 'strtolower');\n\n        /** @var mixed $period */\n        $period = new $periodClass();\n\n        $this->assertSame('abc', $period->lower('ABC'));\n        $this->assertSame('abc', $periodClass::lower('ABC'));\n    }\n\n    public function testRegisterMixin()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::mixin(new Mixin());\n\n        $this->assertNull($periodClass::getFoo());\n\n        $periodClass::setFoo('bar');\n        $this->assertSame('bar', $periodClass::getFoo());\n    }\n\n    public function testCallNonExistingMacro()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method nonExistingMacro does not exist.',\n        ));\n\n        $periodClass = static::$periodClass;\n        /** @var mixed $period */\n        $period = $periodClass::create();\n\n        $period->nonExistingMacro();\n    }\n\n    public function testCallNonExistingMacroStatically()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method nonExistingMacro does not exist.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::nonExistingMacro();\n    }\n\n    public function testOverrideAlias()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('recurrences', function () {\n            return 'foo';\n        });\n\n        $this->assertSame('foo', $periodClass::recurrences());\n    }\n\n    public function testInstantiateViaStaticMacroCall()\n    {\n        $periodClass = static::$periodClass;\n        $periodClass::macro('fromTomorrow', function () {\n            /** @var CarbonPeriod $period */\n            $period = $this;\n\n            return $period->setStartDate(Carbon::tomorrow());\n        });\n\n        $period = $periodClass::fromTomorrow();\n\n        $this->assertEquals(Carbon::tomorrow(), $period->getStartDate());\n    }\n\n    public function testMixinInstance()\n    {\n        require_once __DIR__.'/Fixtures/MixinTrait.php';\n        require_once __DIR__.'/Fixtures/MacroableClass.php';\n\n        $periodClass = static::$periodClass;\n        $periodClass::mixin(MixinTrait::class);\n\n        $period = $periodClass::create('2023-06-10', '2023-06-12');\n\n        $copy = $period->copyOneMoreDay();\n\n        $this->assertSame('Every 1 day from 2023-06-10 to 2023-06-12', (string) $period);\n        $this->assertSame('Every 1 day from 2023-06-10 to 2023-06-13', (string) $copy);\n\n        $mutated = $period->oneMoreDay();\n        $immutable = (static::$periodClass === CarbonPeriodImmutable::class);\n        $expectedEnd = $immutable ? '2023-06-12' : '2023-06-13';\n\n        $this->assertSame('Every 1 day from 2023-06-10 to 2023-06-13', (string) $mutated);\n        $this->assertSame(\"Every 1 day from 2023-06-10 to $expectedEnd\", (string) $period);\n\n        $expectedResult = $immutable ? 'a new instance' : 'the same instance';\n        $this->assertSame(\n            $immutable,\n            ($mutated !== $period),\n            \"{static::$periodClass}::oneMoreDay() should return $expectedResult\"\n        );\n\n        $this->assertNotSame($copy, $period);\n\n        $this->assertSame('2023-06-14', $mutated->endNextDay()->format('Y-m-d'));\n        $this->assertSame(static::$periodClass === CarbonPeriodImmutable::class\n            ? '2023-06-13'\n            : '2023-06-14', $period->endNextDay()->format('Y-m-d'));\n\n        MacroableClass::mixin(MixinTrait::class);\n\n        $obj = new MacroableClass();\n        $result = $obj\n            ->setEndDate(Carbon::parse('2023-06-01'))\n            ->oneMoreDay();\n        $endDate = $result->getEndDate();\n\n        $this->assertInstanceOf(MacroableClass::class, $result);\n        $this->assertNotSame(MacroableClass::class, \\get_class($result));\n        $this->assertSame(Carbon::class, \\get_class($endDate));\n        $this->assertSame('2023-06-02', $endDate->format('Y-m-d'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/RoundingTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\CarbonInterval;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\n\nclass RoundingTest extends AbstractTestCase\n{\n    public function testThrowsExceptionForCompositeInterval()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Rounding is only possible with single unit intervals.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::days(2)->round('2 hours 50 minutes');\n    }\n\n    public function testFloor()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817')->floor();\n\n        $this->assertSame('01 00:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 00:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 00:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '1 hour')->floor();\n\n        $this->assertSame('2019-02-01 12:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->floor();\n\n        $this->assertSame('2019-02-01 12:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 02:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817')->floor('hour');\n\n        $this->assertSame('01 00:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 12:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '140 minutes')->floor('hour');\n\n        $this->assertSame('00 02:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 12:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '1 hour')->floor(CarbonInterval::minutes(15));\n\n        $this->assertSame('2019-02-01 12:45:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->floorUnit('minute', 10);\n\n        $this->assertSame('2019-02-01 12:50:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:10:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->floorMinutes(10);\n\n        $this->assertSame('2019-02-01 12:50:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:10:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testCeil()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817')->ceil();\n\n        $this->assertSame('01 00:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-02 00:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-13 00:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '1 hour')->ceil();\n\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 04:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->ceil();\n\n        $this->assertSame('2019-02-01 14:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 04:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817')->ceil('hour');\n\n        $this->assertSame('01 00:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 04:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '140 minutes')->ceil('hour');\n\n        $this->assertSame('00 03:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 04:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '1 hour')->ceil(CarbonInterval::minutes(15));\n\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:15:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->ceilUnit('minute', 10);\n\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:20:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->ceilMinutes(10);\n\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:20:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testRound()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817')->round();\n\n        $this->assertSame('01 00:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-02 00:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 00:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '1 hour')->round();\n\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->round();\n\n        $this->assertSame('2019-02-01 12:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 04:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817')->round('hour');\n\n        $this->assertSame('01 00:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '140 minutes')->round('hour');\n\n        $this->assertSame('00 02:00:00.000000', $period->getDateInterval()->format('%D %H:%I:%S.%F'));\n        $this->assertSame('2019-02-01 13:00:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:00:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '1 hour')->round(CarbonInterval::minutes(15));\n\n        $this->assertSame('2019-02-01 12:45:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:15:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->roundUnit('minute', 10);\n\n        $this->assertSame('2019-02-01 12:50:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:10:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23', '2019-12-12 03:12:44.817', '2 hours')->roundMinutes(10);\n\n        $this->assertSame('2019-02-01 12:50:00.000000', $period->getStartDate()->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-12-12 03:10:00.000000', $period->getEndDate()->format('Y-m-d H:i:s.u'));\n    }\n\n    public function testRoundCalculatedEnd()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2019-02-01 12:52:23.123456', '3 hours')->setRecurrences(3);\n\n        $this->assertSame('2019-02-01 18:00:00.000000', $period->calculateEnd('round')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-02-01 18:52:23.123456', $period->calculateEnd()->format('Y-m-d H:i:s.u'));\n\n        $period = $periodClass::create('2019-02-01 12:52:23.123456', '3 hours')\n            ->setRecurrences(3)\n            ->addFilter(function ($date) {\n                return $date->hour % 2;\n            });\n\n        $this->assertSame('2019-02-02 03:00:00.000000', $period->calculateEnd('round')->format('Y-m-d H:i:s.u'));\n        $this->assertSame('2019-02-02 03:52:23.123456', $period->calculateEnd()->format('Y-m-d H:i:s.u'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/SerializationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass SerializationTest extends AbstractTestCase\n{\n    public function testSerializationFromV2(): void\n    {\n        $data = \"O:19:\\\"Carbon\\CarbonPeriod\\\":24:{s:12:\\\"\\0*\\0dateClass\\\";s:13:\\\"Carbon\\Carbon\\\";s:15:\\\"\\0*\\0dateInterval\\\";O:21:\\\"Carbon\\CarbonInterval\\\":22:{s:1:\\\"y\\\";i:0;s:1:\\\"m\\\";i:0;s:1:\\\"d\\\";i:3;s:1:\\\"h\\\";i:0;s:1:\\\"i\\\";i:0;s:1:\\\"s\\\";i:0;s:1:\\\"f\\\";d:0;s:6:\\\"invert\\\";i:0;s:4:\\\"days\\\";b:0;s:11:\\\"from_string\\\";b:0;s:9:\\\"\\0*\\0tzName\\\";N;s:7:\\\"\\0*\\0step\\\";N;s:22:\\\"\\0*\\0localMonthsOverflow\\\";N;s:21:\\\"\\0*\\0localYearsOverflow\\\";N;s:25:\\\"\\0*\\0localStrictModeEnabled\\\";N;s:24:\\\"\\0*\\0localHumanDiffOptions\\\";N;s:22:\\\"\\0*\\0localToStringFormat\\\";N;s:18:\\\"\\0*\\0localSerializer\\\";N;s:14:\\\"\\0*\\0localMacros\\\";N;s:21:\\\"\\0*\\0localGenericMacros\\\";N;s:22:\\\"\\0*\\0localFormatFunction\\\";N;s:18:\\\"\\0*\\0localTranslator\\\";N;}s:14:\\\"\\0*\\0constructed\\\";b:1;s:20:\\\"\\0*\\0isDefaultInterval\\\";b:0;s:10:\\\"\\0*\\0filters\\\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:19:\\\"Carbon\\CarbonPeriod\\\";i:1;s:13:\\\"filterEndDate\\\";}i:1;N;}}s:12:\\\"\\0*\\0startDate\\\";O:13:\\\"Carbon\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2018-04-21 00:00:00.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:3:\\\"UTC\\\";}s:10:\\\"\\0*\\0endDate\\\";O:13:\\\"Carbon\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2018-04-27 00:00:00.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:3:\\\"UTC\\\";}s:14:\\\"\\0*\\0recurrences\\\";N;s:10:\\\"\\0*\\0options\\\";i:0;s:6:\\\"\\0*\\0key\\\";N;s:10:\\\"\\0*\\0current\\\";N;s:11:\\\"\\0*\\0timezone\\\";N;s:19:\\\"\\0*\\0validationResult\\\";N;s:9:\\\"\\0*\\0tzName\\\";N;s:22:\\\"\\0*\\0localMonthsOverflow\\\";N;s:21:\\\"\\0*\\0localYearsOverflow\\\";N;s:25:\\\"\\0*\\0localStrictModeEnabled\\\";N;s:24:\\\"\\0*\\0localHumanDiffOptions\\\";N;s:22:\\\"\\0*\\0localToStringFormat\\\";N;s:18:\\\"\\0*\\0localSerializer\\\";N;s:14:\\\"\\0*\\0localMacros\\\";N;s:21:\\\"\\0*\\0localGenericMacros\\\";N;s:22:\\\"\\0*\\0localFormatFunction\\\";N;s:18:\\\"\\0*\\0localTranslator\\\";N;}\";\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertSame(Carbon::class, $period->getDateClass());\n        $this->assertSame(0, $period->getOptions());\n        $this->assertNull($period->getRecurrences());\n        $this->assertDate('2018-04-21', $period->getStartDate());\n        $this->assertDate('2018-04-27', $period->getEndDate());\n        $this->assertIntervalDuration('3 days', $period->getDateInterval());\n        $this->assertSame('UTC', $period->current()->tzName);\n    }\n\n    public function testSerializationFromV2WithImmutableStart(): void\n    {\n        $data = \"O:19:\\\"Carbon\\CarbonPeriod\\\":24:{s:12:\\\"\\0*\\0dateClass\\\";s:13:\\\"Carbon\\Carbon\\\";s:15:\\\"\\0*\\0dateInterval\\\";O:21:\\\"Carbon\\CarbonInterval\\\":22:{s:1:\\\"y\\\";i:0;s:1:\\\"m\\\";i:0;s:1:\\\"d\\\";i:3;s:1:\\\"h\\\";i:0;s:1:\\\"i\\\";i:0;s:1:\\\"s\\\";i:0;s:1:\\\"f\\\";d:0;s:6:\\\"invert\\\";i:0;s:4:\\\"days\\\";b:0;s:11:\\\"from_string\\\";b:0;s:9:\\\"\\0*\\0tzName\\\";N;s:7:\\\"\\0*\\0step\\\";N;s:22:\\\"\\0*\\0localMonthsOverflow\\\";N;s:21:\\\"\\0*\\0localYearsOverflow\\\";N;s:25:\\\"\\0*\\0localStrictModeEnabled\\\";N;s:24:\\\"\\0*\\0localHumanDiffOptions\\\";N;s:22:\\\"\\0*\\0localToStringFormat\\\";N;s:18:\\\"\\0*\\0localSerializer\\\";N;s:14:\\\"\\0*\\0localMacros\\\";N;s:21:\\\"\\0*\\0localGenericMacros\\\";N;s:22:\\\"\\0*\\0localFormatFunction\\\";N;s:18:\\\"\\0*\\0localTranslator\\\";N;}s:14:\\\"\\0*\\0constructed\\\";b:1;s:20:\\\"\\0*\\0isDefaultInterval\\\";b:0;s:10:\\\"\\0*\\0filters\\\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:19:\\\"Carbon\\CarbonPeriod\\\";i:1;s:13:\\\"filterEndDate\\\";}i:1;N;}}s:12:\\\"\\0*\\0startDate\\\";O:22:\\\"Carbon\\CarbonImmutable\\\":3:{s:4:\\\"date\\\";s:26:\\\"2018-04-21 00:00:00.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:3:\\\"UTC\\\";}s:10:\\\"\\0*\\0endDate\\\";O:13:\\\"Carbon\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2018-04-27 00:00:00.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:3:\\\"UTC\\\";}s:14:\\\"\\0*\\0recurrences\\\";N;s:10:\\\"\\0*\\0options\\\";i:0;s:6:\\\"\\0*\\0key\\\";N;s:10:\\\"\\0*\\0current\\\";N;s:11:\\\"\\0*\\0timezone\\\";N;s:19:\\\"\\0*\\0validationResult\\\";N;s:9:\\\"\\0*\\0tzName\\\";N;s:22:\\\"\\0*\\0localMonthsOverflow\\\";N;s:21:\\\"\\0*\\0localYearsOverflow\\\";N;s:25:\\\"\\0*\\0localStrictModeEnabled\\\";N;s:24:\\\"\\0*\\0localHumanDiffOptions\\\";N;s:22:\\\"\\0*\\0localToStringFormat\\\";N;s:18:\\\"\\0*\\0localSerializer\\\";N;s:14:\\\"\\0*\\0localMacros\\\";N;s:21:\\\"\\0*\\0localGenericMacros\\\";N;s:22:\\\"\\0*\\0localFormatFunction\\\";N;s:18:\\\"\\0*\\0localTranslator\\\";N;}\";\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertSame(Carbon::class, $period->getDateClass());\n        $this->assertSame(0, $period->getOptions());\n        $this->assertNull($period->getRecurrences());\n        $this->assertDate('2018-04-21', $period->getStartDate(), CarbonImmutable::class);\n        $this->assertDate('2018-04-27', $period->getEndDate());\n        $this->assertIntervalDuration('3 days', $period->getDateInterval());\n        $this->assertSame('UTC', $period->current()->tzName);\n    }\n\n    public function testSerializationFromV2WithRecurrences(): void\n    {\n        $data = 'O:19:\"Carbon\\\\CarbonPeriod\":24:{s:12:\"'.\"\\0\".'*'.\"\\0\".'dateClass\";s:13:\"Carbon\\\\Carbon\";s:15:\"'.\"\\0\".'*'.\"\\0\".'dateInterval\";O:21:\"Carbon\\\\CarbonInterval\":22:{s:1:\"y\";i:0;s:1:\"m\";i:0;s:1:\"d\";i:0;s:1:\"h\";i:1;s:1:\"i\";i:0;s:1:\"s\";i:0;s:1:\"f\";d:0;s:6:\"invert\";i:0;s:4:\"days\";b:0;s:11:\"from_string\";b:0;s:9:\"'.\"\\0\".'*'.\"\\0\".'tzName\";N;s:7:\"'.\"\\0\".'*'.\"\\0\".'step\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localMonthsOverflow\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localYearsOverflow\";N;s:25:\"'.\"\\0\".'*'.\"\\0\".'localStrictModeEnabled\";N;s:24:\"'.\"\\0\".'*'.\"\\0\".'localHumanDiffOptions\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localToStringFormat\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localSerializer\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'localMacros\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localGenericMacros\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localFormatFunction\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localTranslator\";N;}s:14:\"'.\"\\0\".'*'.\"\\0\".'constructed\";b:1;s:20:\"'.\"\\0\".'*'.\"\\0\".'isDefaultInterval\";b:0;s:10:\"'.\"\\0\".'*'.\"\\0\".'filters\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:19:\"Carbon\\\\CarbonPeriod\";i:1;s:17:\"filterRecurrences\";}i:1;N;}}s:12:\"'.\"\\0\".'*'.\"\\0\".'startDate\";O:13:\"Carbon\\\\Carbon\":3:{s:4:\"date\";s:26:\"2018-05-13 10:30:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:11:\"Europe/Kyiv\";}s:10:\"'.\"\\0\".'*'.\"\\0\".'endDate\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'recurrences\";i:3;s:10:\"'.\"\\0\".'*'.\"\\0\".'options\";i:3;s:6:\"'.\"\\0\".'*'.\"\\0\".'key\";N;s:10:\"'.\"\\0\".'*'.\"\\0\".'current\";N;s:11:\"'.\"\\0\".'*'.\"\\0\".'timezone\";s:11:\"Europe/Kyiv\";s:19:\"'.\"\\0\".'*'.\"\\0\".'validationResult\";N;s:9:\"'.\"\\0\".'*'.\"\\0\".'tzName\";s:11:\"Europe/Kyiv\";s:22:\"'.\"\\0\".'*'.\"\\0\".'localMonthsOverflow\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localYearsOverflow\";N;s:25:\"'.\"\\0\".'*'.\"\\0\".'localStrictModeEnabled\";N;s:24:\"'.\"\\0\".'*'.\"\\0\".'localHumanDiffOptions\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localToStringFormat\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localSerializer\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'localMacros\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localGenericMacros\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localFormatFunction\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localTranslator\";N;}';\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertSame(Carbon::class, $period->getDateClass());\n        $this->assertSame(3, $period->getOptions());\n        $this->assertSame(3, $period->getRecurrences());\n        $this->assertDate('2018-05-13T10:30:00+03:00', $period->getStartDate());\n        $this->assertNull($period->getEndDate());\n        $this->assertIntervalDuration('1 hour', $period->getDateInterval());\n        $this->assertSame('Europe/Kyiv', $period->current()->tzName);\n    }\n\n    public function testSerializationFromV2WithTimezone(): void\n    {\n        $data = 'O:19:\"Carbon\\\\CarbonPeriod\":24:{s:12:\"'.\"\\0\".'*'.\"\\0\".'dateClass\";s:13:\"Carbon\\\\Carbon\";s:15:\"'.\"\\0\".'*'.\"\\0\".'dateInterval\";O:21:\"Carbon\\\\CarbonInterval\":22:{s:1:\"y\";i:0;s:1:\"m\";i:0;s:1:\"d\";i:0;s:1:\"h\";i:1;s:1:\"i\";i:0;s:1:\"s\";i:0;s:1:\"f\";d:0;s:6:\"invert\";i:0;s:4:\"days\";b:0;s:11:\"from_string\";b:0;s:9:\"'.\"\\0\".'*'.\"\\0\".'tzName\";N;s:7:\"'.\"\\0\".'*'.\"\\0\".'step\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localMonthsOverflow\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localYearsOverflow\";N;s:25:\"'.\"\\0\".'*'.\"\\0\".'localStrictModeEnabled\";N;s:24:\"'.\"\\0\".'*'.\"\\0\".'localHumanDiffOptions\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localToStringFormat\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localSerializer\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'localMacros\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localGenericMacros\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localFormatFunction\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localTranslator\";N;}s:14:\"'.\"\\0\".'*'.\"\\0\".'constructed\";b:1;s:20:\"'.\"\\0\".'*'.\"\\0\".'isDefaultInterval\";b:0;s:10:\"'.\"\\0\".'*'.\"\\0\".'filters\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:19:\"Carbon\\\\CarbonPeriod\";i:1;s:17:\"filterRecurrences\";}i:1;N;}}s:12:\"'.\"\\0\".'*'.\"\\0\".'startDate\";O:13:\"Carbon\\\\Carbon\":3:{s:4:\"date\";s:26:\"2018-05-13 10:30:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:11:\"Europe/Kyiv\";}s:10:\"'.\"\\0\".'*'.\"\\0\".'endDate\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'recurrences\";i:8;s:10:\"'.\"\\0\".'*'.\"\\0\".'options\";i:3;s:6:\"'.\"\\0\".'*'.\"\\0\".'key\";i:1;s:10:\"'.\"\\0\".'*'.\"\\0\".'current\";O:13:\"Carbon\\\\Carbon\":3:{s:4:\"date\";s:26:\"2018-05-13 09:30:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}s:11:\"'.\"\\0\".'*'.\"\\0\".'timezone\";O:21:\"Carbon\\\\CarbonTimeZone\":2:{s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:11:\"Europe/Kyiv\";}s:19:\"'.\"\\0\".'*'.\"\\0\".'validationResult\";b:1;s:9:\"'.\"\\0\".'*'.\"\\0\".'tzName\";s:11:\"Europe/Kyiv\";s:22:\"'.\"\\0\".'*'.\"\\0\".'localMonthsOverflow\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localYearsOverflow\";N;s:25:\"'.\"\\0\".'*'.\"\\0\".'localStrictModeEnabled\";N;s:24:\"'.\"\\0\".'*'.\"\\0\".'localHumanDiffOptions\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localToStringFormat\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localSerializer\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'localMacros\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localGenericMacros\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localFormatFunction\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localTranslator\";N;}';\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertSame(Carbon::class, $period->getDateClass());\n        $this->assertSame(3, $period->getOptions());\n        $this->assertSame(8, $period->getRecurrences());\n        $this->assertDate('2018-05-13T10:30:00+03:00', $period->getStartDate());\n        $this->assertNull($period->getEndDate());\n        $this->assertIntervalDuration('1 hour', $period->getDateInterval());\n        $this->assertSame('Europe/Kyiv', $period->current()->tzName);\n    }\n\n    public function testSerializationFromV2WithCurrent(): void\n    {\n        $data = 'O:19:\"Carbon\\\\CarbonPeriod\":24:{s:12:\"'.\"\\0\".'*'.\"\\0\".'dateClass\";s:22:\"Carbon\\\\CarbonImmutable\";s:15:\"'.\"\\0\".'*'.\"\\0\".'dateInterval\";O:21:\"Carbon\\\\CarbonInterval\":22:{s:1:\"y\";i:0;s:1:\"m\";i:0;s:1:\"d\";i:1;s:1:\"h\";i:0;s:1:\"i\";i:0;s:1:\"s\";i:0;s:1:\"f\";d:0;s:6:\"invert\";i:0;s:4:\"days\";b:0;s:11:\"from_string\";b:0;s:9:\"'.\"\\0\".'*'.\"\\0\".'tzName\";N;s:7:\"'.\"\\0\".'*'.\"\\0\".'step\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localMonthsOverflow\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localYearsOverflow\";N;s:25:\"'.\"\\0\".'*'.\"\\0\".'localStrictModeEnabled\";N;s:24:\"'.\"\\0\".'*'.\"\\0\".'localHumanDiffOptions\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localToStringFormat\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localSerializer\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'localMacros\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localGenericMacros\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localFormatFunction\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localTranslator\";N;}s:14:\"'.\"\\0\".'*'.\"\\0\".'constructed\";b:1;s:20:\"'.\"\\0\".'*'.\"\\0\".'isDefaultInterval\";b:0;s:10:\"'.\"\\0\".'*'.\"\\0\".'filters\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:19:\"Carbon\\\\CarbonPeriod\";i:1;s:13:\"filterEndDate\";}i:1;N;}}s:12:\"'.\"\\0\".'*'.\"\\0\".'startDate\";O:13:\"Carbon\\\\Carbon\":3:{s:4:\"date\";s:26:\"2030-01-02 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}s:10:\"'.\"\\0\".'*'.\"\\0\".'endDate\";O:13:\"Carbon\\\\Carbon\":3:{s:4:\"date\";s:26:\"2030-01-21 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}s:14:\"'.\"\\0\".'*'.\"\\0\".'recurrences\";N;s:10:\"'.\"\\0\".'*'.\"\\0\".'options\";i:4;s:6:\"'.\"\\0\".'*'.\"\\0\".'key\";N;s:10:\"'.\"\\0\".'*'.\"\\0\".'current\";N;s:11:\"'.\"\\0\".'*'.\"\\0\".'timezone\";N;s:19:\"'.\"\\0\".'*'.\"\\0\".'validationResult\";N;s:9:\"'.\"\\0\".'*'.\"\\0\".'tzName\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localMonthsOverflow\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localYearsOverflow\";N;s:25:\"'.\"\\0\".'*'.\"\\0\".'localStrictModeEnabled\";N;s:24:\"'.\"\\0\".'*'.\"\\0\".'localHumanDiffOptions\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localToStringFormat\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localSerializer\";N;s:14:\"'.\"\\0\".'*'.\"\\0\".'localMacros\";N;s:21:\"'.\"\\0\".'*'.\"\\0\".'localGenericMacros\";N;s:22:\"'.\"\\0\".'*'.\"\\0\".'localFormatFunction\";N;s:18:\"'.\"\\0\".'*'.\"\\0\".'localTranslator\";N;}';\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertSame(CarbonImmutable::class, $period->getDateClass());\n        $this->assertNull($period->getRecurrences());\n        $this->assertDate('2030-01-02T00:00:00-05:00', $period->getStartDate());\n        $this->assertDate('2030-01-21T00:00:00-05:00', $period->getEndDate());\n        $this->assertIntervalDuration('1 day', $period->getDateInterval());\n        $this->assertSame('America/Toronto', $period->current()->tzName);\n    }\n\n    public function testSerializationFromV2WithDateTimeObject(): void\n    {\n        $data = 'O:19:\"Carbon\\\\CarbonPeriod\":7:{s:5:\"start\";O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2030-01-02 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}s:7:\"current\";N;s:3:\"end\";O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2030-01-21 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}s:8:\"interval\";O:12:\"DateInterval\":10:{s:1:\"y\";i:0;s:1:\"m\";i:0;s:1:\"d\";i:1;s:1:\"h\";i:0;s:1:\"i\";i:0;s:1:\"s\";i:0;s:1:\"f\";d:0;s:6:\"invert\";i:0;s:4:\"days\";b:0;s:11:\"from_string\";b:0;}s:11:\"recurrences\";i:1;s:18:\"include_start_date\";b:1;s:16:\"include_end_date\";b:0;}';\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertSame(Carbon::class, $period->getDateClass());\n        $this->assertNull($period->getRecurrences());\n        $this->assertDate('2030-01-02T00:00:00-05:00', $period->getStartDate());\n        $this->assertDate('2030-01-21T00:00:00-05:00', $period->getEndDate());\n        $this->assertIntervalDuration('1 day', $period->getDateInterval());\n        $this->assertNull($period->current());\n    }\n\n    public function testSerializationFromV2WithDateTimeImmutableObject(): void\n    {\n        $data = 'O:19:\"Carbon\\\\CarbonPeriod\":7:{s:5:\"start\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2030-01-02 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}s:7:\"current\";N;s:3:\"end\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2030-01-21 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:15:\"America/Toronto\";}s:8:\"interval\";O:12:\"DateInterval\":10:{s:1:\"y\";i:0;s:1:\"m\";i:0;s:1:\"d\";i:1;s:1:\"h\";i:0;s:1:\"i\";i:0;s:1:\"s\";i:0;s:1:\"f\";d:0;s:6:\"invert\";i:0;s:4:\"days\";b:0;s:11:\"from_string\";b:0;}s:11:\"recurrences\";i:1;s:18:\"include_start_date\";b:1;s:16:\"include_end_date\";b:0;}';\n\n        $period = unserialize($data);\n        /** @var CarbonPeriod $period */\n        $period = unserialize(serialize($period));\n\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertNull($period->getRecurrences());\n        $this->assertDate('2030-01-02T00:00:00-05:00', $period->getStartDate(), CarbonImmutable::class);\n        $this->assertDate('2030-01-21T00:00:00-05:00', $period->getEndDate(), CarbonImmutable::class);\n        $this->assertIntervalDuration('1 day', $period->getDateInterval());\n        $this->assertNull($period->current());\n    }\n\n    #[DataProvider('getCarbonPeriods')]\n    public function testSerialization(CarbonPeriod $period): void\n    {\n        $this->assertSerializationWorks($period);\n    }\n\n    /**\n     * @SuppressWarnings(MissingImport)\n     */\n    public function testUnserializeError(): void\n    {\n        $this->expectExceptionMessage(\n            PHP_VERSION_ID < 8_02_00\n                ? 'Disallowed'\n                : 'Invalid serialization data for DatePeriod object',\n        );\n\n        if (!class_exists('CarbonDisallowingToDateTime')) {\n            eval('\n                class CarbonDisallowingToDateTime extends \\Carbon\\Carbon\n                {\n                    public function toDateTime(): DateTime\n                    {\n                        throw new LogicException(\"Disallowed\");\n                    }\n                }\n            ');\n        }\n\n        $periodClass = static::$periodClass;\n        /** @var CarbonPeriod $period */\n        $period = new $periodClass();\n\n        $period->__unserialize([\n            /* @phpstan-ignore-next-line */\n            'start' => new CarbonDisallowingToDateTime('2030-01-02 UTC'),\n            /* @phpstan-ignore-next-line */\n            'end' => new CarbonDisallowingToDateTime('2030-01-10 UTC'),\n            'interval' => new DateInterval('PT12H'),\n        ]);\n    }\n\n    public static function getCarbonPeriods(): array\n    {\n        $periodClass = static::$periodClass;\n\n        return [\n            'new' => [new $periodClass()],\n            'range string' => [$periodClass::createFromIso('2023-07-01T00:00:00Z/P7D/2023-11-01T00:00:00Z')],\n            'include start and end' => [$periodClass::options(0)],\n            'exclude start and end' => [$periodClass::options($periodClass::EXCLUDE_START_DATE | $periodClass::EXCLUDE_END_DATE)],\n            'with timezone' => [\n                $periodClass::createFromIso('2023-07-01T00:00:00Z/P7D/2023-11-01T00:00:00Z')\n                    ->setTimezone('Europe/Kyiv'),\n            ],\n        ];\n    }\n\n    public function testSerializationWithRecurrences(): void\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::createFromISO8601String('R4/2023-07-01T00:00:00Z/P7D');\n        $this->assertInstanceOf(CarbonPeriod::class, $period);\n        $this->assertDate('2023-07-01', $period->getStartDate());\n        $this->assertNull($period->getEndDate());\n        $this->assertSame(4, $period->getRecurrences());\n        $this->assertIntervalDuration('1 week', $period->getDateInterval());\n\n        $periodCopy = unserialize(serialize($period));\n\n        $this->assertEquivalentPeriods($period, $periodCopy);\n        $this->assertDate('2023-07-01', $periodCopy->getStartDate());\n        $this->assertNull($periodCopy->getEndDate());\n        $this->assertSame(4, $periodCopy->getRecurrences());\n        $this->assertIntervalDuration('1 week', $periodCopy->getDateInterval());\n    }\n\n    private function assertIntervalDuration(string $duration, mixed $interval): void\n    {\n        $this->assertInstanceOf(CarbonInterval::class, $interval);\n        $this->assertSame($duration, $interval->forHumans());\n    }\n\n    private function assertDate(string $date, mixed $value, string $class = Carbon::class): void\n    {\n        if (\\strlen($date) === 10) {\n            $date .= 'T00:00:00';\n        }\n\n        if (\\strlen($date) === 19) {\n            $date .= '+00:00';\n        }\n\n        $this->assertInstanceOf($class, $value);\n        $this->assertSame($date, $value->toIso8601String());\n    }\n\n    private function assertSerializationWorks(CarbonPeriod $period): void\n    {\n        $periodCopy = unserialize(serialize($period));\n\n        $this->assertEquivalentPeriods($period, $periodCopy);\n    }\n\n    private function assertEquivalentPeriods(mixed $a, mixed $b): void\n    {\n        $this->assertInstanceOf(CarbonPeriod::class, $b);\n        $this->assertSame($a::class, $b::class);\n\n        if (PHP_VERSION_ID >= 8_02_00) {\n            $this->assertEquals($a, $b);\n\n            return;\n        }\n\n        $this->assertEquals($a->getStartDate(), $b->getStartDate());\n        $this->assertEquals($a->getDateInterval(), $b->getDateInterval());\n        $this->assertEquals($a->getEndDate(), $b->getEndDate());\n        $this->assertEquals($a->getRecurrences(), $b->getRecurrences());\n        $this->assertEquals($a->getOptions(), $b->getOptions());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/SettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse DateInterval;\nuse DateTime;\nuse InvalidArgumentException;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonPeriod\\Fixtures\\AbstractCarbon;\n\nclass SettersTest extends AbstractTestCase\n{\n    public function testSetStartDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setStartDate('2018-03-25');\n\n        $this->assertSame('2018-03-25', $period->getStartDate()->toDateString());\n    }\n\n    public function testSetEndDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setEndDate('2018-04-25');\n\n        $this->assertSame('2018-04-25', $period->getEndDate()->toDateString());\n    }\n\n    public function testSetDateInterval()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setDateInterval('P3D');\n\n        $this->assertSame('P3D', $period->getDateInterval()->spec());\n    }\n\n    public function testSetDateIntervalFromStringFormat()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setDateInterval('1w 3d 4h 32m 23s');\n\n        $this->assertSame('P10DT4H32M23S', $period->getDateInterval()->spec());\n    }\n\n    public function testSetRecurrences()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setRecurrences(5);\n\n        $this->assertSame(5, $period->getRecurrences());\n    }\n\n    public function testSetDates()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setDates('2019-04-12', '2019-04-19');\n\n        $this->assertSame('2019-04-12', $period->getStartDate()->toDateString());\n        $this->assertSame('2019-04-19', $period->getEndDate()->toDateString());\n    }\n\n    public function testSetOptions()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setOptions($options = $periodClass::EXCLUDE_START_DATE | $periodClass::EXCLUDE_END_DATE);\n\n        $this->assertSame($options, $period->getOptions());\n    }\n\n    public function testSetDateClass()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass('2001-01-01', '2001-01-02');\n\n        $period = $period->setDateClass(CarbonImmutable::class);\n\n        $this->assertSame($periodClass::IMMUTABLE, $period->getOptions());\n        $this->assertInstanceOf(CarbonImmutable::class, $period->toArray()[0]);\n\n        $period = $period->setDateClass(Carbon::class);\n\n        $this->assertSame(0, $period->getOptions());\n        $this->assertInstanceOf(Carbon::class, $period->toArray()[0]);\n\n        $period = $period->toggleOptions($periodClass::IMMUTABLE, true);\n        $this->assertSame(CarbonImmutable::class, $period->getDateClass());\n        $this->assertInstanceOf(CarbonImmutable::class, $period->toArray()[0]);\n\n        $period = $period->toggleOptions($periodClass::IMMUTABLE, false);\n        $this->assertSame(Carbon::class, $period->getDateClass());\n        $this->assertInstanceOf(Carbon::class, $period->toArray()[0]);\n\n        if (PHP_VERSION < 8.4) {\n            $period = $period->setDateClass(AbstractCarbon::class);\n            $this->assertSame(AbstractCarbon::class, $period->getDateClass());\n        }\n    }\n\n    public function testSetDateClassInvalidArgumentException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Given class does not implement Carbon\\CarbonInterface: Carbon\\CarbonInterval',\n        ));\n\n        $periodClass = static::$periodClass;\n        $period = new $periodClass('2001-01-01', '2001-01-02');\n\n        $period->setDateClass(CarbonInterval::class);\n    }\n\n    public function testInvalidInterval()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid interval.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create()->setDateInterval(new DateTime());\n    }\n\n    public function testEmptyInterval()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Empty interval is not accepted.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create()->setDateInterval(new DateInterval('P0D'));\n    }\n\n    public function testInvalidNegativeNumberOfRecurrences()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid number of recurrences.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create()->setRecurrences(-4);\n    }\n\n    public function testInvalidConstructorParameters()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid constructor parameters.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create([]);\n    }\n\n    public function testInvalidStartDate()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid start date.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create()->setStartDate(new DateInterval('P1D'));\n    }\n\n    public function testInvalidEndDate()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Invalid end date.',\n        ));\n\n        $periodClass = static::$periodClass;\n        $periodClass::create()->setEndDate(new DateInterval('P1D'));\n    }\n\n    public function testToggleOptions()\n    {\n        $periodClass = static::$periodClass;\n        $start = $periodClass::EXCLUDE_START_DATE;\n        $end = $periodClass::EXCLUDE_END_DATE;\n\n        $period = new $periodClass();\n\n        $period = $period->toggleOptions($start, true);\n        $this->assertPeriodOptions($start, $period);\n\n        $period = $period->toggleOptions($end, true);\n        $this->assertPeriodOptions($start | $end, $period);\n\n        $period = $period->toggleOptions($start, false);\n        $this->assertPeriodOptions($end, $period);\n\n        $period = $period->toggleOptions($end, false);\n        $this->assertPeriodOptions(0, $period);\n    }\n\n    public function testToggleOptionsOnAndOff()\n    {\n        $periodClass = static::$periodClass;\n        $start = $periodClass::EXCLUDE_START_DATE;\n        $end = $periodClass::EXCLUDE_END_DATE;\n\n        $period = new $periodClass();\n\n        $period = $period->toggleOptions($start);\n        $this->assertPeriodOptions($start, $period);\n\n        $period = $period->toggleOptions($start);\n        $this->assertPeriodOptions(0, $period);\n\n        $period = $period->setOptions($start);\n        $period = $period->toggleOptions($start | $end);\n        $this->assertSame($start | $end, $period->getOptions());\n\n        $period = $period->toggleOptions($end);\n        $this->assertSame($start, $period->getOptions());\n\n        $period = $period->toggleOptions($end);\n        $this->assertSame($start | $end, $period->getOptions());\n\n        $period = $period->toggleOptions($start | $end);\n        $this->assertSame(0, $period->getOptions());\n    }\n\n    public function testSetStartDateInclusiveOrExclusive()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setStartDate('2018-03-25');\n        $this->assertFalse($period->isStartExcluded());\n\n        $period = $period->setStartDate('2018-03-25', false);\n        $this->assertTrue($period->isStartExcluded());\n\n        $period = $period->setStartDate('2018-03-25', true);\n        $this->assertFalse($period->isStartExcluded());\n    }\n\n    public function testSetEndDateInclusiveOrExclusive()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setEndDate('2018-04-25');\n        $this->assertFalse($period->isEndExcluded());\n\n        $period = $period->setEndDate('2018-04-25', false);\n        $this->assertTrue($period->isEndExcluded());\n\n        $period = $period->setEndDate('2018-04-25', true);\n        $this->assertFalse($period->isEndExcluded());\n    }\n\n    public function testInvertDateInterval()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->invertDateInterval();\n        $this->assertSame(1, $period->getDateInterval()->invert);\n\n        $period = $period->invertDateInterval();\n        $this->assertSame(0, $period->getDateInterval()->invert);\n\n        $period = $periodClass::create('2018-04-29', 7);\n        $dates = [];\n        foreach ($period as $key => $date) {\n            if ($key === 3) {\n                $period->invert()->start($date);\n            }\n            $dates[] = $date->format('m-d');\n        }\n\n        $this->assertSame([\n            '04-29', '04-30', '05-01', '05-02', '05-01', '04-30', '04-29',\n        ], $dates);\n    }\n\n    public function testExcludeStartDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->excludeStartDate();\n        $this->assertPeriodOptions($periodClass::EXCLUDE_START_DATE, $period);\n\n        $period = $period->excludeStartDate(true);\n        $this->assertPeriodOptions($periodClass::EXCLUDE_START_DATE, $period);\n\n        $period = $period->excludeStartDate(false);\n        $this->assertPeriodOptions(0, $period);\n    }\n\n    public function testExcludeEndDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->excludeEndDate();\n        $this->assertPeriodOptions($periodClass::EXCLUDE_END_DATE, $period);\n\n        $period = $period->excludeEndDate(true);\n        $this->assertPeriodOptions($periodClass::EXCLUDE_END_DATE, $period);\n\n        $period = $period->excludeEndDate(false);\n        $this->assertPeriodOptions(0, $period);\n    }\n\n    public function testSetRelativeDates()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n\n        $period = $period->setDates('first monday of may 2018', 'last day of may 2018 noon');\n\n        $this->assertSame('2018-05-07 00:00:00', $period->getStartDate()->toDateTimeString());\n        $this->assertSame('2018-05-31 12:00:00', $period->getEndDate()->toDateTimeString());\n    }\n\n    public function testFluentSetters()\n    {\n        $periodClass = static::$periodClass;\n        Carbon::setTestNowAndTimezone(Carbon::now('UTC'));\n\n        $period = CarbonInterval::days(3)->toPeriod()->since('2018-04-21')->until('2018-04-27');\n        $dates = [];\n        foreach ($period as $date) {\n            $dates[] = $date->format('m-d');\n        }\n\n        $this->assertSame(['04-21', '04-24', '04-27'], $dates);\n\n        $period = CarbonInterval::days(3)->toPeriod('2018-04-21', '2018-04-27');\n        $dates = [];\n        foreach ($period as $date) {\n            $dates[] = $date->format('m-d');\n        }\n\n        $this->assertSame(['04-21', '04-24', '04-27'], $dates);\n\n        $someDateTime = new DateTime('2010-05-06 02:00:00');\n        $someCarbon = new Carbon('2010-05-06 13:00:00');\n\n        $period = $periodClass::every('2 hours')->between($someDateTime, $someCarbon)->options($periodClass::EXCLUDE_START_DATE);\n        $hours = [];\n        foreach ($period as $date) {\n            $hours[] = $date->format('H');\n        }\n\n        $this->assertSame(['04', '06', '08', '10', '12'], $hours);\n\n        $period = $periodClass::options($periodClass::EXCLUDE_START_DATE)->stepBy(CarbonInterval::hours(2))->since('yesterday 19:00')->until('tomorrow 03:30');\n        $hours = [];\n        foreach ($period as $date) {\n            $hours[] = $date->format('j H');\n        }\n        $d1 = Carbon::yesterday()->day;\n        $d2 = Carbon::today()->day;\n        $d3 = Carbon::tomorrow()->day;\n\n        $this->assertSame([\n            \"$d1 21\",\n            \"$d1 23\",\n            \"$d2 01\",\n            \"$d2 03\",\n            \"$d2 05\",\n            \"$d2 07\",\n            \"$d2 09\",\n            \"$d2 11\",\n            \"$d2 13\",\n            \"$d2 15\",\n            \"$d2 17\",\n            \"$d2 19\",\n            \"$d2 21\",\n            \"$d2 23\",\n            \"$d3 01\",\n            \"$d3 03\",\n        ], $hours);\n\n        $period = $periodClass::between('first day of january this year', 'first day of next month')->interval('1 week');\n\n        $this->assertEquals(new Carbon('first day of january this year'), $period->getStartDate());\n        $this->assertEquals(new Carbon('first day of next month'), $period->getEndDate());\n        $this->assertSame('1 week', $period->getDateInterval()->forHumans());\n\n        $opt = $periodClass::EXCLUDE_START_DATE;\n        $int = '20 days';\n        $start = '2000-01-03';\n        $end = '2000-03-15';\n        $inclusive = false;\n        $period = $periodClass::options($opt)->setDateInterval($int)->setStartDate($start, $inclusive)->setEndDate($end, $inclusive);\n\n        $this->assertSame($start, $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame($end, $period->getEndDate()->format('Y-m-d'));\n        $this->assertSame(20, $period->getDateInterval()->dayz);\n        $this->assertSame($periodClass::EXCLUDE_START_DATE | $periodClass::EXCLUDE_END_DATE, $period->getOptions());\n\n        $inclusive = true;\n        $period = $periodClass::options($opt)->setDateInterval($int)->setStartDate($start, $inclusive)->setEndDate($end, $inclusive);\n\n        $this->assertSame($start, $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame($end, $period->getEndDate()->format('Y-m-d'));\n        $this->assertSame(20, $period->getDateInterval()->dayz);\n        $this->assertSame(0, $period->getOptions());\n\n        $period = $periodClass::options($opt)->setDateInterval($int)->setDates($start, $end);\n\n        $this->assertSame($start, $period->getStartDate()->format('Y-m-d'));\n        $this->assertSame($end, $period->getEndDate()->format('Y-m-d'));\n        $this->assertSame(20, $period->getDateInterval()->dayz);\n        $this->assertSame($opt, $period->getOptions());\n    }\n\n    public function testSetTimezone(): void\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            '2018-03-25 00:00 America/Toronto',\n            'PT1H',\n            '2018-03-25 12:00 Europe/London',\n        )->setTimezone('Europe/Oslo');\n\n        $this->assertSame('2018-03-25 06:00 Europe/Oslo', $period->getStartDate()->format('Y-m-d H:i e'));\n        $this->assertSame('2018-03-25 13:00 Europe/Oslo', $period->getEndDate()->format('Y-m-d H:i e'));\n\n        $period = $periodClass::create(\n            '2018-03-25 00:00 America/Toronto',\n            'PT1H',\n            5,\n        )->setTimezone('Europe/Oslo');\n\n        $this->assertSame('2018-03-25 06:00 Europe/Oslo', $period->getStartDate()->format('Y-m-d H:i e'));\n        $this->assertNull($period->getEndDate());\n        $this->assertSame('2018-03-25 10:00 Europe/Oslo', $period->calculateEnd()->format('Y-m-d H:i e'));\n    }\n\n    public function testShiftTimezone(): void\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            '2018-03-25 00:00 America/Toronto',\n            'PT1H',\n            '2018-03-25 12:00 Europe/London',\n        )->shiftTimezone('Europe/Oslo');\n\n        $this->assertSame('2018-03-25 00:00 Europe/Oslo', $period->getStartDate()->format('Y-m-d H:i e'));\n        $this->assertSame('2018-03-25 12:00 Europe/Oslo', $period->getEndDate()->format('Y-m-d H:i e'));\n\n        $period = $periodClass::create(\n            '2018-03-26 00:00 America/Toronto',\n            'PT1H',\n            5,\n        )->shiftTimezone('Europe/Oslo');\n\n        $this->assertSame('2018-03-26 00:00 Europe/Oslo', $period->getStartDate()->format('Y-m-d H:i e'));\n        $this->assertNull($period->getEndDate());\n        $this->assertSame('2018-03-26 04:00 Europe/Oslo', $period->calculateEnd()->format('Y-m-d H:i e'));\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/StrictModeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse BadMethodCallException;\nuse Carbon\\Carbon;\nuse Tests\\AbstractTestCase;\n\nclass StrictModeTest extends AbstractTestCase\n{\n    public function testCallWithStrictMode()\n    {\n        $this->expectExceptionObject(new BadMethodCallException(\n            'Method foobar does not exist.',\n        ));\n\n        $periodClass = static::$periodClass;\n        /** @var mixed $period */\n        $period = $periodClass::create();\n        $period->foobar();\n    }\n\n    public function testCallWithoutStrictMode()\n    {\n        Carbon::useStrictMode(false);\n        $periodClass = static::$periodClass;\n        /** @var mixed $period */\n        $period = $periodClass::create();\n        $this->assertSame($period, $period->foobar());\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/ToArrayTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonPeriodImmutable;\nuse Carbon\\Exceptions\\EndLessPeriodException;\nuse DateTimeInterface;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonPeriod\\Fixtures\\CarbonPeriodFactory;\n\nclass ToArrayTest extends AbstractTestCase\n{\n    public function testToArrayIsNotEmptyArray()\n    {\n        $result = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass)->toArray();\n\n        $this->assertIsArray($result);\n        $this->assertNotEmpty($result);\n    }\n\n    public function testToArrayHasCorrectCount()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertCount(3, $period->toArray());\n    }\n\n    public function testToArrayValuesAreCarbonInstances()\n    {\n        $result = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass)->toArray();\n\n        foreach ($result as $key => $current) {\n            $this->assertInstanceOfCarbon($current);\n        }\n    }\n\n    public function testToArrayKeysAreSequential()\n    {\n        $result = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass)->toArray();\n\n        $this->assertSame([0, 1, 2], array_keys($result));\n    }\n\n    public function testToArrayHasCorrectValues()\n    {\n        $result = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass)->toArray();\n\n        $this->assertSame(\n            $this->standardizeDates(['2012-07-04', '2012-07-10', '2012-07-16']),\n            $this->standardizeDates($result),\n        );\n    }\n\n    public function testJsonSerialize()\n    {\n        $result = json_encode(CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass));\n\n        $this->assertSame('[\"2012-07-04T04:00:00.000000Z\",\"2012-07-10T04:00:00.000000Z\",\"2012-07-16T04:00:00.000000Z\"]', $result);\n    }\n\n    public function testCountEmptyPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $assertThrow = function (CarbonPeriod $period) {\n            $message = null;\n\n            try {\n                $period->count();\n            } catch (EndLessPeriodException $exception) {\n                $message = $exception->getMessage();\n            }\n\n            $this->assertSame(\"Endless period can't be converted to array nor counted.\", $message);\n        };\n\n        $period = new $periodClass();\n        $this->assertTrue($period->isUnfilteredAndEndLess());\n        $assertThrow($period);\n        $this->assertSame(Carbon::now()->format('Y-m-d H:i:s'), $period->first()->format('Y-m-d H:i:s'));\n\n        foreach ($period as $date) {\n            break;\n        }\n\n        $date ??= null;\n        $this->assertInstanceOfCarbon($date);\n        $this->assertSame(Carbon::now()->format('Y-m-d H:i:s'), $date->format('Y-m-d H:i:s'));\n\n        $period = new $periodClass(INF);\n        $this->assertTrue($period->isUnfilteredAndEndLess());\n        $assertThrow($period);\n\n        $period = new $periodClass('2022-05-18', '1 day');\n        $this->assertTrue($period->isUnfilteredAndEndLess());\n        $assertThrow($period);\n\n        $period = new $periodClass('2022-05-18', '1 day', CarbonImmutable::endOfTime());\n        $this->assertTrue($period->isUnfilteredAndEndLess());\n        $assertThrow($period);\n\n        $period = new $periodClass('2022-05-18', '1 day');\n        $period->setDateClass(CarbonImmutable::class);\n        $period->setEndDate(CarbonImmutable::endOfTime());\n        $this->assertTrue($period->isUnfilteredAndEndLess());\n        $assertThrow($period);\n\n        $period = new $periodClass(3);\n        $this->assertFalse($period->isUnfilteredAndEndLess());\n        $this->assertSame(3, $period->count());\n\n        $period = new $periodClass('2022-05-18', '2022-05-23');\n        $this->assertFalse($period->isUnfilteredAndEndLess());\n        $this->assertSame(6, $period->count());\n\n        $period = new $periodClass('2022-05-18', INF);\n        $period = $period->addFilter(static function (DateTimeInterface $date) use ($periodClass) {\n            if ($date->format('Y-m-d') > '2022-05-20') {\n                return $periodClass::END_ITERATION;\n            }\n\n            return true;\n        });\n        $this->assertFalse($period->isUnfilteredAndEndLess());\n        $this->assertSame(3, $period->count());\n    }\n\n    public function testCountByMethod()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertSame(3, $period->count());\n    }\n\n    public function testCountByFunction()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertCount(3, $period);\n    }\n\n    public function testFirst()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertEquals(new Carbon('2012-07-04'), $period->first());\n    }\n\n    public function testLast()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $this->assertEquals(new Carbon('2012-07-16'), $period->last());\n    }\n\n    public function testToArrayOfEmptyPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $result = $periodClass::create(0)->toArray();\n\n        $this->assertSame([], $result);\n    }\n\n    public function testCountOfEmptyPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(0);\n\n        $this->assertSame(0, $period->count());\n    }\n\n    public function testFirstOfEmptyPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(0);\n\n        $this->assertNull($period->first());\n\n        $period = new class(0) extends CarbonPeriod {\n            public function isUnfilteredAndEndLess(): bool\n            {\n                return true;\n            }\n        };\n\n        $this->assertNull($period->first());\n    }\n\n    public function testLastOfEmptyPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(0);\n\n        $this->assertNull($period->last());\n    }\n\n    public function testRestoreIterationStateAfterCallingToArray()\n    {\n        $period = CarbonPeriodFactory::withEvenDaysFilter(static::$periodClass);\n\n        $key = $period->key();\n        $current = $period->current();\n\n        $this->assertSame(0, $key);\n        $this->assertEquals(new Carbon('2012-07-04'), $current);\n\n        $period->next();\n\n        $this->assertSame(\n            $this->standardizeDates(['2012-07-04', '2012-07-10', '2012-07-16']),\n            $this->standardizeDates($period->toArray()),\n        );\n\n        $this->assertSame(1, $period->key());\n        $this->assertEquals(new Carbon('2012-07-10'), $period->current());\n\n        $period->next();\n\n        $this->assertSame(2, $period->key());\n        $this->assertEquals(new Carbon('2012-07-16'), $period->current());\n    }\n\n    public function testToArrayResultsAreInTheExpectedTimezone()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2018-05-13 12:00 Asia/Kabul', 'PT1H', 3);\n\n        $expected = [\n            '2018-05-13 12:00:00 +04:30',\n            '2018-05-13 13:00:00 +04:30',\n            '2018-05-13 14:00:00 +04:30',\n        ];\n\n        $this->assertSame($expected, $this->standardizeDates($period->toArray()));\n    }\n\n    public function testDebugInfo()\n    {\n        $periodClass = static::$periodClass;\n        $dateClass = $periodClass === CarbonPeriodImmutable::class ? CarbonImmutable::class : Carbon::class;\n        $period = $periodClass::create('2018-05-13 12:00 Asia/Kabul', 'PT1H', 3);\n\n        $expected = [\n            'dateClass' => $dateClass,\n            'dateInterval' => CarbonInterval::hour()->optimize(),\n            'filters' => [\n                [\n                    $periodClass::RECURRENCES_FILTER,\n                    null,\n                ],\n            ],\n            'startDate' => $dateClass::parse('2018-05-13 12:00 Asia/Kabul'),\n            'recurrences' => 3,\n            ...($this->initialOptions ? ['options' => $this->initialOptions] : []),\n        ];\n        $actual = $period->__debugInfo();\n        $actual = array_combine(array_map(\n            static fn (string $key): string => preg_replace('/^\\000\\*\\000/', '', $key),\n            array_keys($actual),\n        ), $actual);\n        $interval = $actual['dateInterval'] ?? null;\n        $interval?->optimize();\n\n        $this->assertEquals($expected, $actual);\n\n        $period = $period->setRecurrences(5);\n\n        $actual = $period->__debugInfo();\n\n        $this->assertSame(5, $actual['recurrences']);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/ToDatePeriodTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\Translator;\nuse DatePeriod;\nuse DateTime;\nuse DateTimeImmutable;\nuse ReflectionMethod;\nuse Tests\\AbstractTestCase;\n\nclass ToDatePeriodTest extends AbstractTestCase\n{\n    public function testToArrayIsNotEmptyArray()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2021-01-05', '2021-02-15');\n        $result = $period->toDatePeriod();\n\n        $this->assertFalse($period->isEndExcluded());\n        $this->assertSame(DatePeriod::class, \\get_class($result));\n        $this->assertSame('2021-01-05', $result->getStartDate()->format('Y-m-d'));\n        $this->assertSame('2021-02-15', $result->getEndDate()->format('Y-m-d'));\n        // CarbonPeriod includes end date by default while DatePeriod will always exclude it\n        $dates = iterator_to_array($result);\n        $this->assertSame('2021-02-14', end($dates)->format('Y-m-d'));\n        $this->assertTrue($period->equalTo($periodClass::instance($result)));\n\n        $period = $periodClass::create('2021-01-05', '2021-02-15', $periodClass::EXCLUDE_END_DATE);\n        $result = $period->toDatePeriod();\n        $newInstance = $periodClass::instance($result);\n\n        $this->assertTrue($period->isEndExcluded());\n        $this->assertSame(DatePeriod::class, \\get_class($result));\n        $this->assertSame('2021-01-05', $result->getStartDate()->format('Y-m-d'));\n        $this->assertSame('2021-02-14', $result->getEndDate()->format('Y-m-d'));\n        $dates = iterator_to_array($result);\n        $this->assertSame('2021-02-13', end($dates)->format('Y-m-d'));\n        $this->assertSame('2021-01-05', $newInstance->getStartDate()->format('Y-m-d'));\n        $this->assertSame('2021-02-14', $newInstance->getEndDate()->format('Y-m-d'));\n\n        $period = $periodClass::create('2021-01-05', 3);\n        $result = $period->toDatePeriod();\n        $newInstance = $periodClass::instance($result);\n\n        $this->assertSame(DatePeriod::class, \\get_class($result));\n        $this->assertSame('2021-01-05', $result->getStartDate()->format('Y-m-d'));\n        $this->assertNull($result->getEndDate());\n        $dates = iterator_to_array($result);\n        $this->assertSame('2021-01-08', end($dates)->format('Y-m-d'));\n        $this->assertSame('2021-01-05', $newInstance->getStartDate()->format('Y-m-d'));\n        $this->assertSame(3, $newInstance->getRecurrences());\n    }\n\n    public function testWithIntervalLocalized()\n    {\n        CarbonInterval::setLocale('fr');\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create('2021-01-05', 3);\n        $result = $period->floor()->toDatePeriod();\n\n        $this->assertSame(DatePeriod::class, \\get_class($result));\n        $this->assertSame('2021-01-05', $result->getStartDate()->format('Y-m-d'));\n        $this->assertNull($result->getEndDate());\n\n        if (method_exists($result, 'getRecurrences')) {\n            $this->assertSame(3, $result->getRecurrences());\n        }\n\n        CarbonInterval::setLocale('en');\n    }\n\n    public function testWithModifiedEnglish()\n    {\n        $periodClass = static::$periodClass;\n        $translator = Translator::get('en');\n        $translator->setTranslations([\n            'day' => ':count boring day|:count boring days',\n        ]);\n        $period = $periodClass::create('2021-01-05', 3);\n        $result = $period->floor()->toDatePeriod();\n\n        $this->assertSame(DatePeriod::class, \\get_class($result));\n        $this->assertSame('2021-01-05', $result->getStartDate()->format('Y-m-d'));\n        $this->assertNull($result->getEndDate());\n\n        if (method_exists($result, 'getRecurrences')) {\n            $this->assertSame(3, $result->getRecurrences());\n        }\n\n        $translator->resetMessages();\n    }\n\n    public function testRawDate()\n    {\n        $periodClass = static::$periodClass;\n        $period = new $periodClass();\n        $method = new ReflectionMethod($periodClass, 'rawDate');\n\n        $this->assertNull($method->invoke($period, false));\n        $this->assertNull($method->invoke($period, null));\n\n        $date = new DateTime();\n        $this->assertSame($date, $method->invoke($period, $date));\n\n        $date = new DateTimeImmutable();\n        $this->assertSame($date, $method->invoke($period, $date));\n\n        $date = new Carbon();\n        $raw = $method->invoke($period, $date);\n        $this->assertInstanceOf(DateTime::class, $raw);\n        $this->assertEquals($date, $raw);\n\n        $date = new CarbonImmutable();\n        $raw = $method->invoke($period, $date);\n        $this->assertInstanceOf(DateTimeImmutable::class, $raw);\n        $this->assertEquals($date, $raw);\n\n        $date = new class() extends DateTime {\n            // void\n        };\n        $raw = $method->invoke($period, $date);\n        $this->assertInstanceOf(DateTime::class, $raw);\n        $this->assertEquals($date, $raw);\n\n        $date = new class() extends DateTimeImmutable {\n            // void\n        };\n        $raw = $method->invoke($period, $date);\n        $this->assertInstanceOf(DateTimeImmutable::class, $raw);\n        $this->assertEquals($date, $raw);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriod/ToStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriod;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCase;\n\nclass ToStringTest extends AbstractTestCase\n{\n    #[DataProvider('dataForToString')]\n    public function testToString($period, $expected)\n    {\n        Carbon::setLocale('en');\n        Carbon::setTestNowAndTimezone(new Carbon('2015-09-01', 'America/Toronto'));\n\n        $this->assertSame(\n            $expected,\n            $period->toString(),\n        );\n    }\n\n    public static function dataForToString(): array\n    {\n        $periodClass = static::$periodClass;\n        Carbon::setTestNowAndTimezone(new Carbon('2015-09-01', 'America/Toronto'));\n\n        $set = [\n            [\n                $periodClass::create('R4/2012-07-01T12:00:00/P7D'),\n                '4 times every 1 week from 2012-07-01 12:00:00',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30'),\n                    Carbon::parse('2015-10-03'),\n                ),\n                'Every 1 day from 2015-09-30 to 2015-10-03',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30 12:50'),\n                    CarbonInterval::days(3)->hours(5),\n                    Carbon::parse('2015-10-03 19:00'),\n                ),\n                'Every 3 days and 5 hours from 2015-09-30 12:50:00 to 2015-10-03 19:00:00',\n            ],\n            [\n                $periodClass::create('2015-09-30 17:30'),\n                'Every 1 day from 2015-09-30 17:30:00',\n            ],\n            [\n                $periodClass::create('P1M14D'),\n                'Every 1 month and 2 weeks from 2015-09-01',\n            ],\n            [\n                $periodClass::create('2015-09-30 13:30', 'P17D')->setRecurrences(1),\n                'Once every 2 weeks and 3 days from 2015-09-30 13:30:00',\n            ],\n            [\n                $periodClass::create('2015-10-01', '2015-10-05', 'PT30M'),\n                'Every 30 minutes from 2015-10-01 to 2015-10-05',\n            ],\n        ];\n\n        Carbon::setTestNowAndTimezone();\n\n        return array_combine(\n            array_column($set, 1),\n            $set,\n        );\n    }\n\n    public function testMagicToString()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            Carbon::parse('2015-09-30 12:50'),\n            CarbonInterval::days(3)->hours(5),\n            Carbon::parse('2015-10-03 19:00'),\n        );\n\n        $this->assertSame(\n            'Every 3 days and 5 hours from 2015-09-30 12:50:00 to 2015-10-03 19:00:00',\n            (string) $period,\n        );\n    }\n\n    #[DataProvider('dataForToIso8601String')]\n    public function testToIso8601String($period, $expected)\n    {\n        Carbon::setTestNowAndTimezone(new Carbon('2015-09-01', 'America/Toronto'));\n\n        $this->assertSame(\n            $expected,\n            $period->toIso8601String(),\n        );\n    }\n\n    public static function dataForToIso8601String(): array\n    {\n        $periodClass = static::$periodClass;\n        Carbon::setTestNowAndTimezone(new Carbon('2015-09-01', 'America/Toronto'));\n\n        $set = [\n            [\n                $periodClass::create('R4/2012-07-01T00:00:00-04:00/P7D'),\n                'R4/2012-07-01T00:00:00-04:00/P7D',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30', 'America/Toronto'),\n                    CarbonInterval::day(),\n                    Carbon::parse('2015-10-03', 'America/Toronto'),\n                ),\n                '2015-09-30T00:00:00-04:00/P1D/2015-10-03T00:00:00-04:00',\n            ],\n            [\n                $periodClass::createFromIso(\n                    '2015-09-30T00:00:00-04:00/P1D/2015-10-03T00:00:00-04:00'\n                ),\n                '2015-09-30T00:00:00-04:00/P1D/2015-10-03T00:00:00-04:00',\n            ],\n            [\n                $periodClass::createFromIso(\n                    '2015-09-30T00:00:00-04:00/2015-10-03T00:00:00-04:00',\n                ),\n                '2015-09-30T00:00:00-04:00/2015-10-03T00:00:00-04:00',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30', 'America/Toronto'),\n                    Carbon::parse('2015-10-03', 'America/Toronto'),\n                ),\n                '2015-09-30T00:00:00-04:00/2015-10-03T00:00:00-04:00',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30', 'America/Toronto'),\n                    CarbonInterval::day(),\n                    Carbon::parse('2015-10-03', 'America/Toronto'),\n                )->resetDateInterval(),\n                '2015-09-30T00:00:00-04:00/2015-10-03T00:00:00-04:00',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30 12:50', 'America/Toronto'),\n                    CarbonInterval::days(3)->hours(5),\n                    Carbon::parse('2015-10-03 19:00', 'America/Toronto'),\n                ),\n                '2015-09-30T12:50:00-04:00/P3DT5H/2015-10-03T19:00:00-04:00',\n            ],\n            [\n                $periodClass::create(\n                    Carbon::parse('2015-09-30 12:50', 'America/Toronto'),\n                    CarbonInterval::days(3),\n                ),\n                '2015-09-30T12:50:00-04:00/P3D',\n            ],\n            [\n                $periodClass::create('1 day'),\n                '2015-09-01T00:00:00-04:00/P1D',\n            ],\n            [\n                $periodClass::create(),\n                '2015-09-01T00:00:00-04:00',\n            ],\n        ];\n\n        Carbon::setTestNowAndTimezone();\n\n        return array_combine(\n            array_column($set, 1),\n            $set,\n        );\n    }\n\n    public function testSpec()\n    {\n        $periodClass = static::$periodClass;\n        $period = $periodClass::create(\n            Carbon::parse('2015-09-30'),\n            CarbonInterval::days(3)->hours(5),\n            Carbon::parse('2015-10-03'),\n        );\n\n        $this->assertSame(\n            '2015-09-30T00:00:00-04:00/P3DT5H/2015-10-03T00:00:00-04:00',\n            $period->spec(),\n        );\n    }\n\n    public function testStartOfWeekForPeriod()\n    {\n        $periodClass = static::$periodClass;\n        $sunday = CarbonImmutable::parse('2019-12-01');\n\n        $period = $periodClass::create($sunday->startOfWeek(), '1 week', $sunday->endOfWeek())->toArray();\n\n        $formattedSunday = $sunday->startOfWeek()->format('Y-m-d H:i:s');\n\n        $this->assertSame(\n            '2019-11-25 00:00:00',\n            $formattedSunday,\n        );\n\n        $this->assertSame(\n            $formattedSunday,\n            $period[0]->toImmutable()->startOfWeek()->format('Y-m-d H:i:s'),\n        );\n    }\n\n    public function testToStringCustomization()\n    {\n        $periodClass = static::$periodClass;\n        $sunday = CarbonImmutable::parse('2019-12-01');\n\n        $period = $periodClass::create($sunday->startOfWeek(), '1 week', $sunday->endOfWeek());\n\n        $this->assertSame(\n            'Every 1 week from 2019-11-25 00:00:00 to 2019-12-01 23:59:59!!',\n            $period.'!!'\n        );\n\n        $periodClass::setToStringFormat('m/d');\n\n        $this->assertSame(\n            'Every 1 week from 11/25 to 12/01!!',\n            $period.'!!'\n        );\n\n        $period->settings(['toStringFormat' => static function (CarbonPeriod $period) {\n            return $period->toIso8601String();\n        }]);\n\n        $this->assertSame(\n            '2019-11-25T00:00:00-05:00/P7D/2019-12-01T23:59:59-05:00!!',\n            $period.'!!'\n        );\n\n        $periodClass::resetToStringFormat();\n    }\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/AliasTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass AliasTest extends \\Tests\\CarbonPeriod\\AliasTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/CloneTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass CloneTest extends \\Tests\\CarbonPeriod\\CloneTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/ComparisonTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass ComparisonTest extends \\Tests\\CarbonPeriod\\ComparisonTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/CreateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass CreateTest extends \\Tests\\CarbonPeriod\\CreateTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/DynamicIntervalTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass DynamicIntervalTest extends \\Tests\\CarbonPeriod\\DynamicIntervalTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/FilterTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass FilterTest extends \\Tests\\CarbonPeriod\\FilterTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/GettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass GettersTest extends \\Tests\\CarbonPeriod\\GettersTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/IterationMethodsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass IterationMethodsTest extends \\Tests\\CarbonPeriod\\IterationMethodsTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/IteratorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass IteratorTest extends \\Tests\\CarbonPeriod\\IteratorTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/MacroTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass MacroTest extends \\Tests\\CarbonPeriod\\MacroTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/RoundingTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass RoundingTest extends \\Tests\\CarbonPeriod\\RoundingTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/SettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass SettersTest extends \\Tests\\CarbonPeriod\\SettersTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/StrictModeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass StrictModeTest extends \\Tests\\CarbonPeriod\\StrictModeTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/ToArrayTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass ToArrayTest extends \\Tests\\CarbonPeriod\\ToArrayTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/ToDatePeriodTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass ToDatePeriodTest extends \\Tests\\CarbonPeriod\\ToDatePeriodTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonPeriodImmutable/ToStringTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonPeriodImmutable;\n\nuse Carbon\\CarbonPeriodImmutable;\n\nclass ToStringTest extends \\Tests\\CarbonPeriod\\ToStringTest\n{\n    protected static string $periodClass = CarbonPeriodImmutable::class;\n}\n"
  },
  {
    "path": "tests/CarbonTimeZone/ConversionsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonTimeZone;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonTimeZone;\nuse DateTimeZone;\nuse Generator;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Medium;\nuse stdClass;\nuse Tests\\AbstractTestCaseWithOldNow;\n\n#[Medium]\nclass ConversionsTest extends AbstractTestCaseWithOldNow\n{\n    public function testToString()\n    {\n        $this->assertSame('+06:00', (string) (new CarbonTimeZone(6)));\n        $this->assertSame('Europe/Paris', (string) (new CarbonTimeZone('Europe/Paris')));\n    }\n\n    public function testToRegionName()\n    {\n        $this->assertSame('America/Chicago', (new CarbonTimeZone(-5))->toRegionName());\n        $this->assertSame('America/Toronto', (new CarbonTimeZone('America/Toronto'))->toRegionName());\n        $this->assertSame('America/New_York', (new CarbonTimeZone('America/Toronto'))->toOffsetTimeZone()->toRegionName());\n        $this->assertNull((new CarbonTimeZone(-15))->toRegionName());\n        $date = Carbon::parse('2018-12-20');\n        $this->assertSame('America/Chicago', (new CarbonTimeZone('America/Toronto'))->toOffsetTimeZone($date)->toRegionName($date));\n        $date = Carbon::parse('2020-06-11T12:30:00-02:30');\n        $this->assertSame('America/St_Johns', $date->getTimezone()->toRegionName($date));\n    }\n\n    public function testToRegionTimeZone()\n    {\n        $this->assertSame('America/Chicago', (new CarbonTimeZone(-5))->toRegionTimeZone()->getName());\n        $this->assertSame('America/Toronto', (new CarbonTimeZone('America/Toronto'))->toRegionTimeZone()->getName());\n        $this->assertSame('America/New_York', (new CarbonTimeZone('America/Toronto'))->toOffsetTimeZone()->toRegionTimeZone()->getName());\n        $date = Carbon::parse('2018-12-20');\n        $this->assertSame('America/Chicago', (new CarbonTimeZone('America/Toronto'))->toOffsetTimeZone($date)->toRegionTimeZone($date)->getName());\n    }\n\n    public static function dataForToOffsetName(): Generator\n    {\n        // timezone - number\n        yield ['2018-12-20', '-05:00', -5];\n        yield ['2018-06-20', '-05:00', -5];\n        // timezone - use offset\n        yield ['2018-12-20', '-05:00', '-05:00'];\n        yield ['2018-06-20', '-05:00', '-05:00'];\n        // timezone - by name - with daylight time\n        yield ['2018-12-20', '-05:00', 'America/Toronto'];\n        yield ['2018-06-20', '-04:00', 'America/Toronto'];\n        // timezone - by name - without daylight time\n        yield ['2018-12-20', '+03:00', 'Asia/Baghdad'];\n        yield ['2018-06-20', '+03:00', 'Asia/Baghdad'];\n        // timezone - no full hour - the same time\n        yield ['2018-12-20', '-09:30', 'Pacific/Marquesas'];\n        yield ['2018-06-20', '-09:30', 'Pacific/Marquesas'];\n        // timezone - no full hour -\n        yield ['2018-12-20', '-03:30', 'America/St_Johns'];\n        yield ['2018-06-20', '-02:30', 'America/St_Johns'];\n        // timezone - no full hour +\n        yield ['2018-12-20', '+13:45', 'Pacific/Chatham'];\n        yield ['2018-06-20', '+12:45', 'Pacific/Chatham'];\n        // timezone - UTC\n        yield ['2018-12-20', '+00:00', 'UTC'];\n        yield ['2018-06-20', '+00:00', 'UTC'];\n    }\n\n    #[DataProvider('dataForToOffsetName')]\n    public function testToOffsetName(string $date, string $expectedOffset, string|int $timezone)\n    {\n        Carbon::setTestNow(Carbon::parse($date));\n        $offset = (new CarbonTimeZone($timezone))->toOffsetName();\n\n        $this->assertSame($expectedOffset, $offset);\n    }\n\n    #[DataProvider('dataForToOffsetName')]\n    public function testToOffsetNameDateAsParam(string $date, string $expectedOffset, string|int $timezone)\n    {\n        $offset = (new CarbonTimeZone($timezone))->toOffsetName(Carbon::parse($date));\n\n        $this->assertSame($expectedOffset, $offset);\n    }\n\n    public function testToOffsetNameFromDifferentCreationMethods()\n    {\n        $summer = Carbon::parse('2020-06-15');\n        $winter = Carbon::parse('2018-12-20');\n        $this->assertSame('+02:00', (new CarbonTimeZone('Europe/Paris'))->toOffsetName());\n        $this->assertSame('+05:30', $this->firstValidTimezoneAmong(['Asia/Kolkata', 'Asia/Calcutta'])->toOffsetName());\n        $this->assertSame('+13:45', CarbonTimeZone::create('Pacific/Chatham')->toOffsetName($winter));\n        $this->assertSame('+12:00', CarbonTimeZone::create('Pacific/Auckland')->toOffsetName($summer));\n        $this->assertSame('-05:15', CarbonTimeZone::createFromHourOffset(-5.25)->toOffsetName());\n        $this->assertSame('-02:30', CarbonTimeZone::createFromMinuteOffset(-150)->toOffsetName());\n        $this->assertSame('-08:45', CarbonTimeZone::create('-8:45')->toOffsetName());\n        $this->assertSame('-09:30', CarbonTimeZone::create('Pacific/Marquesas')->toOffsetName());\n    }\n\n    public function testCast()\n    {\n        $tz = (new CarbonTimeZone('America/Toronto'))->cast(DateTimeZone::class);\n\n        $this->assertSame(DateTimeZone::class, \\get_class($tz));\n        $this->assertSame('America/Toronto', $tz->getName());\n\n        $obj = new class('UTC') extends CarbonTimeZone {\n        };\n        $class = \\get_class($obj);\n\n        $tz = (new CarbonTimeZone('America/Toronto'))->cast($class);\n\n        $this->assertSame($class, \\get_class($tz));\n        $this->assertSame('America/Toronto', $tz->getName());\n    }\n\n    public function testCastException()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'stdClass has not the instance() method needed to cast the date.',\n        ));\n\n        (new CarbonTimeZone('America/Toronto'))->cast(stdClass::class);\n    }\n\n    public function testInvalidRegionForOffset()\n    {\n        Carbon::useStrictMode(false);\n        $this->assertNull((new CarbonTimeZone(-15))->toRegionTimeZone());\n    }\n\n    public function testInvalidRegionForOffsetInStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidArgumentException(\n            'Unknown timezone for offset -54000 seconds.',\n        ));\n\n        (new CarbonTimeZone(-15))->toRegionTimeZone();\n    }\n}\n"
  },
  {
    "path": "tests/CarbonTimeZone/CreateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonTimeZone;\n\nuse Carbon\\CarbonTimeZone;\nuse Carbon\\Exceptions\\InvalidTimeZoneException;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\nuse Tests\\CarbonTimeZone\\Fixtures\\UnknownZone;\n\nclass CreateTest extends AbstractTestCase\n{\n    public function testCreate()\n    {\n        $tz = new CarbonTimeZone(6);\n\n        $this->assertInstanceOf(CarbonTimeZone::class, $tz);\n        $this->assertInstanceOf(DateTimeZone::class, $tz);\n        $this->assertSame('+06:00', $tz->getName());\n\n        $tz = CarbonTimeZone::create(6);\n\n        $this->assertSame('+06:00', $tz->getName());\n\n        $tz = CarbonTimeZone::create('+01');\n\n        $this->assertSame('+01:00', $tz->getName());\n\n        $tz = new CarbonTimeZone('+01');\n\n        $this->assertSame('+01:00', $tz->getName());\n\n        $tz = CarbonTimeZone::create('-01');\n\n        $this->assertSame('-01:00', $tz->getName());\n\n        $tz = new CarbonTimeZone('-01');\n\n        $this->assertSame('-01:00', $tz->getName());\n    }\n\n    public function testInstance()\n    {\n        $tz = new CarbonTimeZone('UTC');\n\n        $this->assertSame($tz, CarbonTimeZone::instance($tz));\n    }\n\n    public function testUnknown()\n    {\n        $tz = new UnknownZone('UTC');\n\n        $this->assertSame('unknown', $tz->getAbbreviatedName());\n    }\n\n    public function testSafeCreateDateTimeZoneWithoutStrictMode()\n    {\n        $this->expectExceptionObject(new InvalidTimeZoneException(\n            'Absolute timezone offset cannot be greater than 99.',\n        ));\n\n        new CarbonTimeZone(-15e15);\n    }\n}\n"
  },
  {
    "path": "tests/CarbonTimeZone/Fixtures/UnknownZone.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonTimeZone\\Fixtures;\n\nuse Carbon\\CarbonTimeZone;\nuse ReturnTypeWillChange;\n\nclass UnknownZone extends CarbonTimeZone\n{\n    #[ReturnTypeWillChange]\n    public function getName()\n    {\n        return 'foobar';\n    }\n}\n"
  },
  {
    "path": "tests/CarbonTimeZone/GettersTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CarbonTimeZone;\n\nuse Carbon\\CarbonTimeZone;\nuse Carbon\\FactoryImmutable;\nuse DateTimeImmutable;\nuse Tests\\AbstractTestCase;\n\nclass GettersTest extends AbstractTestCase\n{\n    public function testGetAbbr(): void\n    {\n        $tz = new CarbonTimeZone('Europe/London');\n\n        $this->assertSame('BST', $tz->getAbbr(true));\n        $this->assertSame('GMT', $tz->getAbbr(false));\n    }\n\n    public function testGetAbbreviatedName(): void\n    {\n        $tz = new CarbonTimeZone('Europe/London');\n\n        $this->assertSame('BST', $tz->getAbbreviatedName(true));\n        $this->assertSame('GMT', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Europe/Athens');\n\n        $this->assertSame('EEST', $tz->getAbbreviatedName(true));\n        $this->assertSame('EET', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Pacific/Auckland');\n\n        $this->assertSame('NZST', $tz->getAbbreviatedName(true));\n        $this->assertSame('NZMT', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('America/Toronto');\n\n        $this->assertSame('EDT', $tz->getAbbreviatedName(true));\n        $this->assertSame('EST', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Arctic/Longyearbyen');\n\n        $this->assertSame('CEST', $tz->getAbbreviatedName(true));\n        $this->assertSame('CET', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Atlantic/Faroe');\n\n        $this->assertSame('WEST', $tz->getAbbreviatedName(true));\n        $this->assertSame('WET', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Africa/Ceuta');\n\n        $this->assertSame('CEST', $tz->getAbbreviatedName(true));\n        $this->assertSame('CET', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Canada/Yukon');\n\n        $this->assertSame('PDT', $tz->getAbbreviatedName(true));\n        $this->assertSame('PST', $tz->getAbbreviatedName(false));\n\n        $tz = CarbonTimeZone::create('Asia/Pontianak');\n\n        $this->assertSame('unknown', $tz->getAbbreviatedName(true));\n        $this->assertSame('WIB', $tz->getAbbreviatedName(false));\n    }\n\n    public function testToRegionName(): void\n    {\n        $summer = new DateTimeImmutable('2024-08-19 12:00 UTC');\n        $tz = new CarbonTimeZone('Europe/London');\n\n        $this->assertSame('Europe/London', $tz->toRegionName($summer));\n\n        $tz = new CarbonTimeZone('+05:00');\n\n        $this->assertSame('Antarctica/Mawson', $tz->toRegionName($summer));\n\n        $tz = new CarbonTimeZone('+05:00');\n\n        $this->assertSame('Antarctica/Mawson', $tz->toRegionName($summer));\n\n        $factory = new FactoryImmutable();\n        $factory->setTestNowAndTimezone('2024-01-19 12:00 UTC');\n\n        $this->assertSame('-06:00', $factory->now('America/Chicago')->getTimezone()->toOffsetName());\n\n        // The 2 assertions below are the current behavior\n        // but it's questionable, as current time is in winter, -6 should give Chicago\n        // @TODO Check this deeper\n        $this->assertSame('America/Chicago', $factory->now('-05:00')->getTimezone()->toRegionName());\n        $this->assertSame('America/Denver', $factory->now('-06:00')->getTimezone()->toRegionName());\n\n        $factory->setTestNowAndTimezone('2024-08-19 12:00 UTC');\n\n        $this->assertSame('-05:00', $factory->now('America/Chicago')->getTimezone()->toOffsetName());\n        $this->assertSame('America/Chicago', $factory->now('-05:00')->getTimezone()->toRegionName());\n    }\n}\n"
  },
  {
    "path": "tests/Cli/Cli.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Carbon;\n\nclass Cli\n{\n    public static $lastParameters = [];\n\n    public function __invoke(...$parameters)\n    {\n        static::$lastParameters = $parameters;\n\n        return true;\n    }\n}\n"
  },
  {
    "path": "tests/Cli/InvokerTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Cli;\n\nuse Carbon\\Cli;\nuse Carbon\\Cli\\Invoker;\nuse Tests\\AbstractTestCase;\n\nclass InvokerTest extends AbstractTestCase\n{\n    public function testInvoke()\n    {\n        $invoker = new Invoker();\n        $lastCommand = null;\n        $exec = function ($command) use (&$lastCommand) {\n            $lastCommand = $command;\n        };\n\n        ob_start();\n        $return = $invoker('file', 'install', $exec);\n        $contents = ob_get_contents();\n        ob_end_clean();\n\n        $this->assertSame('composer require carbon-cli/carbon-cli --no-interaction', $lastCommand);\n        $this->assertSame('Installation succeeded.', $contents);\n        $this->assertTrue($return);\n\n        include_once __DIR__.'/Cli.php';\n\n        $invoker = new Invoker();\n        $lastCommand = null;\n\n        ob_start();\n        $return = $invoker('file', 'install', $exec);\n        $contents = ob_get_contents();\n        ob_end_clean();\n\n        $this->assertNull($lastCommand);\n        $this->assertSame('', $contents);\n        $this->assertTrue($return);\n        $this->assertSame(['file', 'install', $exec], Cli::$lastParameters);\n    }\n}\n"
  },
  {
    "path": "tests/CommonTraits/MacroContextNestingTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\CommonTraits;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse Tests\\AbstractTestCaseWithOldNow;\n\nclass MacroContextNestingTest extends AbstractTestCaseWithOldNow\n{\n    public static function dataForMacroableClassesWithReference(): array\n    {\n        return [\n            [Carbon::class, Carbon::parse('2010-05-23'), null],\n            [CarbonImmutable::class, CarbonImmutable::parse('2010-05-23'), null],\n            [CarbonInterval::class, CarbonInterval::make('P1M6D'), (string) (CarbonInterval::seconds(0))],\n            [CarbonPeriod::class, CarbonPeriod::create('2010-08-23', '2010-10-02'), null],\n        ];\n    }\n\n    public static function dataForMacroableClasses(): array\n    {\n        return array_map(\n            static fn (array $arguments) => \\array_slice($arguments, 0, 2),\n            self::dataForMacroableClassesWithReference(),\n        );\n    }\n\n    #[DataProvider('dataForMacroableClassesWithReference')]\n    public function testMacroContextNesting(string $class, mixed $sample, ?string $reference): void\n    {\n        $macro1 = 'macro'.(mt_rand(100, 999999) * 2);\n        $class::macro($macro1, static function () {\n            return self::this()->__toString();\n        });\n\n        $macro2 = 'macro'.(mt_rand(100, 999999) * 2 + 1);\n        $class::macro($macro2, static function () use ($macro1, $sample) {\n            $dates = [self::this()->$macro1()];\n\n            $dates[] = $sample->$macro1();\n            $dates[] = self::this()->$macro1();\n\n            return $dates;\n        });\n\n        $dates = $class::$macro2();\n\n        $this->assertSame([\n            $reference ?: (string) (new $class()),\n            (string) $sample,\n            $reference ?: (string) (new $class()),\n        ], $dates);\n    }\n\n    /**\n     * @param class-string $class\n     */\n    #[DataProvider('dataForMacroableClasses')]\n    public function testMacroContextDetectionNesting(string $class, mixed $sample)\n    {\n        $macro1 = 'macro'.(mt_rand(100, 999999) * 2);\n        $class::macro($macro1, static function () {\n            $context = self::context();\n\n            return $context ? \\get_class($context) : 'null';\n        });\n\n        $macro2 = 'macro'.(mt_rand(100, 999999) * 2 + 1);\n        $class::macro($macro2, static function () use ($macro1, $sample) {\n            $dump = [self::$macro1(), self::this()->$macro1()];\n\n            $dump[] = $sample->$macro1();\n            $dump[] = self::$macro1();\n\n            return $dump;\n        });\n\n        $dump = $class::$macro2();\n\n        $this->assertSame([\n            'null',\n            $class,\n            $class,\n            'null',\n        ], $dump);\n    }\n}\n"
  },
  {
    "path": "tests/Doctrine/CarbonTypesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Doctrine;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\Doctrine\\CarbonImmutableType;\nuse Carbon\\Doctrine\\CarbonType;\nuse Carbon\\Doctrine\\CarbonTypeConverter;\nuse Carbon\\Doctrine\\DateTimeDefaultPrecision;\nuse Carbon\\Doctrine\\DateTimeImmutableType;\nuse Carbon\\Doctrine\\DateTimeType;\nuse DateTimeImmutable;\nuse Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform;\nuse Doctrine\\DBAL\\Platforms\\DB2Platform;\nuse Doctrine\\DBAL\\Platforms\\MySQL57Platform;\nuse Doctrine\\DBAL\\Platforms\\MySQLPlatform;\nuse Doctrine\\DBAL\\Types\\ConversionException;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse Tests\\AbstractTestCase;\nuse Tests\\Fixtures\\CarbonTypeCase;\n\nclass CarbonTypesTest extends AbstractTestCase\n{\n    private static ?array $types = null;\n\n    public static function setUpBeforeClass(): void\n    {\n        foreach (static::dataForTypes() as [$case]) {\n            $case->initialize();\n        }\n    }\n\n    public static function dataForTypes(): array\n    {\n        return self::$types ??= self::generateDataForTypes();\n    }\n\n    #[Group('doctrine')]\n    #[DataProvider('dataForTypes')]\n    public function testGetSQLDeclaration(CarbonTypeCase $case): void\n    {\n        $type = $case->getType();\n\n        $adaptPrecisionToPlatform = method_exists(CarbonTypeConverter::class, 'getMaximumPrecision');\n        $precision = DateTimeDefaultPrecision::get();\n        $this->assertSame(6, $precision);\n        $supportZeroPrecision = self::supportsZeroPrecision();\n\n        $this->assertSame('DATETIME', $type->getSQLDeclaration($supportZeroPrecision ? [\n            'precision' => 0,\n        ] : [\n            'precision' => null,\n            'secondPrecision' => true,\n        ], $this->getMySQLPlatform()));\n\n        $this->assertSame('DATETIME(3)', $type->getSQLDeclaration([\n            'precision' => 3,\n        ], $this->getMySQLPlatform()));\n\n        $this->assertSame('TIMESTAMP(0)', $type->getSQLDeclaration($supportZeroPrecision ? [\n            'precision' => 0,\n        ] : [\n            'precision' => null,\n            'secondPrecision' => true,\n        ], new DB2Platform()));\n\n        $this->assertSame('TIMESTAMP(6)', $type->getSQLDeclaration([\n            'precision' => null,\n        ], new DB2Platform()));\n\n        $this->assertSame('TIMESTAMP(6)', $type->getSQLDeclaration($supportZeroPrecision ? [\n            'precision' => null,\n        ] : [\n            'precision' => 0,\n        ], new DB2Platform()));\n\n        $this->assertSame('DATETIME(6)', $type->getSQLDeclaration($supportZeroPrecision ? [\n            'precision' => null,\n        ] : [\n            'precision' => 0,\n        ], $this->getMySQLPlatform()));\n\n        $this->assertSame('DATETIME(6)', $type->getSQLDeclaration([\n            'precision' => null,\n        ], $this->getMySQLPlatform()));\n\n        DateTimeDefaultPrecision::set(4);\n        $this->assertSame('DATETIME(4)', $type->getSQLDeclaration([\n            'precision' => null,\n        ], $this->getMySQLPlatform()));\n\n        DateTimeDefaultPrecision::set(9);\n        $this->assertSame($adaptPrecisionToPlatform ? 'DATETIME(6)' : 'DATETIME(9)', $type->getSQLDeclaration([\n            'precision' => null,\n        ], $this->getMySQLPlatform()));\n\n        DateTimeDefaultPrecision::set(0);\n        $this->assertSame('DATETIME', $type->getSQLDeclaration([\n            'precision' => null,\n        ], $this->getMySQLPlatform()));\n\n        DateTimeDefaultPrecision::set($precision);\n    }\n\n    #[Group('doctrine')]\n    #[DataProvider('dataForTypes')]\n    public function testConvertToPHPValue(CarbonTypeCase $case): void\n    {\n        $type = $case->getType();\n\n        $this->assertNull($type->convertToPHPValue(null, $this->getMySQLPlatform()));\n\n        $date = $type->convertToPHPValue(Carbon::parse('2020-06-23 18:47'), $this->getMySQLPlatform());\n        $this->assertInstanceOf($case->class, $date);\n        $this->assertSame('2020-06-23 18:47:00.000000', $date->format('Y-m-d H:i:s.u'));\n\n        $date = $type->convertToPHPValue(new DateTimeImmutable('2020-06-23 18:47'), $this->getMySQLPlatform());\n        $this->assertInstanceOf($case->class, $date);\n        $this->assertSame('2020-06-23 18:47:00.000000', $date->format('Y-m-d H:i:s.u'));\n\n        $date = $type->convertToPHPValue('2020-06-23 18:47', $this->getMySQLPlatform());\n        $this->assertInstanceOf($case->class, $date);\n        $this->assertSame('2020-06-23 18:47:00.000000', $date->format('Y-m-d H:i:s.u'));\n    }\n\n    #[Group('doctrine')]\n    #[DataProvider('dataForTypes')]\n    public function testConvertToPHPValueFailure(CarbonTypeCase $case): void\n    {\n        $conversion = version_compare(self::getDbalVersion(), '4.0.0', '>=')\n            ? \"to \\\"$case->typeClass\\\" as an error was triggered by the unserialization: \"\n            : \"\\\"2020-0776-23 18:47\\\" to Doctrine Type $case->name. Expected format: \";\n        $this->expectExceptionObject(new ConversionException(\n            'Could not convert database value '.$conversion.\n            \"Y-m-d H:i:s.u or any format supported by $case->class::parse()\",\n        ));\n\n        $case->getType()->convertToPHPValue('2020-0776-23 18:47', $this->getMySQLPlatform());\n    }\n\n    #[Group('doctrine')]\n    #[DataProvider('dataForTypes')]\n    public function testConvertToDatabaseValue(CarbonTypeCase $case): void\n    {\n        $type = $case->getType();\n\n        $this->assertNull($type->convertToDatabaseValue(null, $this->getMySQLPlatform()));\n        $this->assertSame(\n            '2020-06-23 18:47:00.000000',\n            $type->convertToDatabaseValue(new DateTimeImmutable('2020-06-23 18:47'), $this->getMySQLPlatform()),\n        );\n    }\n\n    #[Group('doctrine')]\n    #[DataProvider('dataForTypes')]\n    public function testConvertToDatabaseValueFailure(CarbonTypeCase $case): void\n    {\n        $quote = class_exists('Doctrine\\\\DBAL\\\\Version') ? \"'\" : '';\n        $conversion = version_compare(self::getDbalVersion(), '4.0.0', '>=')\n            ? \"array to type $case->typeClass. \"\n            : \"{$quote}array{$quote} to type {$quote}$case->name{$quote}. \";\n        $this->expectExceptionObject(new ConversionException(\n            'Could not convert PHP value of type '.$conversion.\n            'Expected one of the following types: null, DateTime, Carbon',\n        ));\n\n        $case->getType()->convertToDatabaseValue([2020, 06, 23], $this->getMySQLPlatform());\n    }\n\n    #[Group('doctrine')]\n    #[DataProvider('dataForTypes')]\n    public function testRequiresSQLCommentHint(CarbonTypeCase $case): void\n    {\n        if (version_compare(self::getDbalVersion(), '4.0.0', '>=')) {\n            $this->markTestSkipped('requiresSQLCommentHint dropped since DBAL 4');\n        }\n\n        $this->assertSame(\n            $case->hintRequired,\n            $case->getType()->requiresSQLCommentHint($this->getMySQLPlatform()),\n        );\n    }\n\n    private static function getDbalVersion(): string\n    {\n        static $dbalVersion = null;\n\n        if ($dbalVersion === null) {\n            $installed = require __DIR__.'/../../vendor/composer/installed.php';\n            $dbalVersion = $installed['versions']['doctrine/dbal']['version'] ?? '2.0.0';\n        }\n\n        return $dbalVersion;\n    }\n\n    private static function supportsZeroPrecision(): bool\n    {\n        return version_compare(self::getDbalVersion(), '3.7.0', '>=');\n    }\n\n    private function getMySQLPlatform(): AbstractMySQLPlatform\n    {\n        return class_exists(MySQLPlatform::class) ? new MySQLPlatform() : new MySQL57Platform();\n    }\n\n    private static function generateDataForTypes(): array\n    {\n        $supportZeroPrecision = self::supportsZeroPrecision();\n\n        $types = [\n            [new CarbonTypeCase($supportZeroPrecision ? 'date_time' : 'datetime', Carbon::class, DateTimeType::class, false)],\n            [new CarbonTypeCase($supportZeroPrecision ? 'date_time_immutable' : 'datetime_immutable', CarbonImmutable::class, DateTimeImmutableType::class, true)],\n            [new CarbonTypeCase('carbon', Carbon::class, CarbonType::class, !$supportZeroPrecision)],\n            [new CarbonTypeCase('carbon_immutable', CarbonImmutable::class, CarbonImmutableType::class, true)],\n        ];\n\n        return array_combine(array_column($types, 0), $types);\n    }\n}\n"
  },
  {
    "path": "tests/Factory/CallbackTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Factory;\n\nuse Carbon\\Callback;\nuse Carbon\\CarbonInterface;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\CarbonTimeZone;\nuse DateInterval;\nuse DatePeriod;\nuse DateTimeImmutable;\nuse DateTimeZone;\nuse Tests\\AbstractTestCase;\n\nclass CallbackTest extends AbstractTestCase\n{\n    public function testGetReflectionFunction(): void\n    {\n        $closure = static fn () => 4;\n        $callback = Callback::fromClosure($closure);\n        $function = $callback->getReflectionFunction();\n\n        $this->assertSame($function, $callback->getReflectionFunction());\n        $this->assertSame($closure, $function->getClosure());\n    }\n\n    public function testCall(): void\n    {\n        $closure = static function (CarbonInterface $date, CarbonInterval $interval, string $text, ?CarbonTimeZone $timezone, CarbonPeriod $period): string {\n            return implode(', ', [$text, $date->monthName, $interval->seconds, $timezone?->getName(), $period->getRecurrences()]);\n        };\n\n        $callback = Callback::fromClosure($closure);\n        $result = $callback->call(\n            new DateTimeImmutable('2024-01-18'),\n            new DateInterval('PT1M30S'),\n            'foo',\n            new DateTimeZone('CET'),\n            new DatePeriod(\n                new DateTimeImmutable('2012-07-01T00:00:00'),\n                new DateInterval('P1D'),\n                7,\n            ),\n        );\n\n        $this->assertSame('foo, January, 30, CET, 7', $result);\n\n        $result = $callback->call(\n            interval: new DateInterval('PT1M21S'),\n            date: new DateTimeImmutable('2024-02-18'),\n            period: new DatePeriod(\n                new DateTimeImmutable('2012-07-01T00:00:00'),\n                new DateInterval('P1D'),\n                4,\n            ),\n            timezone: null,\n            text: 'bar',\n        );\n\n        $this->assertSame('bar, February, 21, , 4', $result);\n    }\n\n    public function testParameter(): void\n    {\n        $closure = static function (CarbonInterface $date, CarbonInterval $interval, string $text, ?CarbonTimeZone $timezone, CarbonPeriod $period): string {\n            return implode(', ', [$text, $date->monthName, $interval->seconds, $timezone?->getName(), $period->getRecurrences()]);\n        };\n\n        $interval = new DateInterval('P1D');\n\n        $this->assertSame($interval, Callback::parameter($closure, $interval));\n        $this->assertSame($interval, Callback::parameter($closure, $interval, 0));\n        $this->assertSame($interval, Callback::parameter($closure, $interval, 5));\n        $this->assertSame($interval, Callback::parameter($closure, $interval, 'diff'));\n        $this->assertSame($interval, Callback::parameter($closure, $interval, 'date'));\n        $this->assertSame($interval, Callback::parameter($interval, $interval, 1));\n        $this->assertSame($interval, Callback::parameter(static fn (FooBar $foo) => 42, $interval));\n\n        $result = Callback::parameter($closure, $interval, 'interval');\n\n        $this->assertSame(CarbonInterval::class, $result::class);\n        $this->assertSame('1 day', $result->forHumans());\n\n        $result = Callback::parameter($closure, $interval, 1);\n\n        $this->assertSame(CarbonInterval::class, $result::class);\n        $this->assertSame('1 day', $result->forHumans());\n    }\n}\n"
  },
  {
    "path": "tests/Factory/FactoryTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Factory;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterface;\nuse Carbon\\Factory;\nuse Carbon\\FactoryImmutable;\nuse DateTimeImmutable;\nuse Psr\\Clock\\ClockInterface;\nuse ReflectionFunction;\nuse RuntimeException;\nuse Tests\\AbstractTestCase;\nuse Tests\\Carbon\\Fixtures\\MyCarbon;\n\nclass FactoryTest extends AbstractTestCase\n{\n    public function testFactory()\n    {\n        $factory = new Factory();\n\n        $this->assertInstanceOf(Carbon::class, $factory->parse('2018-01-01'));\n        $this->assertSame('01/01/2018', $factory->parse('2018-01-01')->format('d/m/Y'));\n\n        $factory = new Factory([\n            'locale' => 'fr',\n        ]);\n\n        $this->assertSame('fr', $factory->parse('2018-01-01')->locale);\n\n        $factory = new Factory([\n            'locale' => 'fr',\n        ], MyCarbon::class);\n\n        $this->assertInstanceOf(MyCarbon::class, $factory->parse('2018-01-01'));\n        $this->assertSame('01/01/2018', $factory->parse('2018-01-01')->format('d/m/Y'));\n\n        $factory = new FactoryImmutable([\n            'locale' => 'fr',\n        ]);\n\n        $this->assertInstanceOf(CarbonImmutable::class, $factory->parse('2018-01-01'));\n        $this->assertSame('01/01/2018', $factory->parse('2018-01-01')->format('d/m/Y'));\n    }\n\n    public function testFactoryModification()\n    {\n        $factory = new Factory();\n\n        $this->assertSame(Carbon::class, $factory->className());\n        $this->assertSame($factory, $factory->className(MyCarbon::class));\n        $this->assertSame(MyCarbon::class, $factory->className());\n\n        $this->assertSame([], $factory->settings());\n        $this->assertSame($factory, $factory->settings([\n            'locale' => 'fr',\n        ]));\n        $this->assertSame([\n            'locale' => 'fr',\n        ], $factory->settings());\n\n        $this->assertSame($factory, $factory->mergeSettings([\n            'timezone' => 'Europe/Paris',\n        ]));\n        $this->assertSame([\n            'locale' => 'fr',\n            'timezone' => 'Europe/Paris',\n        ], $factory->settings());\n\n        $this->assertSame($factory, $factory->settings([\n            'timezone' => 'Europe/Paris',\n        ]));\n        $this->assertSame([\n            'timezone' => 'Europe/Paris',\n        ], $factory->settings());\n    }\n\n    public function testFactoryTimezone()\n    {\n        Carbon::setTestNowAndTimezone(Carbon::parse('2020-09-04 03:39:04.123456', 'UTC'));\n\n        $factory = new Factory();\n\n        $date = $factory->now();\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame('2020-09-04 03:39:04.123456 UTC', $date->format('Y-m-d H:i:s.u e'));\n\n        $factory = new Factory([\n            'timezone' => 'Europe/Paris',\n        ]);\n\n        $this->assertSame('2020-09-04 05:39:04.123456 Europe/Paris', $factory->now()->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2020-09-04 00:00:00.000000 Europe/Paris', $factory->today()->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2020-09-05 00:00:00.000000 Europe/Paris', $factory->tomorrow()->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2020-09-04 09:39:04.123456 Europe/Paris', $factory->parse('2020-09-04 09:39:04.123456')->format('Y-m-d H:i:s.u e'));\n\n        $factory = new Factory([\n            'timezone' => 'America/Toronto',\n        ]);\n\n        $this->assertSame('2020-09-03 23:39:04.123456 America/Toronto', $factory->now()->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2020-09-03 00:00:00.000000 America/Toronto', $factory->today()->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2020-09-04 00:00:00.000000 America/Toronto', $factory->tomorrow()->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2020-09-04 09:39:04.123456 America/Toronto', $factory->parse('2020-09-04 09:39:04.123456')->format('Y-m-d H:i:s.u e'));\n\n        $factory = new Factory([\n            'timezone' => 'Asia/Shanghai',\n        ]);\n\n        $baseDate = Carbon::parse('2021-08-01 08:00:00', 'UTC');\n\n        $date = $factory->createFromTimestamp($baseDate->getTimestamp());\n        $this->assertSame('2021-08-01T16:00:00+08:00', $date->format('c'));\n\n        $date = $factory->make('2021-08-01 08:00:00');\n        $this->assertSame('2021-08-01T08:00:00+08:00', $date->format('c'));\n\n        $date = $factory->make($baseDate);\n        $this->assertSame('2021-08-01T16:00:00+08:00', $date->format('c'));\n\n        $date = $factory->create($baseDate);\n        $this->assertSame('2021-08-01T16:00:00+08:00', $date->format('c'));\n\n        $date = $factory->parse($baseDate);\n        $this->assertSame('2021-08-01T16:00:00+08:00', $date->format('c'));\n\n        $date = $factory->instance($baseDate);\n        $this->assertSame('2021-08-01T16:00:00+08:00', $date->format('c'));\n\n        $date = $factory->make('2021-08-01 08:00:00+00:20');\n        $this->assertSame('2021-08-01T08:00:00+00:20', $date->format('c'));\n\n        $date = $factory->parse('2021-08-01T08:00:00Z');\n        $this->assertSame('2021-08-01T08:00:00+00:00', $date->format('c'));\n\n        $date = $factory->create('2021-08-01 08:00:00 UTC');\n        $this->assertSame('2021-08-01T08:00:00+00:00', $date->format('c'));\n\n        $date = $factory->make('2021-08-01 08:00:00 Europe/Paris');\n        $this->assertSame('2021-08-01T08:00:00+02:00', $date->format('c'));\n    }\n\n    public function testPsrClock()\n    {\n        FactoryImmutable::setCurrentClock(null);\n        FactoryImmutable::getDefaultInstance()->setTestNow(null);\n        $initial = Carbon::now('UTC');\n        $factory = new FactoryImmutable();\n        $factory->setTestNow($initial);\n        $this->assertInstanceOf(ClockInterface::class, $factory);\n        $this->assertInstanceOf(DateTimeImmutable::class, $factory->now());\n        $this->assertInstanceOf(CarbonImmutable::class, $factory->now());\n        $this->assertSame('America/Toronto', $factory->now()->tzName);\n        $this->assertSame('UTC', $factory->now('UTC')->tzName);\n\n        $timezonedFactory = $factory->withTimeZone('Asia/Tokyo');\n        $this->assertInstanceOf(CarbonImmutable::class, $timezonedFactory->now());\n        $this->assertSame('Asia/Tokyo', $timezonedFactory->now()->tzName);\n        $this->assertSame('America/Toronto', $timezonedFactory->now('America/Toronto')->tzName);\n\n        $this->assertSame(\n            $initial->format('Y-m-d H:i:s.u'),\n            $factory->now('UTC')->format('Y-m-d H:i:s.u'),\n        );\n\n        $before = microtime(true);\n        $factory->sleep(5);\n        $factory->sleep(20);\n        $after = microtime(true);\n\n        $this->assertLessThan(0.1, $after - $before);\n\n        $this->assertSame(\n            $initial->copy()->addSeconds(25)->format('Y-m-d H:i:s.u'),\n            $factory->now('UTC')->format('Y-m-d H:i:s.u'),\n        );\n\n        $factory = new FactoryImmutable();\n        $factory->setTestNow(null);\n        $before = new DateTimeImmutable('now UTC');\n        $now = $factory->now('UTC');\n        $after = new DateTimeImmutable('now UTC');\n\n        $this->assertGreaterThanOrEqual($before, $now);\n        $this->assertLessThanOrEqual($after, $now);\n\n        $before = new DateTimeImmutable('now UTC');\n        $factory->sleep(0.5);\n        $after = new DateTimeImmutable('now UTC');\n\n        $this->assertSame(\n            5,\n            (int) round(10 * ((float) $after->format('U.u') - ((float) $before->format('U.u')))),\n        );\n    }\n\n    public function testIsolation(): void\n    {\n        CarbonImmutable::setTestNow('1990-07-31 23:59:59');\n\n        $libAFactory = new FactoryImmutable();\n        $libAFactory->setTestNow('2000-02-05 15:20:00');\n\n        $libBFactory = new FactoryImmutable();\n        $libBFactory->setTestNow('2050-12-01 00:00:00');\n\n        $this->assertSame('2000-02-05 15:20:00', (string) $libAFactory->now());\n        $this->assertSame('2050-12-01 00:00:00', (string) $libBFactory->now());\n        $this->assertSame('1990-07-31 23:59:59', (string) CarbonImmutable::now());\n\n        CarbonImmutable::setTestNow();\n    }\n\n    public function testClosureMock(): void\n    {\n        $factory = new Factory();\n        $now = Carbon::parse('2024-01-18 00:00:00');\n        $factory->setTestNow(static fn () => $now);\n\n        $result = $factory->now();\n\n        $this->assertNotSame($now, $result);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $result->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testClosureMockTypeFailure(): void\n    {\n        $factory = new Factory();\n        $closure = static fn () => 42;\n        $factory->setTestNow($closure);\n        $function = new ReflectionFunction($closure);\n\n        $this->expectExceptionObject(new RuntimeException(\n            'The test closure defined in '.$function->getFileName().\n            ' at line '.$function->getStartLine().' returned integer'.\n            '; expected '.CarbonInterface::class.'|null',\n        ));\n\n        $factory->now();\n    }\n}\n"
  },
  {
    "path": "tests/Factory/WrapperClockTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Factory;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\Factory;\nuse Carbon\\FactoryImmutable;\nuse Carbon\\WrapperClock;\nuse DateTime;\nuse DateTimeImmutable;\nuse DateTimeZone;\nuse Psr\\Clock\\ClockInterface;\nuse RuntimeException;\nuse Tests\\AbstractTestCase;\n\nclass WrapperClockTest extends AbstractTestCase\n{\n    public function testWrapperClock(): void\n    {\n        $now = new DateTimeImmutable('now UTC');\n        $clock = new WrapperClock($now);\n\n        $this->assertSame($now, $clock->now());\n        $this->assertSame($now, $clock->unwrap());\n\n        $carbon = $clock->getFactory()->now();\n\n        $this->assertSame(CarbonImmutable::class, $carbon::class);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $carbon->format('Y-m-d H:i:s.u e'));\n\n        $carbon = $clock->nowAs(Carbon::class, 'Europe/Berlin');\n\n        $this->assertSame(Carbon::class, $carbon::class);\n        $this->assertSame(\n            $now->setTimezone(new DateTimeZone('Europe/Berlin'))->format('Y-m-d H:i:s.u e'),\n            $carbon->format('Y-m-d H:i:s.u e'),\n        );\n\n        $carbon = $clock->nowAsCarbon();\n\n        $this->assertSame(CarbonImmutable::class, $carbon::class);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $carbon->format('Y-m-d H:i:s.u e'));\n\n        $clock = new WrapperClock($carbon);\n\n        $this->assertSame($clock->nowAsCarbon(), $carbon);\n    }\n\n    public function testWrapperClockMutable(): void\n    {\n        $now = new DateTime('now UTC');\n        $clock = new WrapperClock($now);\n        $result = $clock->now();\n        $unwrapped = $clock->unwrap();\n\n        $this->assertNotSame($now, $result);\n        $this->assertSame($now, $unwrapped);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $result->format('Y-m-d H:i:s.u e'));\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $unwrapped->format('Y-m-d H:i:s.u e'));\n\n        $carbon = $clock->getFactory()->now();\n\n        $this->assertSame(Carbon::class, $carbon::class);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $carbon->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testWrapperClockPsrLink(): void\n    {\n        $now = new DateTimeImmutable('now UTC');\n        $psrClock = new class($now) implements ClockInterface {\n            public function __construct(private readonly DateTimeImmutable $currentTime)\n            {\n            }\n\n            public function now(): DateTimeImmutable\n            {\n                return $this->currentTime;\n            }\n        };\n        $clock = new WrapperClock($psrClock);\n        $result = $clock->now();\n        $unwrapped = $clock->unwrap();\n        $unwrappedNow = $unwrapped->now();\n\n        $this->assertSame($now, $result);\n        $this->assertSame($psrClock, $unwrapped);\n        $this->assertSame($now, $unwrappedNow);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $result->format('Y-m-d H:i:s.u e'));\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $unwrappedNow->format('Y-m-d H:i:s.u e'));\n\n        $carbon = $clock->getFactory()->now();\n\n        $this->assertSame(CarbonImmutable::class, $carbon::class);\n        $this->assertSame($now->format('Y-m-d H:i:s.u e'), $carbon->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testSleep(): void\n    {\n        $factory = new FactoryImmutable();\n        $factory->setTestNowAndTimezone(new DateTimeImmutable('2024-01-18 00:00 UTC'));\n\n        $clock = new WrapperClock($factory);\n        $clock->sleep(2.5);\n        $carbon = $clock->now();\n\n        $this->assertSame(CarbonImmutable::class, $carbon::class);\n        $this->assertSame('2024-01-18 00:00:02.500000 UTC', $carbon->format('Y-m-d H:i:s.u e'));\n\n        $present = new DateTimeImmutable('2024-01-18 00:00 UTC');\n        $clock = new WrapperClock($present);\n        $clock->sleep(2.5);\n        $now = $clock->now();\n\n        $this->assertSame(DateTimeImmutable::class, $now::class);\n        $this->assertSame('2024-01-18 00:00:02.500000 UTC', $now->format('Y-m-d H:i:s.u e'));\n\n        $future = new DateTimeImmutable('2224-01-18 00:00 UTC');\n        $seconds = $future->getTimestamp() - $present->getTimestamp() + 0.000_001;\n        $clock->sleep($seconds);\n        $now = $clock->now();\n\n        $this->assertSame('2224-01-18 00:00:02.500001 UTC', $now->format('Y-m-d H:i:s.u e'));\n\n        $present = new DateTime('2024-01-18 00:00 UTC');\n        $clock = new WrapperClock($present);\n        $clock->sleep(2.5);\n        $now = $clock->now();\n\n        $this->assertSame(CarbonImmutable::class, $now::class);\n        $this->assertSame('2024-01-18 00:00:02.500000 UTC', $now->format('Y-m-d H:i:s.u e'));\n        $this->assertSame('2024-01-18 00:00:00.000000 UTC', $present->format('Y-m-d H:i:s.u e'));\n\n        $clock->sleep(0);\n        $clock->sleep(0.0);\n        $now = $clock->now();\n\n        $this->assertSame('2024-01-18 00:00:02.500000 UTC', $now->format('Y-m-d H:i:s.u e'));\n\n        $clock = new WrapperClock(new class() implements ClockInterface {\n            public function now(): DateTimeImmutable\n            {\n                return new DateTimeImmutable('2024-01-18 00:00 UTC');\n            }\n        });\n        $clock->sleep(2.5);\n        $now = $clock->now();\n\n        $this->assertSame(DateTimeImmutable::class, $now::class);\n        $this->assertSame('2024-01-18 00:00:02.500000 UTC', $now->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testSleepNegative(): void\n    {\n        $this->expectExceptionObject(new RuntimeException(\n            'Expected positive number of seconds, -1.0E-6 given',\n        ));\n\n        $present = new DateTimeImmutable('2024-01-18 00:00 UTC');\n        $clock = new WrapperClock($present);\n        $clock->sleep(-0.000_001);\n    }\n\n    public function testWithTimezoneOnFactory(): void\n    {\n        $factory = new FactoryImmutable();\n        $factory->setTestNowAndTimezone(new DateTimeImmutable('2024-01-18 00:00 UTC'));\n\n        $clock = new WrapperClock($factory);\n        $clock->sleep(2.5);\n\n        $carbon = $clock->now();\n\n        $this->assertSame(CarbonImmutable::class, $carbon::class);\n        $this->assertSame('2024-01-18 00:00:02.500000 UTC', $carbon->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testWithTimezone(): void\n    {\n        $factory = new FactoryImmutable();\n        $factory->setTestNowAndTimezone(new DateTimeImmutable('2024-01-18 00:00 UTC'));\n        $clock = new WrapperClock($factory);\n        $now = $clock->withTimeZone('Pacific/Auckland')->now();\n\n        $this->assertSame(CarbonImmutable::class, $now::class);\n        $this->assertSame(\n            '2024-01-18 13:00:00.000000 Pacific/Auckland',\n            $now->format('Y-m-d H:i:s.u e'),\n        );\n\n        $factory = new Factory();\n        $factory->setTestNowAndTimezone(Carbon::parse('2024-01-18 00:00 UTC'));\n        $clock = new WrapperClock($factory);\n        $now = $clock->withTimeZone('Pacific/Auckland')->now();\n\n        $this->assertSame(CarbonImmutable::class, $now::class);\n        $this->assertSame(\n            '2024-01-18 13:00:00.000000 Pacific/Auckland',\n            $now->format('Y-m-d H:i:s.u e'),\n        );\n\n        $clock = new WrapperClock(new DateTimeImmutable('2024-01-18 00:00 UTC'));\n        $now = $clock->withTimeZone('Pacific/Auckland')->now();\n\n        $this->assertSame(DateTimeImmutable::class, $now::class);\n        $this->assertSame(\n            '2024-01-18 13:00:00.000000 Pacific/Auckland',\n            $now->format('Y-m-d H:i:s.u e'),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Fixtures/CarbonTimezoneTrait.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonInterface;\n\ntrait CarbonTimezoneTrait\n{\n    public function toAppTz(bool $shift = false, string $tz = 'UTC'): CarbonInterface\n    {\n        return $shift\n            ? $this->shiftTimezone($tz)\n            : $this->timezone($tz);\n    }\n\n    public function copyWithAppTz(bool $shift = false, string $tz = 'UTC'): CarbonInterface\n    {\n        return ($shift\n            ? $this->shiftTimezone($tz)\n            : $this->timezone($tz)\n        )->copy();\n    }\n}\n"
  },
  {
    "path": "tests/Fixtures/CarbonTypeCase.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Fixtures;\n\nuse Doctrine\\DBAL\\Types\\Type;\n\nfinal class CarbonTypeCase\n{\n    public function __construct(\n        public readonly string $name,\n        public readonly string $class,\n        public readonly string $typeClass,\n        public readonly bool $hintRequired,\n    ) {\n    }\n\n    public function initialize(): void\n    {\n        Type::hasType($this->name)\n            ? Type::overrideType($this->name, $this->typeClass)\n            : Type::addType($this->name, $this->typeClass);\n    }\n\n    public function getType(): Type\n    {\n        return Type::getType($this->name);\n    }\n\n    public function __toString(): string\n    {\n        $hintRequired = json_encode($this->hintRequired);\n\n        return \"CarbonTypeCase('$this->name', '$this->class', '$this->typeClass', $hintRequired)\";\n    }\n}\n"
  },
  {
    "path": "tests/Fixtures/DateMalformedIntervalStringException.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nclass DateMalformedIntervalStringException extends Exception\n{\n}\n"
  },
  {
    "path": "tests/Fixtures/DateMalformedStringException.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nclass DateMalformedStringException extends Exception\n{\n}\n"
  },
  {
    "path": "tests/Fixtures/SubCarbon.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\Carbon;\n\nclass SubCarbon extends Carbon\n{\n}\n"
  },
  {
    "path": "tests/Fixtures/SubCarbonImmutable.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonImmutable;\n\nclass SubCarbonImmutable extends CarbonImmutable\n{\n}\n"
  },
  {
    "path": "tests/Fixtures/dynamicInterval.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\CarbonInterval;\n\nreturn new CarbonInterval(function (DateTimeInterface $date, bool $negated = false): DateTime {\n    $sign = $negated ? '-' : '+';\n    $days = $date->format('j');\n\n    return new DateTime(\n        $date->modify(\"$sign $days days\")\n            ->format('Y-m-d H:i:s'),\n    );\n});\n"
  },
  {
    "path": "tests/Jenssegers/DateTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nuse Carbon\\Carbon;\nuse DateTimeImmutable;\n\nclass DateTest extends TestCaseBase\n{\n    public function testConstructFromString()\n    {\n        Carbon::setTestNow();\n\n        $date = new Carbon('2013-01-31');\n        $this->assertSame(1359590400, $date->getTimestamp());\n\n        $before = (new DateTimeImmutable())->getTimestamp();\n        $date = new Carbon('1 day ago');\n        $after = (new DateTimeImmutable())->getTimestamp();\n        $this->assertGreaterThanOrEqual($before - 86400, $date->getTimestamp());\n        $this->assertLessThanOrEqual($after - 86400, $date->getTimestamp());\n    }\n\n    public function testConstructTimestamp()\n    {\n        $date = new Carbon('@1367186296');\n        $this->assertSame(1367186296, $date->getTimestamp());\n    }\n\n    public function testMake()\n    {\n        $date1 = Carbon::make('Sunday 28 April 2013 21:58:16');\n        $date2 = new Carbon('Sunday 28 April 2013 21:58:16');\n        $this->assertEquals($date1, $date2);\n    }\n\n    public function testCreateFromCarbon()\n    {\n        // Preferred way\n        $date = Carbon::make(Carbon::createFromFormat('U', '1367186296'));\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(1367186296, $date->getTimestamp());\n\n        // Accepted for backward-compatibility with some libraries\n        $date = Carbon::make(Carbon::createFromFormat('!U', 1367186296));\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(1367186296, $date->getTimestamp());\n\n        // Deprecated usage\n        $date = Carbon::make(Carbon::createFromFormat('!md', 1225));\n        $this->assertInstanceOf(Carbon::class, $date);\n        $this->assertSame(30931200, $date->getTimestamp());\n    }\n\n    public function testManipulation()\n    {\n        $now = Carbon::now();\n\n        $this->assertSame(86400, $now->copy()->add('1 day')->getTimestamp() - $now->getTimestamp());\n        $this->assertSame(4 * 86400, $now->copy()->add('4 day')->getTimestamp() - $now->getTimestamp());\n\n        $this->assertSame(-86400, $now->copy()->sub('1 day')->getTimestamp() - $now->getTimestamp());\n        $this->assertSame(-4 * 86400, $now->copy()->sub('4 day')->getTimestamp() - $now->getTimestamp());\n\n        $this->assertSame(10 * 86400, $now->copy()->add('P10D')->getTimestamp() - $now->getTimestamp());\n        $this->assertSame(-10 * 86400, $now->copy()->sub('P10D')->getTimestamp() - $now->getTimestamp());\n    }\n\n    public function testFormat()\n    {\n        $date = new Carbon('@1367186296');\n        $this->assertSame('Sunday 28 April 2013 21:58:16', $date->format('l j F Y H:i:s'));\n    }\n\n    public function testAge()\n    {\n        // Age test can't work on February 29th\n        if (Carbon::now()->format('m-d') === '02-29') {\n            Carbon::setTestNow(Carbon::now()->subDay());\n        }\n\n        $date = Carbon::parse('-5 years');\n        $this->assertSame(5, $date->age);\n    }\n\n    public function testAgo()\n    {\n        // Ago test can't work on February 29th\n        if (Carbon::now()->format('m-d') === '02-29') {\n            Carbon::setTestNow(Carbon::now()->subDay());\n        }\n\n        $date = Carbon::parse('-5 years');\n        $this->assertSame('5 years ago', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(5);\n        $this->assertSame('5 months ago', $date->ago());\n\n        $date = Carbon::parse('-32 days');\n        $this->assertSame('1 month ago', $date->ago());\n\n        $date = Carbon::parse('-4 days');\n        $this->assertSame('4 days ago', $date->ago());\n\n        $date = Carbon::parse('-1 day');\n        $this->assertSame('1 day ago', $date->ago());\n\n        $date = Carbon::parse('-3 hours');\n        $this->assertSame('3 hours ago', $date->ago());\n\n        $date = Carbon::parse('-1 hour');\n        $this->assertSame('1 hour ago', $date->ago());\n\n        $date = Carbon::parse('-2 minutes');\n        $this->assertSame('2 minutes ago', $date->ago());\n\n        $date = Carbon::parse('-1 minute');\n        $this->assertSame('1 minute ago', $date->ago());\n\n        $date = Carbon::parse('-50 second');\n        $this->assertSame('50 seconds ago', $date->ago());\n\n        $date = Carbon::parse('-1 second');\n        $this->assertSame('1 second ago', $date->ago());\n\n        $date = Carbon::parse('+5 days');\n        $this->assertSame('5 days from now', $date->ago());\n\n        $date = Carbon::parse('+5 days');\n        $this->assertSame('5 days after', $date->ago(Carbon::now()));\n\n        $date = Carbon::parse('-5 days');\n        $this->assertSame('5 days before', $date->ago(Carbon::now()));\n    }\n\n    public function testAbsoluteAgo()\n    {\n        $date = Carbon::parse('-5 days');\n        $this->assertSame('5 days', $date->ago(Carbon::now(), true));\n\n        $date = Carbon::parse('+5 days');\n        $this->assertSame('5 days', $date->ago(Carbon::now(), true));\n    }\n\n    public function testDiffForHumans()\n    {\n        // Diff for humans test can't work on February 29th\n        if (Carbon::now()->format('m-d') === '02-29') {\n            Carbon::setTestNow(Carbon::now()->subDay());\n        }\n\n        $date = Carbon::parse('-5 years');\n        $this->assertSame('5 years ago', $date->diffForHumans());\n\n        $date = Carbon::parse('-15 days');\n        $this->assertSame('2 weeks ago', $date->diffForHumans());\n\n        $date = Carbon::parse('-13 days');\n        $this->assertSame('1 week ago', $date->diffForHumans());\n\n        $date = Carbon::parse('-13 days');\n        $this->assertSame('1 week', $date->diffForHumans(null, true));\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(3);\n        $this->assertSame('3 months', $date->diffForHumans(null, true));\n\n        $date = Carbon::parse('-1 week');\n        $future = Carbon::parse('+1 week');\n        $this->assertSame('2 weeks after', $future->diffForHumans($date));\n        $this->assertSame('2 weeks before', $date->diffForHumans($future));\n    }\n\n    public function testTimespan()\n    {\n        $date = new Carbon('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 months, 1 week, 1 day, 3 hours, 20 minutes', $date->timespan('@1403619368'));\n    }\n\n    public function testTranslateTimeString()\n    {\n        Carbon::setLocale('ru');\n        $date = Carbon::translateTimeString('понедельник 21 март 2015');\n        $this->assertSame('monday 21 march 2015', mb_strtolower($date));\n\n        $date = Carbon::translateTimeString('ПОНЕДЕЛЬНИК 21 МАРТ 2015');\n        $this->assertSame('monday 21 march 2015', mb_strtolower($date));\n\n        Carbon::setLocale('de');\n        $date = Carbon::translateTimeString('Montag 21 März 2015');\n        $this->assertSame('monday 21 march 2015', mb_strtolower($date));\n\n        Carbon::setLocale('el');\n        $date = Carbon::translateTimeString('3 Ιανουαρίου 2026');\n        $this->assertSame('3 january 2026', mb_strtolower($date));\n\n        $date = Carbon::translateTimeString('3 ιανουάριος 2026');\n        $this->assertSame('3 january 2026', mb_strtolower($date));\n\n        $this->assertSame('Foobar', Carbon::translateTimeString('Foobar', 'xx'));\n    }\n\n    public function testSlovenianMonthTranslation()\n    {\n        Carbon::setLocale('sl');\n\n        $this->assertSame('marec', Carbon::parse('2025-03-15')->getTranslatedMonthName());\n        $this->assertSame('marec', Carbon::parse('2025-03-15')->monthName);\n        $this->assertSame('marec', Carbon::parse('2025-03-15')->isoFormat('MMMM'));\n        $this->assertSame('marec 2025', Carbon::parse('2025-03-15')->isoFormat('MMMM YYYY'));\n        $this->assertSame('15. marca', Carbon::parse('2025-03-15')->isoFormat('D. MMMM'));\n        $this->assertSame('15. marca 2025', Carbon::parse('2025-03-15')->isoFormat('LL'));\n    }\n\n    public function testFallbackLocaleMonthTranslation()\n    {\n        Carbon::setLocale('fr');\n        Carbon::setFallbackLocale('pl');\n\n        $this->assertSame('mars', Carbon::parse('2025-03-15')->getTranslatedMonthName());\n        $this->assertSame('mars', Carbon::parse('2025-03-15')->monthName);\n        $this->assertSame('mars', Carbon::parse('2025-03-15')->isoFormat('MMMM'));\n        $this->assertSame('mars 2025', Carbon::parse('2025-03-15')->isoFormat('MMMM YYYY'));\n        $this->assertSame('15 mars', Carbon::parse('2025-03-15')->isoFormat('D MMMM'));\n        $this->assertSame('15 mars 2025', Carbon::parse('2025-03-15')->isoFormat('LL'));\n    }\n\n    public function testFallbackLocaleMeridiemTranslation()\n    {\n        Carbon::setFallbackLocale('sv');\n        Carbon::setLocale('en');\n\n        $now = Carbon::parse('2025-10-02 08:00:00');\n\n        $this->assertSame('AM', $now->isoFormat('A'));\n        $this->assertSame('am', $now->isoFormat('a'));\n    }\n\n    public function testTranslateTimeStringWithOrdinalWords()\n    {\n        $date = Carbon::translateTimeString('Premier lundi de mai', 'fr', 'en');\n        $this->assertSame('first monday of may', mb_strtolower($date));\n\n        $date = Carbon::translateTimeString('Premier lundi de mai', 'fr', 'es');\n        $this->assertSame('primer lunes de mayo', mb_strtolower($date));\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/JenssegersDate.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nuse Carbon\\Carbon;\n\nclass JenssegersDate extends Carbon\n{\n    /**\n     * Function to call instead of format.\n     *\n     * @var string|callable|null\n     */\n    protected static $formatFunction = 'jngFormat';\n\n    /**\n     * Function to call instead of createFromFormat.\n     *\n     * @var string|callable|null\n     */\n    protected static $createFromFormatFunction = 'jngCreateFromFormat';\n\n    /**\n     * Function to call instead of parse.\n     *\n     * @var string|callable|null\n     */\n    protected static $parseFunction = 'jngParse';\n\n    public static function jngParse($time = null, $tz = null)\n    {\n        if (\\is_string($time)) {\n            $time = static::translateTimeString($time, static::getLocale(), 'en');\n        }\n\n        return parent::rawParse($time, $tz);\n    }\n\n    public static function jngCreateFromFormat($format, $time = null, $tz = null)\n    {\n        if (\\is_string($time)) {\n            $time = static::translateTimeString($time, static::getLocale(), 'en');\n        }\n\n        return parent::rawCreateFromFormat($format, $time, $tz);\n    }\n\n    public function jngFormat($format)\n    {\n        return $this->translatedFormat($format);\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TestCaseBase.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nuse Carbon\\Carbon;\nuse PHPUnit\\Framework\\TestCase;\n\nabstract class TestCaseBase extends TestCase\n{\n    public const LOCALE = 'en';\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        date_default_timezone_set('UTC');\n\n        Carbon::setLocale(static::LOCALE);\n\n        // Freeze the time for the test duration\n        Carbon::setTestNow(Carbon::now());\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationElTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nclass TranslationElTest extends TestCaseBase\n{\n    public const LOCALE = 'el';\n\n    public function testTimespanTranslated()\n    {\n        $date = new JenssegersDate('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 μήνες, 1 εβδομάδα, 1 μέρα, 3 ώρες, 20 λεπτά', $date->timespan('@1403619368'));\n    }\n\n    public function testCreateFromFormat()\n    {\n        $date = JenssegersDate::createFromFormat('d F Y', '1 Ιανουαρίου 2015');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        $date = JenssegersDate::createFromFormat('D d F Y', 'Σάββατο 21 Μαρτίου 2015');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n\n    public function testAgoTranslated()\n    {\n        // Ago test can't work on February 29th\n        if (JenssegersDate::now()->format('m-d') === '02-29') {\n            JenssegersDate::setTestNow(JenssegersDate::now()->subDay());\n        }\n\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('πριν 21 ώρες', $date->ago());\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('πριν 5 μέρες', $date->ago());\n\n        $date = JenssegersDate::parse('-3 weeks');\n        $this->assertSame('πριν 3 εβδομάδες', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(6);\n        $this->assertSame('πριν 6 μήνες', $date->ago());\n\n        $date = JenssegersDate::parse('-10 years');\n        $this->assertSame('πριν 10 χρόνια', $date->ago());\n    }\n\n    public function testFormatDeclensions()\n    {\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('Μάρτιος 2015', $date->format('F Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 Μαρτίου 2015', $date->format('j F Y'));\n    }\n\n    public function testFormatShortNotation()\n    {\n        $date = new JenssegersDate('10 january 2015');\n        $this->assertSame('10 Ιαν 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 february 2015');\n        $this->assertSame('10 Φεβ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 Μαρ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 april 2015');\n        $this->assertSame('10 Απρ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 may 2015');\n        $this->assertSame('10 Μαϊ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 june 2015');\n        $this->assertSame('10 Ιουν 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 july 2015');\n        $this->assertSame('10 Ιουλ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 august 2015');\n        $this->assertSame('10 Αυγ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 september 2015');\n        $this->assertSame('10 Σεπ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 october 2015');\n        $this->assertSame('10 Οκτ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 november 2015');\n        $this->assertSame('10 Νοε 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 december 2015');\n        $this->assertSame('10 Δεκ 2015', $date->format('j M Y'));\n    }\n\n    public function testAfterTranslated()\n    {\n        $date = JenssegersDate::parse('+21 hours');\n        $this->assertSame('σε 21 ώρες', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('σε 5 μέρες', $date->ago());\n\n        $date = JenssegersDate::parse('+3 weeks');\n        $this->assertSame('σε 3 εβδομάδες', $date->ago());\n\n        $date = JenssegersDate::parse('+6 months');\n        $this->assertSame('σε 6 μήνες', $date->ago());\n\n        $date = JenssegersDate::parse('+10 years');\n        $this->assertSame('σε 10 χρόνια', $date->ago());\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationHuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nuse Carbon\\Translator;\nuse Symfony\\Component\\Translation\\Loader\\ArrayLoader;\n\nclass TranslationHuTest extends TestCaseBase\n{\n    public const LOCALE = 'hu';\n\n    public function testGetsAndSetsTranslator()\n    {\n        $translator = new Translator('hu');\n        $translator->addLoader('array', new ArrayLoader());\n        $this->assertNotEquals($translator, JenssegersDate::getTranslator());\n\n        JenssegersDate::setTranslator($translator);\n        $this->assertEquals($translator, JenssegersDate::getTranslator());\n    }\n\n    public function testTimespanTranslated()\n    {\n        $date = new JenssegersDate('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 hónap, 1 hét, 1 nap, 3 óra, 20 perc', $date->timespan('@1403619368'));\n    }\n\n    public function testAgoTranslated()\n    {\n        $date = JenssegersDate::parse('-1 minute');\n        $this->assertSame('1 perce', $date->ago());\n\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('21 órája', $date->ago());\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('5 napja', $date->ago());\n\n        $date = JenssegersDate::parse('-3 weeks');\n        $this->assertSame('3 hete', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(6);\n        $this->assertSame('6 hónapja', $date->ago());\n\n        $date = JenssegersDate::now()->subYearsNoOverflow(10);\n        $this->assertSame('10 éve', $date->ago());\n    }\n\n    public function testFromNowTranslated()\n    {\n        $date = JenssegersDate::parse('+1 minute');\n        $this->assertSame('1 perc múlva', $date->ago());\n\n        $date = JenssegersDate::parse('+21 hours');\n        $this->assertSame('21 óra múlva', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('5 nap múlva', $date->ago());\n\n        $date = JenssegersDate::parse('+3 weeks');\n        $this->assertSame('3 hét múlva', $date->ago());\n\n        $date = JenssegersDate::parse('+6 months');\n        $this->assertSame('6 hónap múlva', $date->ago());\n\n        $date = JenssegersDate::parse('+10 years');\n        $this->assertSame('10 év múlva', $date->ago());\n    }\n\n    public function testAfterTranslated()\n    {\n        $date = JenssegersDate::parse('+21 hours');\n        $this->assertSame('21 órával később', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('5 nappal később', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('+3 weeks');\n        $this->assertSame('3 héttel később', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('+6 months');\n        $this->assertSame('6 hónappal később', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('+10 years');\n        $this->assertSame('10 évvel később', $date->ago(JenssegersDate::now()));\n    }\n\n    public function testBeforeTranslated()\n    {\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('21 órával korábban', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('5 nappal korábban', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('-3 weeks');\n        $this->assertSame('3 héttel korábban', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(6);\n        $this->assertSame('6 hónappal korábban', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::now()->subYearsNoOverflow(10);\n        $this->assertSame('10 évvel korábban', $date->ago(JenssegersDate::now()));\n    }\n\n    public function testCreateFromFormat()\n    {\n        $date = JenssegersDate::createFromFormat('Y. F d.', '2015. január 1.');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        $date = JenssegersDate::createFromFormat('Y. F d., D', '2015. március 21., szombat');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationJaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nclass TranslationJaTest extends TestCaseBase\n{\n    public const LOCALE = 'ja';\n\n    public function testItCanTranslateMonth()\n    {\n        $jan = JenssegersDate::createFromFormat('m-d', '01-01');\n        $feb = JenssegersDate::createFromFormat('m-d', '02-01');\n        $mar = JenssegersDate::createFromFormat('m-d', '03-01');\n        $apr = JenssegersDate::createFromFormat('m-d', '04-01');\n        $may = JenssegersDate::createFromFormat('m-d', '05-01');\n        $jun = JenssegersDate::createFromFormat('m-d', '06-01');\n        $jul = JenssegersDate::createFromFormat('m-d', '07-01');\n        $aug = JenssegersDate::createFromFormat('m-d', '08-01');\n        $sep = JenssegersDate::createFromFormat('m-d', '09-01');\n        $oct = JenssegersDate::createFromFormat('m-d', '10-01');\n        $nov = JenssegersDate::createFromFormat('m-d', '11-01');\n        $dec = JenssegersDate::createFromFormat('m-d', '12-01');\n\n        $this->assertSame('1月', $jan->format('F'));\n        $this->assertSame('2月', $feb->format('F'));\n        $this->assertSame('3月', $mar->format('F'));\n        $this->assertSame('4月', $apr->format('F'));\n        $this->assertSame('5月', $may->format('F'));\n        $this->assertSame('6月', $jun->format('F'));\n        $this->assertSame('7月', $jul->format('F'));\n        $this->assertSame('8月', $aug->format('F'));\n        $this->assertSame('9月', $sep->format('F'));\n        $this->assertSame('10月', $oct->format('F'));\n        $this->assertSame('11月', $nov->format('F'));\n        $this->assertSame('12月', $dec->format('F'));\n    }\n\n    public function testItCanTranslateWeekdays()\n    {\n        $mon = JenssegersDate::parse('next monday');\n        $tue = JenssegersDate::parse('next tuesday');\n        $wed = JenssegersDate::parse('next wednesday');\n        $thu = JenssegersDate::parse('next thursday');\n        $fri = JenssegersDate::parse('next friday');\n        $sat = JenssegersDate::parse('next saturday');\n        $sun = JenssegersDate::parse('next sunday');\n\n        $this->assertSame('月曜日', $mon->format('l'));\n        $this->assertSame('火曜日', $tue->format('l'));\n        $this->assertSame('水曜日', $wed->format('l'));\n        $this->assertSame('木曜日', $thu->format('l'));\n        $this->assertSame('金曜日', $fri->format('l'));\n        $this->assertSame('土曜日', $sat->format('l'));\n        $this->assertSame('日曜日', $sun->format('l'));\n    }\n\n    public function testItCanTranslateWeekdaysShortForm()\n    {\n        $mon = JenssegersDate::parse('next monday');\n        $tue = JenssegersDate::parse('next tuesday');\n        $wed = JenssegersDate::parse('next wednesday');\n        $thu = JenssegersDate::parse('next thursday');\n        $fri = JenssegersDate::parse('next friday');\n        $sat = JenssegersDate::parse('next saturday');\n        $sun = JenssegersDate::parse('next sunday');\n\n        $this->assertSame('月', $mon->format('D'));\n        $this->assertSame('火', $tue->format('D'));\n        $this->assertSame('水', $wed->format('D'));\n        $this->assertSame('木', $thu->format('D'));\n        $this->assertSame('金', $fri->format('D'));\n        $this->assertSame('土', $sat->format('D'));\n        $this->assertSame('日', $sun->format('D'));\n    }\n\n    public function testItCanTranslateSecondsAgo()\n    {\n        $oneSecondAgo = JenssegersDate::parse('-1 second');\n        $fiveSecondsAgo = JenssegersDate::parse('-5 seconds');\n\n        $this->assertSame('1秒前', $oneSecondAgo->ago());\n        $this->assertSame('5秒前', $fiveSecondsAgo->ago());\n    }\n\n    public function testItCanTranslateMinutesAgo()\n    {\n        $oneMinuteAgo = JenssegersDate::parse('-1 minute');\n        $fiveMinutesAgo = JenssegersDate::parse('-5 minutes');\n\n        $this->assertSame('1分前', $oneMinuteAgo->ago());\n        $this->assertSame('5分前', $fiveMinutesAgo->ago());\n    }\n\n    public function testItCanTranslateHoursAgo()\n    {\n        $oneHourAgo = JenssegersDate::parse('-1 hour');\n        $fiveHoursAgo = JenssegersDate::parse('-5 hours');\n\n        $this->assertSame('1時間前', $oneHourAgo->ago());\n        $this->assertSame('5時間前', $fiveHoursAgo->ago());\n    }\n\n    public function testItCanTranslateDaysAgo()\n    {\n        $oneDayAgo = JenssegersDate::parse('-1 day');\n        $threeDaysAgo = JenssegersDate::parse('-3 days');\n\n        $this->assertSame('1日前', $oneDayAgo->ago());\n        $this->assertSame('3日前', $threeDaysAgo->ago());\n    }\n\n    public function testItCanTranslateWeeksAgo()\n    {\n        $oneWeekAgo = JenssegersDate::parse('-1 week');\n        $threeWeeksAgo = JenssegersDate::parse('-3 weeks');\n\n        $this->assertSame('1週間前', $oneWeekAgo->ago());\n        $this->assertSame('3週間前', $threeWeeksAgo->ago());\n    }\n\n    public function testItCanTranslateMonthsAgo()\n    {\n        JenssegersDate::setTestNow('2019-03-27');\n\n        $oneMonthAgo = JenssegersDate::now()->subMonthNoOverflow();\n        $twoMonthsAgo = JenssegersDate::now()->subMonthsNoOverflow(2);\n\n        $this->assertSame('1ヶ月前', $oneMonthAgo->ago());\n        $this->assertSame('2ヶ月前', $twoMonthsAgo->ago());\n    }\n\n    public function testItCanTranslateYearsAgo()\n    {\n        $oneYearAgo = JenssegersDate::parse('-1 year');\n        $towYearsAgo = JenssegersDate::parse('-2 years');\n\n        $this->assertSame('1年前', $oneYearAgo->ago());\n        $this->assertSame('2年前', $towYearsAgo->ago());\n    }\n\n    public function testItCanTranslateSecondsFromNow()\n    {\n        $oneSecondFromNow = JenssegersDate::parse('1 second');\n        $fiveSecondsFromNow = JenssegersDate::parse('5 seconds');\n\n        $this->assertSame('1秒後', $oneSecondFromNow->diffForHumans());\n        $this->assertSame('5秒後', $fiveSecondsFromNow->diffForHumans());\n    }\n\n    public function testItCanTranslateMinutesFromNow()\n    {\n        $oneMinuteFromNow = JenssegersDate::parse('1 minute');\n        $fiveMinutesFromNow = JenssegersDate::parse('5 minutes');\n\n        $this->assertSame('1分後', $oneMinuteFromNow->diffForHumans());\n        $this->assertSame('5分後', $fiveMinutesFromNow->diffForHumans());\n    }\n\n    public function testItCanTranslateHoursFromNow()\n    {\n        $oneHourFromNow = JenssegersDate::parse('1 hour');\n        $fiveHoursFromNow = JenssegersDate::parse('5 hours');\n\n        $this->assertSame('1時間後', $oneHourFromNow->diffForHumans());\n        $this->assertSame('5時間後', $fiveHoursFromNow->diffForHumans());\n    }\n\n    public function testItCanTranslateDaysFromNow()\n    {\n        $oneDayFromNow = JenssegersDate::parse('1 day');\n        $threeDaysFromNow = JenssegersDate::parse('3 days');\n\n        $this->assertSame('1日後', $oneDayFromNow->diffForHumans());\n        $this->assertSame('3日後', $threeDaysFromNow->diffForHumans());\n    }\n\n    public function testItCanTranslateWeeksFromNow()\n    {\n        $oneWeekFromNow = JenssegersDate::parse('1 week');\n        $threeWeeksFromNow = JenssegersDate::parse('3 weeks');\n\n        $this->assertSame('1週間後', $oneWeekFromNow->diffForHumans());\n        $this->assertSame('3週間後', $threeWeeksFromNow->diffForHumans());\n    }\n\n    public function testItCanTranslateMonthsFromNow()\n    {\n        $oneMonthFromNow = JenssegersDate::parse('1 month');\n        $twoMonthsFromNow = JenssegersDate::parse('2 months');\n\n        $this->assertSame('1ヶ月後', $oneMonthFromNow->diffForHumans());\n        $this->assertSame('2ヶ月後', $twoMonthsFromNow->diffForHumans());\n    }\n\n    public function testItCanTranslateYearsFromNow()\n    {\n        $oneYearFromNow = JenssegersDate::parse('1 year');\n        $towYearsFromNow = JenssegersDate::parse('2 years');\n\n        $this->assertSame('1年後', $oneYearFromNow->diffForHumans());\n        $this->assertSame('2年後', $towYearsFromNow->diffForHumans());\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationKaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nclass TranslationKaTest extends TestCaseBase\n{\n    public const LOCALE = 'ka';\n\n    public function testTimespanTranslated()\n    {\n        $date = new JenssegersDate('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 თვე, 1 კვირა, 1 დღე, 3 საათი, 20 წუთი', $date->timespan('@1403619368'));\n    }\n\n    public function testCreateFromFormat()\n    {\n        $date = JenssegersDate::createFromFormat('d F Y', '1 იანვარი 2015');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        $date = JenssegersDate::createFromFormat('D d F Y', 'შაბათი 21 მარტი 2015');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n\n    public function testAgoTranslated()\n    {\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('21 საათის წინ', $date->ago());\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('5 დღის წინ', $date->ago());\n\n        $date = JenssegersDate::parse('-3 weeks');\n        $this->assertSame('3 კვირის წინ', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(6);\n        $this->assertSame('6 თვის წინ', $date->ago());\n\n        $date = JenssegersDate::parse('-10 years');\n        $this->assertSame('10 წლის წინ', $date->ago());\n    }\n\n    public function testFormatDeclensions()\n    {\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('მარტს 2015', $date->format('F Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 მარტი 2015', $date->format('j F Y'));\n    }\n\n    public function testAfterTranslated()\n    {\n        $date = JenssegersDate::parse('+21 hours');\n        $this->assertSame('21 საათში', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('5 დღეში', $date->ago());\n\n        $date = JenssegersDate::parse('+3 weeks');\n        $this->assertSame('3 კვირაში', $date->ago());\n\n        $date = JenssegersDate::parse('+6 months');\n        $this->assertSame('6 თვეში', $date->ago());\n\n        $date = JenssegersDate::parse('+10 years');\n        $this->assertSame('10 წელიწადში', $date->ago());\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationTaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nclass TranslationTaTest extends TestCaseBase\n{\n    public const LOCALE = 'ta';\n\n    public function testItTranslatesMonth()\n    {\n        $jan = JenssegersDate::createFromFormat('m-d', '01-01');\n        $feb = JenssegersDate::createFromFormat('m-d', '02-01');\n        $mar = JenssegersDate::createFromFormat('m-d', '03-01');\n        $apr = JenssegersDate::createFromFormat('m-d', '04-01');\n        $may = JenssegersDate::createFromFormat('m-d', '05-01');\n        $jun = JenssegersDate::createFromFormat('m-d', '06-01');\n        $jul = JenssegersDate::createFromFormat('m-d', '07-01');\n        $aug = JenssegersDate::createFromFormat('m-d', '08-01');\n        $sep = JenssegersDate::createFromFormat('m-d', '09-01');\n        $oct = JenssegersDate::createFromFormat('m-d', '10-01');\n        $nov = JenssegersDate::createFromFormat('m-d', '11-01');\n        $dec = JenssegersDate::createFromFormat('m-d', '12-01');\n\n        $this->assertSame('ஜனவரி', $jan->format('F'));\n        $this->assertSame('பிப்ரவரி', $feb->format('F'));\n        $this->assertSame('மார்ச்', $mar->format('F'));\n        $this->assertSame('ஏப்ரல்', $apr->format('F'));\n        $this->assertSame('மே', $may->format('F'));\n        $this->assertSame('ஜூன்', $jun->format('F'));\n        $this->assertSame('ஜூலை', $jul->format('F'));\n        $this->assertSame('ஆகஸ்ட்', $aug->format('F'));\n        $this->assertSame('செப்டெம்பர்', $sep->format('F'));\n        $this->assertSame('அக்டோபர்', $oct->format('F'));\n        $this->assertSame('நவம்பர்', $nov->format('F'));\n        $this->assertSame('டிசம்பர்', $dec->format('F'));\n    }\n\n    public function testItTranslatesWeekdays()\n    {\n        $mon = JenssegersDate::parse('next monday');\n        $tue = JenssegersDate::parse('next tuesday');\n        $wed = JenssegersDate::parse('next wednesday');\n        $thu = JenssegersDate::parse('next thursday');\n        $fri = JenssegersDate::parse('next friday');\n        $sat = JenssegersDate::parse('next saturday');\n        $sun = JenssegersDate::parse('next sunday');\n\n        $this->assertSame('திங்கட்கிழமை', $mon->format('l'));\n        $this->assertSame('செவ்வாய்கிழமை', $tue->format('l'));\n        $this->assertSame('புதன்கிழமை', $wed->format('l'));\n        $this->assertSame('வியாழக்கிழமை', $thu->format('l'));\n        $this->assertSame('வெள்ளிக்கிழமை', $fri->format('l'));\n        $this->assertSame('சனிக்கிழமை', $sat->format('l'));\n        $this->assertSame('ஞாயிற்றுக்கிழமை', $sun->format('l'));\n    }\n\n    public function testItTranslatesWeekdaysShortform()\n    {\n        $mon = JenssegersDate::parse('next monday');\n        $tue = JenssegersDate::parse('next tuesday');\n        $wed = JenssegersDate::parse('next wednesday');\n        $thu = JenssegersDate::parse('next thursday');\n        $fri = JenssegersDate::parse('next friday');\n        $sat = JenssegersDate::parse('next saturday');\n        $sun = JenssegersDate::parse('next sunday');\n\n        $this->assertSame('திங்கள்', $mon->format('D'));\n        $this->assertSame('செவ்வாய்', $tue->format('D'));\n        $this->assertSame('புதன்', $wed->format('D'));\n        $this->assertSame('வியாழன்', $thu->format('D'));\n        $this->assertSame('வெள்ளி', $fri->format('D'));\n        $this->assertSame('சனி', $sat->format('D'));\n        $this->assertSame('ஞாயிறு', $sun->format('D'));\n    }\n\n    public function testItTranslatesAgo()\n    {\n        JenssegersDate::setTestNow('2019-03-27');\n\n        $oneAgo = JenssegersDate::parse('-1 second');\n        $fiveAgo = JenssegersDate::parse('-5 seconds');\n\n        $this->assertSame('1 சில விநாடிகள் முன்', $oneAgo->ago());\n        $this->assertSame('5 விநாடிகள் முன்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('-1 minute');\n        $fiveAgo = JenssegersDate::parse('-5 minutes');\n\n        $this->assertSame('1 நிமிடம் முன்', $oneAgo->ago());\n        $this->assertSame('5 நிமிடங்கள் முன்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('-1 hour');\n        $fiveAgo = JenssegersDate::parse('-5 hours');\n\n        $this->assertSame('1 மணி நேரம் முன்', $oneAgo->ago());\n        $this->assertSame('5 மணி நேரம் முன்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('-1 day');\n        $fiveAgo = JenssegersDate::parse('-5 days');\n\n        $this->assertSame('1 நாள் முன்', $oneAgo->ago());\n        $this->assertSame('5 நாட்கள் முன்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('-1 week');\n        $fiveAgo = JenssegersDate::parse('-3 weeks');\n\n        $this->assertSame('1 வாரம் முன்', $oneAgo->ago());\n        $this->assertSame('3 வாரங்கள் முன்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::now()->subMonthNoOverflow();\n        $threeAgo = JenssegersDate::now()->subMonthsNoOverflow(3);\n\n        $this->assertSame('1 மாதம் முன்', $oneAgo->ago());\n        $this->assertSame('3 மாதங்கள் முன்', $threeAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('-1 year');\n        $fiveAgo = JenssegersDate::parse('-3 years');\n\n        $this->assertSame('1 வருடம் முன்', $oneAgo->ago());\n        $this->assertSame('3 ஆண்டுகள் முன்', $fiveAgo->ago());\n    }\n\n    public function testItTranslatesFromNow()\n    {\n        $oneAgo = JenssegersDate::parse('1 second');\n        $fiveAgo = JenssegersDate::parse('5 seconds');\n\n        $this->assertSame('1 சில விநாடிகள் இல்', $oneAgo->ago());\n        $this->assertSame('5 விநாடிகள் இல்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('1 minute');\n        $fiveAgo = JenssegersDate::parse('5 minutes');\n\n        $this->assertSame('1 நிமிடம் இல்', $oneAgo->ago());\n        $this->assertSame('5 நிமிடங்கள் இல்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('1 hour');\n        $fiveAgo = JenssegersDate::parse('5 hours');\n\n        $this->assertSame('1 மணி நேரம் இல்', $oneAgo->ago());\n        $this->assertSame('5 மணி நேரம் இல்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('1 day');\n        $fiveAgo = JenssegersDate::parse('5 days');\n\n        $this->assertSame('1 நாள் இல்', $oneAgo->ago());\n        $this->assertSame('5 நாட்கள் இல்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('1 week');\n        $fiveAgo = JenssegersDate::parse('3 weeks');\n\n        $this->assertSame('1 வாரம் இல்', $oneAgo->ago());\n        $this->assertSame('3 வாரங்கள் இல்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('1 month');\n        $fiveAgo = JenssegersDate::parse('3 months');\n\n        $this->assertSame('1 மாதம் இல்', $oneAgo->ago());\n        $this->assertSame('3 மாதங்கள் இல்', $fiveAgo->ago());\n\n        $oneAgo = JenssegersDate::parse('1 year');\n        $fiveAgo = JenssegersDate::parse('3 years');\n\n        $this->assertSame('1 வருடம் இல்', $oneAgo->ago());\n        $this->assertSame('3 ஆண்டுகள் இல்', $fiveAgo->ago());\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nuse Carbon\\Translator;\nuse Symfony\\Component\\Translation\\Loader\\ArrayLoader;\n\nclass TranslationTest extends TestCaseBase\n{\n    public function testGetsAndSetsTranslator()\n    {\n        $translator = new Translator('nl');\n        $translator->addLoader('array', new ArrayLoader());\n        $this->assertNotEquals($translator, JenssegersDate::getTranslator());\n\n        JenssegersDate::setTranslator($translator);\n        $this->assertEquals($translator, JenssegersDate::getTranslator());\n    }\n\n    public function testFallback()\n    {\n        JenssegersDate::setLocale('xx');\n\n        $date = JenssegersDate::parse('-5 years');\n        $this->assertSame('5 years ago', $date->ago());\n    }\n\n    public function testFallbackWithRegion()\n    {\n        JenssegersDate::setFallbackLocale('en_US');\n        JenssegersDate::setLocale('xx');\n\n        $date = JenssegersDate::parse('-5 years');\n        $this->assertSame('5 years ago', $date->ago());\n    }\n\n    public function testMultiplePluralForms()\n    {\n        JenssegersDate::setLocale('hr');\n\n        $date = JenssegersDate::parse('-1 years');\n        $this->assertSame('prije 1 godinu', $date->ago());\n\n        $date = JenssegersDate::parse('-2 years');\n        $this->assertSame('prije 2 godine', $date->ago());\n\n        $date = JenssegersDate::parse('-3 years');\n        $this->assertSame('prije 3 godine', $date->ago());\n\n        $date = JenssegersDate::parse('-5 years');\n        $this->assertSame('prije 5 godina', $date->ago());\n    }\n\n    public function testCustomSuffix()\n    {\n        JenssegersDate::setLocale('de');\n\n        // If we use -1 month, we have the chance of it being converted to 4 weeks.\n        $date = JenssegersDate::parse('-40 days');\n        $this->assertSame('vor 1 Monat', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(5);\n        $this->assertSame('vor 5 Monaten', $date->ago());\n\n        $date = JenssegersDate::parse('-5 seconds');\n        $this->assertSame('vor 5 Sekunden', $date->ago());\n    }\n\n    public function testTimespanTranslated()\n    {\n        JenssegersDate::setLocale('nl');\n\n        $date = new JenssegersDate('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 maanden, 1 week, 1 dag, 3 uur, 20 minuten', $date->timespan('@1403619368'));\n    }\n\n    public function testParse()\n    {\n        JenssegersDate::setLocale('nl');\n        $date = JenssegersDate::parse('1 januari 2015');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        JenssegersDate::setLocale('nl');\n        $date = JenssegersDate::parse('zaterdag 21 maart 2015');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n\n    public function testCreateFromFormat()\n    {\n        JenssegersDate::setLocale('nl');\n        $date = JenssegersDate::createFromFormat('d F Y', '1 januari 2015');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        JenssegersDate::setLocale('nl');\n        $date = JenssegersDate::createFromFormat('D d F Y', 'zaterdag 21 maart 2015');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n\n    public function testAgoTranslated()\n    {\n        JenssegersDate::setLocale('nl');\n        JenssegersDate::setTestNow(JenssegersDate::now());\n\n        $date = JenssegersDate::parse('-5 years');\n        $this->assertSame('5 jaar geleden', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(5);\n        $this->assertSame('5 maanden geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-32 days');\n        $this->assertSame('1 maand geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-4 days');\n        $this->assertSame('4 dagen geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-1 day');\n        $this->assertSame('1 dag geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-3 hours');\n        $this->assertSame('3 uur geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-1 hour');\n        $this->assertSame('1 uur geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-2 minutes');\n        $this->assertSame('2 minuten geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-1 minute');\n        $this->assertSame('1 minuut geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-50 second');\n        $this->assertSame('50 seconden geleden', $date->ago());\n\n        $date = JenssegersDate::parse('-1 second');\n        $this->assertSame('1 seconde geleden', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('over 5 dagen', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('5 dagen later', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('5 dagen eerder', $date->ago(JenssegersDate::now()));\n\n        JenssegersDate::setLocale('ru');\n\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('21 час до', $date->ago(JenssegersDate::now()));\n\n        $date = JenssegersDate::parse('-11 hours');\n        $this->assertSame('11 часов до', $date->ago(JenssegersDate::now()));\n    }\n\n    public function testFormatTranslated()\n    {\n        JenssegersDate::setLocale('nl');\n\n        $date = new JenssegersDate('@1367186296');\n        $this->assertSame('zondag 28 april 2013 21:58:16', $date->format('l j F Y H:i:s'));\n\n        $date = new JenssegersDate('@1367186296');\n        $this->assertSame('l 28 F 2013 21:58:16', $date->format('\\l j \\F Y H:i:s'));\n\n        $date = new JenssegersDate('@1367186296');\n        $this->assertSame('zo. 28 apr. 2013 21:58:16', $date->format('D j M Y H:i:s'));\n    }\n\n    public function testFormatDeclensions()\n    {\n        JenssegersDate::setLocale('ru');\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('март 2015', $date->format('F Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 марта 2015', $date->format('j F Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10. марта 2015', $date->format('j. F Y'));\n    }\n\n    public function testTranslateTimeString()\n    {\n        JenssegersDate::setLocale('ru');\n        $date = JenssegersDate::translateTimeString('понедельник 21 март 2015');\n        $this->assertSame('monday 21 march 2015', mb_strtolower($date));\n\n        JenssegersDate::setLocale('de');\n        $date = JenssegersDate::translateTimeString('Montag 21 März 2015');\n        $this->assertSame('monday 21 march 2015', mb_strtolower($date));\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationThTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nclass TranslationThTest extends TestCaseBase\n{\n    public const LOCALE = 'th';\n\n    public function testTimespanTranslated()\n    {\n        $date = new JenssegersDate('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 เดือน, 1 สัปดาห์, 1 วัน, 3 ชั่วโมง, 20 นาที', $date->timespan('@1403619368'));\n    }\n\n    public function testCreateFromFormat()\n    {\n        $date = JenssegersDate::createFromFormat('d F Y', '1 มกราคม 2015');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        $date = JenssegersDate::createFromFormat('D d F Y', 'เสาร์ 21 มีนาคม 2015');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n\n    public function testAgoTranslated()\n    {\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('21 ชั่วโมงที่แล้ว', $date->ago());\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('5 วันที่แล้ว', $date->ago());\n\n        $date = JenssegersDate::parse('-3 weeks');\n        $this->assertSame('3 สัปดาห์ที่แล้ว', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(6);\n        $this->assertSame('6 เดือนที่แล้ว', $date->ago());\n\n        $date = JenssegersDate::parse('-10 years');\n        $this->assertSame('10 ปีที่แล้ว', $date->ago());\n    }\n\n    public function testFormatDeclensions()\n    {\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('มีนาคม 2015', $date->format('F Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 มีนาคม 2015', $date->format('j F Y'));\n    }\n\n    public function testAfterTranslated()\n    {\n        $date = JenssegersDate::parse('+21 hours');\n        $this->assertSame('อีก 21 ชั่วโมง', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('อีก 5 วัน', $date->ago());\n\n        $date = JenssegersDate::parse('+3 weeks');\n        $this->assertSame('อีก 3 สัปดาห์', $date->ago());\n\n        $date = JenssegersDate::parse('+6 months');\n        $this->assertSame('อีก 6 เดือน', $date->ago());\n\n        $date = JenssegersDate::parse('+10 years');\n        $this->assertSame('อีก 10 ปี', $date->ago());\n    }\n}\n"
  },
  {
    "path": "tests/Jenssegers/TranslationUkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Jenssegers;\n\nclass TranslationUkTest extends TestCaseBase\n{\n    public const LOCALE = 'uk';\n\n    public function testTimespanTranslated()\n    {\n        $date = new JenssegersDate('@1403619368');\n        $date = $date->sub('-100 days -3 hours -20 minutes');\n\n        $this->assertSame('3 місяці, 1 тиждень, 1 день, 3 години, 20 хвилин', $date->timespan('@1403619368'));\n    }\n\n    public function testCreateFromFormat()\n    {\n        $date = JenssegersDate::createFromFormat('d F Y', '01 січня 2015');\n        $this->assertSame('2015-01-01', $date->format('Y-m-d'));\n\n        $date = JenssegersDate::createFromFormat('D d F Y', 'сб 21 березня 2015');\n        $this->assertSame('2015-03-21', $date->format('Y-m-d'));\n    }\n\n    public function testAgoTranslated()\n    {\n        // Ago test can't work on February 29th\n        if (JenssegersDate::now()->format('m-d') === '02-29') {\n            JenssegersDate::setTestNow(JenssegersDate::now()->subDay());\n        }\n\n        $date = JenssegersDate::parse('-21 hours');\n        $this->assertSame('21 годину тому', $date->ago());\n\n        $date = JenssegersDate::parse('-5 days');\n        $this->assertSame('5 днів тому', $date->ago());\n\n        $date = JenssegersDate::parse('-3 weeks');\n        $this->assertSame('3 тижні тому', $date->ago());\n\n        $date = JenssegersDate::now()->subMonthsNoOverflow(6);\n        $this->assertSame('6 місяців тому', $date->ago());\n\n        $date = JenssegersDate::parse('-10 years');\n        $this->assertSame('10 років тому', $date->ago());\n    }\n\n    public function testFormatDeclensions()\n    {\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('березень 2015', $date->format('F Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 березня 2015', $date->format('j F Y'));\n    }\n\n    public function testFormatShortNotation()\n    {\n        $date = new JenssegersDate('10 january 2015');\n        $this->assertSame('10 січ 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 february 2015');\n        $this->assertSame('10 лют 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 march 2015');\n        $this->assertSame('10 бер 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 april 2015');\n        $this->assertSame('10 кві 2015', $date->format('j M Y'));\n\n        $date = new JenssegersDate('10 may 2015');\n        $this->assertSame('10 тра 2015', $date->format('j M Y'));\n    }\n\n    public function testAfterTranslated()\n    {\n        $date = JenssegersDate::parse('+21 hours');\n        $this->assertSame('за 21 годину', $date->ago());\n\n        $date = JenssegersDate::parse('+5 days');\n        $this->assertSame('за 5 днів', $date->ago());\n\n        $date = JenssegersDate::parse('+3 weeks');\n        $this->assertSame('за 3 тижні', $date->ago());\n\n        $date = JenssegersDate::parse('+6 months');\n        $this->assertSame('за 6 місяців', $date->ago());\n\n        $date = JenssegersDate::parse('+10 years');\n        $this->assertSame('за 10 років', $date->ago());\n    }\n}\n"
  },
  {
    "path": "tests/Language/LanguageTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Language;\n\nuse Carbon\\Language;\nuse Tests\\AbstractTestCase;\n\nclass LanguageTest extends AbstractTestCase\n{\n    public function testAll()\n    {\n        $all = Language::all();\n        $this->assertIsArray($all);\n        $this->assertArrayHasKey('en', $all);\n        $this->assertIsArray($all['en']);\n        $this->assertArrayHasKey('isoName', $all['en']);\n        $this->assertSame('English', $all['en']['isoName']);\n    }\n\n    public function testRegions()\n    {\n        $regions = Language::regions();\n        $this->assertIsArray($regions);\n        $this->assertArrayHasKey('US', $regions);\n        $this->assertSame('United States of America', $regions['US']);\n    }\n\n    public function testGetNames()\n    {\n        $ar = new Language('ar');\n        $this->assertSame([\n            'isoName' => 'Arabic',\n            'nativeName' => 'العربية',\n        ], $ar->getNames());\n    }\n\n    public function testGetId()\n    {\n        $ar = new Language('ar');\n        $this->assertSame('ar', $ar->getId());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('ar_DZ', $ar->getId());\n        $ar = new Language('ar_Shakl');\n        $this->assertSame('ar_Shakl', $ar->getId());\n    }\n\n    public function testGetCode()\n    {\n        $ar = new Language('ar');\n        $this->assertSame('ar', $ar->getCode());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('ar', $ar->getCode());\n        $ar = new Language('ar_Shakl');\n        $this->assertSame('ar', $ar->getCode());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('sr', $sr->getCode());\n    }\n\n    public function testGetVariant()\n    {\n        $ar = new Language('ar');\n        $this->assertNull($ar->getVariant());\n        $ar = new Language('ar_DZ');\n        $this->assertNull($ar->getVariant());\n        $ar = new Language('ar_Shakl');\n        $this->assertSame('Shakl', $ar->getVariant());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('Cyrl', $sr->getVariant());\n    }\n\n    public function testGetRegion()\n    {\n        $ar = new Language('ar');\n        $this->assertNull($ar->getRegion());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('DZ', $ar->getRegion());\n        $ar = new Language('ar_Shakl');\n        $this->assertNull($ar->getRegion());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('ME', $sr->getRegion());\n    }\n\n    public function testGetRegionName()\n    {\n        $ar = new Language('ar');\n        $this->assertNull($ar->getRegionName());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('Algeria', $ar->getRegionName());\n        $ar = new Language('ar_Shakl');\n        $this->assertNull($ar->getRegionName());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('Montenegro', $sr->getRegionName());\n    }\n\n    public function testGetFullIsoName()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('Catalan, Valencian', $ar->getFullIsoName());\n        $this->assertSame('Catalan, Valencian', $ar->getFullIsoName());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('Arabic', $ar->getFullIsoName());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('Konkani, Goan', $gom->getFullIsoName());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo', $foo->getFullIsoName());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('Serbian', $sr->getFullIsoName());\n    }\n\n    public function testGetFullNativeName()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('català, valencià', $ar->getFullNativeName());\n        $this->assertSame('català, valencià', $ar->getFullNativeName());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('العربية', $ar->getFullNativeName());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('ಕೊಂಕಣಿ', $gom->getFullNativeName());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo', $foo->getFullNativeName());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('српски језик', $sr->getFullNativeName());\n    }\n\n    public function testGetIsoName()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('Catalan', $ar->getIsoName());\n        $this->assertSame('Catalan', $ar->getIsoName());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('Arabic', $ar->getIsoName());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('Konkani', $gom->getIsoName());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo', $foo->getIsoName());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('Serbian', $sr->getIsoName());\n    }\n\n    public function testGetNativeName()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('català', $ar->getNativeName());\n        $this->assertSame('català', $ar->getNativeName());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('العربية', $ar->getNativeName());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('ಕೊಂಕಣಿ', $gom->getNativeName());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo', $foo->getNativeName());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('српски језик', $sr->getNativeName());\n    }\n\n    public function testGetIsoDescription()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('Catalan', $ar->getIsoDescription());\n        $this->assertSame('Catalan', $ar->getIsoDescription());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('Arabic (Algeria)', $ar->getIsoDescription());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('Konkani (Latin)', $gom->getIsoDescription());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo (Latin)', $foo->getIsoDescription());\n        $foo->setNativeName('Foobar, Barbiz');\n        $this->assertSame('foo (Latin)', $foo->getIsoDescription());\n        $foo->setIsoName('Foobar, Barbiz');\n        $this->assertSame('Foobar (Latin)', $foo->getIsoDescription());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('Serbian (Montenegro) (Cyrillic)', $sr->getIsoDescription());\n    }\n\n    public function testGetNativeDescription()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('català', $ar->getNativeDescription());\n        $this->assertSame('català', $ar->getNativeDescription());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('العربية (Algeria)', $ar->getNativeDescription());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('ಕೊಂಕಣಿ (Latin)', $gom->getNativeDescription());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo (Latin)', $foo->getNativeDescription());\n        $foo->setIsoName('Foobar, Barbiz');\n        $this->assertSame('foo (Latin)', $foo->getNativeDescription());\n        $foo->setNativeName('Foobar, Barbiz');\n        $this->assertSame('Foobar (Latin)', $foo->getNativeDescription());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('српски језик (Montenegro) (Cyrillic)', $sr->getNativeDescription());\n    }\n\n    public function testGetFullIsoDescription()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('Catalan, Valencian', $ar->getFullIsoDescription());\n        $this->assertSame('Catalan, Valencian', $ar->getFullIsoDescription());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('Arabic (Algeria)', $ar->getFullIsoDescription());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('Konkani, Goan (Latin)', $gom->getFullIsoDescription());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo (Latin)', $foo->getFullIsoDescription());\n        $foo->setNativeName('Foobar, Barbiz');\n        $this->assertSame('foo (Latin)', $foo->getFullIsoDescription());\n        $foo->setIsoName('Foobar, Barbiz');\n        $this->assertSame('Foobar, Barbiz (Latin)', $foo->getFullIsoDescription());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('Serbian (Montenegro) (Cyrillic)', $sr->getFullIsoDescription());\n    }\n\n    public function testGetFullNativeDescription()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('català, valencià', $ar->getFullNativeDescription());\n        $this->assertSame('català, valencià', $ar->getFullNativeDescription());\n        $ar = new Language('ar_DZ');\n        $this->assertSame('العربية (Algeria)', $ar->getFullNativeDescription());\n        $gom = new Language('gom_Latn');\n        $this->assertSame('ಕೊಂಕಣಿ (Latin)', $gom->getFullNativeDescription());\n        $foo = new Language('foo_Latn');\n        $this->assertSame('foo (Latin)', $foo->getFullNativeDescription());\n        $foo->setIsoName('Foobar, Barbiz');\n        $this->assertSame('foo (Latin)', $foo->getFullNativeDescription());\n        $foo->setNativeName('Foobar, Barbiz');\n        $this->assertSame('Foobar, Barbiz (Latin)', $foo->getFullNativeDescription());\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('српски језик (Montenegro) (Cyrillic)', $sr->getFullNativeDescription());\n    }\n\n    public function testToString()\n    {\n        $ar = new Language('ar');\n        $this->assertSame('ar', (string) $ar);\n        $ar = new Language('ar_DZ');\n        $this->assertSame('ar_DZ', (string) $ar);\n        $ar = new Language('ar_Shakl');\n        $this->assertSame('ar_Shakl', (string) $ar);\n    }\n\n    public function testToJson()\n    {\n        $ar = new Language('ca');\n        $this->assertSame('\"Catalan\"', json_encode($ar));\n        $this->assertSame('\"Catalan\"', json_encode($ar));\n        $ar = new Language('ar_DZ');\n        $this->assertSame('\"Arabic (Algeria)\"', json_encode($ar));\n        $gom = new Language('gom_Latn');\n        $this->assertSame('\"Konkani (Latin)\"', json_encode($gom));\n        $foo = new Language('foo_Latn');\n        $this->assertSame('\"foo (Latin)\"', json_encode($foo));\n        $foo->setNativeName('Foobar, Barbiz');\n        $this->assertSame('\"foo (Latin)\"', json_encode($foo));\n        $foo->setIsoName('Foobar, Barbiz');\n        $this->assertSame('\"Foobar (Latin)\"', json_encode($foo));\n        $sr = new Language('sr_Cyrl_ME');\n        $this->assertSame('\"Serbian (Montenegro) (Cyrillic)\"', json_encode($sr));\n    }\n}\n"
  },
  {
    "path": "tests/Language/TranslatorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Language;\n\nuse Carbon\\AbstractTranslator;\nuse Carbon\\Carbon;\nuse Carbon\\Exceptions\\ImmutableException;\nuse Carbon\\Exceptions\\NotLocaleAwareException;\nuse Carbon\\Translator;\nuse Carbon\\TranslatorImmutable;\nuse ReflectionMethod;\nuse Tests\\AbstractTestCase;\n\nclass TranslatorTest extends AbstractTestCase\n{\n    public function testSetLocale()\n    {\n        $currentLocale = setlocale(LC_TIME, '0');\n        $currentLocaleAll = setlocale(LC_ALL, '0');\n\n        $translator = new Translator('en_FooBar');\n        $translator->setLocale('auto');\n\n        $this->assertSame('en', $translator->getLocale());\n\n        $translator = new Translator('en');\n        $translator->setLocale('en_iso');\n\n        $this->assertSame('en_ISO', $translator->getLocale());\n\n        $translator = new Translator('fr');\n        if (setlocale(LC_ALL, 'en_US.UTF-8', 'en_US.utf8', 'en_US', 'en_GB', 'en') === false ||\n            setlocale(LC_TIME, 'en_US.UTF-8', 'en_US.utf8', 'en_US', 'en_GB', 'en') === false) {\n            $this->markTestSkipped('testSetLocale test need en_US.UTF-8.');\n        }\n        $translator->setLocale('auto');\n\n        $this->assertStringStartsWith('en', $translator->getLocale());\n\n        setlocale(LC_ALL, $currentLocaleAll);\n        setlocale(LC_TIME, $currentLocale);\n    }\n\n    public function testMethodsPriorities()\n    {\n        Carbon::setLocale('nl');\n        $text = Carbon::parse('2019-08-06')->locale('en')->isoFormat('dddd D MMMM');\n\n        $this->assertSame('Tuesday 6 August', $text);\n    }\n\n    public function testCompareChunkLists()\n    {\n        $method = new ReflectionMethod(AbstractTranslator::class, 'compareChunkLists');\n        $this->assertSame(20, $method->invoke(null, ['a', 'b'], ['a', 'b']));\n        $this->assertSame(10, $method->invoke(null, ['a', 'b'], ['a', 'c']));\n        $this->assertSame(10, $method->invoke(null, ['a'], ['a', 'c']));\n        $this->assertSame(11, $method->invoke(null, ['a', 'b'], ['a']));\n        $this->assertSame(10, $method->invoke(null, ['a'], ['a']));\n    }\n\n    public function testNotLocaleAwareException()\n    {\n        $exception = new NotLocaleAwareException('foobar');\n        $this->assertSame(\n            'string does neither implements Symfony\\Contracts\\Translation\\LocaleAwareInterface nor getLocale() method.',\n            $exception->getMessage(),\n        );\n    }\n\n    public function testTranslatorImmutable()\n    {\n        $this->expectExceptionObject(\n            new ImmutableException('setTranslations not allowed on '.TranslatorImmutable::class)\n        );\n        TranslatorImmutable::get('en')->setTranslations([]);\n    }\n\n    public function testSerializationKeepLocale()\n    {\n        $translator = TranslatorImmutable::get('de');\n\n        $this->assertEquals('de', unserialize(serialize($translator))->getLocale());\n\n        $past = new Carbon('-3 Days');\n        $today = new Carbon('today');\n        $interval = $today->diffAsCarbonInterval($past);\n        $translator = $interval->getLocalTranslator();\n\n        $this->assertEquals('en', unserialize(serialize($translator))->getLocale());\n\n        $past = new Carbon('-3 Days');\n        $today = new Carbon('today');\n        $interval = $today->locale('zh')->diffAsCarbonInterval($past);\n        $translator = $interval->getLocalTranslator();\n\n        $this->assertEquals('zh', unserialize(serialize($translator))->getLocale());\n    }\n\n    public function testUnserializeV2Object()\n    {\n        $interval = unserialize(<<<'EOS'\n            O:21:\"Carbon\\CarbonInterval\":22:{s:1:\"y\";i:0;s:1:\"m\";i:2;s:1:\"d\";i:0;s:1:\"h\";i:0;s:1:\"i\";i:0;s:1:\"s\";i:0;s:1:\"f\";d:5.4E-5;s:6:\"invert\";i:0;s:4:\"days\";b:0;s:11:\"from_string\";b:0;s:9:\" * tzName\";N;s:7:\" * step\";N;s:22:\" * localMonthsOverflow\";N;s:21:\" * localYearsOverflow\";N;s:25:\" * localStrictModeEnabled\";N;s:24:\" * localHumanDiffOptions\";N;s:22:\" * localToStringFormat\";N;s:18:\" * localSerializer\";N;s:14:\" * localMacros\";N;s:21:\" * localGenericMacros\";N;s:22:\" * localFormatFunction\";N;s:18:\" * localTranslator\";N;}\n            EOS);\n\n        $this->assertCarbonInterval($interval, 0, 2, 0, 0, 0, 0, 54);\n    }\n}\n"
  },
  {
    "path": "tests/Laravel/App.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Laravel;\n\nuse ArrayAccess;\nuse Symfony\\Component\\Translation\\Translator;\n\nclass App implements ArrayAccess\n{\n    /**\n     * @var string\n     */\n    protected $locale = 'en';\n\n    /**\n     * @var string\n     */\n    protected $fallbackLocale = 'en';\n\n    /**\n     * @var string\n     */\n    protected static $version;\n\n    /**\n     * @var Translator\n     */\n    public $translator;\n\n    /**\n     * @var \\Illuminate\\Events\\EventDispatcher\n     */\n    public $events;\n\n    public function register()\n    {\n        include_once __DIR__.'/EventDispatcher.php';\n        $this->locale = 'de';\n        $this->fallbackLocale = 'fr';\n        $this->translator = new Translator($this->locale);\n    }\n\n    public function setEventDispatcher($dispatcher)\n    {\n        $this->events = $dispatcher;\n    }\n\n    public static function version($version = null)\n    {\n        if ($version !== null) {\n            static::$version = $version;\n        }\n\n        return static::$version;\n    }\n\n    public static function getLocaleChangeEventName()\n    {\n        return version_compare((string) static::version(), '5.5') >= 0\n            ? 'Illuminate\\Foundation\\Events\\LocaleUpdated'\n            : 'locale.changed';\n    }\n\n    public function setLocaleWithoutEvent(string $locale)\n    {\n        $this->locale = $locale;\n        $this->translator->setLocale($locale);\n    }\n\n    public function setLocale(string $locale)\n    {\n        $this->setLocaleWithoutEvent($locale);\n        $this->events->dispatch(static::getLocaleChangeEventName());\n    }\n\n    public function setFallbackLocale(string $fallbackLocale)\n    {\n        $this->fallbackLocale = $fallbackLocale;\n    }\n\n    public function getLocale()\n    {\n        return $this->locale;\n    }\n\n    public function getFallbackLocale()\n    {\n        return $this->fallbackLocale;\n    }\n\n    public function bound($service)\n    {\n        return isset($this->{$service});\n    }\n\n    #[\\ReturnTypeWillChange]\n    public function offsetExists($offset)\n    {\n        return isset($this->$offset);\n    }\n\n    #[\\ReturnTypeWillChange]\n    public function offsetGet($offset)\n    {\n        return $this->$offset;\n    }\n\n    #[\\ReturnTypeWillChange]\n    public function offsetSet($offset, $value)\n    {\n        // noop\n    }\n\n    #[\\ReturnTypeWillChange]\n    public function offsetUnset($offset)\n    {\n        // noop\n    }\n\n    public function removeService($offset)\n    {\n        $this->$offset = null;\n    }\n}\n"
  },
  {
    "path": "tests/Laravel/Dispatcher.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Illuminate\\Events;\n\nuse Tests\\Laravel\\EventDispatcherBase;\n\nclass Dispatcher extends EventDispatcherBase\n{\n}\n"
  },
  {
    "path": "tests/Laravel/EventDispatcher.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Illuminate\\Events;\n\nuse Tests\\Laravel\\EventDispatcherBase;\n\nclass EventDispatcher extends EventDispatcherBase\n{\n}\n"
  },
  {
    "path": "tests/Laravel/EventDispatcherBase.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Laravel;\n\nclass EventDispatcherBase\n{\n    /**\n     * @var array\n     */\n    protected $listeners;\n\n    public function listen($name, $listener)\n    {\n        $this->listeners[$name] ??= [];\n        $this->listeners[$name][] = $listener;\n    }\n\n    public function dispatch($name, $event = null)\n    {\n        foreach (($this->listeners[$name] ?? []) as $listener) {\n            $listener($event);\n        }\n    }\n}\n"
  },
  {
    "path": "tests/Laravel/ServiceProvider.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Illuminate\\Support;\n\nuse Illuminate\\Events\\EventDispatcher;\nuse Tests\\Laravel\\App;\n\nclass ServiceProvider\n{\n    /**\n     * @var App\n     */\n    public $app;\n\n    public function __construct($dispatcher = null)\n    {\n        $this->app = new App();\n        $this->app->setEventDispatcher($dispatcher ?: new EventDispatcher());\n    }\n}\n"
  },
  {
    "path": "tests/Laravel/ServiceProviderTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Laravel;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse Carbon\\Laravel\\ServiceProvider;\nuse Generator;\nuse Illuminate\\Events\\Dispatcher;\nuse Illuminate\\Events\\EventDispatcher;\nuse Illuminate\\Support\\Carbon as SupportCarbon;\nuse Illuminate\\Support\\Facades\\Date;\nuse PHPUnit\\Framework\\Attributes\\DataProvider;\nuse PHPUnit\\Framework\\TestCase;\nuse stdClass;\n\nclass ServiceProviderTest extends TestCase\n{\n    public static function dataForDispatchers(): Generator\n    {\n        if (!class_exists(Dispatcher::class)) {\n            include_once __DIR__.'/Dispatcher.php';\n        }\n\n        if (!class_exists(EventDispatcher::class)) {\n            include_once __DIR__.'/EventDispatcher.php';\n        }\n\n        yield [new Dispatcher()];\n        yield [new EventDispatcher()];\n    }\n\n    #[DataProvider('dataForDispatchers')]\n    public function testBoot(EventDispatcherBase $dispatcher)\n    {\n        // Reset language\n        Carbon::setLocale('en');\n        CarbonImmutable::setLocale('en');\n        CarbonPeriod::setLocale('en');\n        CarbonInterval::setLocale('en');\n        Carbon::setFallbackLocale('en');\n        CarbonImmutable::setFallbackLocale('en');\n        CarbonPeriod::setFallbackLocale('en');\n        CarbonInterval::setFallbackLocale('en');\n\n        $service = new ServiceProvider($dispatcher);\n\n        $this->assertSame('en', Carbon::getLocale());\n        $this->assertSame('en', CarbonImmutable::getLocale());\n        $this->assertSame('en', CarbonPeriod::getLocale());\n        $this->assertSame('en', CarbonInterval::getLocale());\n        $this->assertSame('en', Carbon::getFallbackLocale());\n        $this->assertSame('en', CarbonImmutable::getFallbackLocale());\n        $this->assertSame('en', CarbonPeriod::getFallbackLocale());\n        $this->assertSame('en', CarbonInterval::getFallbackLocale());\n        $service->boot();\n        $this->assertSame('en', Carbon::getLocale());\n        $this->assertSame('en', CarbonImmutable::getLocale());\n        $this->assertSame('en', CarbonPeriod::getLocale());\n        $this->assertSame('en', CarbonInterval::getLocale());\n        $this->assertSame('en', Carbon::getFallbackLocale());\n        $this->assertSame('en', CarbonImmutable::getFallbackLocale());\n        $this->assertSame('en', CarbonPeriod::getFallbackLocale());\n        $this->assertSame('en', CarbonInterval::getFallbackLocale());\n        $service->app->register();\n        $service->boot();\n        $this->assertSame('de', Carbon::getLocale());\n        $this->assertSame('de', CarbonImmutable::getLocale());\n        $this->assertSame('de', CarbonPeriod::getLocale());\n        $this->assertSame('de', CarbonInterval::getLocale());\n        $this->assertSame('fr', Carbon::getFallbackLocale());\n        $this->assertSame('fr', CarbonImmutable::getFallbackLocale());\n        $this->assertSame('fr', CarbonPeriod::getFallbackLocale());\n        $this->assertSame('fr', CarbonInterval::getFallbackLocale());\n        $service->app->setLocale('fr');\n        $this->assertSame('fr', Carbon::getLocale());\n        $this->assertSame('fr', CarbonImmutable::getLocale());\n        $this->assertSame('fr', CarbonPeriod::getLocale());\n        $this->assertSame('fr', CarbonInterval::getLocale());\n        $this->assertNull($service->register());\n\n        // Reset language\n        Carbon::setLocale('en');\n        Carbon::setFallbackLocale('en');\n\n        $service->app->removeService('events');\n        $this->assertNull($service->boot());\n    }\n\n    public function testListenerWithoutLocaleUpdatedClass()\n    {\n        if (class_exists('Illuminate\\Foundation\\Events\\LocaleUpdated')) {\n            $this->markTestSkipped('This test cannot be run with Laravel 5.5 classes available via autoload.');\n        }\n\n        $dispatcher = new Dispatcher();\n        $service = new ServiceProvider($dispatcher);\n\n        Carbon::setLocale('en');\n        CarbonImmutable::setLocale('en');\n        CarbonPeriod::setLocale('en');\n        CarbonInterval::setLocale('en');\n        Carbon::setFallbackLocale('en');\n        CarbonImmutable::setFallbackLocale('en');\n        CarbonPeriod::setFallbackLocale('en');\n        CarbonInterval::setFallbackLocale('en');\n\n        $service->boot();\n        $service->app->register();\n        $service->app->setLocaleWithoutEvent('fr');\n        $service->app->setFallbackLocale('it');\n        $dispatcher->dispatch('locale.changed');\n        $this->assertSame('fr', Carbon::getLocale());\n        $this->assertSame('fr', CarbonImmutable::getLocale());\n        $this->assertSame('fr', CarbonPeriod::getLocale());\n        $this->assertSame('fr', CarbonInterval::getLocale());\n        $this->assertSame('en', Carbon::getFallbackLocale());\n        $this->assertSame('en', CarbonImmutable::getFallbackLocale());\n        $this->assertSame('en', CarbonPeriod::getFallbackLocale());\n        $this->assertSame('en', CarbonInterval::getFallbackLocale());\n    }\n\n    public function testListenerWithLocaleUpdatedClass()\n    {\n        if (!class_exists('Illuminate\\Foundation\\Events\\LocaleUpdated')) {\n            eval('namespace Illuminate\\Foundation\\Events; class LocaleUpdated {}');\n        }\n\n        $dispatcher = new Dispatcher();\n        $service = new ServiceProvider($dispatcher);\n\n        Carbon::setLocale('en');\n        CarbonImmutable::setLocale('en');\n        CarbonPeriod::setLocale('en');\n        CarbonInterval::setLocale('en');\n        Carbon::setFallbackLocale('en');\n        CarbonImmutable::setFallbackLocale('en');\n        CarbonPeriod::setFallbackLocale('en');\n        CarbonInterval::setFallbackLocale('en');\n\n        $service->boot();\n        $service->app->register();\n        $service->app->setLocaleWithoutEvent('fr');\n        $service->app->setFallbackLocale('it');\n        $app = new App();\n        $app->register();\n        $app->setLocaleWithoutEvent('de_DE');\n        $app->setFallbackLocale('es_ES');\n        $dispatcher->dispatch('Illuminate\\Foundation\\Events\\LocaleUpdated');\n        $this->assertSame('fr', Carbon::getLocale());\n        $this->assertSame('fr', CarbonImmutable::getLocale());\n        $this->assertSame('fr', CarbonPeriod::getLocale());\n        $this->assertSame('fr', CarbonInterval::getLocale());\n        $this->assertSame('en', Carbon::getFallbackLocale());\n        $this->assertSame('en', CarbonImmutable::getFallbackLocale());\n        $this->assertSame('en', CarbonPeriod::getFallbackLocale());\n        $this->assertSame('en', CarbonInterval::getFallbackLocale());\n\n        $service->setAppGetter(static fn () => $app);\n        $this->assertSame('fr', Carbon::getLocale());\n        $service->updateLocale();\n        $this->assertSame('de_DE', Carbon::getLocale());\n        $service->setLocaleGetter(static fn () => 'ckb');\n        $this->assertSame('de_DE', Carbon::getLocale());\n        $service->updateLocale();\n        $this->assertSame('ckb', Carbon::getLocale());\n        $service->setLocaleGetter(null);\n        $service->setAppGetter(static fn () => null);\n        $service->updateLocale();\n        $this->assertSame('ckb', Carbon::getLocale());\n\n        $service->setAppGetter(static fn () => $app);\n        $this->assertSame('en', Carbon::getFallbackLocale());\n        $service->updateFallbackLocale();\n        $this->assertSame('es_ES', Carbon::getFallbackLocale());\n        $service->setFallbackLocaleGetter(static fn () => 'ckb');\n        $this->assertSame('es_ES', Carbon::getFallbackLocale());\n        $service->updateFallbackLocale();\n        $this->assertSame('ckb', Carbon::getFallbackLocale());\n        $service->setFallbackLocaleGetter(null);\n        $service->setAppGetter(static fn () => null);\n        $service->updateFallbackLocale();\n        $this->assertSame('ckb', Carbon::getFallbackLocale());\n    }\n\n    public function testUpdateLocale()\n    {\n        if (class_exists('Illuminate\\Support\\Carbon')) {\n            $this->markTestSkipped('This test cannot be run with Laravel 5.5 classes available via autoload.');\n        }\n\n        eval('\n            namespace Illuminate\\Support;\n            class Carbon\n            {\n                public static $locale;\n                public static $fallbackLocale;\n\n                public static function setLocale($locale)\n                {\n                    static::$locale = $locale;\n                }\n\n                public static function setFallbackLocale($locale)\n                {\n                    static::$fallbackLocale = $locale;\n                }\n            }\n        ');\n\n        eval('\n            namespace Illuminate\\Support\\Facades;\n            use Exception;\n            class Date\n            {\n                public static $locale;\n                public static $fallbackLocale;\n\n                public static function getFacadeRoot()\n                {\n                    return new static();\n                }\n\n                public function setLocale($locale)\n                {\n                    static::$locale = $locale;\n\n                    if ($locale === \"fr\") {\n                        throw new Exception(\"stop\");\n                    }\n                }\n\n                public function setFallbackLocale($locale)\n                {\n                    static::$fallbackLocale = $locale;\n\n                    if ($locale === \"es\") {\n                        throw new Exception(\"stop\");\n                    }\n                }\n            }\n        ');\n\n        $dispatcher = new Dispatcher();\n        $service = new ServiceProvider($dispatcher);\n        $service->boot();\n        $service->app->register();\n\n        $this->assertSame('en', SupportCarbon::$locale);\n        $this->assertSame('en', Date::$locale);\n        $this->assertSame('en', SupportCarbon::$fallbackLocale);\n        $this->assertSame('en', Date::$fallbackLocale);\n\n        $service->updateLocale();\n\n        $this->assertSame('de', SupportCarbon::$locale);\n        $this->assertSame('de', Date::$locale);\n        $this->assertSame('en', SupportCarbon::$fallbackLocale);\n        $this->assertSame('en', Date::$fallbackLocale);\n\n        $service->updateFallbackLocale();\n\n        $this->assertSame('de', SupportCarbon::$locale);\n        $this->assertSame('de', Date::$locale);\n        $this->assertSame('fr', SupportCarbon::$fallbackLocale);\n        $this->assertSame('fr', Date::$fallbackLocale);\n\n        $service->app->setLocale('fr');\n        $service->app->setFallbackLocale('gl');\n        $service->updateLocale();\n\n        $this->assertSame('fr', SupportCarbon::$locale);\n        $this->assertSame('fr', Date::$locale);\n        $this->assertSame('fr', SupportCarbon::$fallbackLocale);\n        $this->assertSame('fr', Date::$fallbackLocale);\n\n        $service->updateFallbackLocale();\n\n        $this->assertSame('gl', SupportCarbon::$fallbackLocale);\n        $this->assertSame('gl', Date::$fallbackLocale);\n\n        eval('\n            use Illuminate\\Events\\Dispatcher;\n            use Tests\\Laravel\\App;\n            function app($id)\n            {\n                $app = new App();\n                $app->setEventDispatcher(new Dispatcher());\n                $app->register();\n                $app->setLocale(\"it\");\n\n                return $app;\n            }\n        ');\n\n        $service->app = new stdClass();\n        $service->updateLocale();\n\n        $this->assertSame('it', SupportCarbon::$locale);\n        $this->assertSame('it', Date::$locale);\n    }\n}\n"
  },
  {
    "path": "tests/Laravel/Translator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Illuminate\\Translation;\n\nclass Translator extends \\Symfony\\Component\\Translation\\Translator\n{\n}\n"
  },
  {
    "path": "tests/Laravel/laravel.12.x.multi-tester.yml",
    "content": "config:\n  directory: ../..\n\nprojects:\n  laravel/framework:\n    source:\n      type: git\n      url: https://github.com/laravel/framework.git\n      reference: 12.x\n      success_only: true\n    install:\n      - composer require \"phpunit/phpunit:~12.4.0\" \"carbonphp/carbon-doctrine-types:*\" \"psr/clock:^1.0\" \"symfony/clock:^7.0|^8.0\" \"symfony/polyfill-mbstring:^1.0\" \"symfony/translation:^7.0|^8.0\" --prefer-dist --no-interaction --prefer-stable\n      - composer update --prefer-dist --no-interaction --prefer-stable\n    script:\n      - vendor/bin/phpunit --no-coverage\n"
  },
  {
    "path": "tests/Laravel/laravel.master.multi-tester.yml",
    "content": "config:\n  directory: ../..\n\nprojects:\n  laravel/framework:\n    source:\n      type: git\n      url: https://github.com/laravel/framework.git\n      reference: master\n      success_only: true\n    install:\n      - composer config version \"12.x-dev\"\n      - composer require \"phpunit/phpunit:~12.4.0\" \"orchestra/testbench-core:^10\" \"carbonphp/carbon-doctrine-types:*\" \"psr/clock:^1.0\" \"symfony/clock:^7.0|^8.0\" \"symfony/polyfill-mbstring:^1.0\" \"symfony/translation:^7.0|^8.0\" --prefer-dist --no-interaction --prefer-stable\n      - composer update --prefer-dist --no-interaction --prefer-stable\n    script:\n      # Disable trigger_deprecation() in console/Application.php until Laravel fix the deprecation\n      - sed -i 's/trigger_deprecation/#trigger_deprecation/g' vendor/symfony/console/Application.php\n      - sed -i 's/testRouteCanBeFilteredByAction/skipTestRouteCanBeFilteredByAction/g' tests/Testing/Console/RouteListCommandTest.php\n      # Run the test\n      - vendor/bin/phpunit --no-coverage\n"
  },
  {
    "path": "tests/Localization/AaDjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AaDjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'aa_DJ'; // Afar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Acaada at 8:49 carra',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 carra',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 saaku',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 saaku CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 saaku, 12:00 saaku',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 saaku, 1:30 saaku',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 saaku, 2:00 saaku',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 saaku, 6:00 saaku',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 saaku, 10:00 saaku',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 carra, 12:00 carra',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 carra, 5:00 carra',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 carra, 9:30 carra',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 carra, 11:00 carra',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ayti ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ayti ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ayti ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ayti ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 saaku ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 saaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 saaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 saaku ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 àlsa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 àlsa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 àlsa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 àlsa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 gaqambo ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 gaqambo ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 gaqambo ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 gaqambo ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 gaqambo 3 àlsa 1 saaku 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 gaqambo from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 àlsa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 gaqambo 3 àlsa 1 saaku 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 ayti',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 saaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 saaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 saaku from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 ayti',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ayti from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 saaku',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 saaku 3 ayti',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AaErSaahoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AaErSaahoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'aa_ER@saaho'; // Afar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qunxa Sambat at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Naba Sambat at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sani at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Salus at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabuq at 12:00 saaku',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Camus at 12:00 saaku',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Salus at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabuq at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Camus at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qunxa Sambat at 12:00 saaku',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Naba Sambat at 8:49 carra',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 carra',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 saaku',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Salus at 12:00 saaku',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Salus at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sani at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Naba Sambat at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Qunxa Sambat at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Camus at 12:00 saaku',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Rabuq at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 saaku CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 saaku, 12:00 saaku',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 saaku, 1:30 saaku',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 saaku, 2:00 saaku',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 saaku, 6:00 saaku',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 saaku, 10:00 saaku',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 carra, 12:00 carra',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 carra, 5:00 carra',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 carra, 9:30 carra',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 carra, 11:00 carra',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AaErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AaErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'aa_ER'; // Afar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Acaada at 8:49 carra',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 carra',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 saaku',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 saaku CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 saaku, 12:00 saaku',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 saaku, 1:30 saaku',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 saaku, 2:00 saaku',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 saaku, 6:00 saaku',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 saaku, 10:00 saaku',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 carra, 12:00 carra',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 carra, 5:00 carra',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 carra, 9:30 carra',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 carra, 11:00 carra',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AaEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AaEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'aa_ET'; // Afar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Acaada at 8:49 carra',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 carra',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 saaku',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 saaku CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 saaku, 12:00 saaku',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 saaku, 1:30 saaku',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 saaku, 2:00 saaku',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 saaku, 6:00 saaku',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 saaku, 10:00 saaku',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 carra, 12:00 carra',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 carra, 5:00 carra',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 carra, 9:30 carra',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 carra, 11:00 carra',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'aa'; // Afar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabti at 12:00 saaku',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Acaada at 8:49 carra',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 carra',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 saaku',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talaata at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Etleeni at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Acaada at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabti at 12:00 saaku',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisi at 12:00 saaku',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Arbaqa at 12:00 saaku',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Gumqata at 12:00 saaku',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 saaku CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 saaku, 12:00 saaku',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 saaku, 1:30 saaku',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 saaku, 2:00 saaku',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 saaku, 6:00 saaku',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 saaku, 10:00 saaku',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 carra, 12:00 carra',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 carra, 5:00 carra',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 carra, 9:30 carra',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 carra, 11:00 carra',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ayti ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ayti ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ayti ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ayti ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 saaku ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 saaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 saaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 saaku ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 àlsa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 àlsa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 àlsa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 àlsa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 gaqambo ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 gaqambo ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 gaqambo ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 gaqambo ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 gaqambo 3 àlsa 1 saaku 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 gaqambo from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 àlsa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 gaqambo 3 àlsa 1 saaku 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 ayti',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 saaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 saaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 saaku from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 ayti',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ayti from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 saaku',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 saaku 3 ayti',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AfNaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AfNaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'af_NA'; // Afrikaans\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Môre om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Vrydag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Vrydag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Laas Sondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gister om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Vandag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Vandag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Môre om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Gister om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gister om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Sondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Saterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Vrydag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Laas Donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Laas Woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laas Vrydag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 v CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 v, 12:00 v',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 v, 1:30 v',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 v, 2:00 v',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 v, 6:00 v',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 v, 10:00 v',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 n, 12:00 n',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 n, 5:00 n',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 n, 9:30 n',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 n, 11:00 n',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekond gelede',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. gelede',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekondes gelede',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. gelede',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut gelede',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. gelede',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minute gelede',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. gelede',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur gelede',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 u. gelede',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur gelede',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 u. gelede',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag gelede',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. gelede',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dae gelede',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. gelede',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week gelede',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 w. gelede',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weke gelede',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 w. gelede',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand gelede',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 maa. gelede',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maande gelede',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 maa. gelede',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar gelede',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 j. gelede',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar gelede',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 j. gelede',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'oor 1 sekond',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'oor 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekond na',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. na',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekond voor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. voor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekond',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'oor 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 sekond',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 maa. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'oor 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 maa. gelede',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 j. 3 maa. 1 d. 1 s. gelede',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dae',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dae',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'oor 1 week en 6 dae',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weke 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'oor \\'n uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dae',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 u.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'af'; // Afrikaans\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Môre om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Vrydag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Vrydag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Laas Sondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gister om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Vandag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Vandag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Môre om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Gister om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gister om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Sondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Saterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Vrydag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Laas Donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Laas Woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laas Vrydag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekond gelede',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. gelede',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekondes gelede',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. gelede',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut gelede',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. gelede',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minute gelede',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. gelede',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur gelede',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 u. gelede',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur gelede',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 u. gelede',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag gelede',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. gelede',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dae gelede',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. gelede',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week gelede',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 w. gelede',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weke gelede',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 w. gelede',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand gelede',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 maa. gelede',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maande gelede',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 maa. gelede',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar gelede',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 j. gelede',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar gelede',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 j. gelede',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'oor 1 sekond',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'oor 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekond na',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. na',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekond voor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. voor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekond',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'oor 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 sekond',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 maa. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'oor 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 maa. gelede',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 j. 3 maa. 1 d. 1 s. gelede',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dae',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dae',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'oor 1 week en 6 dae',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weke 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'oor \\'n uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dae',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 u.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AfZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AfZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'af_ZA'; // Afrikaans\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Môre om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Vrydag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Vrydag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Laas Sondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gister om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Vandag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Vandag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Môre om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Gister om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gister om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Sondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Saterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laas Vrydag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Laas Donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Laas Woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laas Vrydag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekond gelede',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. gelede',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekondes gelede',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. gelede',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut gelede',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. gelede',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minute gelede',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. gelede',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur gelede',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 u. gelede',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur gelede',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 u. gelede',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag gelede',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. gelede',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dae gelede',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. gelede',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week gelede',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 w. gelede',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weke gelede',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 w. gelede',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand gelede',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 maa. gelede',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maande gelede',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 maa. gelede',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar gelede',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 j. gelede',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar gelede',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 j. gelede',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'oor 1 sekond',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'oor 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekond na',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. na',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekond voor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. voor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekond',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'oor 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 sekond',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 maa. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'oor 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 maa. gelede',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 j. 3 maa. 1 d. 1 s. gelede',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dae',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dae',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'oor 1 week en 6 dae',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weke 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'oor \\'n uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dae',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 u.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AgqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AgqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'agq'; // Aghem\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tsuʔndzɨkɔʔɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tsuʔntsɨ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tsuʔukpà at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tsuʔughɔe at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tsuʔutɔ̀mlò at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tsuʔumè at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'tsuʔughɨ̂m at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tsuʔughɔe at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tsuʔutɔ̀mlò at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tsuʔumè at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tsuʔughɨ̂m at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tsuʔndzɨkɔʔɔ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last tsuʔntsɨ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tsuʔughɔe at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tsuʔughɔe at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tsuʔukpà at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tsuʔntsɨ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tsuʔndzɨkɔʔɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tsuʔughɨ̂m at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tsuʔumè at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last tsuʔutɔ̀mlò at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last tsuʔughɨ̂m at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.g CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.g, 12:00 a.g',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.g, 1:30 a.g',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.g, 2:00 a.g',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.g, 6:00 a.g',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.g, 10:00 a.g',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.k, 12:00 a.k',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 a.k, 5:00 a.k',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 a.k, 9:30 a.k',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 a.k, 11:00 a.k',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AgrPeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AgrPeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'agr_PE'; // Aguaruna\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bataetin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuntuamtin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Achutin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saketin at 12:00 VM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Shimpitin at 12:00 VM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saketin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Shimpitin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bataetin at 12:00 VM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Tuntuamtin at 8:49 NM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 NM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 VM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Achutin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuntuamtin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bataetin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Shimpitin at 12:00 VM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Saketin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 53rd',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 53rd',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 53rd',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 53rd',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 53rd',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 53rd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 1st',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 kuwiš ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 kuwiš ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 kuwiš ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 kuwiš ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 nayaim ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 nayaim ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 nayaim ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 nayaim ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 nantu ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 nantu ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 nantu ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 nantu ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 yaya ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 yaya ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 yaya ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 yaya ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 yaya 3 nantu 1 nayaim 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 yaya from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 nantu ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 yaya 3 nantu 1 nayaim 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 kuwiš',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 nayaim',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 nayaim',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 nayaim from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 kuwiš',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 kuwiš from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 nayaim',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 nayaim 3 kuwiš',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AgrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AgrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'agr'; // Aguaruna\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bataetin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuntuamtin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Achutin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saketin at 12:00 VM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Shimpitin at 12:00 VM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saketin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Shimpitin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bataetin at 12:00 VM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Tuntuamtin at 8:49 NM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 NM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 VM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kugkuktin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Achutin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuntuamtin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bataetin at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Shimpitin at 12:00 VM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Saketin at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Imaptin at 12:00 VM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 53rd',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 53rd',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 53rd',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 53rd',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 53rd',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 53rd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 1st',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 kuwiš ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 kuwiš ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 kuwiš ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 kuwiš ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 nayaim ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 nayaim ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 nayaim ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 nayaim ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 nantu ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 nantu ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 nantu ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 nantu ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 yaya ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 yaya ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 yaya ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 yaya ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 yaya 3 nantu 1 nayaim 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 yaya from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 nantu ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 yaya 3 nantu 1 nayaim 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 kuwiš',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 nayaim',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 nayaim',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 nayaim from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 kuwiš',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 kuwiš from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 nayaim',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 nayaim 3 kuwiš',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AkGhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AkGhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ak_GH'; // Akan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Memeneda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kwesida at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dwowda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Benada at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wukuda at 12:00 AN',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Yawda at 12:00 AN',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fida at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Benada at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wukuda at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Yawda at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fida at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Memeneda at 12:00 AN',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Kwesida at 8:49 EW',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 EW',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AN',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Benada at 12:00 AN',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Benada at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dwowda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kwesida at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Memeneda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fida at 12:00 AN',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Yawda at 12:00 AN',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wukuda at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fida at 12:00 AN',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 an CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AN, 12:00 an',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AN, 1:30 an',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AN, 2:00 an',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AN, 6:00 an',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AN, 10:00 an',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 EW, 12:00 ew',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 EW, 5:00 ew',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 EW, 9:30 ew',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 EW, 11:00 ew',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ɛda ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ɛda ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ɛda ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ɛda ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bosume ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 bosume ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bosume ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 bosume ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 afe ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 afe ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 afe ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 afe ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 afe 3 bosume 1 ɛda 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 afe from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 bosume ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 afe 3 bosume 1 ɛda 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ɛda',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ɛda',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ɛda from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ɛda',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ɛda 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ak'; // Akan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Memeneda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kwesida at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dwowda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Benada at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wukuda at 12:00 AN',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Yawda at 12:00 AN',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fida at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Benada at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wukuda at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Yawda at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fida at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Memeneda at 12:00 AN',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Kwesida at 8:49 EW',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 EW',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AN',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Benada at 12:00 AN',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Benada at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dwowda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kwesida at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Memeneda at 12:00 AN',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fida at 12:00 AN',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Yawda at 12:00 AN',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wukuda at 12:00 AN',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fida at 12:00 AN',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 an CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AN, 12:00 an',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AN, 1:30 an',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AN, 2:00 an',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AN, 6:00 an',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AN, 10:00 an',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 EW, 12:00 ew',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 EW, 5:00 ew',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 EW, 9:30 ew',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 EW, 11:00 ew',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ɛda ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ɛda ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ɛda ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ɛda ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bosume ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 bosume ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bosume ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 bosume ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 afe ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 afe ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 afe ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 afe ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 afe 3 bosume 1 ɛda 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 afe from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 bosume ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 afe 3 bosume 1 ɛda 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ɛda',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ɛda',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ɛda from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ɛda',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ɛda 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AmEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AmEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'am_ET'; // Amharic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቅዳሜ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'እሑድ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ረቡዕ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሐሙስ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ረቡዕ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሐሙስ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቅዳሜ at 12:00 ጡዋት',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last እሑድ at 8:49 ከሰዓት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ከሰዓት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ጡዋት',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last እሑድ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቅዳሜ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሐሙስ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ረቡዕ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ጡዋት CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ጡዋት, 12:00 ጡዋት',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ጡዋት, 1:30 ጡዋት',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ጡዋት, 2:00 ጡዋት',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ጡዋት, 6:00 ጡዋት',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ጡዋት, 10:00 ጡዋት',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ከሰዓት, 12:00 ከሰዓት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ከሰዓት, 5:00 ከሰዓት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ከሰዓት, 9:30 ከሰዓት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ከሰዓት, 11:00 ከሰዓት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ከ1 ሴኮንድ በፊት',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ከ1 ሴኮንድ በፊት',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ከ2 ሴኮንድ በፊት',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ከ2 ሴኮንድ በፊት',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ከ1 ደቂቃ በፊት',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ከ1 ደቂቃ በፊት',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ከ2 ደቂቃ በፊት',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ከ2 ደቂቃ በፊት',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ከ1 ሰዓት በፊት',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ከ1 ሰዓት በፊት',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ከ2 ሰዓት በፊት',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ከ2 ሰዓት በፊት',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ከ1 ቀን በፊት',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ከ1 ቀን በፊት',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ከ2 ቀን በፊት',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ከ2 ቀን በፊት',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ከ1 ሳምንት በፊት',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ከ1 ሳምንት በፊት',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ከ2 ሳምንት በፊት',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ከ2 ሳምንት በፊት',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ከ1 ወር በፊት',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ከ1 ወር በፊት',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ከ2 ወር በፊት',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ከ2 ወር በፊት',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ከ1 አመት በፊት',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ከ1 አመት በፊት',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ከ2 አመት በፊት',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ከ2 አመት በፊት',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'በ1 ሴኮንድ ውስጥ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'በ1 ሴኮንድ ውስጥ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ሴኮንድ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ሴኮንድ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ሴኮንድ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ሴኮንድ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ሴኮንድ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ሴኮንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ሴኮንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ሴኮንድ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'በ1 ሴኮንድ ውስጥ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ደቂቃ 1 ሴኮንድ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 አመት 3 ወር 1 ቀን 1 ሴኮንድ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'በ3 አመት ውስጥ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ከ5 ወር በፊት',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ከ2 አመት 3 ወር 1 ቀን 1 ሴኮንድ በፊት',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሳምንት 10 ሰዓት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሳምንት 6 ቀን',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሳምንት 6 ቀን',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'በ1 ሳምንት and 6 ቀን ውስጥ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሳምንት 1 ሰዓት',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'በ1 ሰዓት ውስጥ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ቀን',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ቀን 3 ሰዓት',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'am'; // Amharic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቅዳሜ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'እሑድ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ረቡዕ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሐሙስ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ረቡዕ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሐሙስ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቅዳሜ at 12:00 ጡዋት',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last እሑድ at 8:49 ከሰዓት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ከሰዓት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ጡዋት',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ማክሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኞ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last እሑድ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቅዳሜ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሐሙስ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ረቡዕ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርብ at 12:00 ጡዋት',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ጡዋት CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ጡዋት, 12:00 ጡዋት',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ጡዋት, 1:30 ጡዋት',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ጡዋት, 2:00 ጡዋት',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ጡዋት, 6:00 ጡዋት',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ጡዋት, 10:00 ጡዋት',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ከሰዓት, 12:00 ከሰዓት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ከሰዓት, 5:00 ከሰዓት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ከሰዓት, 9:30 ከሰዓት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ከሰዓት, 11:00 ከሰዓት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ከ1 ሴኮንድ በፊት',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ከ1 ሴኮንድ በፊት',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ከ2 ሴኮንድ በፊት',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ከ2 ሴኮንድ በፊት',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ከ1 ደቂቃ በፊት',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ከ1 ደቂቃ በፊት',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ከ2 ደቂቃ በፊት',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ከ2 ደቂቃ በፊት',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ከ1 ሰዓት በፊት',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ከ1 ሰዓት በፊት',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ከ2 ሰዓት በፊት',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ከ2 ሰዓት በፊት',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ከ1 ቀን በፊት',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ከ1 ቀን በፊት',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ከ2 ቀን በፊት',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ከ2 ቀን በፊት',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ከ1 ሳምንት በፊት',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ከ1 ሳምንት በፊት',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ከ2 ሳምንት በፊት',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ከ2 ሳምንት በፊት',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ከ1 ወር በፊት',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ከ1 ወር በፊት',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ከ2 ወር በፊት',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ከ2 ወር በፊት',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ከ1 አመት በፊት',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ከ1 አመት በፊት',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ከ2 አመት በፊት',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ከ2 አመት በፊት',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'በ1 ሴኮንድ ውስጥ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'በ1 ሴኮንድ ውስጥ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ሴኮንድ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ሴኮንድ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ሴኮንድ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ሴኮንድ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ሴኮንድ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ሴኮንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ሴኮንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ሴኮንድ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'በ1 ሴኮንድ ውስጥ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ደቂቃ 1 ሴኮንድ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 አመት 3 ወር 1 ቀን 1 ሴኮንድ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'በ3 አመት ውስጥ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ከ5 ወር በፊት',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ከ2 አመት 3 ወር 1 ቀን 1 ሴኮንድ በፊት',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሳምንት 10 ሰዓት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሳምንት 6 ቀን',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሳምንት 6 ቀን',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'በ1 ሳምንት and 6 ቀን ውስጥ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሳምንት 1 ሰዓት',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'በ1 ሰዓት ውስጥ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ቀን',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ቀን 3 ሰዓት',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AnEsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AnEsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'an_ES'; // Aragonese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabado at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luns at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mierques at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'chueves at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mierques at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'chueves at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabado at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last domingo at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martes at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last luns at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last domingo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabado at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last viernes at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last chueves at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mierques at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last viernes at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segundo ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segundo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segundo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segundo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuto ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuto ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuto ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 reloch ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 reloch ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 reloch ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 reloch ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 día ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 día ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 día ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 día ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 semana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 semana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 semana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 semana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mes ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mes ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mes ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mes ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 año ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 año ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 año ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 año ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segundo from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segundo from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segundo after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segundo before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segundo from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 año 3 mes 1 día 1 segundo',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 año from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mes ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 año 3 mes 1 día 1 segundo ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 reloch',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 semana and 6 día from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semana 1 reloch',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 reloch from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 día',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 día 3 reloch',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'an'; // Aragonese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabado at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luns at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mierques at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'chueves at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mierques at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'chueves at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabado at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last domingo at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martes at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last luns at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last domingo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabado at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last viernes at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last chueves at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mierques at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last viernes at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segundo ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segundo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segundo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segundo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuto ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuto ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuto ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 reloch ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 reloch ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 reloch ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 reloch ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 día ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 día ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 día ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 día ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 semana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 semana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 semana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 semana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mes ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mes ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mes ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mes ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 año ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 año ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 año ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 año ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segundo from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segundo from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segundo after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segundo before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segundo from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 año 3 mes 1 día 1 segundo',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 año from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mes ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 año 3 mes 1 día 1 segundo ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 reloch',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 semana and 6 día from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semana 1 reloch',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 reloch from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 día',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 día 3 reloch',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AnpInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AnpInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'anp_IN'; // Angika\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AnpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AnpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'anp'; // Angika\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArAeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArAeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_AE'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت  عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت  عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت  عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArBhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArBhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_BH'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArDjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArDjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_DJ'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArDzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArDzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_DZ'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدا على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد على الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم على الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم على الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدا على الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'في ثانية',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'في 3 سنوات',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'في أسبوع و 6 أيام',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'في ساعة',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArEgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArEgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_EG'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArEhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArEhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_EH'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_ER'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArIlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArIlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_IL'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_IN'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArIqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArIqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_IQ'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArJoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArJoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_JO'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArKmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArKmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_KM'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArKwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArKwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_KW'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدا على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد على الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم على الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم على الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدا على الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'في ثانية',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'في 3 سنوات',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'في أسبوع و 6 أيام',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'في ساعة',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArLbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArLbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_LB'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArLyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArLyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_LY'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArMaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArMaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_MA'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدا على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد على الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم على الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم على الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدا على الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'في ثانية',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'في 3 سنوات',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'في أسبوع و 6 أيام',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'في ساعة',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArMrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArMrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_MR'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArOmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArOmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_OM'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArPsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArPsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_PS'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArQaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArQaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_QA'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArSaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArSaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_SA'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدا على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد على الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم على الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم على الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدا على الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'في ثانية',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'في 3 سنوات',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'في أسبوع و 6 أيام',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'في ساعة',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArSdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArSdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_SD'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArShaklTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArShaklTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_Shakl'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'مُنْذُ ثَانِيَة',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'مُنْذُ ثَانِيَة',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'مُنْذُ ثَانِيَتَيْن',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'مُنْذُ ثَانِيَتَيْن',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'مُنْذُ دَقِيقَة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'مُنْذُ دَقِيقَة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'مُنْذُ دَقِيقَتَيْن',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'مُنْذُ دَقِيقَتَيْن',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'مُنْذُ سَاعَة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'مُنْذُ سَاعَة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'مُنْذُ سَاعَتَيْن',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'مُنْذُ سَاعَتَيْن',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'مُنْذُ يَوْم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'مُنْذُ يَوْم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'مُنْذُ يَوْمَيْن',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'مُنْذُ يَوْمَيْن',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'مُنْذُ أُسْبُوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'مُنْذُ أُسْبُوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'مُنْذُ أُسْبُوعَيْن',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'مُنْذُ أُسْبُوعَيْن',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'مُنْذُ شَهْرَ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'مُنْذُ شَهْرَ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'مُنْذُ شَهْرَيْن',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'مُنْذُ شَهْرَيْن',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'مُنْذُ سَنَة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'مُنْذُ سَنَة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'مُنْذُ سَنَتَيْن',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'مُنْذُ سَنَتَيْن',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'مِنَ الْآن ثَانِيَة',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'مِنَ الْآن ثَانِيَة',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بَعْدَ ثَانِيَة',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بَعْدَ ثَانِيَة',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قَبْلَ ثَانِيَة',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قَبْلَ ثَانِيَة',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثَانِيَة',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثَانِيَة',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثَانِيَتَيْن',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثَانِيَتَيْن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'مِنَ الْآن ثَانِيَة',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دَقِيقَة ثَانِيَة',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سَنَتَيْن 3 أَشْهُر يَوْم ثَانِيَة',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'مِنَ الْآن 3 سَنَوَات',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'مُنْذُ 5 أَشْهُر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'مُنْذُ سَنَتَيْن 3 أَشْهُر يَوْم ثَانِيَة',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أُسْبُوع 10 سَاعَات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أُسْبُوع 6 أَيَّام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أُسْبُوع 6 أَيَّام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'مِنَ الْآن أُسْبُوع و 6 أَيَّام',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أُسْبُوعَيْن سَاعَة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'مِنَ الْآن سَاعَة',\n        // CarbonInterval::days(2)->forHumans()\n        'يَوْمَيْن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يَوْم 3 سَاعَات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArSoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArSoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_SO'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArSsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArSsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_SS'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArSyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArSyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_SY'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArTdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArTdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_TD'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArTnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArTnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_TN'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدا على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد على الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم على الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم على الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدا على الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت على الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس على الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء على الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة على الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'في ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'في ثانية',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'في 3 سنوات',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'في أسبوع و 6 أيام',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'في ساعة',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ArYeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ArYeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ar_YE'; // Arabic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'غدًا عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'الأحد عند الساعة 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اليوم عند الساعة 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اليوم عند الساعة 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'غدًا عند الساعة 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'أمس عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الثلاثاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الاثنين عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الأحد عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'السبت عند الساعة 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'الخميس عند الساعة 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'الأربعاء عند الساعة 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'الجمعة عند الساعة 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 م, 12:00 م',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 م, 5:00 م',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 م, 9:30 م',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 م, 11:00 م',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'منذ ثانية',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'منذ ثانيتين',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'منذ ثانيتين',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'منذ دقيقة',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'منذ دقيقتين',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'منذ دقيقتين',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'منذ ساعة',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'منذ ساعة',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'منذ ساعتين',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'منذ ساعتين',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'منذ يوم',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'منذ يوم',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'منذ يومين',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'منذ يومين',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'منذ أسبوع',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'منذ أسبوعين',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'منذ أسبوعين',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'منذ شهر',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'منذ شهر',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'منذ شهرين',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'منذ شهرين',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'منذ سنة',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'منذ سنة',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'منذ سنتين',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'منذ سنتين',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ثانية من الآن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'بعد ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'بعد ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'قبل ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'قبل ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ثانية',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ثانية',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'ثانيتين',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'ثانيتين',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ثانية من الآن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'دقيقة ثانية',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سنوات من الآن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'منذ 5 أشهر',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'منذ سنتين 3 أشهر يوم ثانية',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'أسبوع 10 ساعات',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'أسبوع 6 أيام',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'أسبوع و 6 أيام من الآن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'أسبوعين ساعة',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ساعة من الآن',\n        // CarbonInterval::days(2)->forHumans()\n        'يومين',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'يوم 3 ساعات',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AsInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AsInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'as_IN'; // Assamese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'শনিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'দেওবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'সোমবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'বুধবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'বৃহষ্পতিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'বুধবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'বৃহষ্পতিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'শনিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last দেওবাৰ at 8:49 অপৰাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 অপৰাহ্ন',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last সোমবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last দেওবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last শনিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last বৃহষ্পতিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last বুধবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 পূৰ্ব্বাহ্ন CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 পূৰ্ব্বাহ্ন, 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 পূৰ্ব্বাহ্ন, 1:30 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 পূৰ্ব্বাহ্ন, 2:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 পূৰ্ব্বাহ্ন, 6:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 পূৰ্ব্বাহ্ন, 10:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 অপৰাহ্ন, 12:00 অপৰাহ্ন',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 অপৰাহ্ন, 5:00 অপৰাহ্ন',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 অপৰাহ্ন, 9:30 অপৰাহ্ন',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 অপৰাহ্ন, 11:00 অপৰাহ্ন',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 দ্বিতীয় ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 দ্বিতীয় ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 দ্বিতীয় ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 দ্বিতীয় ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 মিনিট ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 মিনিট ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 মিনিট ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 মিনিট ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ঘণ্টা ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ঘণ্টা ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ঘণ্টা ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ঘণ্টা ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 বাৰ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 বাৰ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 বাৰ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 বাৰ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 সপ্তাহ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 সপ্তাহ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 সপ্তাহ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 সপ্তাহ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 মাহ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 মাহ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 মাহ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 মাহ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 বছৰ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 বছৰ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 বছৰ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 বছৰ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 দ্বিতীয় from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 দ্বিতীয় from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 দ্বিতীয় after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 দ্বিতীয় after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 দ্বিতীয় before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 দ্বিতীয় before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 দ্বিতীয়',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 দ্বিতীয়',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 দ্বিতীয়',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 দ্বিতীয়',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 দ্বিতীয় from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 মিনিট 1 দ্বিতীয়',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 বছৰ 3 মাহ 1 বাৰ 1 দ্বিতীয়',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 বছৰ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 মাহ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 বছৰ 3 মাহ 1 বাৰ 1 দ্বিতীয় ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 সপ্তাহ 10 ঘণ্টা',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 সপ্তাহ 6 বাৰ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 সপ্তাহ 6 বাৰ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 সপ্তাহ and 6 বাৰ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 সপ্তাহ 1 ঘণ্টা',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ঘণ্টা from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 বাৰ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 বাৰ 3 ঘণ্টা',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'as'; // Assamese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'শনিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'দেওবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'সোমবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'বুধবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'বৃহষ্পতিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'বুধবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'বৃহষ্পতিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'শনিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last দেওবাৰ at 8:49 অপৰাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 অপৰাহ্ন',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last মঙ্গলবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last সোমবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last দেওবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last শনিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last বৃহষ্পতিবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last বুধবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last শুক্ৰবাৰ at 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 পূৰ্ব্বাহ্ন CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 পূৰ্ব্বাহ্ন, 12:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 পূৰ্ব্বাহ্ন, 1:30 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 পূৰ্ব্বাহ্ন, 2:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 পূৰ্ব্বাহ্ন, 6:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 পূৰ্ব্বাহ্ন, 10:00 পূৰ্ব্বাহ্ন',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 অপৰাহ্ন, 12:00 অপৰাহ্ন',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 অপৰাহ্ন, 5:00 অপৰাহ্ন',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 অপৰাহ্ন, 9:30 অপৰাহ্ন',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 অপৰাহ্ন, 11:00 অপৰাহ্ন',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 দ্বিতীয় ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 দ্বিতীয় ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 দ্বিতীয় ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 দ্বিতীয় ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 মিনিট ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 মিনিট ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 মিনিট ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 মিনিট ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ঘণ্টা ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ঘণ্টা ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ঘণ্টা ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ঘণ্টা ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 বাৰ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 বাৰ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 বাৰ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 বাৰ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 সপ্তাহ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 সপ্তাহ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 সপ্তাহ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 সপ্তাহ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 মাহ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 মাহ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 মাহ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 মাহ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 বছৰ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 বছৰ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 বছৰ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 বছৰ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 দ্বিতীয় from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 দ্বিতীয় from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 দ্বিতীয় after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 দ্বিতীয় after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 দ্বিতীয় before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 দ্বিতীয় before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 দ্বিতীয়',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 দ্বিতীয়',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 দ্বিতীয়',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 দ্বিতীয়',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 দ্বিতীয় from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 মিনিট 1 দ্বিতীয়',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 বছৰ 3 মাহ 1 বাৰ 1 দ্বিতীয়',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 বছৰ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 মাহ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 বছৰ 3 মাহ 1 বাৰ 1 দ্বিতীয় ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 সপ্তাহ 10 ঘণ্টা',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 সপ্তাহ 6 বাৰ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 সপ্তাহ 6 বাৰ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 সপ্তাহ and 6 বাৰ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 সপ্তাহ 1 ঘণ্টা',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ঘণ্টা from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 বাৰ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 বাৰ 3 ঘণ্টা',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AsaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AsaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'asa'; // Asu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapili at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 icheheavo CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 icheheavo, 12:00 icheheavo',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 icheheavo, 1:30 icheheavo',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 icheheavo, 2:00 icheheavo',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 icheheavo, 6:00 icheheavo',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 icheheavo, 10:00 icheheavo',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ichamthi, 12:00 ichamthi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ichamthi, 5:00 ichamthi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ichamthi, 9:30 ichamthi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ichamthi, 11:00 ichamthi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AstEsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AstEsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ast_ES'; // Asturian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'mañana a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sábadu a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'domingu a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'llunes a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'martes a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'miércoles a las 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'xueves a las 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'vienres a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'martes a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'miércoles a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'xueves a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'vienres a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sábadu a las 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'el domingu pasado a las 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'ayer a las 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'hoy a las 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'hoy a las 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'mañana a las 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'martes a las 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ayer a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ayer a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'el martes pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'el llunes pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'el domingu pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'el sábadu pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'el vienres pasado a las 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'el xueves pasado a las 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'el miércoles pasado a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'el vienres pasado a las 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1º 1º 1º 1º 1º',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2º 1º',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3º 1º',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4º 1º',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5º 1º',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6º 1º',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7º 1º',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11º 2º',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40º',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41º',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100º',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0º',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'hai 1 segundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'hai 1 segundu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'hai 2 segundu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'hai 2 segundu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'hai 1 minutu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'hai 1 minutu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'hai 2 minutu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'hai 2 minutu',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'hai 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'hai 1 hora',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'hai 2 hora',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'hai 2 hora',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'hai 1 día',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'hai 1 día',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'hai 2 día',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'hai 2 día',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'hai 1 selmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'hai 1 selmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'hai 2 selmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'hai 2 selmana',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'hai 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'hai 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'hai 2 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'hai 2 mes',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'hai 1 añu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'hai 1 añu',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'hai 2 añu',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'hai 2 añu',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'en 1 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'en 1 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 segundu dempués',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 segundu dempués',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 segundu enantes',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 segundu enantes',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 segundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 segundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'en 1 segundu',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minutu 1 segundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 añu 3 mes 1 día 1 segundu',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'en 3 añu',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'hai 5 mes',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'hai 2 añu 3 mes 1 día 1 segundu',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 selmana 10 hora',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 selmana 6 día',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 selmana 6 día',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'en 1 selmana y 6 día',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 selmana 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'en una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 día',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 día 3 hora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AstTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AstTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ast'; // Asturian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'mañana a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sábadu a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'domingu a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'llunes a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'martes a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'miércoles a las 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'xueves a las 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'vienres a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'martes a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'miércoles a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'xueves a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'vienres a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sábadu a las 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'el domingu pasado a las 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'ayer a las 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'hoy a las 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'hoy a las 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'mañana a las 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'martes a las 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ayer a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ayer a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'el martes pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'el llunes pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'el domingu pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'el sábadu pasado a las 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'el vienres pasado a las 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'el xueves pasado a las 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'el miércoles pasado a las 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'el vienres pasado a las 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1º 1º 1º 1º 1º',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2º 1º',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3º 1º',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4º 1º',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5º 1º',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6º 1º',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7º 1º',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11º 2º',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40º',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41º',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100º',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0º',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'hai 1 segundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'hai 1 segundu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'hai 2 segundu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'hai 2 segundu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'hai 1 minutu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'hai 1 minutu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'hai 2 minutu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'hai 2 minutu',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'hai 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'hai 1 hora',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'hai 2 hora',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'hai 2 hora',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'hai 1 día',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'hai 1 día',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'hai 2 día',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'hai 2 día',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'hai 1 selmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'hai 1 selmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'hai 2 selmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'hai 2 selmana',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'hai 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'hai 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'hai 2 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'hai 2 mes',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'hai 1 añu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'hai 1 añu',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'hai 2 añu',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'hai 2 añu',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'en 1 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'en 1 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 segundu dempués',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 segundu dempués',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 segundu enantes',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 segundu enantes',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 segundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 segundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 segundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'en 1 segundu',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minutu 1 segundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 añu 3 mes 1 día 1 segundu',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'en 3 añu',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'hai 5 mes',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'hai 2 añu 3 mes 1 día 1 segundu',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 selmana 10 hora',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 selmana 6 día',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 selmana 6 día',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'en 1 selmana y 6 día',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 selmana 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'en una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 día',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 día 3 hora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AycPeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AycPeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ayc_PE'; // Southern Aymara\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sawäru at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tuminku at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mirkulisa at 12:00 VM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'juywisa at 12:00 VM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mirkulisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'juywisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sawäru at 12:00 VM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last tuminku at 8:49 NM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 NM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 VM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martisa at 12:00 VM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tuminku at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sawäru at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last juywisa at 12:00 VM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mirkulisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AycTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AycTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ayc'; // Southern Aymara\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sawäru at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tuminku at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mirkulisa at 12:00 VM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'juywisa at 12:00 VM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mirkulisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'juywisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sawäru at 12:00 VM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last tuminku at 8:49 NM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 NM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 VM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martisa at 12:00 VM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunisa at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tuminku at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sawäru at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last juywisa at 12:00 VM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mirkulisa at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last wirnisa at 12:00 VM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AzArabTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AzArabTest extends LocalizationTestCase\n{\n    public const LOCALE = 'az_Arab'; // Azerbaijani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'شنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'یکشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'دوشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سه‌شنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'چارشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'جۆمعه آخشامی at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جۆمعه at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'سه‌شنبه at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'چارشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جۆمعه آخشامی at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جۆمعه at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'شنبه at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last یکشنبه at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'سه‌شنبه at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last سه‌شنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last دوشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last یکشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last شنبه at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last جۆمعه at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last جۆمعه آخشامی at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last چارشنبه at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last جۆمعه at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AzAzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AzAzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'az_AZ'; // Azerbaijani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sabah saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'gələn həftə şənbə saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'gələn həftə bazar günü saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'gələn həftə bazar ertəsi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'gələn həftə çərşənbə saat 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'gələn həftə cümə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'gələn həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'gələn həftə çərşənbə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'gələn həftə cümə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'gələn həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'gələn həftə şənbə saat 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'keçən həftə bazar günü saat 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'dünən 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'bugün saat 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'bugün saat 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sabah saat 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'dünən 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'dünən 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'keçən həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'keçən həftə bazar ertəsi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'keçən həftə bazar günü saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'keçən həftə şənbə saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'keçən həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'keçən həftə cümə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'keçən həftə çərşənbə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'keçən həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1-inci 1-inci 1-inci 1-inci 1-inci',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2-nci 1-inci',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3-üncü 1-inci',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4-üncü 1-inci',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5-inci 1-inci',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6-ncı 1-inci',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7-nci 1-inci',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11-inci 2-nci',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-inci',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-üncü',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 gecə CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 gecə, 12:00 gecə',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 gecə, 1:30 gecə',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 gecə, 2:00 gecə',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 səhər, 6:00 səhər',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 səhər, 10:00 səhər',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 gündüz, 12:00 gündüz',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 axşam, 5:00 axşam',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 axşam, 9:30 axşam',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 axşam, 11:00 axşam',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0-ıncı',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 saniyə əvvəl',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 san. əvvəl',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 saniyə əvvəl',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 san. əvvəl',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 dəqiqə əvvəl',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 d. əvvəl',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 dəqiqə əvvəl',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 d. əvvəl',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saat əvvəl',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 s. əvvəl',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saat əvvəl',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 s. əvvəl',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 gün əvvəl',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 g. əvvəl',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 gün əvvəl',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 g. əvvəl',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 həftə əvvəl',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 h. əvvəl',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 həftə əvvəl',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 h. əvvəl',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ay əvvəl',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 ay əvvəl',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ay əvvəl',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ay əvvəl',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 il əvvəl',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 il əvvəl',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 il əvvəl',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 il əvvəl',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 saniyə sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 san. sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 saniyə sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 san. sonra',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 saniyə əvvəl',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 san. əvvəl',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 saniyə',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 san.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 saniyə',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 san.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 san. sonra',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 dəqiqə 1 saniyə',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 il 3 ay 1 g. 1 san.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 il sonra',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ay əvvəl',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 il 3 ay 1 g. 1 san. əvvəl',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 həftə 10 saat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 həftə 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 həftə 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 həftə və 6 gün sonra',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 həftə 1 saat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'bir saat sonra',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 gün',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 g. 3 s.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AzCyrlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AzCyrlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'az_Cyrl'; // Azerbaijani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sabah saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'gələn həftə шәнбә saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'gələn həftə базар saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'gələn həftə базар ертәси saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə чәршәнбә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'gələn həftə чәршәнбә saat 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'gələn həftə ҹүмә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'gələn həftə ҹүмә saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə чәршәнбә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'gələn həftə чәршәнбә saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'gələn həftə ҹүмә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'gələn həftə ҹүмә saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'gələn həftə шәнбә saat 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'keçən həftə базар saat 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'dünən 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'bugün saat 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'bugün saat 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sabah saat 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə чәршәнбә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'dünən 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'dünən 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'keçən həftə чәршәнбә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'keçən həftə базар ертәси saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'keçən həftə базар saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'keçən həftə шәнбә saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'keçən həftə ҹүмә saat 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'keçən həftə ҹүмә ахшамы saat 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'keçən həftə чәршәнбә saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'keçən həftə ҹүмә saat 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1-inci 1-inci 1-inci 1-inci 1-inci',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2-nci 1-inci',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3-üncü 1-inci',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4-üncü 1-inci',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5-inci 1-inci',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6-ncı 1-inci',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7-nci 1-inci',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11-inci 2-nci',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-inci',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-üncü',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 а CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 а, 12:00 а',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 а, 1:30 а',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 а, 2:00 а',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 а, 6:00 а',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 а, 10:00 а',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 п, 12:00 п',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 п, 5:00 п',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 п, 9:30 п',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 п, 11:00 п',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0-ıncı',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 saniyə əvvəl',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 san. əvvəl',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 saniyə əvvəl',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 san. əvvəl',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 dəqiqə əvvəl',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 d. əvvəl',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 dəqiqə əvvəl',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 d. əvvəl',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saat əvvəl',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 s. əvvəl',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saat əvvəl',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 s. əvvəl',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 gün əvvəl',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 g. əvvəl',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 gün əvvəl',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 g. əvvəl',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 həftə əvvəl',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 h. əvvəl',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 həftə əvvəl',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 h. əvvəl',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ay əvvəl',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 ay əvvəl',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ay əvvəl',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ay əvvəl',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 il əvvəl',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 il əvvəl',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 il əvvəl',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 il əvvəl',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 saniyə sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 san. sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 saniyə sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 san. sonra',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 saniyə əvvəl',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 san. əvvəl',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 saniyə',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 san.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 saniyə',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 san.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 san. sonra',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 dəqiqə 1 saniyə',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 il 3 ay 1 g. 1 san.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 il sonra',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ay əvvəl',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 il 3 ay 1 g. 1 san. əvvəl',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 həftə 10 saat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 həftə 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 həftə 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 həftə və 6 gün sonra',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 həftə 1 saat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'bir saat sonra',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 gün',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 g. 3 s.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AzIrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AzIrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'az_IR'; // Azerbaijani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'شنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'یکشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'دوشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'سه‌شنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'چارشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'جۆمعه آخشامی at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جۆمعه at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'سه‌شنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'چارشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'جۆمعه آخشامی at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جۆمعه at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'شنبه at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last یکشنبه at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'سه‌شنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last سه‌شنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last دوشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last یکشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last شنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last جۆمعه at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last جۆمعه آخشامی at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last چارشنبه at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last جۆمعه at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AzLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AzLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'az_Latn'; // Azerbaijani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sabah saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'gələn həftə şənbə saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'gələn həftə bazar saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'gələn həftə bazar ertəsi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'gələn həftə çərşənbə saat 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'gələn həftə cümə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'gələn həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'gələn həftə çərşənbə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'gələn həftə cümə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'gələn həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'gələn həftə şənbə saat 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'keçən həftə bazar saat 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'dünən 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'bugün saat 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'bugün saat 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sabah saat 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'gələn həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'dünən 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'dünən 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'keçən həftə çərşənbə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'keçən həftə bazar ertəsi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'keçən həftə bazar saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'keçən həftə şənbə saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'keçən həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'keçən həftə cümə axşamı saat 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'keçən həftə çərşənbə saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'keçən həftə cümə saat 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1-inci 1-inci 1-inci 1-inci 1-inci',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2-nci 1-inci',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3-üncü 1-inci',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4-üncü 1-inci',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5-inci 1-inci',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6-ncı 1-inci',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7-nci 1-inci',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11-inci 2-nci',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-inci',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-üncü',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 a CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 a, 12:00 a',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 a, 1:30 a',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 a, 2:00 a',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 a, 6:00 a',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 a, 10:00 a',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 p, 12:00 p',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 p, 5:00 p',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 p, 9:30 p',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 p, 11:00 p',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0-ıncı',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 saniyə əvvəl',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 san. əvvəl',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 saniyə əvvəl',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 san. əvvəl',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 dəqiqə əvvəl',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 d. əvvəl',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 dəqiqə əvvəl',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 d. əvvəl',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saat əvvəl',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 s. əvvəl',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saat əvvəl',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 s. əvvəl',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 gün əvvəl',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 g. əvvəl',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 gün əvvəl',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 g. əvvəl',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 həftə əvvəl',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 h. əvvəl',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 həftə əvvəl',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 h. əvvəl',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ay əvvəl',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 ay əvvəl',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ay əvvəl',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ay əvvəl',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 il əvvəl',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 il əvvəl',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 il əvvəl',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 il əvvəl',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 saniyə sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 san. sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 saniyə sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 san. sonra',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 saniyə əvvəl',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 san. əvvəl',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 saniyə',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 san.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 saniyə',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 san.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 san. sonra',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 dəqiqə 1 saniyə',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 il 3 ay 1 g. 1 san.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 il sonra',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ay əvvəl',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 il 3 ay 1 g. 1 san. əvvəl',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 həftə 10 saat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 həftə 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 həftə 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 həftə və 6 gün sonra',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 həftə 1 saat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'bir saat sonra',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 gün',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 g. 3 s.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/AzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass AzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'az'; // Azerbaijani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabah saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gələn həftə şənbə saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gələn həftə bazar saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gələn həftə bazar ertəsi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gələn həftə çərşənbə axşamı saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gələn həftə çərşənbə saat 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'gələn həftə cümə axşamı saat 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'gələn həftə cümə saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gələn həftə çərşənbə axşamı saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gələn həftə çərşənbə saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gələn həftə cümə axşamı saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gələn həftə cümə saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gələn həftə şənbə saat 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'keçən həftə bazar saat 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dünən 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'bugün saat 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'bugün saat 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'sabah saat 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gələn həftə çərşənbə axşamı saat 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'dünən 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dünən 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keçən həftə çərşənbə axşamı saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keçən həftə bazar ertəsi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keçən həftə bazar saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keçən həftə şənbə saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keçən həftə cümə saat 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'keçən həftə cümə axşamı saat 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'keçən həftə çərşənbə saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'keçən həftə cümə saat 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-inci 1-inci 1-inci 1-inci 1-inci',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-nci 1-inci',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-üncü 1-inci',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-üncü 1-inci',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-inci 1-inci',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ncı 1-inci',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-nci 1-inci',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-inci 2-nci',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-inci',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-üncü',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 gecə CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 gecə, 12:00 gecə',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 gecə, 1:30 gecə',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 gecə, 2:00 gecə',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 səhər, 6:00 səhər',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 səhər, 10:00 səhər',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 gündüz, 12:00 gündüz',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 axşam, 5:00 axşam',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 axşam, 9:30 axşam',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 axşam, 11:00 axşam',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ıncı',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 saniyə əvvəl',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 san. əvvəl',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 saniyə əvvəl',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 san. əvvəl',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 dəqiqə əvvəl',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 d. əvvəl',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 dəqiqə əvvəl',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 d. əvvəl',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 saat əvvəl',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 s. əvvəl',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 saat əvvəl',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 s. əvvəl',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 gün əvvəl',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 g. əvvəl',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 gün əvvəl',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 g. əvvəl',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 həftə əvvəl',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 h. əvvəl',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 həftə əvvəl',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 h. əvvəl',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ay əvvəl',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ay əvvəl',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ay əvvəl',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ay əvvəl',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 il əvvəl',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 il əvvəl',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 il əvvəl',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 il əvvəl',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 saniyə sonra',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 san. sonra',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 saniyə sonra',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 san. sonra',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 saniyə əvvəl',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 san. əvvəl',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saniyə',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 san.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saniyə',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 san.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 san. sonra',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 dəqiqə 1 saniyə',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 il 3 ay 1 g. 1 san.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 il sonra',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ay əvvəl',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 il 3 ay 1 g. 1 san. əvvəl',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 həftə 10 saat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 həftə 6 gün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 həftə 6 gün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 həftə və 6 gün sonra',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 həftə 1 saat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'bir saat sonra',\n        // CarbonInterval::days(2)->forHumans()\n        '2 gün',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 g. 3 s.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BasTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BasTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bas'; // Basaa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ŋgwà jôn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ŋgwà nɔ̂y at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ŋgwà njaŋgumba at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ŋgwà ûm at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ŋgwà ŋgê at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ŋgwà mbɔk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ŋgwà kɔɔ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgwà ûm at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgwà ŋgê at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgwà mbɔk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgwà kɔɔ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgwà jôn at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ŋgwà nɔ̂y at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgwà ûm at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ŋgwà ûm at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ŋgwà njaŋgumba at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ŋgwà nɔ̂y at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ŋgwà jôn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ŋgwà kɔɔ at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ŋgwà mbɔk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ŋgwà ŋgê at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ŋgwà kɔɔ at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 i bikɛ̂glà CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 I bikɛ̂glà, 12:00 i bikɛ̂glà',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 I bikɛ̂glà, 1:30 i bikɛ̂glà',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 I bikɛ̂glà, 2:00 i bikɛ̂glà',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 I bikɛ̂glà, 6:00 i bikɛ̂glà',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 I bikɛ̂glà, 10:00 i bikɛ̂glà',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 I ɓugajɔp, 12:00 i ɓugajɔp',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 I ɓugajɔp, 5:00 i ɓugajɔp',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 I ɓugajɔp, 9:30 i ɓugajɔp',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 I ɓugajɔp, 11:00 i ɓugajɔp',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 móndî ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 móndî ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 móndî ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 móndî ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 móndî from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 móndî from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 móndî after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 móndî after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 móndî before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 móndî before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 móndî',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 móndî',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 móndî',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 móndî',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 móndî from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 móndî',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1 móndî',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1 móndî ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BeByLatinTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BeByLatinTest extends LocalizationTestCase\n{\n    public const LOCALE = 'be_BY@latin'; // Belarusian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Subota at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Niadziela at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Paniadziełak at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Aŭtorak at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Sierada at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Čaćvier at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Piatnica at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Aŭtorak at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Sierada at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Čaćvier at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Piatnica at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Subota at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Niadziela at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Aŭtorak at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Aŭtorak at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Paniadziełak at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Niadziela at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Subota at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Piatnica at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Čaćvier at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Sierada at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Piatnica at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 1st',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 1st',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BeByTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BeByTest extends LocalizationTestCase\n{\n    public const LOCALE = 'be_BY'; // Belarusian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Заўтра ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'У субота ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'У нядзеля ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'У панядзелак ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'У аўторак ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'У серада ў 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'У чацвер ў 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'У пятніца ў 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'У аўторак ў 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'У серада ў 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'У чацвер ў 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'У пятніца ў 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'У субота ў 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'У мінулую нядзеля ў 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Учора ў 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Сёння ў 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Сёння ў 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Заўтра ў 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'У аўторак ў 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Учора ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Учора ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'У мінулы аўторак ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'У мінулы панядзелак ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'У мінулую нядзеля ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'У мінулую субота ў 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'У мінулую пятніца ў 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'У мінулы чацвер ў 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'У мінулую серада ў 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'У мінулую пятніца ў 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1-ы 1-ы 1-га 1-ы 1-ы',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2-га 1-ы',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3-га 1-ы',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4-га 1-ы',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5-га 1-ы',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6-га 1-ы',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7-га 1-ы',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11-га 2-і',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40-ы',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-ы',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-ы',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ночы CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 ночы, 12:00 ночы',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 ночы, 1:30 ночы',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 ночы, 2:00 ночы',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 раніцы, 6:00 раніцы',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 раніцы, 10:00 раніцы',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 дня, 12:00 дня',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 вечара, 5:00 вечара',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 вечара, 9:30 вечара',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 вечара, 11:00 вечара',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 секунду таму',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 секунду таму',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 секунды таму',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 секунды таму',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 хвіліну таму',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 хвіліну таму',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 хвіліны таму',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 хвіліны таму',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 гадзіну таму',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 гадзіну таму',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 гадзіны таму',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 гадзіны таму',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 дзень таму',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 дн таму',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 дні таму',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 дн таму',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 тыдзень таму',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 тыдзень таму',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 тыдні таму',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 тыдні таму',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 месяц таму',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 месяц таму',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 месяцы таму',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 месяцы таму',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 год таму',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 год таму',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 гады таму',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 гады таму',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'праз 1 секунду',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'праз 1 секунду',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 секунду пасля',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 секунду пасля',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 секунду да',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 секунду да',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунда',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 сек',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунды',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 сек',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'праз 1 секунду',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 хвіліна 1 секунда',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 гады 3 месяцы 1 дн 1 сек',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'праз 3 гады',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 месяцаў таму',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 гады 3 месяцы 1 дн 1 секунду таму',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 тыдзень 10 гадзін',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 тыдзень 6 дзён',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 тыдзень 6 дзён',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'праз 1 тыдзень і 6 дзён',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 тыдні 1 гадзіну',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'праз гадзіну',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 дні',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 дн 3 гадзіны',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'be'; // Belarusian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Заўтра ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У субота ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У нядзеля ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У панядзелак ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У аўторак ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У серада ў 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'У чацвер ў 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'У пятніца ў 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У аўторак ў 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У серада ў 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У чацвер ў 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У пятніца ў 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У субота ў 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'У мінулую нядзеля ў 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Учора ў 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сёння ў 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сёння ў 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Заўтра ў 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У аўторак ў 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Учора ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Учора ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У мінулы аўторак ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У мінулы панядзелак ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У мінулую нядзеля ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У мінулую субота ў 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У мінулую пятніца ў 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'У мінулы чацвер ў 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'У мінулую серада ў 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У мінулую пятніца ў 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ы 1-ы 1-га 1-ы 1-ы',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-га 1-ы',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-га 1-ы',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-га 1-ы',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-га 1-ы',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-га 1-ы',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-га 1-ы',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-га 2-і',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ы',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ы',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ы',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночы CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночы, 12:00 ночы',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночы, 1:30 ночы',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночы, 2:00 ночы',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 раніцы, 6:00 раніцы',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 раніцы, 10:00 раніцы',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечара, 5:00 вечара',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечара, 9:30 вечара',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечара, 11:00 вечара',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду таму',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 секунду таму',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды таму',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 секунды таму',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 хвіліну таму',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 хвіліну таму',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 хвіліны таму',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 хвіліны таму',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 гадзіну таму',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 гадзіну таму',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 гадзіны таму',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 гадзіны таму',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 дзень таму',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 дн таму',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дні таму',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 дн таму',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 тыдзень таму',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 тыдзень таму',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 тыдні таму',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 тыдні таму',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц таму',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 месяц таму',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяцы таму',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 месяцы таму',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год таму',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 год таму',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 гады таму',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 гады таму',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'праз 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'праз 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду пасля',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 секунду пасля',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду да',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 секунду да',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'праз 1 секунду',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 хвіліна 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 гады 3 месяцы 1 дн 1 сек',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'праз 3 гады',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 месяцаў таму',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 гады 3 месяцы 1 дн 1 секунду таму',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 тыдзень 10 гадзін',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 тыдзень 6 дзён',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 тыдзень 6 дзён',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'праз 1 тыдзень і 6 дзён',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 тыдні 1 гадзіну',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'праз гадзіну',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дні',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 дн 3 гадзіны',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BemTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BemTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bem'; // Bemba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Pachibelushi at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Pa Mulungu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Palichimo at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Palichitatu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Palichine at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Palichitatu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Palichine at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Pachibelushi at 12:00 uluchelo',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Pa Mulungu at 8:49 akasuba',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 akasuba',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Palichimo at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Pa Mulungu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Pachibelushi at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Palichine at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Palichitatu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 1st',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 1st',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 uluchelo CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 uluchelo, 12:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 uluchelo, 1:30 uluchelo',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 uluchelo, 2:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 uluchelo, 6:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 uluchelo, 10:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 akasuba, 12:00 akasuba',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 akasuba, 5:00 akasuba',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 akasuba, 9:30 akasuba',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 akasuba, 11:00 akasuba',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'sekondi 1 ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'sekondi 1 ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'sekondi 2 ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'sekondi 2 ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'miniti 1 ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'miniti 1 ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'miniti 2 ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'miniti 2 ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'awala 1 ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'awala 1 ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'awala 2 ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'awala 2 ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'inshiku 1 ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'inshiku 1 ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'inshiku 2 ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'inshiku 2 ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'umulungu 1 ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'umulungu 1 ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'umulungu 2 ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'umulungu 2 ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'myeshi 1 ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'myeshi 1 ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'myeshi 2 ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'myeshi 2 ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'myaka 1 ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'myaka 1 ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'myaka 2 ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'myaka 2 ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'sekondi 1 from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'sekondi 1 from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'sekondi 1 after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'sekondi 1 after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'sekondi 1 before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'sekondi 1 before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        'sekondi 1',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        'sekondi 1',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        'sekondi 2',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        'sekondi 2',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'sekondi 1 from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        'miniti 1 sekondi 1',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        'myaka 2 myeshi 3 inshiku 1 sekondi 1',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'myaka 3 from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'myeshi 5 ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'myaka 2 myeshi 3 inshiku 1 sekondi 1 ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        'umulungu 1 awala 10',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'umulungu 1 inshiku 6',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'umulungu 1 inshiku 6',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'umulungu 1 and inshiku 6 from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        'umulungu 2 awala 1',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'awala 1 from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        'inshiku 2',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        'inshiku 1 awala 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BemZmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BemZmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bem_ZM'; // Bemba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Pachibelushi at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Pa Mulungu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Palichimo at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Palichitatu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Palichine at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Palichitatu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Palichine at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Pachibelushi at 12:00 uluchelo',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Pa Mulungu at 8:49 akasuba',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 akasuba',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Palichibuli at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Palichimo at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Pa Mulungu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Pachibelushi at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Palichine at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Palichitatu at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Palichisano at 12:00 uluchelo',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 1st',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 1st',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 uluchelo CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 uluchelo, 12:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 uluchelo, 1:30 uluchelo',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 uluchelo, 2:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 uluchelo, 6:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 uluchelo, 10:00 uluchelo',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 akasuba, 12:00 akasuba',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 akasuba, 5:00 akasuba',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 akasuba, 9:30 akasuba',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 akasuba, 11:00 akasuba',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'sekondi 1 ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'sekondi 1 ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'sekondi 2 ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'sekondi 2 ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'miniti 1 ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'miniti 1 ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'miniti 2 ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'miniti 2 ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'awala 1 ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'awala 1 ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'awala 2 ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'awala 2 ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'inshiku 1 ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'inshiku 1 ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'inshiku 2 ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'inshiku 2 ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'umulungu 1 ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'umulungu 1 ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'umulungu 2 ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'umulungu 2 ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'myeshi 1 ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'myeshi 1 ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'myeshi 2 ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'myeshi 2 ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'myaka 1 ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'myaka 1 ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'myaka 2 ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'myaka 2 ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'sekondi 1 from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'sekondi 1 from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'sekondi 1 after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'sekondi 1 after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'sekondi 1 before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'sekondi 1 before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        'sekondi 1',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        'sekondi 1',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        'sekondi 2',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        'sekondi 2',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'sekondi 1 from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        'miniti 1 sekondi 1',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        'myaka 2 myeshi 3 inshiku 1 sekondi 1',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'myaka 3 from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'myeshi 5 ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'myaka 2 myeshi 3 inshiku 1 sekondi 1 ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        'umulungu 1 awala 10',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'umulungu 1 inshiku 6',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'umulungu 1 inshiku 6',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'umulungu 1 and inshiku 6 from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        'umulungu 2 awala 1',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'awala 1 from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        'inshiku 2',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        'inshiku 1 awala 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BerDzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BerDzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ber_DZ'; // ber\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'altıncı gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'bazar günü at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'birinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'altıncı gün at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last bazar günü at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last birinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last bazar günü at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last altıncı gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BerMaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BerMaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ber_MA'; // ber\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'altıncı gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'bazar günü at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'birinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'altıncı gün at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last bazar günü at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last birinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last bazar günü at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last altıncı gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BerTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BerTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ber'; // ber\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'altıncı gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'bazar günü at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'birinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'altıncı gün at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last bazar günü at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last ikinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last birinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last bazar günü at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last altıncı gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last dördüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last üçüncü gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last beşinci gün at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BezTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BezTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bez'; // Bena\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'pa shahulembela at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'pa mulungu at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'pa shahuviluha at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'pa hivili at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'pa hidatu at 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'pa hitayi at 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'pa hihanu at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'pa hivili at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'pa hidatu at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'pa hitayi at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'pa hihanu at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'pa shahulembela at 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last pa mulungu at 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'pa hivili at 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last pa hivili at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last pa shahuviluha at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last pa mulungu at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last pa shahulembela at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last pa hihanu at 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last pa hitayi at 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last pa hidatu at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last pa hihanu at 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 1st',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 1st',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 pamilau CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 pamilau, 12:00 pamilau',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 pamilau, 1:30 pamilau',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 pamilau, 2:00 pamilau',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 pamilau, 6:00 pamilau',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 pamilau, 10:00 pamilau',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 pamunyi, 12:00 pamunyi',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 pamunyi, 5:00 pamunyi',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 pamunyi, 9:30 pamunyi',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 pamunyi, 11:00 pamunyi',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BgBgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BgBgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bg_BG'; // Bulgarian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Утре в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'събота в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'неделя в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'понеделник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'вторник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сряда в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'четвъртък в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'петък в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'вторник в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сряда в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'четвъртък в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'петък в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'събота в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В изминалата неделя в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Днес в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Днес в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Утре в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'вторник в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалия вторник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалия понеделник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалата неделя в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалата събота в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалия петък в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В изминалия четвъртък в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В изминалата сряда в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В изминалия петък в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ви 1-ви 1-ви 1-ви 1-ви',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-ри 1-ви',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-ти 1-ви',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ти 1-ви',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ти 1-ви',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ти 1-ви',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ми 1-ви',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ти 2-ри',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ти',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ви',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ен',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 преди обяд CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 преди обяд, 12:00 преди обяд',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 преди обяд, 1:30 преди обяд',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 преди обяд, 2:00 преди обяд',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 преди обяд, 6:00 преди обяд',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 преди обяд, 10:00 преди обяд',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 следобед, 12:00 следобед',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 следобед, 5:00 следобед',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 следобед, 9:30 следобед',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 следобед, 11:00 следобед',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ев',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'преди 1 секунда',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'преди 1 секунда',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'преди 2 секунди',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'преди 2 секунди',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'преди 1 минута',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'преди 1 минута',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'преди 2 минути',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'преди 2 минути',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'преди 1 час',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'преди 1 час',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'преди 2 часа',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'преди 2 часа',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'преди 1 ден',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'преди 1 ден',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'преди 2 дни',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'преди 2 дни',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'преди 1 седмица',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'преди 1 седмица',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'преди 2 седмици',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'преди 2 седмици',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'преди 1 месец',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'преди 1 месец',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'преди 2 месеца',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'преди 2 месеца',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'преди 1 година',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'преди 1 година',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'преди 2 години',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'преди 2 години',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'след 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'след 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'след 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'след 1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'преди 1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'преди 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунди',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 секунди',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'след 1 секунда',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 години 3 месеца 1 ден 1 секунда',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'след 3 години',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'преди 5 месеца',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'преди 2 години 3 месеца 1 ден 1 секунда',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 седмица 10 часа',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дни',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дни',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'след 1 седмица и 6 дни',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 седмици 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'след час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дни',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ден 3 часа',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bg'; // Bulgarian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Утре в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'събота в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'неделя в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'понеделник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'вторник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сряда в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'четвъртък в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'петък в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'вторник в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сряда в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'четвъртък в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'петък в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'събота в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В изминалата неделя в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Днес в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Днес в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Утре в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'вторник в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалия вторник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалия понеделник в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалата неделя в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалата събота в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В изминалия петък в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В изминалия четвъртък в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В изминалата сряда в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В изминалия петък в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ви 1-ви 1-ви 1-ви 1-ви',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-ри 1-ви',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-ти 1-ви',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ти 1-ви',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ти 1-ви',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ти 1-ви',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ми 1-ви',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ти 2-ри',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ти',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ви',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ен',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 преди обяд CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 преди обяд, 12:00 преди обяд',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 преди обяд, 1:30 преди обяд',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 преди обяд, 2:00 преди обяд',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 преди обяд, 6:00 преди обяд',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 преди обяд, 10:00 преди обяд',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 следобед, 12:00 следобед',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 следобед, 5:00 следобед',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 следобед, 9:30 следобед',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 следобед, 11:00 следобед',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ев',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'преди 1 секунда',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'преди 1 секунда',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'преди 2 секунди',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'преди 2 секунди',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'преди 1 минута',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'преди 1 минута',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'преди 2 минути',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'преди 2 минути',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'преди 1 час',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'преди 1 час',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'преди 2 часа',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'преди 2 часа',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'преди 1 ден',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'преди 1 ден',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'преди 2 дни',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'преди 2 дни',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'преди 1 седмица',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'преди 1 седмица',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'преди 2 седмици',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'преди 2 седмици',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'преди 1 месец',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'преди 1 месец',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'преди 2 месеца',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'преди 2 месеца',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'преди 1 година',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'преди 1 година',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'преди 2 години',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'преди 2 години',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'след 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'след 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'след 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'след 1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'преди 1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'преди 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунди',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 секунди',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'след 1 секунда',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 години 3 месеца 1 ден 1 секунда',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'след 3 години',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'преди 5 месеца',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'преди 2 години 3 месеца 1 ден 1 секунда',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 седмица 10 часа',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дни',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дни',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'след 1 седмица и 6 дни',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 седмици 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'след час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дни',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ден 3 часа',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BhbInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BhbInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bhb_IN'; // Bhili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BhbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BhbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bhb'; // Bhili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BhoInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BhoInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bho_IN'; // Bhojpuri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'गुरुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गुरुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last गुरुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 सोमार ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सोमार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सोमार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सोमार ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 कला ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 कला ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 कला ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 कला ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 मौसम ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 मौसम ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 मौसम ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 मौसम ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिन ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 सप्ताह ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 सप्ताह ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 सप्ताह ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 सप्ताह ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 महिना ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 साल ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 साल ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 साल ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 साल ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 सोमार from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सोमार from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 सोमार after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सोमार after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 सोमार before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सोमार before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 सोमार',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सोमार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सोमार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सोमार',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सोमार from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 कला 1 सोमार',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 साल 3 महिना 1 दिन 1 सोमार',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 साल from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 साल 3 महिना 1 दिन 1 सोमार ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 10 मौसम',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 सप्ताह and 6 दिन from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 सप्ताह 1 मौसम',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 मौसम from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 मौसम',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BhoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BhoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bho'; // Bhojpuri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'गुरुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गुरुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last गुरुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 सोमार ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सोमार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सोमार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सोमार ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 कला ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 कला ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 कला ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 कला ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 मौसम ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 मौसम ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 मौसम ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 मौसम ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिन ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 सप्ताह ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 सप्ताह ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 सप्ताह ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 सप्ताह ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 महिना ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 साल ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 साल ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 साल ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 साल ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 सोमार from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सोमार from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 सोमार after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सोमार after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 सोमार before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सोमार before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 सोमार',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सोमार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सोमार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सोमार',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सोमार from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 कला 1 सोमार',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 साल 3 महिना 1 दिन 1 सोमार',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 साल from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 साल 3 महिना 1 दिन 1 सोमार ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 10 मौसम',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 सप्ताह and 6 दिन from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 सप्ताह 1 मौसम',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 मौसम from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 मौसम',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bi'; // Bislama\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maj at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wota at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'fraede at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sarede at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maj at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wota at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fraede at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sarede at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sande at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maj at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maj at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sarede at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last fraede at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last wota at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last sarede at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 smol ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 smol ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 smol ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 smol ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 klok ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 klok ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 klok ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 klok ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 betde ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 betde ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 betde ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 betde ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sarede ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sarede ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sarede ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sarede ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 seven ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 seven ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 seven ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 seven ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 smol 1 tu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 seven 3 mi 1 betde 1 tu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 seven from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 seven 3 mi 1 betde 1 tu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sarede 10 klok',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sarede 6 betde',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sarede 6 betde',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sarede and 6 betde from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sarede 1 klok',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 klok from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 betde',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 betde 3 klok',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BiVuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BiVuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bi_VU'; // Bislama\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maj at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wota at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'fraede at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sarede at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maj at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wota at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fraede at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sarede at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sande at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maj at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maj at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sande at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sarede at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last fraede at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last wota at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last sarede at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 smol ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 smol ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 smol ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 smol ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 klok ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 klok ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 klok ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 klok ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 betde ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 betde ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 betde ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 betde ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sarede ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sarede ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sarede ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sarede ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 seven ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 seven ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 seven ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 seven ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 smol 1 tu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 seven 3 mi 1 betde 1 tu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 seven from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 seven 3 mi 1 betde 1 tu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sarede 10 klok',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sarede 6 betde',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sarede 6 betde',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sarede and 6 betde from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sarede 1 klok',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 klok from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 betde',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 betde 3 klok',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bm'; // Bambara\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sini lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sibiri don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kari don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ntɛnɛn don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tarata don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Araba don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alamisa don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Juma don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tarata don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Araba don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alamisa don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Juma don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sibiri don lɛrɛ 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Kari tɛmɛnen lɛrɛ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kunu lɛrɛ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Bi lɛrɛ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bi lɛrɛ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Sini lɛrɛ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tarata don lɛrɛ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kunu lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kunu lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tarata tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ntɛnɛn tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kari tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sibiri tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Juma tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Alamisa tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Araba tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Juma tɛmɛnen lɛrɛ 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'a bɛ sekondi 1 bɔ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'a bɛ sek. 1 bɔ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'a bɛ sekondi 2 bɔ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'a bɛ sek. 2 bɔ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'a bɛ miniti 1 bɔ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'a bɛ m. 1 bɔ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'a bɛ miniti 2 bɔ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'a bɛ m. 2 bɔ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'a bɛ lɛrɛ 1 bɔ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'a bɛ l. 1 bɔ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'a bɛ lɛrɛ 2 bɔ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'a bɛ l. 2 bɔ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'a bɛ tile 1 bɔ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'a bɛ t. 1 bɔ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'a bɛ tile 2 bɔ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'a bɛ t. 2 bɔ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'a bɛ dɔgɔkun 1 bɔ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'a bɛ d. 1 bɔ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'a bɛ dɔgɔkun 2 bɔ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'a bɛ d. 2 bɔ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'a bɛ kalo 1 bɔ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'a bɛ k. 1 bɔ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'a bɛ kalo 2 bɔ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'a bɛ k. 2 bɔ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'a bɛ san 1 bɔ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'a bɛ san 1 bɔ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'a bɛ san 2 bɔ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'a bɛ san 2 bɔ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekondi 1 kɔnɔ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sek. 1 kɔnɔ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekondi 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sek. 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekondi 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sek. 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sek. 1 kɔnɔ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 sekondi 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'san 2 k. 3 t. 1 sek. 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'san 3 kɔnɔ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'a bɛ k. 5 bɔ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'a bɛ san 2 k. 3 t. 1 sek. 1 bɔ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'dɔgɔkun 1 lɛrɛ 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'dɔgɔkun 1 tile 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'dɔgɔkun 1 tile 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dɔgɔkun 1 ni tile 6 kɔnɔ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'dɔgɔkun 2 lɛrɛ 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'lɛrɛ kelen kɔnɔ',\n        // CarbonInterval::days(2)->forHumans()\n        'tile 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        't. 1 l. 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BnBdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BnBdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bn_BD'; // Bengali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'আগামীকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'রবিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'সোমবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'গত রবিবার, রাত ৮:৪৯ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'গতকাল রাত ১০:০ সময়',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'আজ দুপুর ১০:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'আজ রাত ২:০ সময়',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'আগামীকাল রাত ১:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'গতকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'গতকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'গত মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'গত সোমবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'গত রবিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'গত শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'গত শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'গত বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'গত বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'গত শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '১ম ১ম ১ম ১ম ১ম',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '২য় ১ম',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '৩য় ১ম',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '৪র্থ ১ম',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '৫ম ২য়',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '৬ষ্ঠ ২য়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '৭ম ২য়',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '১১তম ২য়',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '৪০তম',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '৪১তম',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '১০০তম',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 রাত CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 রাত, 12:00 রাত',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 রাত, 1:30 রাত',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 রাত, 2:00 রাত',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 সকাল, 6:00 সকাল',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 দুপুর, 10:00 দুপুর',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 দুপুর, 12:00 দুপুর',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 বিকাল, 5:00 বিকাল',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 রাত, 9:30 রাত',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 রাত, 11:00 রাত',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '০তম',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '১ সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 সেকেন্ড আগে',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 মিনিট আগে',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '১ মিনিট আগে',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 মিনিট আগে',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 মিনিট আগে',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ঘন্টা আগে',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '১ ঘন্টা আগে',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ঘন্টা আগে',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ঘন্টা আগে',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 দিন আগে',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '১ দিন আগে',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 দিন আগে',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 দিন আগে',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '১ সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 সপ্তাহ আগে',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 মাস আগে',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '১ মাস আগে',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 মাস আগে',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 মাস আগে',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 বছর আগে',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '১ বছর আগে',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 বছর আগে',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 বছর আগে',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 সেকেন্ড আগে',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '১ সেকেন্ড আগে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 সেকেন্ড',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '১ সেকেন্ড',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 সেকেন্ড',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 সেকেন্ড',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 মিনিট 1 সেকেন্ড',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 বছর 3 মাস ১ দিন ১ সেকেন্ড',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 বছর পরে',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 মাস আগে',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 বছর 3 মাস ১ দিন ১ সেকেন্ড আগে',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 সপ্তাহ 10 ঘন্টা',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 সপ্তাহ 6 দিন',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 সপ্তাহ 6 দিন',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 সপ্তাহ এবং 6 দিন পরে',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 সপ্তাহ 1 ঘন্টা',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'এক ঘন্টা পরে',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 দিন',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '১ দিন 3 ঘন্টা',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BnInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BnInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bn_IN'; // Bengali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'আগামীকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'রবিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'সোমবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'গত রবিবার, রাত ৮:৪৯ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'গতকাল রাত ১০:০ সময়',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'আজ দুপুর ১০:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'আজ রাত ২:০ সময়',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'আগামীকাল রাত ১:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'গতকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'গতকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'গত মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'গত সোমবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'গত রবিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'গত শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'গত শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'গত বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'গত বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'গত শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '১ম ১ম ১ম ১ম ১ম',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '২য় ১ম',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '৩য় ১ম',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '৪র্থ ১ম',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '৫ম ১ম',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '৬ষ্ঠ ১ম',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '৭ম ২য়',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '১১তম ২য়',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '৪০তম',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '৪১তম',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '১০০তম',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 রাত CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 রাত, 12:00 রাত',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 রাত, 1:30 রাত',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 রাত, 2:00 রাত',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 সকাল, 6:00 সকাল',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 দুপুর, 10:00 দুপুর',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 দুপুর, 12:00 দুপুর',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 বিকাল, 5:00 বিকাল',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 রাত, 9:30 রাত',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 রাত, 11:00 রাত',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '০তম',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '১ সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 সেকেন্ড আগে',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 মিনিট আগে',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '১ মিনিট আগে',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 মিনিট আগে',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 মিনিট আগে',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ঘন্টা আগে',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '১ ঘন্টা আগে',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ঘন্টা আগে',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ঘন্টা আগে',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 দিন আগে',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '১ দিন আগে',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 দিন আগে',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 দিন আগে',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '১ সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 সপ্তাহ আগে',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 মাস আগে',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '১ মাস আগে',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 মাস আগে',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 মাস আগে',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 বছর আগে',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '১ বছর আগে',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 বছর আগে',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 বছর আগে',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 সেকেন্ড আগে',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '১ সেকেন্ড আগে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 সেকেন্ড',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '১ সেকেন্ড',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 সেকেন্ড',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 সেকেন্ড',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 মিনিট 1 সেকেন্ড',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 বছর 3 মাস ১ দিন ১ সেকেন্ড',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 বছর পরে',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 মাস আগে',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 বছর 3 মাস ১ দিন ১ সেকেন্ড আগে',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 সপ্তাহ 10 ঘন্টা',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 সপ্তাহ 6 দিন',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 সপ্তাহ 6 দিন',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 সপ্তাহ এবং 6 দিন পরে',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 সপ্তাহ 1 ঘন্টা',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'এক ঘন্টা পরে',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 দিন',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '১ দিন 3 ঘন্টা',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bn'; // Bengali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'আগামীকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'রবিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'সোমবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'গত রবিবার, রাত ৮:৪৯ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'গতকাল রাত ১০:০ সময়',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'আজ দুপুর ১০:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'আজ রাত ২:০ সময়',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'আগামীকাল রাত ১:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'গতকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'গতকাল রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'গত মঙ্গলবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'গত সোমবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'গত রবিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'গত শনিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'গত শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'গত বৃহস্পতিবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'গত বুধবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'গত শুক্রবার, রাত ১২:০ সময়',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '১ম ১ম ১ম ১ম ১ম',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '২য় ১ম',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '৩য় ১ম',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '৪র্থ ১ম',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '৫ম ১ম',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '৬ষ্ঠ ১ম',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '৭ম ২য়',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '১১তম ২য়',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '৪০তম',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '৪১তম',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '১০০তম',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 রাত CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 রাত, 12:00 রাত',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 রাত, 1:30 রাত',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 রাত, 2:00 রাত',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 সকাল, 6:00 সকাল',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 দুপুর, 10:00 দুপুর',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 দুপুর, 12:00 দুপুর',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 বিকাল, 5:00 বিকাল',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 রাত, 9:30 রাত',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 রাত, 11:00 রাত',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '০তম',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '১ সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 সেকেন্ড আগে',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 সেকেন্ড আগে',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 মিনিট আগে',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '১ মিনিট আগে',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 মিনিট আগে',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 মিনিট আগে',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ঘন্টা আগে',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '১ ঘন্টা আগে',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ঘন্টা আগে',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ঘন্টা আগে',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 দিন আগে',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '১ দিন আগে',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 দিন আগে',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 দিন আগে',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '১ সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 সপ্তাহ আগে',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 সপ্তাহ আগে',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 মাস আগে',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '১ মাস আগে',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 মাস আগে',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 মাস আগে',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 বছর আগে',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '১ বছর আগে',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 বছর আগে',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 বছর আগে',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 সেকেন্ড পরে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 সেকেন্ড আগে',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '১ সেকেন্ড আগে',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 সেকেন্ড',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '১ সেকেন্ড',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 সেকেন্ড',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 সেকেন্ড',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '১ সেকেন্ড পরে',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 মিনিট 1 সেকেন্ড',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 বছর 3 মাস ১ দিন ১ সেকেন্ড',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 বছর পরে',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 মাস আগে',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 বছর 3 মাস ১ দিন ১ সেকেন্ড আগে',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 সপ্তাহ 10 ঘন্টা',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 সপ্তাহ 6 দিন',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 সপ্তাহ 6 দিন',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 সপ্তাহ এবং 6 দিন পরে',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 সপ্তাহ 1 ঘন্টা',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'এক ঘন্টা পরে',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 দিন',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '১ দিন 3 ঘন্টা',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BoCnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BoCnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bo_CN'; // Tibetan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'སང་ཉིན མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཉི་མ་, མཚན་མོ 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ཁ་སང མཚན་མོ 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'དི་རིང ཉིན་གུང 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'དི་རིང མཚན་མོ 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'སང་ཉིན མཚན་མོ 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ཁ་སང མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ཁ་སང མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་མིག་དམར་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཟླ་བ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཉི་མ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་སྤེན་པ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་པ་སངས་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཕུར་བུ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ལྷག་པ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་པ་སངས་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 མཚན་མོ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 མཚན་མོ, 12:00 མཚན་མོ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 མཚན་མོ, 1:30 མཚན་མོ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 མཚན་མོ, 2:00 མཚན་མོ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ཞོགས་ཀས, 6:00 ཞོགས་ཀས',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ཉིན་གུང, 10:00 ཉིན་གུང',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ཉིན་གུང, 12:00 ཉིན་གུང',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 དགོང་དག, 5:00 དགོང་དག',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 མཚན་མོ, 9:30 མཚན་མོ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 མཚན་མོ, 11:00 མཚན་མོ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'སྐར་ཆ2 སྔན་ལ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'སྐར་ཆ2 སྔན་ལ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'སྐར་མ་1 སྔན་ལ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'སྐར་མ་1 སྔན་ལ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'སྐར་མ་2 སྔན་ལ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'སྐར་མ་2 སྔན་ལ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ཆུ་ཚོད1 སྔན་ལ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ཆུ་ཚོད1 སྔན་ལ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ཆུ་ཚོད2 སྔན་ལ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ཆུ་ཚོད2 སྔན་ལ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ཉིན1་ སྔན་ལ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ཉིན1་ སྔན་ལ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ཉིན2་ སྔན་ལ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ཉིན2་ སྔན་ལ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'གཟའ་འཁོར་1 སྔན་ལ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'གཟའ་འཁོར་1 སྔན་ལ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'གཟའ་འཁོར་2 སྔན་ལ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'གཟའ་འཁོར་2 སྔན་ལ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ཟླ་བ1 སྔན་ལ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ཟླ་བ1 སྔན་ལ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ཟླ་བ2 སྔན་ལ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ཟླ་བ2 སྔན་ལ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ལོ1 སྔན་ལ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ལོ1 སྔན་ལ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ལོ2 སྔན་ལ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ལོ2 སྔན་ལ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'སྐར་ཆ1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'སྐར་ཆ1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'སྐར་ཆ2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'སྐར་ཆ2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'སྐར་མ་1 སྐར་ཆ1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ལོ2 ཟླ་བ3 ཉིན1་ སྐར་ཆ1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ལོ3 ལ་',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ཟླ་བ5 སྔན་ལ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ལོ2 ཟླ་བ3 ཉིན1་ སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཆུ་ཚོད10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཉིན6་',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཉིན6་',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'གཟའ་འཁོར་1 ཨནད་ ཉིན6་ ལ་',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་2 ཆུ་ཚོད1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ཆུ་ཚོད་གཅིག ལ་',\n        // CarbonInterval::days(2)->forHumans()\n        'ཉིན2་',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ཉིན1་ ཆུ་ཚོད3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BoInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BoInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bo_IN'; // Tibetan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'སང་ཉིན 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::now()->subDays(2)->calendar()\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཉི་མ་, 8:49 ཕྱི་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ཁ་སང 10:00 ཕྱི་དྲོ་',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'དི་རིང 10:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'དི་རིང 2:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'སང་ཉིན 1:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ཁ་སང 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ཁ་སང 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་མིག་དམར་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཟླ་བ་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཉི་མ་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་སྤེན་པ་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་པ་སངས་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཕུར་བུ་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ལྷག་པ་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་པ་སངས་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 སྔ་དྲོ་ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 སྔ་དྲོ་, 12:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 སྔ་དྲོ་, 1:30 སྔ་དྲོ་',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 སྔ་དྲོ་, 2:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 སྔ་དྲོ་, 6:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 སྔ་དྲོ་, 10:00 སྔ་དྲོ་',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ཕྱི་དྲོ་, 12:00 ཕྱི་དྲོ་',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ཕྱི་དྲོ་, 5:00 ཕྱི་དྲོ་',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ཕྱི་དྲོ་, 9:30 ཕྱི་དྲོ་',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ཕྱི་དྲོ་, 11:00 ཕྱི་དྲོ་',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'སྐར་ཆ2 སྔན་ལ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'སྐར་ཆ2 སྔན་ལ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'སྐར་མ་1 སྔན་ལ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'སྐར་མ་1 སྔན་ལ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'སྐར་མ་2 སྔན་ལ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'སྐར་མ་2 སྔན་ལ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ཆུ་ཚོད1 སྔན་ལ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ཆུ་ཚོད1 སྔན་ལ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ཆུ་ཚོད2 སྔན་ལ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ཆུ་ཚོད2 སྔན་ལ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ཉིན1་ སྔན་ལ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ཉིན1་ སྔན་ལ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ཉིན2་ སྔན་ལ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ཉིན2་ སྔན་ལ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'གཟའ་འཁོར་1 སྔན་ལ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'གཟའ་འཁོར་1 སྔན་ལ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'གཟའ་འཁོར་2 སྔན་ལ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'གཟའ་འཁོར་2 སྔན་ལ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ཟླ་བ1 སྔན་ལ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ཟླ་བ1 སྔན་ལ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ཟླ་བ2 སྔན་ལ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ཟླ་བ2 སྔན་ལ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ལོ1 སྔན་ལ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ལོ1 སྔན་ལ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ལོ2 སྔན་ལ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ལོ2 སྔན་ལ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'སྐར་ཆ1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'སྐར་ཆ1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'སྐར་ཆ2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'སྐར་ཆ2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'སྐར་མ་1 སྐར་ཆ1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ལོ2 ཟླ་བ3 ཉིན1་ སྐར་ཆ1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ལོ3 ལ་',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ཟླ་བ5 སྔན་ལ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ལོ2 ཟླ་བ3 ཉིན1་ སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཆུ་ཚོད10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཉིན6་',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཉིན6་',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'གཟའ་འཁོར་1 ཨནད་ ཉིན6་ ལ་',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་2 ཆུ་ཚོད1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ཆུ་ཚོད་གཅིག ལ་',\n        // CarbonInterval::days(2)->forHumans()\n        'ཉིན2་',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ཉིན1་ ཆུ་ཚོད3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bo'; // Tibetan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'སང་ཉིན མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཉི་མ་, མཚན་མོ 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ཁ་སང མཚན་མོ 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'དི་རིང ཉིན་གུང 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'དི་རིང མཚན་མོ 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'སང་ཉིན མཚན་མོ 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་རྗེས་མ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ཁ་སང མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ཁ་སང མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་མིག་དམར་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཟླ་བ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཉི་མ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་སྤེན་པ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་པ་སངས་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ཕུར་བུ, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་ལྷག་པ་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'བདུན་ཕྲག་མཐའ་མ གཟའ་པ་སངས་, མཚན་མོ 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 མཚན་མོ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 མཚན་མོ, 12:00 མཚན་མོ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 མཚན་མོ, 1:30 མཚན་མོ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 མཚན་མོ, 2:00 མཚན་མོ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ཞོགས་ཀས, 6:00 ཞོགས་ཀས',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ཉིན་གུང, 10:00 ཉིན་གུང',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ཉིན་གུང, 12:00 ཉིན་གུང',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 དགོང་དག, 5:00 དགོང་དག',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 མཚན་མོ, 9:30 མཚན་མོ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 མཚན་མོ, 11:00 མཚན་མོ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'སྐར་ཆ2 སྔན་ལ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'སྐར་ཆ2 སྔན་ལ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'སྐར་མ་1 སྔན་ལ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'སྐར་མ་1 སྔན་ལ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'སྐར་མ་2 སྔན་ལ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'སྐར་མ་2 སྔན་ལ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ཆུ་ཚོད1 སྔན་ལ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ཆུ་ཚོད1 སྔན་ལ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ཆུ་ཚོད2 སྔན་ལ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ཆུ་ཚོད2 སྔན་ལ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ཉིན1་ སྔན་ལ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ཉིན1་ སྔན་ལ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ཉིན2་ སྔན་ལ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ཉིན2་ སྔན་ལ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'གཟའ་འཁོར་1 སྔན་ལ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'གཟའ་འཁོར་1 སྔན་ལ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'གཟའ་འཁོར་2 སྔན་ལ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'གཟའ་འཁོར་2 སྔན་ལ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ཟླ་བ1 སྔན་ལ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ཟླ་བ1 སྔན་ལ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ཟླ་བ2 སྔན་ལ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ཟླ་བ2 སྔན་ལ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ལོ1 སྔན་ལ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ལོ1 སྔན་ལ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ལོ2 སྔན་ལ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ལོ2 སྔན་ལ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'སྐར་ཆ1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'སྐར་ཆ1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'སྐར་ཆ2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'སྐར་ཆ2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'སྐར་ཆ1 ལ་',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'སྐར་མ་1 སྐར་ཆ1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ལོ2 ཟླ་བ3 ཉིན1་ སྐར་ཆ1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ལོ3 ལ་',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ཟླ་བ5 སྔན་ལ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ལོ2 ཟླ་བ3 ཉིན1་ སྐར་ཆ1 སྔན་ལ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཆུ་ཚོད10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཉིན6་',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་1 ཉིན6་',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'གཟའ་འཁོར་1 ཨནད་ ཉིན6་ ལ་',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'གཟའ་འཁོར་2 ཆུ་ཚོད1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ཆུ་ཚོད་གཅིག ལ་',\n        // CarbonInterval::days(2)->forHumans()\n        'ཉིན2་',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ཉིན1་ ཆུ་ཚོད3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BrFrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BrFrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'br_FR'; // Breton\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Warc\\'hoazh da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sadorn da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sul da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lun da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Meurzh da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Merc\\'her da 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Yaou da 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Gwener da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Meurzh da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Merc\\'her da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Yaou da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gwener da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sadorn da 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Sul paset da 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dec\\'h da 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hiziv da 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hiziv da 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Warc\\'hoazh da 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Meurzh da 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Dec\\'h da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dec\\'h da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Meurzh paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lun paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sul paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sadorn paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gwener paset da 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Yaou paset da 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Merc\\'her paset da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gwener paset da 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1añ 1añ 1añ 1añ 1añ',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2vet 1añ',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3vet 1añ',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4vet 1añ',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5vet 1añ',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6vet 1añ',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7vet 1añ',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11vet 2vet',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40vet',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41vet',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100vet',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 A.M., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 A.M., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 A.M., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 A.M., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 A.M., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 G.M., 12:00 g.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 G.M., 5:00 g.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 G.M., 9:30 g.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 G.M., 11:00 g.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0vet',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 eilenn \\'zo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s \\'zo',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 eilenn \\'zo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s \\'zo',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 vunutenn \\'zo',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min \\'zo',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 vunutenn \\'zo',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min \\'zo',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 eur \\'zo',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 e \\'zo',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 eur \\'zo',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 e \\'zo',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 devezh \\'zo',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d \\'zo',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zevezh \\'zo',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d \\'zo',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sizhun \\'zo',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sizhun \\'zo',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sizhun \\'zo',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sizhun \\'zo',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 miz \\'zo',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 miz \\'zo',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 viz \\'zo',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 viz \\'zo',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 bloaz \\'zo',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 bl. \\'zo',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vloaz \\'zo',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 bl. \\'zo',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'a-benn 1 eilenn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'a-benn 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 eilenn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 eilenn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'a-benn 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 vunutenn 1 eilenn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 bl. 3 miz 1 d 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'a-benn 3 bloaz',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 miz \\'zo',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 bl. 3 miz 1 d 1 s \\'zo',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sizhun 10 eur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sizhun 6 devezh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sizhun 6 devezh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'a-benn 1 sizhun hag 6 devezh',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sizhun 1 eur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'a-benn un eur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zevezh',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d 3 e',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'br'; // Breton\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Warc\\'hoazh da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sadorn da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sul da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lun da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Meurzh da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Merc\\'her da 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Yaou da 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Gwener da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Meurzh da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Merc\\'her da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Yaou da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gwener da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sadorn da 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Sul paset da 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dec\\'h da 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hiziv da 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hiziv da 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Warc\\'hoazh da 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Meurzh da 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Dec\\'h da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dec\\'h da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Meurzh paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lun paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sul paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sadorn paset da 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gwener paset da 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Yaou paset da 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Merc\\'her paset da 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Gwener paset da 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1añ 1añ 1añ 1añ 1añ',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2vet 1añ',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3vet 1añ',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4vet 1añ',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5vet 1añ',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6vet 1añ',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7vet 1añ',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11vet 2vet',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40vet',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41vet',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100vet',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 A.M., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 A.M., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 A.M., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 A.M., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 A.M., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 G.M., 12:00 g.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 G.M., 5:00 g.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 G.M., 9:30 g.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 G.M., 11:00 g.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0vet',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 eilenn \\'zo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s \\'zo',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 eilenn \\'zo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s \\'zo',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 vunutenn \\'zo',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min \\'zo',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 vunutenn \\'zo',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min \\'zo',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 eur \\'zo',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 e \\'zo',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 eur \\'zo',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 e \\'zo',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 devezh \\'zo',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d \\'zo',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zevezh \\'zo',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d \\'zo',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sizhun \\'zo',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sizhun \\'zo',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sizhun \\'zo',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sizhun \\'zo',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 miz \\'zo',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 miz \\'zo',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 viz \\'zo',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 viz \\'zo',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 bloaz \\'zo',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 bl. \\'zo',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vloaz \\'zo',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 bl. \\'zo',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'a-benn 1 eilenn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'a-benn 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 eilenn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 eilenn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'a-benn 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 vunutenn 1 eilenn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 bl. 3 miz 1 d 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'a-benn 3 bloaz',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 miz \\'zo',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 bl. 3 miz 1 d 1 s \\'zo',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sizhun 10 eur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sizhun 6 devezh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sizhun 6 devezh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'a-benn 1 sizhun hag 6 devezh',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sizhun 1 eur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'a-benn un eur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zevezh',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d 3 e',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BrxInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BrxInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'brx_IN'; // Bodo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सुनिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रबिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुदबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिसथिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुदबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिसथिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सुनिबार at 12:00 फुं.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रबिबार at 8:49 बेलासे.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 बेलासे.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 फुं.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रबिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सुनिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिसथिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुदबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 फुं. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 फुं., 12:00 फुं.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 फुं., 1:30 फुं.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 फुं., 2:00 फुं.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 फुं., 6:00 फुं.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 फुं., 10:00 फुं.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 बेलासे., 12:00 बेलासे.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 बेलासे., 5:00 बेलासे.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 बेलासे., 9:30 बेलासे.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 बेलासे., 11:00 बेलासे.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BrxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BrxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'brx'; // Bodo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सुनिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रबिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुदबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिसथिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुदबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिसथिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सुनिबार at 12:00 फुं.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रबिबार at 8:49 बेलासे.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 बेलासे.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 फुं.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रबिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सुनिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिसथिबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुदबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last सुखुरबार at 12:00 फुं.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 फुं. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 फुं., 12:00 फुं.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 फुं., 1:30 फुं.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 फुं., 2:00 फुं.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 फुं., 6:00 फुं.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 फुं., 10:00 फुं.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 बेलासे., 12:00 बेलासे.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 बेलासे., 5:00 बेलासे.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 बेलासे., 9:30 बेलासे.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 बेलासे., 11:00 बेलासे.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BsBaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BsBaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bs_BA'; // Bosnian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sutra u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u subotu u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u nedjelju u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u ponedjeljak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u srijedu u 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'u četvrtak u 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'u petak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u srijedu u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u četvrtak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u petak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u subotu u 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'prošlu nedjelja u 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'danas u 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'danas u 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'sutra u 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jučer u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli utorak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli ponedjeljak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošlu nedjelja u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošle subote u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli petak u 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'prošli četvrtak u 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'prošlu srijeda u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'prošli petak u 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 prijepodne CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 prijepodne, 12:00 prijepodne',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 prijepodne, 1:30 prijepodne',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 prijepodne, 2:00 prijepodne',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 prijepodne, 6:00 prijepodne',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 prijepodne, 10:00 prijepodne',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 popodne, 12:00 popodne',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 popodne, 5:00 popodne',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 popodne, 9:30 popodne',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 popodne, 11:00 popodne',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'prije 2 sekunda',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'prije 2 sekunda',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'prije 2 minuta',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'prije 2 minuta',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'prije 1 sat',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'prije 1 sat',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'prije 2 sata',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'prije 2 sata',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'prije 1 dan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'prije 1 dan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'prije 2 dana',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'prije 2 dana',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'prije 1 sedmicu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'prije 1 sedmica',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'prije 2 sedmice',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'prije 2 sedmice',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'prije 2 mjeseca',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'prije 2 mjeseca',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'prije 1 godinu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'prije 1 godina',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'prije 2 godine',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'prije 2 godine',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'nakon 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'nakon 1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund ranije',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund ranije',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'za 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'za 3 godine',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'prije 5 mjeseci',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'prije 2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sedmica 10 sati',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'za 1 sedmicu i 6 dana',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sedmice 1 sat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'za 1 sat',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dan 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BsCyrlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BsCyrlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bs_Cyrl'; // Bosnian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sutra u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u subotu u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u nedjelju u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u понедјељак u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u уторак u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u srijedu u 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'u четвртак u 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'u петак u 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u уторак u 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u srijedu u 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u четвртак u 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u петак u 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u subotu u 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'prošlu недјеља u 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'danas u 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'danas u 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'sutra u 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u уторак u 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jučer u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli уторак u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli понедјељак u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošlu недјеља u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošle subote u 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli петак u 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'prošli четвртак u 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'prošlu сриједа u 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'prošli петак u 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 пре подне CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 пре подне, 12:00 пре подне',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 пре подне, 1:30 пре подне',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 пре подне, 2:00 пре подне',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 пре подне, 6:00 пре подне',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 пре подне, 10:00 пре подне',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 поподне, 12:00 поподне',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 поподне, 5:00 поподне',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 поподне, 9:30 поподне',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 поподне, 11:00 поподне',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'prije 2 sekunda',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'prije 2 sekunda',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'prije 2 minuta',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'prije 2 minuta',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'prije 1 sat',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'prije 1 sat',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'prije 2 sata',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'prije 2 sata',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'prije 1 dan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'prije 1 dan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'prije 2 dana',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'prije 2 dana',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'prije 1 sedmicu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'prije 1 sedmica',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'prije 2 sedmice',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'prije 2 sedmice',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'prije 2 mjeseca',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'prije 2 mjeseca',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'prije 1 godinu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'prije 1 godina',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'prije 2 godine',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'prije 2 godine',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'nakon 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'nakon 1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund ranije',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund ranije',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'za 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'za 3 godine',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'prije 5 mjeseci',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'prije 2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sedmica 10 sati',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'za 1 sedmicu i 6 dana',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sedmice 1 sat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'za 1 sat',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dan 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BsLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BsLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bs_Latn'; // Bosnian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sutra u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u subotu u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u nedjelju u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u ponedjeljak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u srijedu u 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'u četvrtak u 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'u petak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u srijedu u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u četvrtak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u petak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u subotu u 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'prošlu nedjelja u 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'danas u 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'danas u 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'sutra u 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jučer u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli utorak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli ponedjeljak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošlu nedjelja u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošle subote u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli petak u 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'prošli četvrtak u 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'prošlu srijeda u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'prošli petak u 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 prijepodne CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 prijepodne, 12:00 prijepodne',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 prijepodne, 1:30 prijepodne',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 prijepodne, 2:00 prijepodne',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 prijepodne, 6:00 prijepodne',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 prijepodne, 10:00 prijepodne',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 popodne, 12:00 popodne',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 popodne, 5:00 popodne',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 popodne, 9:30 popodne',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 popodne, 11:00 popodne',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'prije 2 sekunda',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'prije 2 sekunda',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'prije 2 minuta',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'prije 2 minuta',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'prije 1 sat',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'prije 1 sat',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'prije 2 sata',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'prije 2 sata',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'prije 1 dan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'prije 1 dan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'prije 2 dana',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'prije 2 dana',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'prije 1 sedmicu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'prije 1 sedmica',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'prije 2 sedmice',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'prije 2 sedmice',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'prije 2 mjeseca',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'prije 2 mjeseca',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'prije 1 godinu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'prije 1 godina',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'prije 2 godine',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'prije 2 godine',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'nakon 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'nakon 1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund ranije',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund ranije',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'za 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'za 3 godine',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'prije 5 mjeseci',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'prije 2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sedmica 10 sati',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'za 1 sedmicu i 6 dana',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sedmice 1 sat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'za 1 sat',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dan 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'bs'; // Bosnian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sutra u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u subotu u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u nedjelju u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u ponedjeljak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'u srijedu u 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'u četvrtak u 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'u petak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u srijedu u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u četvrtak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u petak u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u subotu u 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'prošlu nedjelja u 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'danas u 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'danas u 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'sutra u 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'u utorak u 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jučer u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jučer u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli utorak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli ponedjeljak u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošlu nedjelja u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošle subote u 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'prošli petak u 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'prošli četvrtak u 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'prošlu srijeda u 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'prošli petak u 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 prijepodne CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 prijepodne, 12:00 prijepodne',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 prijepodne, 1:30 prijepodne',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 prijepodne, 2:00 prijepodne',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 prijepodne, 6:00 prijepodne',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 prijepodne, 10:00 prijepodne',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 popodne, 12:00 popodne',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 popodne, 5:00 popodne',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 popodne, 9:30 popodne',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 popodne, 11:00 popodne',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'prije 1 sekund',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'prije 2 sekunda',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'prije 2 sekunda',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'prije 1 minut',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'prije 2 minuta',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'prije 2 minuta',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'prije 1 sat',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'prije 1 sat',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'prije 2 sata',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'prije 2 sata',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'prije 1 dan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'prije 1 dan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'prije 2 dana',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'prije 2 dana',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'prije 1 sedmicu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'prije 1 sedmica',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'prije 2 sedmice',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'prije 2 sedmice',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'prije 1 mjesec',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'prije 2 mjeseca',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'prije 2 mjeseca',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'prije 1 godinu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'prije 1 godina',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'prije 2 godine',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'prije 2 godine',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'za 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'nakon 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'nakon 1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund ranije',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund ranije',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'za 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'za 3 godine',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'prije 5 mjeseci',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'prije 2 godine 3 mjeseca 1 dan 1 sekund',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sedmica 10 sati',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sedmica 6 dana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'za 1 sedmicu i 6 dana',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sedmice 1 sat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'za 1 sat',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dan 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BynErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BynErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'byn_ER'; // Bilin\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበር ሽጓዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበር ቅዳዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ለጓ ወሪ ለብዋ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ኣምድ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ለጓ ወሪ ለብዋ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ኣምድ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰንበር ሽጓዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበር ቅዳዅ at 8:49 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበር ቅዳዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበር ሽጓዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ኣምድ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ለጓ ወሪ ለብዋ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ፋዱስ ጃብ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ፋዱስ ጃብ, 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ፋዱስ ጃብ, 1:30 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ፋዱስ ጃብ, 2:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ፋዱስ ጃብ, 6:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ፋዱስ ጃብ, 10:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ፋዱስ ደምቢ, 12:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ፋዱስ ደምቢ, 5:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ፋዱስ ደምቢ, 9:30 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ፋዱስ ደምቢ, 11:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/BynTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass BynTest extends LocalizationTestCase\n{\n    public const LOCALE = 'byn'; // Bilin\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበር ሽጓዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበር ቅዳዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ለጓ ወሪ ለብዋ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ኣምድ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ለጓ ወሪ ለብዋ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ኣምድ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰንበር ሽጓዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበር ቅዳዅ at 8:49 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰሊጝ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበር ቅዳዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበር ሽጓዅ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ኣምድ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ለጓ ወሪ ለብዋ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ኣርብ at 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ፋዱስ ጃብ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ፋዱስ ጃብ, 12:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ፋዱስ ጃብ, 1:30 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ፋዱስ ጃብ, 2:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ፋዱስ ጃብ, 6:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ፋዱስ ጃብ, 10:00 ፋዱስ ጃብ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ፋዱስ ደምቢ, 12:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ፋዱስ ደምቢ, 5:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ፋዱስ ደምቢ, 9:30 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ፋዱስ ደምቢ, 11:00 ፋዱስ ደምቢ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CaAdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CaAdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ca_AD'; // Catalan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'demà a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'diumenge a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'dilluns a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'el diumenge passat a les 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'ahir a les 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'avui a les 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'avui a les 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'demà a les 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'el dimarts passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'el dilluns passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'el diumenge passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'el dissabte passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'el dijous passat a les 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'el dimecres passat a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1r 1r 1r 1a 1a',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2n 1a',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3r 1a',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4t 1a',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5è 1a',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6è 1a',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7è 1a',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11è 2a',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40è',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41è',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100è',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0è',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'fa 1 segon',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'fa 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'fa 2 segons',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'fa 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'fa 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'fa 1 min',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'fa 2 minuts',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'fa 2 min',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'fa 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'fa 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'fa 2 hores',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'fa 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'fa 1 dia',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'fa 1 d',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'fa 2 dies',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'fa 2 d',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'fa 2 anys',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'fa 2 anys',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'd\\'aquí a 1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 segon després',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 s després',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 segon abans',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 s abans',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 segons',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minut 1 segon',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'd\\'aquí a 3 anys',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'fa 5 mesos',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'fa 2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 setmana 10 hores',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'd\\'aquí a 1 setmana i 6 dies',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 setmanes 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'd\\'aquí a una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dies',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CaEsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CaEsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ca_ES'; // Catalan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'demà a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'diumenge a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'dilluns a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'el diumenge passat a les 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'ahir a les 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'avui a les 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'avui a les 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'demà a les 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'el dimarts passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'el dilluns passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'el diumenge passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'el dissabte passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'el dijous passat a les 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'el dimecres passat a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1r 1r 1r 1a 1a',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2n 1a',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3r 1a',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4t 1a',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5è 1a',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6è 1a',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7è 1a',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11è 2a',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40è',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41è',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100è',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0è',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'fa 1 segon',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'fa 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'fa 2 segons',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'fa 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'fa 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'fa 1 min',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'fa 2 minuts',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'fa 2 min',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'fa 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'fa 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'fa 2 hores',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'fa 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'fa 1 dia',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'fa 1 d',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'fa 2 dies',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'fa 2 d',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'fa 2 anys',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'fa 2 anys',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'd\\'aquí a 1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 segon després',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 s després',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 segon abans',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 s abans',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 segons',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minut 1 segon',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'd\\'aquí a 3 anys',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'fa 5 mesos',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'fa 2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 setmana 10 hores',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'd\\'aquí a 1 setmana i 6 dies',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 setmanes 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'd\\'aquí a una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dies',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CaEsValenciaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CaEsValenciaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ca_ES_Valencia'; // Catalan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'demà a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'diumenge a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'dilluns a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'el diumenge passat a les 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'ahir a les 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'avui a les 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'avui a les 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'demà a les 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'el dimarts passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'el dilluns passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'el diumenge passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'el dissabte passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'el dijous passat a les 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'el dimecres passat a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1r 1r 1r 1a 1a',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2n 1a',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3r 1a',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4t 1a',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5è 1a',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6è 1a',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7è 1a',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11è 2a',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40è',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41è',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100è',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0è',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'fa 1 segon',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'fa 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'fa 2 segons',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'fa 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'fa 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'fa 1 min',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'fa 2 minuts',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'fa 2 min',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'fa 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'fa 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'fa 2 hores',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'fa 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'fa 1 dia',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'fa 1 d',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'fa 2 dies',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'fa 2 d',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'fa 2 anys',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'fa 2 anys',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'd\\'aquí a 1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 segon després',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 s després',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 segon abans',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 s abans',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 segons',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minut 1 segon',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'd\\'aquí a 3 anys',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'fa 5 mesos',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'fa 2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 setmana 10 hores',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'd\\'aquí a 1 setmana i 6 dies',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 setmanes 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'd\\'aquí a una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dies',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CaFrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CaFrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ca_FR'; // Catalan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'demà a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'diumenge a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'dilluns a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'el diumenge passat a les 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'ahir a les 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'avui a les 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'avui a les 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'demà a les 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'el dimarts passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'el dilluns passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'el diumenge passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'el dissabte passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'el dijous passat a les 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'el dimecres passat a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1r 1r 1r 1a 1a',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2n 1a',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3r 1a',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4t 1a',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5è 1a',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6è 1a',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7è 1a',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11è 2a',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40è',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41è',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100è',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0è',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'fa 1 segon',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'fa 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'fa 2 segons',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'fa 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'fa 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'fa 1 min',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'fa 2 minuts',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'fa 2 min',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'fa 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'fa 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'fa 2 hores',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'fa 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'fa 1 dia',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'fa 1 d',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'fa 2 dies',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'fa 2 d',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'fa 2 anys',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'fa 2 anys',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'd\\'aquí a 1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 segon després',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 s després',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 segon abans',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 s abans',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 segons',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minut 1 segon',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'd\\'aquí a 3 anys',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'fa 5 mesos',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'fa 2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 setmana 10 hores',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'd\\'aquí a 1 setmana i 6 dies',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 setmanes 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'd\\'aquí a una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dies',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CaItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CaItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ca_IT'; // Catalan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'demà a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'diumenge a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'dilluns a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'el diumenge passat a les 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'ahir a les 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'avui a les 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'avui a les 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'demà a les 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'el dimarts passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'el dilluns passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'el diumenge passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'el dissabte passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'el dijous passat a les 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'el dimecres passat a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1r 1r 1r 1a 1a',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2n 1a',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3r 1a',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4t 1a',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5è 1a',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6è 1a',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7è 1a',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11è 2a',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40è',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41è',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100è',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0è',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'fa 1 segon',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'fa 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'fa 2 segons',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'fa 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'fa 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'fa 1 min',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'fa 2 minuts',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'fa 2 min',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'fa 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'fa 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'fa 2 hores',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'fa 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'fa 1 dia',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'fa 1 d',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'fa 2 dies',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'fa 2 d',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'fa 2 anys',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'fa 2 anys',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'd\\'aquí a 1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 segon després',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 s després',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 segon abans',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 s abans',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 segons',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minut 1 segon',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'd\\'aquí a 3 anys',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'fa 5 mesos',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'fa 2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 setmana 10 hores',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'd\\'aquí a 1 setmana i 6 dies',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 setmanes 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'd\\'aquí a una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dies',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ca'; // Catalan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'demà a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'diumenge a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'dilluns a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'dimecres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'dijous a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'divendres a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'dissabte a les 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'el diumenge passat a les 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'ahir a les 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'avui a les 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'avui a les 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'demà a les 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'dimarts a les 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'ahir a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'el dimarts passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'el dilluns passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'el diumenge passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'el dissabte passat a les 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'el dijous passat a les 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'el dimecres passat a les 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'el divendres passat a les 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1r 1r 1r 1a 1a',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2n 1a',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3r 1a',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4t 1a',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5è 1a',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6è 1a',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7è 1a',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11è 2a',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40è',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41è',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100è',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 a. m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 a. m., 12:00 a. m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 a. m., 1:30 a. m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 a. m., 2:00 a. m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 a. m., 6:00 a. m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 a. m., 10:00 a. m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 p. m., 12:00 p. m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 p. m., 5:00 p. m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 p. m., 9:30 p. m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 p. m., 11:00 p. m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0è',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'fa 1 segon',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'fa 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'fa 2 segons',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'fa 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'fa 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'fa 1 min',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'fa 2 minuts',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'fa 2 min',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'fa 1 hora',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'fa 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'fa 2 hores',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'fa 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'fa 1 dia',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'fa 1 d',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'fa 2 dies',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'fa 2 d',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'fa 1 setmana',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'fa 2 setmanes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'fa 1 mes',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'fa 2 mesos',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'fa 1 any',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'fa 2 anys',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'fa 2 anys',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'd\\'aquí a 1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 segon després',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 s després',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 segon abans',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 s abans',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 segon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 segons',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'd\\'aquí a 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minut 1 segon',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'd\\'aquí a 3 anys',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'fa 5 mesos',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'fa 2 anys 3 mesos 1 d 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 setmana 10 hores',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 setmana 6 dies',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'd\\'aquí a 1 setmana i 6 dies',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 setmanes 1 hora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'd\\'aquí a una hora',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dies',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CcpInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CcpInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ccp_IN'; // Chakma\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄥𑄧𑄚𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄢𑄧𑄝𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄥𑄧𑄟𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄝𑄪𑄖𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄝𑄪𑄖𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄥𑄧𑄚𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 𑄢𑄧𑄝𑄨𑄝𑄢𑄴 at 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄥𑄧𑄟𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄢𑄧𑄝𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄥𑄧𑄚𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 𑄝𑄪𑄖𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CcpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CcpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ccp'; // Chakma\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄥𑄧𑄚𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄢𑄧𑄝𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄥𑄧𑄟𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '𑄝𑄪𑄖𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄝𑄪𑄖𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄥𑄧𑄚𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 𑄢𑄧𑄝𑄨𑄝𑄢𑄴 at 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄟𑄧𑄁𑄉𑄧𑄣𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄥𑄧𑄟𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄢𑄧𑄝𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄥𑄧𑄚𑄨𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 𑄝𑄳𑄢𑄨𑄥𑄪𑄛𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 𑄝𑄪𑄖𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 𑄥𑄪𑄇𑄴𑄇𑄮𑄢𑄴𑄝𑄢𑄴 at 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CeRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CeRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ce_RU'; // Chechen\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шот де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'КӀиранан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Оршотан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кхаарин де at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Еарин де at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кхаарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Еарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шот де at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last КӀиранан де at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Оршотан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last КӀиранан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шот де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Еарин де at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Кхаарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунд ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 секунд ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунд ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 секунд ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минот ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 минот ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минот ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 минот ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сахьт ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 сахьт ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сахьт ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 сахьт ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 де ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 де ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 де ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 де ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 кӏира ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 кӏира ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 кӏира ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 кӏира ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 бутт ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 бутт ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 бутт ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 бутт ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 шо ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 шо ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 шо ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 шо ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 секунд from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 секунд from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунд after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 секунд after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунд before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 секунд before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 секунд from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минот 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 шо 3 бутт 1 де 1 секунд',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 шо from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 бутт ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 шо 3 бутт 1 де 1 секунд ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 кӏира 10 сахьт',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 кӏира 6 де',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 кӏира 6 де',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 кӏира and 6 де from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 кӏира 1 сахьт',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 сахьт from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 де',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 де 3 сахьт',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ce'; // Chechen\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шот де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'КӀиранан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Оршотан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кхаарин де at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Еарин де at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кхаарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Еарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шот де at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last КӀиранан де at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шинарин де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Оршотан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last КӀиранан де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шот де at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Еарин де at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Кхаарин де at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ПӀераскан де at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунд ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 секунд ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунд ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 секунд ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минот ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 минот ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минот ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 минот ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сахьт ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 сахьт ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сахьт ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 сахьт ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 де ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 де ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 де ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 де ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 кӏира ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 кӏира ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 кӏира ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 кӏира ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 бутт ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 бутт ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 бутт ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 бутт ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 шо ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 шо ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 шо ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 шо ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 секунд from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 секунд from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунд after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 секунд after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунд before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 секунд before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 секунд from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минот 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 шо 3 бутт 1 де 1 секунд',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 шо from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 бутт ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 шо 3 бутт 1 де 1 секунд ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 кӏира 10 сахьт',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 кӏира 6 де',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 кӏира 6 де',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 кӏира and 6 де from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 кӏира 1 сахьт',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 сахьт from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 де',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 де 3 сахьт',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CggTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CggTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cgg'; // Chiga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwamukaaga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sande at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwokubanza at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwakashatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Orwakana at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Orwakataano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakashatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakana at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakataano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwamukaaga at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sande at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwokubanza at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sande at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwamukaaga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwakataano at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Orwakana at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Orwakashatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Orwakataano at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ruhanga ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ruhanga ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ruhanga ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ruhanga ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1 ruhanga 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1 ruhanga 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ruhanga',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ruhanga',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ruhanga from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ruhanga',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ruhanga 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ChrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ChrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'chr'; // Cherokee\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᎤᎾᏙᏓᏈᏕᎾ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᎤᎾᏙᏓᏆᏍᎬ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᎤᎾᏙᏓᏉᏅᎯ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᏦᎢᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ᏅᎩᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏦᎢᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏅᎩᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᎤᎾᏙᏓᏈᏕᎾ at 12:00 ᏌᎾᎴ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ᎤᎾᏙᏓᏆᏍᎬ at 8:49 ᏒᎯᏱᎢᏗᏢ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ᏒᎯᏱᎢᏗᏢ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᎤᎾᏙᏓᏉᏅᎯ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᎤᎾᏙᏓᏆᏍᎬ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᎤᎾᏙᏓᏈᏕᎾ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ᏅᎩᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ᏦᎢᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ꮜꮎꮄ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ᏌᎾᎴ, 12:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ᏌᎾᎴ, 1:30 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ᏌᎾᎴ, 2:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ᏌᎾᎴ, 6:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ᏌᎾᎴ, 10:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ᏒᎯᏱᎢᏗᏢ, 12:00 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ᏒᎯᏱᎢᏗᏢ, 5:00 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ᏒᎯᏱᎢᏗᏢ, 9:30 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ᏒᎯᏱᎢᏗᏢ, 11:00 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ᎾᎿ 1 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ᎾᎿ 1 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ᏐᎢ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ᏐᎢ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ᏐᎢ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ᏐᎢ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ᏐᎢ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ᏐᎢ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ᎾᎿ 1 ᏐᎢ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ᎢᏯᏔᏬᏍᏔᏅ 1 ᏐᎢ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ᏑᏕᏘᏴᏓ 3 ᏏᏅᏙ 1 ᎢᎦ 1 ᏐᎢ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ᎾᎿ 3 ᏑᏕᏘᏴᏓ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ᏑᏕᏘᏴᏓ 3 ᏏᏅᏙ 1 ᎢᎦ 1 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ 10 ᏑᏟᎶᏛ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ 6 ᎢᎦ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ 6 ᎢᎦ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ᎾᎿ 1 ᏑᎾᏙᏓᏆᏍᏗ and 6 ᎢᎦ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ᏑᎾᏙᏓᏆᏍᏗ 1 ᏑᏟᎶᏛ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ᎾᎿ 1 ᏑᏟᎶᏛ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ᎢᎦ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ᎢᎦ 3 ᏑᏟᎶᏛ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ChrUsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ChrUsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'chr_US'; // Cherokee\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᎤᎾᏙᏓᏈᏕᎾ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᎤᎾᏙᏓᏆᏍᎬ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᎤᎾᏙᏓᏉᏅᎯ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᏦᎢᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ᏅᎩᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏦᎢᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏅᎩᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᎤᎾᏙᏓᏈᏕᎾ at 12:00 ᏌᎾᎴ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ᎤᎾᏙᏓᏆᏍᎬ at 8:49 ᏒᎯᏱᎢᏗᏢ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ᏒᎯᏱᎢᏗᏢ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᏔᎵᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᎤᎾᏙᏓᏉᏅᎯ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᎤᎾᏙᏓᏆᏍᎬ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᎤᎾᏙᏓᏈᏕᎾ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ᏅᎩᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ᏦᎢᏁᎢᎦ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ᏧᎾᎩᎶᏍᏗ at 12:00 ᏌᎾᎴ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ꮜꮎꮄ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ᏌᎾᎴ, 12:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ᏌᎾᎴ, 1:30 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ᏌᎾᎴ, 2:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ᏌᎾᎴ, 6:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ᏌᎾᎴ, 10:00 ꮜꮎꮄ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ᏒᎯᏱᎢᏗᏢ, 12:00 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ᏒᎯᏱᎢᏗᏢ, 5:00 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ᏒᎯᏱᎢᏗᏢ, 9:30 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ᏒᎯᏱᎢᏗᏢ, 11:00 ꮢꭿᏹꭲꮧꮲ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ᎢᏯᏔᏬᏍᏔᏅ ᏥᎨᏒ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ᏑᏟᎶᏛ ᏥᎨᏒ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ᎢᎦ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ᏑᎾᏙᏓᏆᏍᏗ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ᏑᏕᏘᏴᏓ ᏥᎨᏒ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ᎾᎿ 1 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ᎾᎿ 1 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ᏐᎢ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ᏐᎢ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ᏐᎢ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ᏐᎢ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ᏐᎢ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ᏐᎢ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ᏐᎢ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ᎾᎿ 1 ᏐᎢ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ᎢᏯᏔᏬᏍᏔᏅ 1 ᏐᎢ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ᏑᏕᏘᏴᏓ 3 ᏏᏅᏙ 1 ᎢᎦ 1 ᏐᎢ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ᎾᎿ 3 ᏑᏕᏘᏴᏓ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ᏏᏅᏙ ᏥᎨᏒ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ᏑᏕᏘᏴᏓ 3 ᏏᏅᏙ 1 ᎢᎦ 1 ᏐᎢ ᏥᎨᏒ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ 10 ᏑᏟᎶᏛ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ 6 ᎢᎦ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ᏑᎾᏙᏓᏆᏍᏗ 6 ᎢᎦ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ᎾᎿ 1 ᏑᎾᏙᏓᏆᏍᏗ and 6 ᎢᎦ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ᏑᎾᏙᏓᏆᏍᏗ 1 ᏑᏟᎶᏛ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ᎾᎿ 1 ᏑᏟᎶᏛ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ᎢᎦ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ᎢᎦ 3 ᏑᏟᎶᏛ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CkbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CkbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ckb'; // ckb\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سبەینێ لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'شەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'یەکشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'دووشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سێشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'چوارشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'پێنجشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'هەینی لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'سێشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'چوارشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'پێنجشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'هەینی لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'شەممە لە کاتژمێر 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'یەکشەممە لە کاتژمێر 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'دوێنێ لە کاتژمێر 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ئەمڕۆ لە کاتژمێر 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئەمڕۆ لە کاتژمێر 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'سبەینێ لە کاتژمێر 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'سێشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'دوێنێ لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'دوێنێ لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سێشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'دووشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'یەکشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'شەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'هەینی لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'پێنجشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'چوارشەممە لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'هەینی لە کاتژمێر 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 پ.ن CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 پ.ن, 12:00 پ.ن',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 پ.ن, 1:30 پ.ن',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 پ.ن, 2:00 پ.ن',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 پ.ن, 6:00 پ.ن',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 پ.ن, 10:00 پ.ن',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 د.ن, 12:00 د.ن',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 د.ن, 5:00 د.ن',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 د.ن, 9:30 د.ن',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 د.ن, 11:00 د.ن',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'پێش چرکەیەک',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'پێش چرکەیەک',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'پێش دوو چرکە',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'پێش دوو چرکە',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'پێش خولەکێک',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'پێش خولەکێک',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'پێش دوو خولەک',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'پێش دوو خولەک',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'پێش کاتژمێرێک',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'پێش کاتژمێرێک',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'پێش دوو کاتژمێر',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'پێش دوو کاتژمێر',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'پێش ڕۆژێک',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'پێش ڕۆژێک',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'پێش دوو ڕۆژ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'پێش دوو ڕۆژ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'پێش هەفتەیەک',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'پێش هەفتەیەک',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'پێش دوو هەفتە',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'پێش دوو هەفتە',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'پێش مانگێک',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'پێش مانگێک',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'پێش دوو مانگ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'پێش دوو مانگ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'پێش ساڵێک',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'پێش ساڵێک',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'پێش دوو ساڵ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'پێش دوو ساڵ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'چرکەیەک لە ئێستاوە',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'چرکەیەک لە ئێستاوە',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'دوای چرکەیەک',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'دوای چرکەیەک',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'پێش چرکەیەک',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'پێش چرکەیەک',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'چرکەیەک',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'چرکەیەک',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'دوو چرکە',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'دوو چرکە',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'چرکەیەک لە ئێستاوە',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'خولەکێک چرکەیەک',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'دوو ساڵ 3 مانگ ڕۆژێک چرکەیەک',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ساڵ لە ئێستاوە',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'پێش 5 مانگ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'پێش دوو ساڵ 3 مانگ ڕۆژێک چرکەیەک',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'هەفتەیەک 10 کاتژمێر',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'هەفتەیەک 6 ڕۆژ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'هەفتەیەک 6 ڕۆژ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'هەفتەیەک و 6 ڕۆژ لە ئێستاوە',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'دوو هەفتە کاتژمێرێک',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'کاتژمێرێک لە ئێستاوە',\n        // CarbonInterval::days(2)->forHumans()\n        'دوو ڕۆژ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ڕۆژێک 3 کاتژمێر',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CmnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CmnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cmn'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期六 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期日 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期一 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期三 at 12:00 上午',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '星期四 at 12:00 上午',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期三 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期四 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期六 at 12:00 上午',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 星期日 at 8:49 下午',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 下午',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 上午',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期一 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期日 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期六 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 星期四 at 12:00 上午',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 星期三 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 上午 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 上午, 12:00 上午',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 上午, 1:30 上午',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 上午, 2:00 上午',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 上午, 6:00 上午',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 上午, 10:00 上午',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 下午, 12:00 下午',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 下午, 5:00 下午',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 下午, 9:30 下午',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 下午, 11:00 下午',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 秒 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 秒 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 秒 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 秒 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 分钟 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 分钟 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 分钟 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 分钟 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 小时 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 小时 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 小时 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 小时 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 白天 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 白天 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 白天 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 白天 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 周 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 周 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 周 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 周 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 月 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 月 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 年 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 年 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 秒 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 秒 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 秒 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 秒 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 秒 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 秒 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 秒',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 秒',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 秒 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 分钟 1 秒',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 年 3 月 1 白天 1 秒',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 年 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 月 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 年 3 月 1 白天 1 秒 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 周 10 小时',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 周 6 白天',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 周 6 白天',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 周 and 6 白天 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 周 1 小时',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 小时 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 白天',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 白天 3 小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CmnTwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CmnTwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cmn_TW'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期六 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期日 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期一 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '星期三 at 12:00 上午',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '星期四 at 12:00 上午',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期三 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期四 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期六 at 12:00 上午',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 星期日 at 8:49 下午',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 下午',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 上午',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期二 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期一 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期日 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期六 at 12:00 上午',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 星期四 at 12:00 上午',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 星期三 at 12:00 上午',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 星期五 at 12:00 上午',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 上午 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 上午, 12:00 上午',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 上午, 1:30 上午',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 上午, 2:00 上午',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 上午, 6:00 上午',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 上午, 10:00 上午',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 下午, 12:00 下午',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 下午, 5:00 下午',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 下午, 9:30 下午',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 下午, 11:00 下午',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 秒 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 秒 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 秒 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 秒 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 分钟 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 分钟 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 分钟 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 分钟 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 小时 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 小时 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 小时 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 小时 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 白天 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 白天 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 白天 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 白天 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 周 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 周 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 周 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 周 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 月 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 月 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 年 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 年 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 秒 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 秒 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 秒 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 秒 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 秒 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 秒 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 秒',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 秒',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 秒 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 分钟 1 秒',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 年 3 月 1 白天 1 秒',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 年 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 月 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 年 3 月 1 白天 1 秒 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 周 10 小时',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 周 6 白天',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 周 6 白天',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 周 and 6 白天 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 周 1 小时',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 小时 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 白天',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 白天 3 小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CrhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CrhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'crh'; // Crimean Turkish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Cumaertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bazar at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bazarertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Çarşembe at 12:00 ÜE',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Cumaaqşamı at 12:00 ÜE',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Çarşembe at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Cumaaqşamı at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Cumaertesi at 12:00 ÜE',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Bazar at 8:49 ÜS',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ÜS',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ÜE',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bazarertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bazar at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Cumaertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Cumaaqşamı at 12:00 ÜE',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Çarşembe at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 üe CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ÜE, 12:00 üe',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ÜE, 1:30 üe',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ÜE, 2:00 üe',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ÜE, 6:00 üe',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ÜE, 10:00 üe',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ÜS, 12:00 üs',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ÜS, 5:00 üs',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ÜS, 9:30 üs',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ÜS, 11:00 üs',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ekinci ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ekinci ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ekinci ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ekinci ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 daqqa ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 daqqa ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 daqqa ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 daqqa ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 saat ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 saat ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 saat ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 saat ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 kün ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 kün ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 kün ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 kün ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 afta ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 afta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 afta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 afta ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ay ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ay ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ay ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ay ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 yıl ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 yıl ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 yıl ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 yıl ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ekinci from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ekinci from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ekinci after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ekinci after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ekinci before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ekinci before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ekinci',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ekinci',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ekinci',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ekinci',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ekinci from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 daqqa 1 ekinci',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 yıl 3 ay 1 kün 1 ekinci',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 yıl from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ay ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 yıl 3 ay 1 kün 1 ekinci ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 afta 10 saat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 afta 6 kün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 afta 6 kün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 afta and 6 kün from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 afta 1 saat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 saat from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 kün',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 kün 3 saat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CrhUaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CrhUaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'crh_UA'; // Crimean Turkish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Cumaertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bazar at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bazarertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Çarşembe at 12:00 ÜE',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Cumaaqşamı at 12:00 ÜE',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Çarşembe at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Cumaaqşamı at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Cumaertesi at 12:00 ÜE',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Bazar at 8:49 ÜS',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ÜS',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ÜE',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Salı at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bazarertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bazar at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Cumaertesi at 12:00 ÜE',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Cumaaqşamı at 12:00 ÜE',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Çarşembe at 12:00 ÜE',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Cuma at 12:00 ÜE',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 üe CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ÜE, 12:00 üe',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ÜE, 1:30 üe',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ÜE, 2:00 üe',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ÜE, 6:00 üe',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ÜE, 10:00 üe',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ÜS, 12:00 üs',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ÜS, 5:00 üs',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ÜS, 9:30 üs',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ÜS, 11:00 üs',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ekinci ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ekinci ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ekinci ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ekinci ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 daqqa ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 daqqa ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 daqqa ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 daqqa ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 saat ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 saat ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 saat ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 saat ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 kün ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 kün ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 kün ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 kün ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 afta ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 afta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 afta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 afta ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ay ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ay ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ay ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ay ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 yıl ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 yıl ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 yıl ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 yıl ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ekinci from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ekinci from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ekinci after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ekinci after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ekinci before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ekinci before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ekinci',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ekinci',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ekinci',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ekinci',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ekinci from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 daqqa 1 ekinci',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 yıl 3 ay 1 kün 1 ekinci',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 yıl from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ay ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 yıl 3 ay 1 kün 1 ekinci ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 afta 10 saat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 afta 6 kün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 afta 6 kün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 afta and 6 kün from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 afta 1 saat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 saat from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 kün',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 kün 3 saat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CsCzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CsCzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cs_CZ'; // Czech\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'neděle at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pondělí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'úterý at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'středa at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'čtvrtek at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pátek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'úterý at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'středa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'čtvrtek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pátek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobota at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last neděle at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'úterý at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last úterý at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pondělí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last neděle at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pátek at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last čtvrtek at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last středa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pátek at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 dopoledne CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 dopoledne, 12:00 dopoledne',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 dopoledne, 1:30 dopoledne',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 dopoledne, 2:00 dopoledne',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 dopoledne, 6:00 dopoledne',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 dopoledne, 10:00 dopoledne',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 odpoledne, 12:00 odpoledne',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 odpoledne, 5:00 odpoledne',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 odpoledne, 9:30 odpoledne',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 odpoledne, 11:00 odpoledne',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'před 1 sekundou',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'před 1 sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'před 2 sekundami',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'před 2 sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'před 1 minutou',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'před 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'před 2 minutami',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'před 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'před 1 hodinou',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'před 1 hod.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'před 2 hodinami',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'před 2 hod.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'před 1 dnem',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'před 1 den',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'před 2 dny',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'před 2 dny',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'před 1 týdnem',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'před 1 týd.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'před 2 týdny',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'před 2 týd.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'před 1 měsícem',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'před 1 měs.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'před 2 měsíci',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'před 2 měs.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'před 1 rokem',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'před 1 rok.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'před 2 roky',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'před 2 rok.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'za 1 sekundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'za 1 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'za 1 sekundu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'za 1 sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'před 1 sekundou',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'před 1 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundy',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'za 1 sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 sekunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 roky 3 měs. 1 den 1 sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'za 3 roky',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'před 5 měs.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'před 2 rok. 3 měs. 1 den 1 sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 týden 10 hodin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týden 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týden 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'za 1 týden a 6 dní',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 týdny 1 hodina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'za hodinu',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dny',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 den 3 hod.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cs'; // Czech\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'neděle at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pondělí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'úterý at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'středa at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'čtvrtek at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pátek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'úterý at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'středa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'čtvrtek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pátek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobota at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last neděle at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'úterý at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last úterý at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pondělí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last neděle at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pátek at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last čtvrtek at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last středa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pátek at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 dopoledne CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 dopoledne, 12:00 dopoledne',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 dopoledne, 1:30 dopoledne',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 dopoledne, 2:00 dopoledne',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 dopoledne, 6:00 dopoledne',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 dopoledne, 10:00 dopoledne',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 odpoledne, 12:00 odpoledne',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 odpoledne, 5:00 odpoledne',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 odpoledne, 9:30 odpoledne',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 odpoledne, 11:00 odpoledne',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'před 1 sekundou',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'před 1 sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'před 2 sekundami',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'před 2 sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'před 1 minutou',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'před 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'před 2 minutami',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'před 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'před 1 hodinou',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'před 1 hod.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'před 2 hodinami',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'před 2 hod.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'před 1 dnem',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'před 1 den',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'před 2 dny',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'před 2 dny',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'před 1 týdnem',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'před 1 týd.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'před 2 týdny',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'před 2 týd.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'před 1 měsícem',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'před 1 měs.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'před 2 měsíci',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'před 2 měs.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'před 1 rokem',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'před 1 rok.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'před 2 roky',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'před 2 rok.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'za 1 sekundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'za 1 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'za 1 sekundu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'za 1 sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'před 1 sekundou',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'před 1 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundy',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'za 1 sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 sekunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 roky 3 měs. 1 den 1 sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'za 3 roky',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'před 5 měs.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'před 2 rok. 3 měs. 1 den 1 sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 týden 10 hodin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týden 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týden 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'za 1 týden a 6 dní',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 týdny 1 hodina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'za hodinu',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dny',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 den 3 hod.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CsbPlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CsbPlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'csb_PL'; // Kashubian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobòta at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'niedzela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pòniedzôłk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wtórk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'strzoda at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'czwiôrtk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'piątk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtórk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'strzoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'czwiôrtk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'piątk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobòta at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last niedzela at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtórk at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wtórk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pòniedzôłk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last niedzela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobòta at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last piątk at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last czwiôrtk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last strzoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last piątk at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 sekunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 rok 3 miesiąc 1 dzéń 1 sekunda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tidzéń 10 gòdzëna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tidzéń 6 dzéń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tidzéń 6 dzéń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tidzéń 1 gòdzëna',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dzéń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dzéń 3 gòdzëna',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CsbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CsbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'csb'; // Kashubian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobòta at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'niedzela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pòniedzôłk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wtórk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'strzoda at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'czwiôrtk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'piątk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtórk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'strzoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'czwiôrtk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'piątk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobòta at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last niedzela at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtórk at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wtórk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pòniedzôłk at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last niedzela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobòta at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last piątk at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last czwiôrtk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last strzoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last piątk at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 sekunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 rok 3 miesiąc 1 dzéń 1 sekunda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tidzéń 10 gòdzëna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tidzéń 6 dzéń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tidzéń 6 dzéń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tidzéń 1 gòdzëna',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dzéń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dzéń 3 gòdzëna',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cu'; // Church Slavic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 въторъ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 въторъ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 въторъ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 въторъ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 малъ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 малъ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 малъ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 малъ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 година ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 година ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 година ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 година ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 дьнь ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 дьнь ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дьнь ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 дьнь ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 сєдмица ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 сєдмица ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 сєдмица ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 сєдмица ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 мѣсѧць ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мѣсѧць ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 мѣсѧць ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мѣсѧць ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 лѣто ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 лѣто ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 лѣто ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 лѣто ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 въторъ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 въторъ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 въторъ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 въторъ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 въторъ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 въторъ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 въторъ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 въторъ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 въторъ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 въторъ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 въторъ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 малъ 1 въторъ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 лѣто 3 мѣсѧць 1 дьнь 1 въторъ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 лѣто from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мѣсѧць ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 лѣто 3 мѣсѧць 1 дьнь 1 въторъ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 сєдмица 10 година',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 сєдмица 6 дьнь',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 сєдмица 6 дьнь',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 сєдмица and 6 дьнь from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 сєдмица 1 година',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 година from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дьнь',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 дьнь 3 година',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CvRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CvRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cv_RU'; // Chuvash\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ыран 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес шӑматкун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес вырсарникун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес тунтикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес юнкун 00:00 сехетре',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ҫитес кӗҫнерникун 00:00 сехетре',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ҫитес эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес юнкун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес кӗҫнерникун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес шӑматкун 00:00 сехетре',\n        // Carbon::now()->subDays(2)->calendar()\n        'Иртнӗ вырсарникун 20:49 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ӗнер 22:00 сехетре',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Паян 10:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Паян 02:00 сехетре',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ыран 01:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ӗнер 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ӗнер 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ тунтикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ вырсарникун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ шӑматкун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Иртнӗ кӗҫнерникун 00:00 сехетре',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Иртнӗ юнкун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Иртнӗ эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-мӗш 1-мӗш 1-мӗш 1-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-мӗш 2-мӗш',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-мӗш',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-мӗш',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-мӗш',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-мӗш',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ҫеккунт каялла',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ҫеккунт каялла',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ҫеккунт каялла',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ҫеккунт каялла',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минут каялла',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 минут каялла',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минут каялла',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 минут каялла',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сехет каялла',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 сехет каялла',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сехет каялла',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 сехет каялла',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 кун каялла',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 кун каялла',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 кун каялла',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 кун каялла',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 эрне каялла',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 эрне каялла',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 эрне каялла',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 эрне каялла',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 уйӑх каялла',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 уйӑх каялла',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 уйӑх каялла',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 уйӑх каялла',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ҫул каялла',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ҫул каялла',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ҫул каялла',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ҫул каялла',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ҫеккунтран',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ҫеккунтран',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ҫеккунт',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ҫеккунт',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ҫеккунт',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ҫеккунт',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ҫеккунтран',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 ҫеккунт',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ҫул 3 уйӑх 1 кун 1 ҫеккунт',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ҫултан',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 уйӑх каялла',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ҫул 3 уйӑх 1 кун 1 ҫеккунт каялла',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 эрне 10 сехет',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 эрне 6 кун',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 эрне 6 кун',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 эрне тата 6 кунран',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 эрне 1 сехет',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'пӗр сехетрен',\n        // CarbonInterval::days(2)->forHumans()\n        '2 кун',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 кун 3 сехет',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cv'; // Chuvash\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ыран 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес шӑматкун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес вырсарникун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес тунтикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ҫитес юнкун 00:00 сехетре',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ҫитес кӗҫнерникун 00:00 сехетре',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ҫитес эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес юнкун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес кӗҫнерникун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес шӑматкун 00:00 сехетре',\n        // Carbon::now()->subDays(2)->calendar()\n        'Иртнӗ вырсарникун 20:49 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ӗнер 22:00 сехетре',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Паян 10:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Паян 02:00 сехетре',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ыран 01:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ҫитес ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ӗнер 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ӗнер 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ ытларикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ тунтикун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ вырсарникун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ шӑматкун 00:00 сехетре',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Иртнӗ эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Иртнӗ кӗҫнерникун 00:00 сехетре',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Иртнӗ юнкун 00:00 сехетре',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Иртнӗ эрнекун 00:00 сехетре',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-мӗш 1-мӗш 1-мӗш 1-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-мӗш 1-мӗш',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-мӗш 2-мӗш',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-мӗш',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-мӗш',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-мӗш',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-мӗш',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ҫеккунт каялла',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ҫеккунт каялла',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ҫеккунт каялла',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ҫеккунт каялла',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минут каялла',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 минут каялла',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минут каялла',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 минут каялла',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сехет каялла',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 сехет каялла',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сехет каялла',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 сехет каялла',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 кун каялла',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 кун каялла',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 кун каялла',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 кун каялла',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 эрне каялла',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 эрне каялла',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 эрне каялла',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 эрне каялла',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 уйӑх каялла',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 уйӑх каялла',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 уйӑх каялла',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 уйӑх каялла',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ҫул каялла',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ҫул каялла',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ҫул каялла',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ҫул каялла',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ҫеккунтран',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ҫеккунтран',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ҫеккунт',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ҫеккунт',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ҫеккунт',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ҫеккунт',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ҫеккунтран',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 ҫеккунт',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ҫул 3 уйӑх 1 кун 1 ҫеккунт',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ҫултан',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 уйӑх каялла',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ҫул 3 уйӑх 1 кун 1 ҫеккунт каялла',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 эрне 10 сехет',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 эрне 6 кун',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 эрне 6 кун',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 эрне тата 6 кунран',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 эрне 1 сехет',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'пӗр сехетрен',\n        // CarbonInterval::days(2)->forHumans()\n        '2 кун',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 кун 3 сехет',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CyGbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CyGbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cy_GB'; // Welsh\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yfory am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sadwrn am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sul am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Llun am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Mawrth am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Mercher am 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dydd Iau am 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dydd Gwener am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Mawrth am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Mercher am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Iau am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Gwener am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Sadwrn am 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Dydd Sul diwethaf am 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ddoe am 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Heddiw am 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Heddiw am 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Yfory am 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Mawrth am 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ddoe am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ddoe am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Mawrth diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Llun diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sul diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sadwrn diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Gwener diwethaf am 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Dydd Iau diwethaf am 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Dydd Mercher diwethaf am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Gwener diwethaf am 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1af 1af 1af 1af 1af',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2il 1af',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3ydd 1af',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4ydd 1af',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5ed 1af',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6ed 1af',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7ed 1af',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11eg 2il',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40fed',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ain',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100fed',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 yb CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 yb, 12:00 yb',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 yb, 1:30 yb',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 yb, 2:00 yb',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 yb, 6:00 yb',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 yb, 10:00 yb',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 yh, 12:00 yh',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 yh, 5:00 yh',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 yh, 9:30 yh',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 yh, 11:00 yh',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 eiliad yn ôl',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s yn ôl',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 eiliad yn ôl',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s yn ôl',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 munud yn ôl',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m yn ôl',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 munud yn ôl',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m yn ôl',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 awr yn ôl',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h yn ôl',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 awr yn ôl',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h yn ôl',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 diwrnod yn ôl',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d yn ôl',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 diwrnod yn ôl',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d yn ôl',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wythnos yn ôl',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w yn ôl',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wythnos yn ôl',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w yn ôl',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mis yn ôl',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mi yn ôl',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mis yn ôl',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mi yn ôl',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 flwyddyn yn ôl',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1bl yn ôl',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 flynedd yn ôl',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2bl yn ôl',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'mewn 1 eiliad',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'mewn 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 eiliad ar ôl',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s ar ôl',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 eiliad o\\'r blaen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s o\\'r blaen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 eiliad',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 eiliad',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'mewn 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 munud 1 eiliad',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2bl 3mi 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mewn 3 flynedd',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mi yn ôl',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2bl 3mi 1d 1s yn ôl',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wythnos 10 awr',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wythnos 6 diwrnod',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wythnos 6 diwrnod',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mewn 1 wythnos a 6 diwrnod',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wythnos 1 awr',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'mewn awr',\n        // CarbonInterval::days(2)->forHumans()\n        '2 diwrnod',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/CyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass CyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'cy'; // Welsh\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yfory am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sadwrn am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sul am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Llun am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Mawrth am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Mercher am 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dydd Iau am 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dydd Gwener am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Mawrth am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Mercher am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Iau am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Gwener am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Sadwrn am 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Dydd Sul diwethaf am 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ddoe am 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Heddiw am 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Heddiw am 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Yfory am 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Mawrth am 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ddoe am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ddoe am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Mawrth diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Llun diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sul diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Sadwrn diwethaf am 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dydd Gwener diwethaf am 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Dydd Iau diwethaf am 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Dydd Mercher diwethaf am 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dydd Gwener diwethaf am 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1af 1af 1af 1af 1af',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2il 1af',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3ydd 1af',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4ydd 1af',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5ed 1af',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6ed 1af',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7ed 1af',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11eg 2il',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40fed',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ain',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100fed',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 yb CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 yb, 12:00 yb',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 yb, 1:30 yb',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 yb, 2:00 yb',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 yb, 6:00 yb',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 yb, 10:00 yb',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 yh, 12:00 yh',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 yh, 5:00 yh',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 yh, 9:30 yh',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 yh, 11:00 yh',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 eiliad yn ôl',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s yn ôl',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 eiliad yn ôl',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s yn ôl',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 munud yn ôl',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m yn ôl',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 munud yn ôl',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m yn ôl',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 awr yn ôl',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h yn ôl',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 awr yn ôl',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h yn ôl',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 diwrnod yn ôl',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d yn ôl',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 diwrnod yn ôl',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d yn ôl',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wythnos yn ôl',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w yn ôl',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wythnos yn ôl',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w yn ôl',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mis yn ôl',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mi yn ôl',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mis yn ôl',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mi yn ôl',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 flwyddyn yn ôl',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1bl yn ôl',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 flynedd yn ôl',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2bl yn ôl',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'mewn 1 eiliad',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'mewn 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 eiliad ar ôl',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s ar ôl',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 eiliad o\\'r blaen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s o\\'r blaen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 eiliad',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 eiliad',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'mewn 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 munud 1 eiliad',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2bl 3mi 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mewn 3 flynedd',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mi yn ôl',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2bl 3mi 1d 1s yn ôl',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wythnos 10 awr',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wythnos 6 diwrnod',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wythnos 6 diwrnod',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mewn 1 wythnos a 6 diwrnod',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wythnos 1 awr',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'mewn awr',\n        // CarbonInterval::days(2)->forHumans()\n        '2 diwrnod',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DaDkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DaDkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'da_DK'; // Danish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'i søndags kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i tirsdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i mandags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i søndags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i lørdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'i torsdags kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'i onsdags kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'for 1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'for 1 s. siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'for 2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'for 2 s. siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'for 1 minut siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'for 1 min. siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'for 2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'for 2 min. siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'for 1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'for 1 t. siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'for 2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'for 2 t. siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'for 1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'for 1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'for 2 dage siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'for 2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'for 1 uge siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'for 1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'for 2 uger siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'for 2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'for 1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'for 1 mdr. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'for 2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'for 2 mdr. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'for 1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'for 1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'for 2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'for 2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mdr. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'for 5 mdr. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'for 2 år 3 mdr. 1 d. 1 s. siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uge 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uge 6 dage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uge 6 dage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uge og 6 dage',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uger 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DaGlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DaGlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'da_GL'; // Danish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'i søndags kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i tirsdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i mandags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i søndags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i lørdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'i torsdags kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'i onsdags kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'for 1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'for 1 s. siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'for 2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'for 2 s. siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'for 1 minut siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'for 1 min. siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'for 2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'for 2 min. siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'for 1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'for 1 t. siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'for 2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'for 2 t. siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'for 1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'for 1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'for 2 dage siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'for 2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'for 1 uge siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'for 1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'for 2 uger siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'for 2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'for 1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'for 1 mdr. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'for 2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'for 2 mdr. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'for 1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'for 1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'for 2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'for 2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mdr. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'for 5 mdr. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'for 2 år 3 mdr. 1 d. 1 s. siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uge 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uge 6 dage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uge 6 dage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uge og 6 dage',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uger 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'da'; // Danish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'i søndags kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i tirsdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i mandags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i søndags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i lørdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'i torsdags kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'i onsdags kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'for 1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'for 1 s. siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'for 2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'for 2 s. siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'for 1 minut siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'for 1 min. siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'for 2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'for 2 min. siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'for 1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'for 1 t. siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'for 2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'for 2 t. siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'for 1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'for 1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'for 2 dage siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'for 2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'for 1 uge siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'for 1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'for 2 uger siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'for 2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'for 1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'for 1 mdr. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'for 2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'for 2 mdr. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'for 1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'for 1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'for 2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'for 2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mdr. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'for 5 mdr. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'for 2 år 3 mdr. 1 d. 1 s. siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uge 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uge 6 dage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uge 6 dage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uge og 6 dage',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uger 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DavTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DavTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dav'; // Taita\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kifula nguwo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ituku ja jumwa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuramuka jimweri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuramuka kawi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuramuka kadadu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kuramuka kana at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Kuramuka kasanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuramuka kawi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuramuka kadadu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuramuka kana at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuramuka kasanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kifula nguwo at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ituku ja jumwa at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuramuka kawi at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuramuka kawi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuramuka jimweri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ituku ja jumwa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kifula nguwo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuramuka kasanu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kuramuka kana at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Kuramuka kadadu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Kuramuka kasanu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 luma lwa k CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Luma lwa K, 12:00 luma lwa k',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Luma lwa K, 1:30 luma lwa k',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Luma lwa K, 2:00 luma lwa k',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Luma lwa K, 6:00 luma lwa k',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Luma lwa K, 10:00 luma lwa k',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 luma lwa p, 12:00 luma lwa p',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 luma lwa p, 5:00 luma lwa p',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 luma lwa p, 9:30 luma lwa p',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 luma lwa p, 11:00 luma lwa p',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeAtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeAtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_AT'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeBeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeBeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_BE'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_CH'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeDeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeDeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_DE'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_IT'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeLiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeLiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_LI'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeLuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeLuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de_LU'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse Carbon\\CarbonPeriod;\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'de'; // German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samstag um 00:00 Uhr',\n        // Carbon::now()->subDays(2)->calendar()\n        'letzten Sonntag um 20:49 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 22:00 Uhr',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'heute um 10:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'heute um 02:00 Uhr',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen um 01:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gestern um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Dienstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Montag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Sonntag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Samstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'letzten Donnerstag um 00:00 Uhr',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'letzten Mittwoch um 00:00 Uhr',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'letzten Freitag um 00:00 Uhr',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vor 1 Sekunde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vor 1 Sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vor 2 Sekunden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vor 2 Sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vor 1 Minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vor 1 Min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vor 2 Minuten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vor 2 Min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vor 1 Stunde',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vor 1 Std.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vor 2 Stunden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vor 2 Std.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vor 1 Tag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vor 1 Tg.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vor 2 Tagen',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vor 2 Tg.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vor 1 Woche',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vor 1 Wo.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vor 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vor 2 Wo.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vor 1 Monat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vor 1 Mon.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vor 2 Monaten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vor 2 Mon.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vor 1 Jahr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vor 1 J.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vor 2 Jahren',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vor 2 J.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunde später',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sek. später',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunde zuvor',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sek. zuvor',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1 Sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Jahren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vor 5 Mon.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vor 2 J. 3 Mon. 1 Tg. 1 Sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Stunden',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tage',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Woche und 6 Tagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stunde',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in eine Stunde',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tage',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tg. 3 Std.',\n    ];\n\n    public function testPeriod()\n    {\n        $this->assertSame(\n            '4 mal jede Woche von 2012-07-01 12:00:00',\n            (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P7D')),\n        );\n        $this->assertSame(\n            '4 mal jede 2 Monate von 2012-07-01 12:00:00',\n            (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P2M')),\n        );\n        $this->assertSame(\n            '4 mal jeden Monat von 2012-07-01 12:00:00',\n            (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P1M')),\n        );\n        $this->assertSame(\n            '4 mal jede 2 Jahre von 2012-07-01 12:00:00',\n            (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P2Y')),\n        );\n        $this->assertSame(\n            '4 mal jedes Jahr von 2012-07-01 12:00:00',\n            (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P1Y')),\n        );\n    }\n}\n"
  },
  {
    "path": "tests/Localization/DjeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DjeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dje'; // Zarma\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asibti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atinni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Alzuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alzuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asibti at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Alhadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atalaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atinni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asibti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alzuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Alzuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subbaahi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Subbaahi, 12:00 subbaahi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Subbaahi, 1:30 subbaahi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Subbaahi, 2:00 subbaahi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Subbaahi, 6:00 subbaahi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Subbaahi, 10:00 subbaahi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Zaarikay b, 12:00 zaarikay b',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Zaarikay b, 5:00 zaarikay b',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Zaarikay b, 9:30 zaarikay b',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Zaarikay b, 11:00 zaarikay b',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 atinni ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 atinni ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 atinni ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 atinni ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 alzuma ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 alzuma ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 alzuma ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 alzuma ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 hari ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 hari ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 hari ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 hari ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 atinni from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 atinni from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 atinni after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 atinni after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 atinni before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 atinni before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 atinni',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 atinni',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 atinni',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 atinni',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 atinni from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 atinni',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 hari 3mos 1d 1 atinni',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 hari from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 hari 3mos 1d 1 atinni ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 alzuma 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 alzuma 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 alzuma 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 alzuma and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 alzuma 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DoiInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DoiInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'doi_IN'; // Dogri (macrolanguage)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'श्नीचरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ऐतबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधबार at 12:00 सञं',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बीरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बीरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'श्नीचरबार at 12:00 सञं',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ऐतबार at 8:49 सबेर',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 सबेर',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 सञं',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ऐतबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last श्नीचरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बीरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 सञं CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 सञं, 12:00 सञं',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 सञं, 1:30 सञं',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 सञं, 2:00 सञं',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 सञं, 6:00 सञं',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 सञं, 10:00 सञं',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 सबेर, 12:00 सबेर',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 सबेर, 5:00 सबेर',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 सबेर, 9:30 सबेर',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 सबेर, 11:00 सबेर',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 सङार ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सङार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सङार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सङार ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 सङार from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सङार from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 सङार after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सङार after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 सङार before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सङार before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 सङार',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सङार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सङार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सङार',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सङार from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 सङार',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1 सङार',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1 सङार ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DoiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DoiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'doi'; // Dogri (macrolanguage)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'श्नीचरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ऐतबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधबार at 12:00 सञं',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बीरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बीरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'श्नीचरबार at 12:00 सञं',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ऐतबार at 8:49 सबेर',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 सबेर',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 सञं',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलबर at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ऐतबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last श्नीचरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बीरबार at 12:00 सञं',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधबार at 12:00 सञं',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्करबार at 12:00 सञं',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 सञं CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 सञं, 12:00 सञं',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 सञं, 1:30 सञं',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 सञं, 2:00 सञं',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 सञं, 6:00 सञं',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 सञं, 10:00 सञं',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 सबेर, 12:00 सबेर',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 सबेर, 5:00 सबेर',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 सबेर, 9:30 सबेर',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 सबेर, 11:00 सबेर',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 सङार ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सङार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सङार ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सङार ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 सङार from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सङार from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 सङार after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सङार after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 सङार before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सङार before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 सङार',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सङार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सङार',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सङार',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सङार from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 सङार',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1 सङार',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1 सङार ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DsbDeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DsbDeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dsb_DE'; // Lower Sorbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njeźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Pónjeźele at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wałtora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Srjoda at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Stwórtk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Pětk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wałtora at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Srjoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Stwórtk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Pětk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Njeźela at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wałtora at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wałtora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Pónjeźele at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njeźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Pětk at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Stwórtk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Srjoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Pětk at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 drugi ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 drugi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 drugi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 drugi ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuta ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 góźina ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 góźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 góźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 góźina ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 źeń ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 źeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 źeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 źeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tyźeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tyźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tyźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tyźeń ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mjasec ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mjasec ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mjasec ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mjasec ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 lěto ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 lěto ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 drugi from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 drugi from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 drugi after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 drugi after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 drugi before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 drugi before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 drugi',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 drugi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 drugi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 drugi',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 drugi from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 drugi',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 lěto 3 mjasec 1 źeń 1 drugi',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 lěto from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mjasec ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 lěto 3 mjasec 1 źeń 1 drugi ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tyźeń 10 góźina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tyźeń 6 źeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tyźeń 6 źeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tyźeń and 6 źeń from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tyźeń 1 góźina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 góźina from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 źeń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 źeń 3 góźina',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DsbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DsbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dsb'; // Lower Sorbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njeźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Pónjeźele at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wałtora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Srjoda at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Stwórtk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Pětk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wałtora at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Srjoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Stwórtk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Pětk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Njeźela at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wałtora at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wałtora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Pónjeźele at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njeźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Pětk at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Stwórtk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Srjoda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Pětk at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 drugi ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 drugi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 drugi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 drugi ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuta ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 góźina ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 góźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 góźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 góźina ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 źeń ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 źeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 źeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 źeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tyźeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tyźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tyźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tyźeń ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mjasec ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mjasec ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mjasec ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mjasec ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 lěto ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 lěto ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 drugi from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 drugi from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 drugi after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 drugi after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 drugi before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 drugi before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 drugi',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 drugi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 drugi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 drugi',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 drugi from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 drugi',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 lěto 3 mjasec 1 źeń 1 drugi',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 lěto from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mjasec ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 lěto 3 mjasec 1 źeń 1 drugi ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tyźeń 10 góźina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tyźeń 6 źeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tyźeń 6 źeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tyźeń and 6 źeń from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tyźeń 1 góźina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 góźina from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 źeń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 źeń 3 góźina',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DuaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DuaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dua'; // Duala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'esaɓasú at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'éti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mɔ́sú at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kwasú at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mukɔ́sú at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ŋgisú at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ɗónɛsú at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kwasú at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mukɔ́sú at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ŋgisú at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ɗónɛsú at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'esaɓasú at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last éti at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kwasú at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last kwasú at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mɔ́sú at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last éti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last esaɓasú at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ɗónɛsú at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ŋgisú at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mukɔ́sú at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ɗónɛsú at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 idiɓa CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 idiɓa, 12:00 idiɓa',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 idiɓa, 1:30 idiɓa',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 idiɓa, 2:00 idiɓa',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 idiɓa, 6:00 idiɓa',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 idiɓa, 10:00 idiɓa',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ebyámu, 12:00 ebyámu',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ebyámu, 5:00 ebyámu',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ebyámu, 9:30 ebyámu',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ebyámu, 11:00 ebyámu',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 maba ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 maba ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 maba ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 maba ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ma awa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ma awa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ma awa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ma awa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 buńa ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 buńa ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 buńa ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 buńa ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 woki ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 woki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 woki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 woki ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 myo̱di ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 myo̱di ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 myo̱di ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 myo̱di ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ma mbu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ma mbu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ma mbu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ma mbu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 maba from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 maba from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 maba after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 maba after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 maba before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 maba before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 maba',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 maba',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 maba',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 maba',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 maba from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuti 1 maba',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ma mbu 3 myo̱di 1 buńa 1 maba',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ma mbu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 myo̱di ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ma mbu 3 myo̱di 1 buńa 1 maba ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 woki 10 ma awa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 woki 6 buńa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 woki 6 buńa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 woki and 6 buńa from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 woki 1 ma awa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ma awa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 buńa',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 buńa 3 ma awa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DvMvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DvMvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dv_MV'; // Divehi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'މާދަމާ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ހޮނިހިރު 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އާދިއްތަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ހޯމަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ބުދަ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ބުރާސްފަތި 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ހުކުރު 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ބުދަ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ބުރާސްފަތި 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ހުކުރު 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ހޮނިހިރު 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ފާއިތުވި އާދިއްތަ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އިއްޔެ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'މިއަދު 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'މިއަދު 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'މާދަމާ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'އިއްޔެ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އިއްޔެ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި ހޯމަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި އާދިއްތަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި ހޮނިހިރު 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި ހުކުރު 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ފާއިތުވި ބުރާސްފަތި 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ފާއިތުވި ބުދަ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ފާއިތުވި ހުކުރު 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 މކ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 މކ, 12:00 މކ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 މކ, 1:30 މކ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 މކ, 2:00 މކ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 މކ, 6:00 މކ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 މކ, 10:00 މކ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 މފ, 12:00 މފ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 މފ, 5:00 މފ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 މފ, 9:30 މފ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 މފ, 11:00 މފ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ސިކުންތު ކުރިން',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ސިކުންތު ކުރިން',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ސިކުންތު ކުރިން',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ސިކުންތު ކުރިން',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 މިނެޓް ކުރިން',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 މިނެޓް ކުރިން',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 މިނެޓް ކުރިން',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 މިނެޓް ކުރިން',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ގަޑި ކުރިން',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ގަޑި ކުރިން',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ގަޑި ކުރިން',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ގަޑި ކުރިން',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ދުވަސް ކުރިން',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ދުވަސް ކުރިން',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ދުވަސް ކުރިން',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ދުވަސް ކުރިން',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ހަފްތާ ކުރިން',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ހަފްތާ ކުރިން',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ހަފްތާ ކުރިން',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ހަފްތާ ކުރިން',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 މަސް ކުރިން',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 މަސް ކުރިން',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 މަސް ކުރިން',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 މަސް ކުރިން',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 އަހަރު ކުރިން',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 އަހަރު ކުރިން',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 އަހަރު ކުރިން',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 އަހަރު ކުރިން',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ސިކުންތު ކުރި',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ސިކުންތު ކުރި',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ސިކުންތު',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ސިކުންތު',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ސިކުންތު',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ސިކުންތު',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 މިނެޓް 1 ސިކުންތު',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 އަހަރު 3 މަސް 1 ދުވަސް 1 ސިކުންތު',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 އަހަރު ފަހުން',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 މަސް ކުރިން',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 އަހަރު 3 މަސް 1 ދުވަސް 1 ސިކުންތު ކުރިން',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ހަފްތާ 10 ގަޑި',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ހަފްތާ 6 ދުވަސް',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ހަފްތާ 6 ދުވަސް',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ހަފްތާ އަދި 6 ދުވަސް ފަހުން',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ހަފްތާ 1 ގަޑި',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ގަޑި ފަހުން',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ދުވަސް',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ދުވަސް 3 ގަޑި',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dv'; // Divehi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'މާދަމާ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ހޮނިހިރު 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އާދިއްތަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ހޯމަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ބުދަ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ބުރާސްފަތި 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ހުކުރު 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ބުދަ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ބުރާސްފަތި 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ހުކުރު 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ހޮނިހިރު 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ފާއިތުވި އާދިއްތަ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އިއްޔެ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'މިއަދު 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'މިއަދު 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'މާދަމާ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'އިއްޔެ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'އިއްޔެ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި އަންގާރަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި ހޯމަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި އާދިއްތަ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި ހޮނިހިރު 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ފާއިތުވި ހުކުރު 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ފާއިތުވި ބުރާސްފަތި 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ފާއިތުވި ބުދަ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ފާއިތުވި ހުކުރު 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 މކ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 މކ, 12:00 މކ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 މކ, 1:30 މކ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 މކ, 2:00 މކ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 މކ, 6:00 މކ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 މކ, 10:00 މކ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 މފ, 12:00 މފ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 މފ, 5:00 މފ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 މފ, 9:30 މފ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 މފ, 11:00 މފ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ކުރިން 1 ސިކުންތު',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 ސިކުންތު',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ކުރިން 2 ސިކުންތު',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 ސިކުންތު',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ކުރިން 1 މިނިޓު',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 މިނިޓު',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ކުރިން 2 މިނިޓު',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 މިނިޓު',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ކުރިން 1 ގަޑިއިރު',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 ގަޑިއިރު',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ކުރިން 2 ގަޑިއިރު',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 ގަޑިއިރު',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ކުރިން 1 ދުވަސް',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 ދުވަސް',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ކުރިން 2 ދުވަސް',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 ދުވަސް',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ކުރިން 1 ހަފްތާ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 ހަފްތާ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ކުރިން 2 ހަފްތާ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 ހަފްތާ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ކުރިން 1 މަސް',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 މަސް',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ކުރިން 2 މަސް',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 މަސް',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ކުރިން 1 އަހަރު',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ކުރިން 1 އަހަރު',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ކުރިން 2 އަހަރު',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ކުރިން 2 އަހަރު',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ތެރޭގައި 1 ސިކުންތު',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ތެރޭގައި 1 ސިކުންތު',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ސިކުންތު ފަހުން',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ސިކުންތު ކުރި',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ސިކުންތު ކުރި',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ސިކުންތު',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ސިކުންތު',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ސިކުންތު',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ސިކުންތު',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ތެރޭގައި 1 ސިކުންތު',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 މިނިޓު 1 ސިކުންތު',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 އަހަރު 3 މަސް 1 ދުވަސް 1 ސިކުންތު',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ތެރޭގައި 3 އަހަރު',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ކުރިން 5 މަސް',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ކުރިން 2 އަހަރު 3 މަސް 1 ދުވަސް 1 ސިކުންތު',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ހަފްތާ 10 ގަޑިއިރު',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ހަފްތާ 6 ދުވަސް',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ހަފްތާ 6 ދުވަސް',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ތެރޭގައި 1 ހަފްތާ އަދި 6 ދުވަސް',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ހަފްތާ 1 ގަޑިއިރު',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ތެރޭގައި ގަޑިއިރެއް',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ދުވަސް',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ދުވަސް 3 ގަޑިއިރު',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DyoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DyoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dyo'; // Jola-Fonyi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sibiti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dimas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Teneŋ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alarbay at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aramisay at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Arjuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alarbay at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aramisay at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arjuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sibiti at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Dimas at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Teneŋ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dimas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sibiti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Arjuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aramisay at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Alarbay at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Arjuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DzBtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DzBtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dz_BT'; // Dzongkha\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་ཉི་མ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་ཟླ་བ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་མིག་དམར་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་པུར་བུ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'གཟའ་པ་སངས་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་པུར་བུ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་པ་སངས་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་ཉི་མ་ at 12:00 ངས་ཆ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last གཟའ་ཟླ་བ་ at 8:49 ཕྱི་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་མིག་དམར་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་ཟླ་བ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་ཉི་མ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last གཟའ་པ་སངས་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last གཟའ་པུར་བུ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ངས་ཆ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ངས་ཆ, 12:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ངས་ཆ, 1:30 ངས་ཆ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ངས་ཆ, 2:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ངས་ཆ, 6:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ངས་ཆ, 10:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ཕྱི་ཆ, 12:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ཕྱི་ཆ, 5:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ཕྱི་ཆ, 9:30 ཕྱི་ཆ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ཕྱི་ཆ, 11:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ཆ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ཆ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ཆ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ཆ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ཉི ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ཉི ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ཉི ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ཉི ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ཟླ་བ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ཟླ་བ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ཟླ་བ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ཟླ་བ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ཆརཔ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ཆརཔ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ཆརཔ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ཆརཔ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ཆ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ཆ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ཆ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ཆ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ཆ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ཆ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ཆ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ཆ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ཆ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ཆ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ཆ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ཆ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ཆརཔ 3 ཟླ་བ 1 ཉི 1 ཆ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ཆརཔ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ཟླ་བ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ཆརཔ 3 ཟླ་བ 1 ཉི 1 ཆ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ཉི',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ཉི',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ཉི from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ཉི',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ཉི 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/DzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass DzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'dz'; // Dzongkha\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་ཉི་མ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་ཟླ་བ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་མིག་དམར་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'གཟའ་པུར་བུ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'གཟའ་པ་སངས་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་པུར་བུ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་པ་སངས་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་ཉི་མ་ at 12:00 ངས་ཆ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last གཟའ་ཟླ་བ་ at 8:49 ཕྱི་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་ལྷག་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་མིག་དམར་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་ཟླ་བ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་ཉི་མ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last གཟའ་པ་སངས་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last གཟའ་པུར་བུ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last གཟའ་སྤེན་ཕ་ at 12:00 ངས་ཆ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ངས་ཆ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ངས་ཆ, 12:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ངས་ཆ, 1:30 ངས་ཆ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ངས་ཆ, 2:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ངས་ཆ, 6:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ངས་ཆ, 10:00 ངས་ཆ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ཕྱི་ཆ, 12:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ཕྱི་ཆ, 5:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ཕྱི་ཆ, 9:30 ཕྱི་ཆ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ཕྱི་ཆ, 11:00 ཕྱི་ཆ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ཆ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ཆ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ཆ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ཆ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ཉི ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ཉི ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ཉི ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ཉི ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ཟླ་བ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ཟླ་བ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ཟླ་བ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ཟླ་བ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ཆརཔ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ཆརཔ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ཆརཔ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ཆརཔ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ཆ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ཆ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ཆ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ཆ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ཆ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ཆ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ཆ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ཆ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ཆ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ཆ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ཆ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ཆ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ཆརཔ 3 ཟླ་བ 1 ཉི 1 ཆ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ཆརཔ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ཟླ་བ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ཆརཔ 3 ཟླ་བ 1 ཉི 1 ཆ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ཉི',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ཉི',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ཉི from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ཉི',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ཉི 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EbuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EbuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ebu'; // Embu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'NJumamothii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kiumia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumaine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aramithi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Njumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumaine at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aramithi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'NJumamothii at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Kiumia at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumaine at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumaine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kiumia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last NJumamothii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aramithi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Njumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Njumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ki CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 KI, 12:00 ki',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 KI, 1:30 ki',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 KI, 2:00 ki',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 KI, 6:00 ki',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 KI, 10:00 ki',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 UT, 12:00 ut',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 UT, 5:00 ut',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 UT, 9:30 ut',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 UT, 11:00 ut',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ee'; // Ewe\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'memleɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kɔsiɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dzoɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'blaɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kuɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'yawoɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fiɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'blaɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kuɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'yawoɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fiɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'memleɖa at ŋ ga 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last kɔsiɖa at ɣ ga 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at ɣ ga 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at ŋ ga 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at ŋ ga 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at ŋ ga 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'blaɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last blaɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dzoɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last kɔsiɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last memleɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last fiɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last yawoɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last kuɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last fiɖa at ŋ ga 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ŋ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ŋ, 12:00 ŋ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ŋ, 1:30 ŋ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ŋ, 2:00 ŋ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ŋ, 6:00 ŋ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ŋ, 10:00 ŋ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ɣ, 12:00 ɣ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ɣ, 5:00 ɣ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ɣ, 9:30 ɣ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ɣ, 11:00 ɣ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sɛkɛnd 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sɛkɛnd 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sɛkɛnd 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sɛkɛnd 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'gaƒoƒo 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'gaƒoƒo 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'gaƒoƒo 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'gaƒoƒo 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ŋkeke 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ŋkeke 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ŋkeke 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ŋkeke 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'kwasiɖa 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'kwasiɖa 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'kwasiɖa 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'kwasiɖa 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ɣleti 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ɣleti 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ɣleti 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ɣleti 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ƒe 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ƒe 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ƒe 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ƒe 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sɛkɛnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sɛkɛnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sɛkɛnd 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sɛkɛnd 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sɛkɛnd 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sɛkɛnd 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sɛkɛnd 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sɛkɛnd 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sɛkɛnd 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sɛkɛnd 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sɛkɛnd 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 sɛkɛnd 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ƒe 2 ɣleti 3 ŋkeke 1 sɛkɛnd 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ƒe 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ɣleti 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ƒe 2 ɣleti 3 ŋkeke 1 sɛkɛnd 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'kwasiɖa 1 gaƒoƒo 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'kwasiɖa 1 ŋkeke 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'kwasiɖa 1 ŋkeke 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'kwasiɖa 1 and ŋkeke 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'kwasiɖa 2 gaƒoƒo 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'gaƒoƒo 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ŋkeke 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ŋkeke 1 gaƒoƒo 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EeTgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EeTgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ee_TG'; // Ewe\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'memleɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kɔsiɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dzoɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'blaɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kuɖa at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'yawoɖa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fiɖa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'blaɖa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kuɖa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'yawoɖa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fiɖa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'memleɖa at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last kɔsiɖa at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'blaɖa at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last blaɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dzoɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last kɔsiɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last memleɖa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last fiɖa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last yawoɖa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last kuɖa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last fiɖa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ŋ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ŋ, 12:00 ŋ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ŋ, 1:30 ŋ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ŋ, 2:00 ŋ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ŋ, 6:00 ŋ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ŋ, 10:00 ŋ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ɣ, 12:00 ɣ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ɣ, 5:00 ɣ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ɣ, 9:30 ɣ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ɣ, 11:00 ɣ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sɛkɛnd 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sɛkɛnd 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sɛkɛnd 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sɛkɛnd 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'gaƒoƒo 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'gaƒoƒo 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'gaƒoƒo 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'gaƒoƒo 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ŋkeke 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ŋkeke 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ŋkeke 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ŋkeke 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'kwasiɖa 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'kwasiɖa 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'kwasiɖa 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'kwasiɖa 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ɣleti 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ɣleti 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ɣleti 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ɣleti 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ƒe 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ƒe 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ƒe 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ƒe 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sɛkɛnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sɛkɛnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sɛkɛnd 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sɛkɛnd 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sɛkɛnd 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sɛkɛnd 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sɛkɛnd 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sɛkɛnd 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sɛkɛnd 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sɛkɛnd 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sɛkɛnd 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 sɛkɛnd 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ƒe 2 ɣleti 3 ŋkeke 1 sɛkɛnd 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ƒe 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ɣleti 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ƒe 2 ɣleti 3 ŋkeke 1 sɛkɛnd 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'kwasiɖa 1 gaƒoƒo 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'kwasiɖa 1 ŋkeke 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'kwasiɖa 1 ŋkeke 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'kwasiɖa 1 and ŋkeke 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'kwasiɖa 2 gaƒoƒo 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'gaƒoƒo 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ŋkeke 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ŋkeke 1 gaƒoƒo 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ElCyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ElCyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'el_CY'; // Greek (modern)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Αύριο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Σάββατο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Κυριακή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Δευτέρα {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Σάββατο {} 12:00 ΠΜ',\n        // Carbon::now()->subDays(2)->calendar()\n        'την προηγούμενη Κυριακή {} 8:49 ΜΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Χθες {} 10:00 ΜΜ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Σήμερα {} 10:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Σήμερα {} 2:00 ΠΜ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Αύριο {} 1:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Χθες {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Χθες {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Δευτέρα {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Κυριακή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'το προηγούμενο Σάββατο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'την προηγούμενη Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'την προηγούμενη Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'την προηγούμενη Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1η 1η 1η 1η 1η',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2η 1η',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3η 1η',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4η 1η',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5η 1η',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6η 1η',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7η 1η',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11η 2η',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40η',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41η',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100η',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 πμ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ΠΜ, 12:00 πμ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ΠΜ, 1:30 πμ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ΠΜ, 2:00 πμ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ΠΜ, 6:00 πμ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ΠΜ, 10:00 πμ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ΜΜ, 12:00 μμ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ΜΜ, 5:00 μμ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ΜΜ, 9:30 μμ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ΜΜ, 11:00 μμ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0η',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'πριν 1 δευτερόλεπτο',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'πριν 1 δευ.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'πριν 2 δευτερόλεπτα',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'πριν 2 δευ.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'πριν 1 λεπτό',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'πριν 1 λεπ.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'πριν 2 λεπτά',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'πριν 2 λεπ.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'πριν 1 ώρα',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'πριν 1 ώρα',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'πριν 2 ώρες',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'πριν 2 ώρες',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'πριν 1 μέρα',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'πριν 1 μέρ.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'πριν 2 μέρες',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'πριν 2 μέρ.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'πριν 1 εβδομάδα',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'πριν 1 εβδ.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'πριν 2 εβδομάδες',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'πριν 2 εβδ.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'πριν 1 μήνα',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'πριν 1 μήν.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'πριν 2 μήνες',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'πριν 2 μήν.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'πριν 1 χρόνο',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'πριν 1 χρ.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'πριν 2 χρόνια',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'πριν 2 χρ.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'σε 1 δευτερόλεπτο',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'σε 1 δευ.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 δευτερόλεπτο μετά',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 δευ. μετά',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 δευτερόλεπτο πριν',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 δευ. πριν',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 δευτερόλεπτο',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 δευ.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 δευτερόλεπτα',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 δευ.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'σε 1 δευ.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 λεπτό 1 δευτερόλεπτο',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 χρ. 3 μήν. 1 μέρ. 1 δευ.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'σε 3 χρόνια',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'πριν 5 μήν.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'πριν 2 χρ. 3 μήν. 1 μέρ. 1 δευ.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 10 ώρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 6 μέρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 6 μέρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'σε 1 εβδομάδα και 6 μέρες',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 εβδομάδες 1 ώρα',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'σε μία ώρα',\n        // CarbonInterval::days(2)->forHumans()\n        '2 μέρες',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 μέρ. 3 ώρες',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ElGrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ElGrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'el_GR'; // Greek (modern)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Αύριο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Σάββατο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Κυριακή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Δευτέρα {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Σάββατο {} 12:00 ΠΜ',\n        // Carbon::now()->subDays(2)->calendar()\n        'την προηγούμενη Κυριακή {} 8:49 ΜΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Χθες {} 10:00 ΜΜ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Σήμερα {} 10:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Σήμερα {} 2:00 ΠΜ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Αύριο {} 1:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Χθες {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Χθες {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Δευτέρα {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Κυριακή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'το προηγούμενο Σάββατο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'την προηγούμενη Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'την προηγούμενη Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'την προηγούμενη Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1η 1η 1η 1η 1η',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2η 1η',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3η 1η',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4η 1η',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5η 1η',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6η 1η',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7η 1η',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11η 2η',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40η',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41η',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100η',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 πμ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ΠΜ, 12:00 πμ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ΠΜ, 1:30 πμ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ΠΜ, 2:00 πμ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ΠΜ, 6:00 πμ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ΠΜ, 10:00 πμ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ΜΜ, 12:00 μμ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ΜΜ, 5:00 μμ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ΜΜ, 9:30 μμ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ΜΜ, 11:00 μμ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0η',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'πριν 1 δευτερόλεπτο',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'πριν 1 δευ.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'πριν 2 δευτερόλεπτα',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'πριν 2 δευ.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'πριν 1 λεπτό',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'πριν 1 λεπ.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'πριν 2 λεπτά',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'πριν 2 λεπ.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'πριν 1 ώρα',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'πριν 1 ώρα',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'πριν 2 ώρες',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'πριν 2 ώρες',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'πριν 1 μέρα',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'πριν 1 μέρ.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'πριν 2 μέρες',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'πριν 2 μέρ.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'πριν 1 εβδομάδα',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'πριν 1 εβδ.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'πριν 2 εβδομάδες',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'πριν 2 εβδ.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'πριν 1 μήνα',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'πριν 1 μήν.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'πριν 2 μήνες',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'πριν 2 μήν.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'πριν 1 χρόνο',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'πριν 1 χρ.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'πριν 2 χρόνια',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'πριν 2 χρ.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'σε 1 δευτερόλεπτο',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'σε 1 δευ.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 δευτερόλεπτο μετά',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 δευ. μετά',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 δευτερόλεπτο πριν',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 δευ. πριν',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 δευτερόλεπτο',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 δευ.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 δευτερόλεπτα',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 δευ.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'σε 1 δευ.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 λεπτό 1 δευτερόλεπτο',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 χρ. 3 μήν. 1 μέρ. 1 δευ.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'σε 3 χρόνια',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'πριν 5 μήν.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'πριν 2 χρ. 3 μήν. 1 μέρ. 1 δευ.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 10 ώρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 6 μέρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 6 μέρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'σε 1 εβδομάδα και 6 μέρες',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 εβδομάδες 1 ώρα',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'σε μία ώρα',\n        // CarbonInterval::days(2)->forHumans()\n        '2 μέρες',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 μέρ. 3 ώρες',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ElTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ElTest extends LocalizationTestCase\n{\n    public const LOCALE = 'el'; // Greek (modern)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Αύριο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Σάββατο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Κυριακή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Δευτέρα {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Σάββατο {} 12:00 ΠΜ',\n        // Carbon::now()->subDays(2)->calendar()\n        'την προηγούμενη Κυριακή {} 8:49 ΜΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Χθες {} 10:00 ΜΜ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Σήμερα {} 10:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Σήμερα {} 2:00 ΠΜ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Αύριο {} 1:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Χθες {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Χθες {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Τρίτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Δευτέρα {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Κυριακή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'το προηγούμενο Σάββατο {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'την προηγούμενη Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'την προηγούμενη Πέμπτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'την προηγούμενη Τετάρτη {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'την προηγούμενη Παρασκευή {} 12:00 ΠΜ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1η 1η 1η 1η 1η',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2η 1η',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3η 1η',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4η 1η',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5η 1η',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6η 1η',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7η 1η',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11η 2η',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40η',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41η',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100η',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 πμ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ΠΜ, 12:00 πμ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ΠΜ, 1:30 πμ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ΠΜ, 2:00 πμ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ΠΜ, 6:00 πμ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ΠΜ, 10:00 πμ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ΜΜ, 12:00 μμ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ΜΜ, 5:00 μμ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ΜΜ, 9:30 μμ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ΜΜ, 11:00 μμ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0η',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'πριν 1 δευτερόλεπτο',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'πριν 1 δευ.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'πριν 2 δευτερόλεπτα',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'πριν 2 δευ.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'πριν 1 λεπτό',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'πριν 1 λεπ.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'πριν 2 λεπτά',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'πριν 2 λεπ.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'πριν 1 ώρα',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'πριν 1 ώρα',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'πριν 2 ώρες',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'πριν 2 ώρες',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'πριν 1 μέρα',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'πριν 1 μέρ.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'πριν 2 μέρες',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'πριν 2 μέρ.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'πριν 1 εβδομάδα',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'πριν 1 εβδ.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'πριν 2 εβδομάδες',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'πριν 2 εβδ.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'πριν 1 μήνα',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'πριν 1 μήν.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'πριν 2 μήνες',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'πριν 2 μήν.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'πριν 1 χρόνο',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'πριν 1 χρ.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'πριν 2 χρόνια',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'πριν 2 χρ.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'σε 1 δευτερόλεπτο',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'σε 1 δευ.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 δευτερόλεπτο μετά',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 δευ. μετά',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 δευτερόλεπτο πριν',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 δευ. πριν',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 δευτερόλεπτο',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 δευ.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 δευτερόλεπτα',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 δευ.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'σε 1 δευ.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 λεπτό 1 δευτερόλεπτο',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 χρ. 3 μήν. 1 μέρ. 1 δευ.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'σε 3 χρόνια',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'πριν 5 μήν.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'πριν 2 χρ. 3 μήν. 1 μέρ. 1 δευ.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 10 ώρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 6 μέρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 εβδομάδα 6 μέρες',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'σε 1 εβδομάδα και 6 μέρες',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 εβδομάδες 1 ώρα',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'σε μία ώρα',\n        // CarbonInterval::days(2)->forHumans()\n        '2 μέρες',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 μέρ. 3 ώρες',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/En001Test.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass En001Test extends LocalizationTestCase\n{\n    public const LOCALE = 'en_001'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/En150Test.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass En150Test extends LocalizationTestCase\n{\n    public const LOCALE = 'en_150'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnAgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnAgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_AG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnAiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnAiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_AI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnAsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnAsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_AS'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnAtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnAtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_AT'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnAuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnAuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_AU'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BB'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BE'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BS'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BW'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnBzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnBzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_BZ'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnCaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnCaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CA'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnCcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnCcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CC'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CH'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnCkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnCkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CK'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnCmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnCmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnCxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnCxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CX'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnCyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnCyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_CY'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnDeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnDeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_DE'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnDgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnDgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_DG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnDkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnDkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_DK'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnDmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnDmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_DM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_ER'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnFiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnFiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_FI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnFjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnFjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_FJ'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnFkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnFkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_FK'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnFmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnFmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_FM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GB'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GD'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GH'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GU'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnGyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnGyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_GY'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnHkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnHkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_HK'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnIeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnIeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_IE'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnIlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnIlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_IL'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnImTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnImTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_IM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_IN'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnIoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnIoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_IO'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnIsoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnIsoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_ISO'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnJeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnJeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_JE'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnJmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnJmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_JM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnKeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnKeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_KE'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnKiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnKiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_KI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnKnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnKnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_KN'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnKyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnKyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_KY'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnLcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnLcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_LC'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnLrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnLrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_LR'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnLsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnLsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_LS'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MH'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MO'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MP'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MS'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MT'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MU'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MW'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnMyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnMyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_MY'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NA'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NF'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NL'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NR'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NU'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnNzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnNzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_NZ'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnPgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnPgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_PG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnPhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnPhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_PH'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnPkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnPkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_PK'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnPnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnPnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_PN'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnPrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnPrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_PR'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnPwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnPwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_PW'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnRwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnRwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_RW'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SB'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnScTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnScTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SC'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SD'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SE'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 years',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 week and 6 days',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in an hour',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnShTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnShTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SH'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SL'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SS'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SX'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnSzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnSzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_SZ'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnTcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnTcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_TC'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnTkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnTkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_TK'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnToTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnToTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_TO'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnTtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnTtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_TT'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnTvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnTvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_TV'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnTzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnTzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_TZ'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnUgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnUgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_UG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnUmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnUmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_UM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnUsPosixTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnUsPosixTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_US_Posix'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnUsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnUsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_US'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnVcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnVcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_VC'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnVgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnVgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_VG'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnViTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnViTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_VI'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnVuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnVuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_VU'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnWsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnWsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_WS'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_ZA'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnZmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnZmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_ZM'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EnZwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EnZwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'en_ZW'; // English\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'eo'; // Esperanto\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Morgaŭ je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabato je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanĉo je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundo je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardo je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'merkredo je 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ĵaŭdo je 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredo je 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardo je 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'merkredo je 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ĵaŭdo je 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredo je 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabato je 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'pasinta dimanĉo je 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hieraŭ je 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hodiaŭ je 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hodiaŭ je 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Morgaŭ je 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardo je 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hieraŭ je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hieraŭ je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pasinta mardo je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pasinta lundo je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pasinta dimanĉo je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pasinta sabato je 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pasinta vendredo je 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'pasinta ĵaŭdo je 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'pasinta merkredo je 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pasinta vendredo je 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3a 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4a 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5a 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6a 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7a 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11a 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40a',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100a',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.t.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.t.m., 12:00 a.t.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.t.m., 1:30 a.t.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.t.m., 2:00 a.t.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.t.m., 6:00 a.t.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.t.m., 10:00 a.t.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.t.m., 12:00 p.t.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.t.m., 5:00 p.t.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.t.m., 9:30 p.t.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.t.m., 11:00 p.t.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0a',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'antaŭ 1 sekundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'antaŭ 1 sek.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'antaŭ 2 sekundoj',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'antaŭ 2 sek.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'antaŭ 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'antaŭ 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'antaŭ 2 minutoj',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'antaŭ 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'antaŭ 1 horo',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'antaŭ 1 h.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'antaŭ 2 horoj',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'antaŭ 2 h.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'antaŭ 1 tago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'antaŭ 1 t.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'antaŭ 2 tagoj',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'antaŭ 2 t.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'antaŭ 1 semajno',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'antaŭ 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'antaŭ 2 semajnoj',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'antaŭ 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'antaŭ 1 monato',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'antaŭ 1 mo.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'antaŭ 2 monatoj',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'antaŭ 2 mo.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'antaŭ 1 jaro',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'antaŭ 1 j.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'antaŭ 2 jaroj',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'antaŭ 2 j.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'post 1 sekundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'post 1 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekundo poste',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sek. poste',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekundo antaŭe',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sek. antaŭe',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundoj',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'post 1 sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 sekundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 mo. 1 t. 1 sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'post 3 jaroj',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'antaŭ 5 mo.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'antaŭ 2 j. 3 mo. 1 t. 1 sek.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semajno 10 horoj',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semajno 6 tagoj',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semajno 6 tagoj',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'post 1 semajno kaj 6 tagoj',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semajnoj 1 horo',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'post horo',\n        // CarbonInterval::days(2)->forHumans()\n        '2 tagoj',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 t. 3 h.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/Es419Test.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass Es419Test extends LocalizationTestCase\n{\n    public const LOCALE = 'es_419'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsArTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsArTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_AR'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsBoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsBoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_BO'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsBrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsBrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_BR'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsBzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsBzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_BZ'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsClTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsClTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_CL'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsCoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsCoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_CO'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsCrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsCrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_CR'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsCuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsCuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_CU'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsDoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsDoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_DO'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 12:00 a. m.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 12:00 a. m.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 12:00 a. m.',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 8:49 p. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 10:00 p. m.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00 a. m.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsEaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsEaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_EA'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsEcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsEcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_EC'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsEsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsEsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_ES'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsGqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsGqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_GQ'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsGtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsGtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_GT'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsHnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsHnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_HN'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsIcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsIcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_IC'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsMxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsMxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_MX'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsNiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsNiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_NI'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsPaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsPaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_PA'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsPeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsPeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_PE'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsPhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsPhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_PH'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 12:00 a. m.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 12:00 a. m.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 12:00 a. m.',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 8:49 p. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 10:00 p. m.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00 a. m.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsPrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsPrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_PR'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsPyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsPyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_PY'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsSvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsSvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_SV'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsUsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsUsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_US'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 12:00 a. m.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 12:00 a. m.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 12:00 a. m.',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 8:49 p. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 10:00 p. m.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00 a. m.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 12:00 a. m.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 12:00 a. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsUyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsUyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_UY'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EsVeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EsVeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'es_VE'; // Spanish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 años',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 años',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 años 3 meses 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 años',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 años 3 meses 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EtEeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EtEeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'et_EE'; // Estonian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'homme 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'laupäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pühapäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'esmaspäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'teisipäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kolmapäev 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'neljapäev 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'reede 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'teisipäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kolmapäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'neljapäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'reede 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'laupäev 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'eelmine pühapäev 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eile 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'täna 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'täna 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'homme 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'teisipäev 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'eile 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eile 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine teisipäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine esmaspäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine pühapäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine laupäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine reede 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'eelmine neljapäev 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'eelmine kolmapäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'eelmine reede 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 enne lõunat CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 enne lõunat, 12:00 enne lõunat',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 enne lõunat, 1:30 enne lõunat',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 enne lõunat, 2:00 enne lõunat',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 enne lõunat, 6:00 enne lõunat',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 enne lõunat, 10:00 enne lõunat',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 pärast lõunat, 12:00 pärast lõunat',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 pärast lõunat, 5:00 pärast lõunat',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 pärast lõunat, 9:30 pärast lõunat',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 pärast lõunat, 11:00 pärast lõunat',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekund tagasi',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s tagasi',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekundit tagasi',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s tagasi',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut tagasi',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min tagasi',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutit tagasi',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min tagasi',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tund tagasi',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t tagasi',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tundi tagasi',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t tagasi',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 päev tagasi',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 p tagasi',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 päeva tagasi',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 p tagasi',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 nädal tagasi',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 näd tagasi',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 nädalat tagasi',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 näd tagasi',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kuu tagasi',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 k tagasi',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kuud tagasi',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 k tagasi',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 aasta tagasi',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 a tagasi',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 aastat tagasi',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 a tagasi',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekundi pärast',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s pärast',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund pärast',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s pärast',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund enne',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s enne',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundit',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s pärast',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a 3 k 1 p 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 aasta pärast',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 k tagasi',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 a 3 k 1 p 1 s tagasi',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 nädal 10 tundi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nädal 6 päeva',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nädal 6 päeva',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 nädala ja 6 päeva pärast',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 nädalat 1 tund',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 tunni pärast',\n        // CarbonInterval::days(2)->forHumans()\n        '2 päeva',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 p 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'et'; // Estonian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'homme 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'laupäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pühapäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'esmaspäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'teisipäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kolmapäev 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'neljapäev 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'reede 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'teisipäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kolmapäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'neljapäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'reede 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'laupäev 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'eelmine pühapäev 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eile 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'täna 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'täna 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'homme 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'teisipäev 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'eile 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eile 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine teisipäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine esmaspäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine pühapäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine laupäev 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eelmine reede 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'eelmine neljapäev 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'eelmine kolmapäev 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'eelmine reede 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 enne lõunat CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 enne lõunat, 12:00 enne lõunat',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 enne lõunat, 1:30 enne lõunat',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 enne lõunat, 2:00 enne lõunat',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 enne lõunat, 6:00 enne lõunat',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 enne lõunat, 10:00 enne lõunat',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 pärast lõunat, 12:00 pärast lõunat',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 pärast lõunat, 5:00 pärast lõunat',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 pärast lõunat, 9:30 pärast lõunat',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 pärast lõunat, 11:00 pärast lõunat',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekund tagasi',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s tagasi',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekundit tagasi',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s tagasi',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut tagasi',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min tagasi',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutit tagasi',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min tagasi',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tund tagasi',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t tagasi',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tundi tagasi',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t tagasi',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 päev tagasi',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 p tagasi',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 päeva tagasi',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 p tagasi',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 nädal tagasi',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 näd tagasi',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 nädalat tagasi',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 näd tagasi',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kuu tagasi',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 k tagasi',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kuud tagasi',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 k tagasi',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 aasta tagasi',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 a tagasi',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 aastat tagasi',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 a tagasi',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekundi pärast',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s pärast',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund pärast',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s pärast',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund enne',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s enne',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundit',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s pärast',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a 3 k 1 p 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 aasta pärast',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 k tagasi',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 a 3 k 1 p 1 s tagasi',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 nädal 10 tundi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nädal 6 päeva',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nädal 6 päeva',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 nädala ja 6 päeva pärast',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 nädalat 1 tund',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 tunni pärast',\n        // CarbonInterval::days(2)->forHumans()\n        '2 päeva',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 p 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EuEsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EuEsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'eu_ES'; // Basque\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'bihar 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'larunbata 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'igandea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'astelehena 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asteartea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asteazkena 00:00etan',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'osteguna 00:00etan',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ostirala 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asteartea 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asteazkena 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'osteguna 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ostirala 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'larunbata 00:00etan',\n        // Carbon::now()->subDays(2)->calendar()\n        'aurreko igandea 20:49etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'atzo 22:00etan',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'gaur 10:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaur 02:00etan',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'bihar 01:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asteartea 00:00etan',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'atzo 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'atzo 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko asteartea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko astelehena 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko igandea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko larunbata 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko ostirala 00:00etan',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'aurreko osteguna 00:00etan',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'aurreko asteazkena 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'aurreko ostirala 00:00etan',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 g CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 g, 12:00 g',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 g, 1:30 g',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 g, 2:00 g',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 g, 6:00 g',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 g, 10:00 g',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a, 12:00 a',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 a, 5:00 a',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 a, 9:30 a',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 a, 11:00 a',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'duela segundo batzuk',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'duela Segundu 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'duela 2 segundo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'duela 2 segundu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'duela minutu bat',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'duela Minutu 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'duela 2 minutu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'duela 2 minutu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'duela ordu bat',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'duela Ordu 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'duela 2 ordu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'duela 2 ordu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'duela egun bat',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'duela Egun 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'duela 2 egun',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'duela 2 egun',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'duela Aste 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'duela Aste 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'duela 2 aste',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'duela 2 aste',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'duela hilabete bat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'duela Hile 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'duela 2 hilabete',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'duela 2 hile',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'duela urte bat',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'duela Urte 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'duela 2 urte',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'duela 2 urte',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segundo batzuk barru',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'Segundu 1 barru',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segundo batzuk geroago',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'Segundu 1 geroago',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segundo batzuk lehenago',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'Segundu 1 lehenago',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segundo batzuk',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'Segundu 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'Segundu 1 barru',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minutu bat segundo batzuk',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 urte 3 hile Egun 1 Segundu 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 urte barru',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'duela 5 hile',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'duela 2 urte 3 hile Egun 1 Segundu 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'Aste 1 10 ordu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'Aste 1 6 egun',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'Aste 1 6 egun',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'Aste 1 eta 6 egun barru',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 aste ordu bat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ordu bat barru',\n        // CarbonInterval::days(2)->forHumans()\n        '2 egun',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'Egun 1 3 ordu',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'eu'; // Basque\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'bihar 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'larunbata 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'igandea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'astelehena 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asteartea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asteazkena 00:00etan',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'osteguna 00:00etan',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ostirala 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asteartea 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asteazkena 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'osteguna 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ostirala 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'larunbata 00:00etan',\n        // Carbon::now()->subDays(2)->calendar()\n        'aurreko igandea 20:49etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'atzo 22:00etan',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'gaur 10:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaur 02:00etan',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'bihar 01:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asteartea 00:00etan',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'atzo 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'atzo 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko asteartea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko astelehena 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko igandea 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko larunbata 00:00etan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aurreko ostirala 00:00etan',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'aurreko osteguna 00:00etan',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'aurreko asteazkena 00:00etan',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'aurreko ostirala 00:00etan',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 g CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 g, 12:00 g',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 g, 1:30 g',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 g, 2:00 g',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 g, 6:00 g',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 g, 10:00 g',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a, 12:00 a',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 a, 5:00 a',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 a, 9:30 a',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 a, 11:00 a',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'duela segundo batzuk',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'duela Segundu 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'duela 2 segundo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'duela 2 segundu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'duela minutu bat',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'duela Minutu 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'duela 2 minutu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'duela 2 minutu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'duela ordu bat',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'duela Ordu 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'duela 2 ordu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'duela 2 ordu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'duela egun bat',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'duela Egun 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'duela 2 egun',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'duela 2 egun',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'duela Aste 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'duela Aste 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'duela 2 aste',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'duela 2 aste',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'duela hilabete bat',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'duela Hile 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'duela 2 hilabete',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'duela 2 hile',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'duela urte bat',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'duela Urte 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'duela 2 urte',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'duela 2 urte',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segundo batzuk barru',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'Segundu 1 barru',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segundo batzuk geroago',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'Segundu 1 geroago',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segundo batzuk lehenago',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'Segundu 1 lehenago',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segundo batzuk',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'Segundu 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'Segundu 1 barru',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minutu bat segundo batzuk',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 urte 3 hile Egun 1 Segundu 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 urte barru',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'duela 5 hile',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'duela 2 urte 3 hile Egun 1 Segundu 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'Aste 1 10 ordu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'Aste 1 6 egun',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'Aste 1 6 egun',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'Aste 1 eta 6 egun barru',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 aste ordu bat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ordu bat barru',\n        // CarbonInterval::days(2)->forHumans()\n        '2 egun',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'Egun 1 3 ordu',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/EwoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass EwoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ewo'; // Ewondo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'séradé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mɔ́ndi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndɔ məlú mə́bɛ̌ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndɔ məlú mə́lɛ́ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sɔ́ndɔ məlú mə́nyi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fúladé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ məlú mə́bɛ̌ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ məlú mə́lɛ́ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ məlú mə́nyi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fúladé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'séradé at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sɔ́ndɔ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ məlú mə́bɛ̌ at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sɔ́ndɔ məlú mə́bɛ̌ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mɔ́ndi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sɔ́ndɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last séradé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last fúladé at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sɔ́ndɔ məlú mə́nyi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last sɔ́ndɔ məlú mə́lɛ́ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last fúladé at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 kíkíríg CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kíkíríg, 12:00 kíkíríg',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 kíkíríg, 1:30 kíkíríg',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 kíkíríg, 2:00 kíkíríg',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 kíkíríg, 6:00 kíkíríg',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 kíkíríg, 10:00 kíkíríg',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ngəgógəle, 12:00 ngəgógəle',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ngəgógəle, 5:00 ngəgógəle',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ngəgógəle, 9:30 ngəgógəle',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ngəgógəle, 11:00 ngəgógəle',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FaAfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FaAfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fa_AF'; // Persian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'فردا ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'یکشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'دوشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'یکشنبه پیش ساعت ۲۰:۴۹',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'دیروز ساعت ۲۲:۰۰',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'امروز ساعت ۱۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'امروز ساعت ۰۲:۰۰',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'فردا ساعت ۰۱:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'سه‌شنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'دوشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'یکشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'شنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'پنجشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'چهارشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        ':timeم :timeم :timeم :timeم :timeم',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        ':timeم',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 ق CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ق, 12:00 ق',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ق, 1:30 ق',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ق, 2:00 ق',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 ق, 6:00 ق',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 ق, 10:00 ق',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 ب, 12:00 ب',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 ب, 5:00 ب',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 ب, 9:30 ب',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ب, 11:00 ب',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        ':timeم',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 سال پیش',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 دقیقه 1 ثانیه',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 سال 3 ماه 1 روز 1 ثانیه',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 سال دیگر',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 ماه پیش',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 سال 3 ماه 1 روز 1 ثانیه پیش',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 هفته 10 ساعت',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 هفته و 6 روز دیگر',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 هفته 1 ساعت',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'یک ساعت دیگر',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 روز',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 روز 3 ساعت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FaIrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FaIrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fa_IR'; // Persian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'فردا ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'یکشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'دوشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'یکشنبه پیش ساعت ۲۰:۴۹',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'دیروز ساعت ۲۲:۰۰',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'امروز ساعت ۱۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'امروز ساعت ۰۲:۰۰',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'فردا ساعت ۰۱:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'سه‌شنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'دوشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'یکشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'شنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'پنجشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'چهارشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        ':timeم :timeم :timeم :timeم :timeم',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        ':timeم',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 قبل از ظهر CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 قبل از ظهر, 12:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 قبل از ظهر, 1:30 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 قبل از ظهر, 2:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 قبل از ظهر, 6:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 قبل از ظهر, 10:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 بعد از ظهر, 12:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 بعد از ظهر, 5:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 بعد از ظهر, 9:30 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 بعد از ظهر, 11:00 بعد از ظهر',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        ':timeم',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 سال پیش',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 دقیقه 1 ثانیه',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 سال 3 ماه 1 روز 1 ثانیه',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 سال دیگر',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 ماه پیش',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 سال 3 ماه 1 روز 1 ثانیه پیش',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 هفته 10 ساعت',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 هفته و 6 روز دیگر',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 هفته 1 ساعت',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'یک ساعت دیگر',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 روز',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 روز 3 ساعت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fa'; // Persian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'فردا ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'یکشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'دوشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'یکشنبه پیش ساعت ۲۰:۴۹',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'دیروز ساعت ۲۲:۰۰',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'امروز ساعت ۱۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'امروز ساعت ۰۲:۰۰',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'فردا ساعت ۰۱:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'سه‌شنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'دوشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'یکشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'شنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'پنجشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'چهارشنبه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت ۰۰:۰۰',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        ':timeم :timeم :timeم :timeم :timeم',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        ':timeم',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 قبل از ظهر CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 قبل از ظهر, 12:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 قبل از ظهر, 1:30 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 قبل از ظهر, 2:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 قبل از ظهر, 6:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 قبل از ظهر, 10:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 بعد از ظهر, 12:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 بعد از ظهر, 5:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 بعد از ظهر, 9:30 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 بعد از ظهر, 11:00 بعد از ظهر',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        ':timeم',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 سال پیش',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 دقیقه 1 ثانیه',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 سال 3 ماه 1 روز 1 ثانیه',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 سال دیگر',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 ماه پیش',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 سال 3 ماه 1 روز 1 ثانیه پیش',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 هفته 10 ساعت',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 هفته و 6 روز دیگر',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 هفته 1 ساعت',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'یک ساعت دیگر',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 روز',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 روز 3 ساعت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FfCmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FfCmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ff_CM'; // Fulah\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dewo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last naasaande at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subaka CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 subaka, 12:00 subaka',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 subaka, 1:30 subaka',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 subaka, 2:00 subaka',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 subaka, 6:00 subaka',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 subaka, 10:00 subaka',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kikiiɗe, 12:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kikiiɗe, 5:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kikiiɗe, 9:30 kikiiɗe',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kikiiɗe, 11:00 kikiiɗe',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tenen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 tokossuoum ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 montor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 montor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dian ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dian ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 naange ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 naange ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lewru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 lewru ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 baret ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 baret ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tenen after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tenen after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tenen before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tenen before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tenen from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 tokossuoum 1 tenen',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 baret from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 lewru ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 naange 10 montor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 naange and 6 dian from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 naange 1 montor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 montor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dian',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dian 3 montor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FfGnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FfGnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ff_GN'; // Fulah\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dewo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last naasaande at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subaka CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 subaka, 12:00 subaka',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 subaka, 1:30 subaka',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 subaka, 2:00 subaka',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 subaka, 6:00 subaka',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 subaka, 10:00 subaka',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kikiiɗe, 12:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kikiiɗe, 5:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kikiiɗe, 9:30 kikiiɗe',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kikiiɗe, 11:00 kikiiɗe',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tenen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 tokossuoum ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 montor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 montor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dian ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dian ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 naange ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 naange ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lewru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 lewru ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 baret ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 baret ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tenen after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tenen after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tenen before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tenen before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tenen from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 tokossuoum 1 tenen',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 baret from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 lewru ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 naange 10 montor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 naange and 6 dian from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 naange 1 montor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 montor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dian',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dian 3 montor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FfMrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FfMrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ff_MR'; // Fulah\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoore-biir at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dewo at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aaɓnde at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mawbaare at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'njeslaare at 12:00 subaka',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'naasaande at 12:00 subaka',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mawnde at 12:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 12:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'njeslaare at 12:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'naasaande at 12:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawnde at 12:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hoore-biir at 12:00 subaka',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dewo at 8:49 kikiiɗe',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 kikiiɗe',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 subaka',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 12:00 subaka',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawbaare at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aaɓnde at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dewo at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last hoore-biir at 12:00 subaka',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawnde at 12:00 subaka',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last naasaande at 12:00 subaka',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last njeslaare at 12:00 subaka',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mawnde at 12:00 subaka',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subaka CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 subaka, 12:00 subaka',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 subaka, 1:30 subaka',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 subaka, 2:00 subaka',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 subaka, 6:00 subaka',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 subaka, 10:00 subaka',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kikiiɗe, 12:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kikiiɗe, 5:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kikiiɗe, 9:30 kikiiɗe',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kikiiɗe, 11:00 kikiiɗe',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tenen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 tokossuoum ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 montor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 montor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dian ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dian ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 naange ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 naange ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lewru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 lewru ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 baret ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 baret ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tenen after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tenen after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tenen before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tenen before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tenen from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 tokossuoum 1 tenen',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 baret from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 lewru ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 naange 10 montor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 naange and 6 dian from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 naange 1 montor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 montor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dian',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dian 3 montor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FfSnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FfSnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ff_SN'; // Fulah\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dewo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last naasaande at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subaka CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 subaka, 12:00 subaka',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 subaka, 1:30 subaka',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 subaka, 2:00 subaka',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 subaka, 6:00 subaka',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 subaka, 10:00 subaka',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kikiiɗe, 12:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kikiiɗe, 5:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kikiiɗe, 9:30 kikiiɗe',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kikiiɗe, 11:00 kikiiɗe',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tenen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 tokossuoum ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 montor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 montor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dian ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dian ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 naange ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 naange ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lewru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 lewru ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 baret ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 baret ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tenen after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tenen after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tenen before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tenen before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tenen from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 tokossuoum 1 tenen',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 baret from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 lewru ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 naange 10 montor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 naange and 6 dian from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 naange 1 montor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 montor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dian',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dian 3 montor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ff'; // Fulah\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'naasaande at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawnde at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hoore-biir at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dewo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mawbaare at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawbaare at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aaɓnde at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dewo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last hoore-biir at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last naasaande at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last njeslaare at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mawnde at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subaka CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 subaka, 12:00 subaka',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 subaka, 1:30 subaka',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 subaka, 2:00 subaka',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 subaka, 6:00 subaka',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 subaka, 10:00 subaka',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kikiiɗe, 12:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kikiiɗe, 5:00 kikiiɗe',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kikiiɗe, 9:30 kikiiɗe',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kikiiɗe, 11:00 kikiiɗe',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tenen ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tenen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 tokossuoum ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 tokossuoum ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 montor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 montor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 montor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dian ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dian ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dian ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 naange ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 naange ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 naange ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lewru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 lewru ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 lewru ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 baret ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 baret ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 baret ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tenen from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tenen after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tenen after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tenen before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tenen before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tenen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tenen',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tenen from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 tokossuoum 1 tenen',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 baret from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 lewru ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 baret 3 lewru 1 dian 1 tenen ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 naange 10 montor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 naange 6 dian',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 naange and 6 dian from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 naange 1 montor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 montor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dian',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dian 3 montor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FiFiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FiFiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fi_FI'; // Finnish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lauantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnuntai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maanantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tiistai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keskiviikko at 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'torstai at 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'perjantai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiistai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'keskiviikko at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'torstai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'perjantai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lauantai at 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sunnuntai at 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiistai at 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tiistai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maanantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sunnuntai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lauantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last perjantai at 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last torstai at 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last keskiviikko at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last perjantai at 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 aamupäivä CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 aamupäivä, 12:00 aamupäivä',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 aamupäivä, 1:30 aamupäivä',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 aamupäivä, 2:00 aamupäivä',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 aamupäivä, 6:00 aamupäivä',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 aamupäivä, 10:00 aamupäivä',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 iltapäivä, 12:00 iltapäivä',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 iltapäivä, 5:00 iltapäivä',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 iltapäivä, 9:30 iltapäivä',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 iltapäivä, 11:00 iltapäivä',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekunti sitten',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s sitten',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekuntia sitten',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s sitten',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuutti sitten',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min sitten',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuuttia sitten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min sitten',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tunti sitten',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t sitten',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tuntia sitten',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t sitten',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 päivä sitten',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 pv sitten',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 päivää sitten',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 pv sitten',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 viikko sitten',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vk sitten',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 viikkoa sitten',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vk sitten',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kuukausi sitten',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 kk sitten',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kuukautta sitten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 kk sitten',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 vuosi sitten',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 v sitten',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vuotta sitten',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 v sitten',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunnin päästä',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s päästä',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekunti sen jälkeen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s sen jälkeen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekunti ennen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s ennen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunti',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekuntia',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s päästä',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuutti 1 sekunti',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 v 3 kk 1 pv 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 vuoden päästä',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 kk sitten',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 v 3 kk 1 pv 1 s sitten',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 viikko 10 tuntia',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 viikko 6 päivää',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 viikko 6 päivää',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 viikon ja 6 päivän päästä',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 viikkoa 1 tunti',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 tunnin päästä',\n        // CarbonInterval::days(2)->forHumans()\n        '2 päivää',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 pv 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fi'; // Finnish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lauantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnuntai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maanantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tiistai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'keskiviikko at 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'torstai at 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'perjantai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiistai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'keskiviikko at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'torstai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'perjantai at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lauantai at 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sunnuntai at 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiistai at 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tiistai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maanantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sunnuntai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lauantai at 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last perjantai at 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last torstai at 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last keskiviikko at 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last perjantai at 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 aamupäivä CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 aamupäivä, 12:00 aamupäivä',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 aamupäivä, 1:30 aamupäivä',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 aamupäivä, 2:00 aamupäivä',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 aamupäivä, 6:00 aamupäivä',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 aamupäivä, 10:00 aamupäivä',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 iltapäivä, 12:00 iltapäivä',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 iltapäivä, 5:00 iltapäivä',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 iltapäivä, 9:30 iltapäivä',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 iltapäivä, 11:00 iltapäivä',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekunti sitten',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s sitten',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekuntia sitten',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s sitten',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuutti sitten',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min sitten',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuuttia sitten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min sitten',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tunti sitten',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t sitten',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tuntia sitten',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t sitten',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 päivä sitten',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 pv sitten',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 päivää sitten',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 pv sitten',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 viikko sitten',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vk sitten',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 viikkoa sitten',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vk sitten',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kuukausi sitten',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 kk sitten',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kuukautta sitten',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 kk sitten',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 vuosi sitten',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 v sitten',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vuotta sitten',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 v sitten',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunnin päästä',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s päästä',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekunti sen jälkeen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s sen jälkeen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekunti ennen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s ennen',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunti',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekuntia',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s päästä',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuutti 1 sekunti',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 v 3 kk 1 pv 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 vuoden päästä',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 kk sitten',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 v 3 kk 1 pv 1 s sitten',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 viikko 10 tuntia',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 viikko 6 päivää',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 viikko 6 päivää',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 viikon ja 6 päivän päästä',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 viikkoa 1 tunti',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 tunnin päästä',\n        // CarbonInterval::days(2)->forHumans()\n        '2 päivää',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 pv 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FilPhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FilPhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fil_PH'; // Filipino\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabado at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Linggo at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lunes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Miyerkoles at 12:00 N.U.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Huwebes at 12:00 N.U.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Miyerkoles at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Huwebes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabado at 12:00 N.U.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Linggo at 8:49 N.H.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 N.H.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 N.U.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lunes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Linggo at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabado at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Huwebes at 12:00 N.U.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Miyerkoles at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 n.u. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 N.U., 12:00 n.u.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 N.U., 1:30 n.u.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 N.U., 2:00 n.u.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 N.U., 6:00 n.u.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 N.U., 10:00 n.u.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 N.H., 12:00 n.h.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 N.H., 5:00 n.h.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 N.H., 9:30 n.h.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 N.H., 11:00 n.h.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segundo ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuto ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oras ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 araw ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taon ang nakalipas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sa 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sa 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo pagkatapos',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segundo pagkatapos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo bago',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segundo bago',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sa 1 segundo',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taon 3 buwan 1 araw 1 segundo',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'sa 3 taon',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 buwan ang nakalipas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taon 3 buwan 1 araw 1 segundo ang nakalipas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 linggo 10 oras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'sa 1 linggo and 6 araw',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 linggo 1 oras',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sa 1 oras',\n        // CarbonInterval::days(2)->forHumans()\n        '2 araw',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 araw 3 oras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FilTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FilTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fil'; // Filipino\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabado at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Linggo at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lunes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Miyerkoles at 12:00 N.U.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Huwebes at 12:00 N.U.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Miyerkoles at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Huwebes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabado at 12:00 N.U.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Linggo at 8:49 N.H.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 N.H.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 N.U.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Martes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lunes at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Linggo at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabado at 12:00 N.U.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Huwebes at 12:00 N.U.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Miyerkoles at 12:00 N.U.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Biyernes at 12:00 N.U.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 n.u. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 N.U., 12:00 n.u.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 N.U., 1:30 n.u.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 N.U., 2:00 n.u.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 N.U., 6:00 n.u.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 N.U., 10:00 n.u.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 N.H., 12:00 n.h.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 N.H., 5:00 n.h.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 N.H., 9:30 n.h.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 N.H., 11:00 n.h.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segundo ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuto ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oras ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 araw ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taon ang nakalipas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sa 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sa 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo pagkatapos',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segundo pagkatapos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo bago',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segundo bago',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sa 1 segundo',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taon 3 buwan 1 araw 1 segundo',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'sa 3 taon',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 buwan ang nakalipas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taon 3 buwan 1 araw 1 segundo ang nakalipas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 linggo 10 oras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'sa 1 linggo and 6 araw',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 linggo 1 oras',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sa 1 oras',\n        // CarbonInterval::days(2)->forHumans()\n        '2 araw',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 araw 3 oras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FoDkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FoDkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fo_DK'; // Faroese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í morgin kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leygardagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnudagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mánadagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mikudagur kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'hósdagur kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fríggjadagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mikudagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hósdagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fríggjadagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'leygardagur kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'síðstu sunnudagur kl 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í gjár kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Í dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Í morgin kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Í gjár kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í gjár kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu týsdagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu mánadagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu sunnudagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu leygardagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu fríggjadagur kl 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'síðstu hósdagur kl 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'síðstu mikudagur kl 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'síðstu fríggjadagur kl 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'fá sekund síðani',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekund síðani',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekundir síðani',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekundir síðani',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ein minutt síðani',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minutt síðani',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuttir síðani',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuttir síðani',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ein tími síðani',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 tími síðani',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tímar síðani',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 tímar síðani',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ein dagur síðani',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dag síðani',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagar síðani',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dagar síðani',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vika síðani',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vika síðani',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vikur síðani',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vikur síðani',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ein mánaði síðani',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mánaður síðani',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mánaðir síðani',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mánaðir síðani',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'eitt ár síðani',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ár síðani',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ár síðani',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ár síðani',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'um fá sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'um 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'fá sekund aftaná',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekund aftaná',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'fá sekund áðrenn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund áðrenn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'fá sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekundir',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'um 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ein minutt fá sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ár 3 mánaðir 1 dag 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'um 3 ár',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mánaðir síðani',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ár 3 mánaðir 1 dag 1 sekund síðani',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vika 10 tímar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'um 1 vika og 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vikur ein tími',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'um ein tími',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dag 3 tímar',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FoFoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FoFoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fo_FO'; // Faroese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í morgin kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leygardagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnudagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mánadagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mikudagur kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'hósdagur kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fríggjadagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mikudagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hósdagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fríggjadagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'leygardagur kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'síðstu sunnudagur kl 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í gjár kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Í dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Í morgin kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Í gjár kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í gjár kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu týsdagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu mánadagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu sunnudagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu leygardagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu fríggjadagur kl 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'síðstu hósdagur kl 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'síðstu mikudagur kl 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'síðstu fríggjadagur kl 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'fá sekund síðani',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekund síðani',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekundir síðani',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekundir síðani',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ein minutt síðani',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minutt síðani',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuttir síðani',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuttir síðani',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ein tími síðani',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 tími síðani',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tímar síðani',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 tímar síðani',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ein dagur síðani',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dag síðani',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagar síðani',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dagar síðani',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vika síðani',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vika síðani',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vikur síðani',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vikur síðani',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ein mánaði síðani',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mánaður síðani',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mánaðir síðani',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mánaðir síðani',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'eitt ár síðani',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ár síðani',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ár síðani',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ár síðani',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'um fá sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'um 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'fá sekund aftaná',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekund aftaná',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'fá sekund áðrenn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund áðrenn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'fá sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekundir',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'um 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ein minutt fá sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ár 3 mánaðir 1 dag 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'um 3 ár',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mánaðir síðani',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ár 3 mánaðir 1 dag 1 sekund síðani',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vika 10 tímar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'um 1 vika og 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vikur ein tími',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'um ein tími',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dag 3 tímar',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fo'; // Faroese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í morgin kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leygardagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnudagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mánadagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mikudagur kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'hósdagur kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fríggjadagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mikudagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'hósdagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fríggjadagur kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'leygardagur kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'síðstu sunnudagur kl 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í gjár kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Í dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Í morgin kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'týsdagur kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Í gjár kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Í gjár kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu týsdagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu mánadagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu sunnudagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu leygardagur kl 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'síðstu fríggjadagur kl 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'síðstu hósdagur kl 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'síðstu mikudagur kl 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'síðstu fríggjadagur kl 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'fá sekund síðani',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekund síðani',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekundir síðani',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekundir síðani',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ein minutt síðani',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minutt síðani',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuttir síðani',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuttir síðani',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ein tími síðani',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 tími síðani',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tímar síðani',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 tímar síðani',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ein dagur síðani',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dag síðani',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagar síðani',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dagar síðani',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vika síðani',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vika síðani',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vikur síðani',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vikur síðani',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ein mánaði síðani',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mánaður síðani',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mánaðir síðani',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mánaðir síðani',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'eitt ár síðani',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ár síðani',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ár síðani',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ár síðani',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'um fá sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'um 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'fá sekund aftaná',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekund aftaná',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'fá sekund áðrenn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekund áðrenn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'fá sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekund',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekundir',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'um 1 sekund',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ein minutt fá sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ár 3 mánaðir 1 dag 1 sekund',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'um 3 ár',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mánaðir síðani',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ár 3 mánaðir 1 dag 1 sekund síðani',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vika 10 tímar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'um 1 vika og 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vikur ein tími',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'um ein tími',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dag 3 tímar',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrBeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrBeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_BE'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrBfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrBfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_BF'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrBiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrBiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_BI'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrBjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrBjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_BJ'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrBlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrBlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_BL'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrCaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrCaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CA'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2e',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrCdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrCdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CD'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrCfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrCfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CF'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrCgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrCgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CG'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CH'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrCiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrCiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CI'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrCmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrCmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_CM'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 mat. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mat., 12:00 mat.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 mat., 1:30 mat.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 mat., 2:00 mat.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 mat., 6:00 mat.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 mat., 10:00 mat.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 soir, 12:00 soir',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 soir, 5:00 soir',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 soir, 9:30 soir',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 soir, 11:00 soir',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrDjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrDjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_DJ'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2e',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2e',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrDzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrDzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_DZ'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2e',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2e',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrFrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrFrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_FR'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrGaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrGaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_GA'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrGfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrGfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_GF'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrGnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrGnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_GN'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrGpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrGpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_GP'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrGqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrGqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_GQ'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrHtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrHtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_HT'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrKmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrKmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_KM'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrLuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrLuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_LU'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MA'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2e',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2e',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MC'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MF'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MG'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_ML'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MQ'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MR'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrMuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrMuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_MU'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrNcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrNcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_NC'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrNeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrNeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_NE'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrPfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrPfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_PF'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrPmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrPmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_PM'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrReTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrReTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_RE'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrRwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrRwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_RW'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrScTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrScTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_SC'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrSnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrSnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_SN'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrSyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrSyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_SY'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2e',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2e',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrTdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrTdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_TD'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrTgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrTgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_TG'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrTnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrTnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_TN'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrVuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrVuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_VU'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrWfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrWfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_WF'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FrYtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FrYtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fr_YT'; // French\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Demain à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jeudi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samedi à 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimanche dernier à 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aujourd’hui à 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aujourd’hui à 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Demain à 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi à 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lundi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanche dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samedi dernier à 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'jeudi dernier à 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'mercredi dernier à 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vendredi dernier à 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1er 1er 1er 1re 1re',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1re',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1re',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1re',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1re',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1re',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1re',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2e',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41e',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'il y a 1 seconde',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'il y a 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'il y a 2 secondes',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'il y a 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'il y a 1 minute',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'il y a 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'il y a 2 minutes',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'il y a 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'il y a 1 heure',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'il y a 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'il y a 2 heures',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'il y a 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'il y a 1 jour',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'il y a 1 j',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'il y a 2 jours',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'il y a 2 j',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'il y a 1 semaine',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'il y a 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'il y a 2 semaines',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'il y a 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'il y a 1 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'il y a 2 mois',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'il y a 2 mois',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'il y a 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'il y a 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'il y a 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'il y a 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dans 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dans 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde après',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s après',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde avant',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s avant',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dans 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dans 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'il y a 5 mois',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'il y a 2 ans 3 mois 1 j 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semaine 10 heures',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semaine 6 jours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dans 1 semaine et 6 jours',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semaines 1 heure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dans une heure',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jours',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 j 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FurItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FurItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fur_IT'; // Friulian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabide at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunis at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martars at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miercus at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'joibe at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vinars at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martars at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miercus at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'joibe at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vinars at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabide at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last domenie at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martars at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martars at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunis at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last domenie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabide at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vinars at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last joibe at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last miercus at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vinars at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secont',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secont',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secont',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secont',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minût 1 secont',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 an 3 mês 1 zornade 1 secont',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 setemane 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setemane 6 zornade',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setemane 6 zornade',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 setemane 1 ore',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zornade',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 zornade 3 ore',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FurTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FurTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fur'; // Friulian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabide at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunis at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martars at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miercus at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'joibe at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vinars at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martars at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miercus at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'joibe at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vinars at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabide at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last domenie at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martars at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martars at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunis at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last domenie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabide at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vinars at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last joibe at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last miercus at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vinars at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secont',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secont',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secont',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secont',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minût 1 secont',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 an 3 mês 1 zornade 1 secont',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 setemane 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setemane 6 zornade',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setemane 6 zornade',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 setemane 1 ore',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zornade',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 zornade 3 ore',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FyDeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FyDeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fy_DE'; // Western Frisian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'moarn om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sinnowend om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Sinndag om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Mondag om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Dingsdag om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Meddwäakj om 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Donnadag om 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Friedag om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Dingsdag om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Meddwäakj om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Donnadag om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Friedag om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sinnowend om 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'ôfrûne Sinndag om 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juster om 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'hjoed om 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'hjoed om 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'moarn om 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Dingsdag om 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juster om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juster om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'ôfrûne Dingsdag om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'ôfrûne Mondag om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'ôfrûne Sinndag om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'ôfrûne Sinnowend om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ôfrûne Friedag om 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'ôfrûne Donnadag om 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'ôfrûne Meddwäakj om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ôfrûne Friedag om 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1ste 1ste 1ste 1ste 1ste',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2de 1ste',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3de 1ste',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4de 1ste',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5de 1ste',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6de 1ste',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7de 1ste',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11de 2de',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40ste',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41ste',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100ste',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0de',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 sekonde lyn',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 s. lyn',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 sekonden lyn',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 s. lyn',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minút lyn',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 min. lyn',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minuten lyn',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 min. lyn',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 oere lyn',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 o. lyn',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 oeren lyn',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 o. lyn',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 dei lyn',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 d. lyn',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 dagen lyn',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 d. lyn',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 wike lyn',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 wike lyn',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 wiken lyn',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 wiken lyn',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 moanne lyn',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 moa. lyn',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 moannen lyn',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 moa. lyn',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 jier lyn',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 j lyn',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 jierren lyn',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 j lyn',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'oer 1 sekonde',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'oer 1 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekonde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 s.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekonden',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'oer 1 s.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minút 1 sekonde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 j 3 moa. 1 d. 1 s.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'oer 3 jierren',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 moa. lyn',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 j 3 moa. 1 d. 1 s. lyn',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 wike 10 oeren',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 wike 6 dagen',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 wike 6 dagen',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'oer 1 wike en 6 dagen',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 wiken 1 oere',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'oer ien oere',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dagen',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FyNlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FyNlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fy_NL'; // Western Frisian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'moarn om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sneon om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Snein om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Moandei om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Tiisdei om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Woansdei om 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Tongersdei om 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Freed om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Tiisdei om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Woansdei om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Tongersdei om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Freed om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sneon om 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'ôfrûne Snein om 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juster om 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'hjoed om 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'hjoed om 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'moarn om 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Tiisdei om 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juster om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juster om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'ôfrûne Tiisdei om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'ôfrûne Moandei om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'ôfrûne Snein om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'ôfrûne Sneon om 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ôfrûne Freed om 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'ôfrûne Tongersdei om 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'ôfrûne Woansdei om 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ôfrûne Freed om 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1ste 1ste 1ste 1ste 1ste',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2de 1ste',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3de 1ste',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4de 1ste',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5de 1ste',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6de 1ste',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7de 1ste',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11de 2de',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40ste',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41ste',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100ste',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0de',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 sekonde lyn',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 s. lyn',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 sekonden lyn',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 s. lyn',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minút lyn',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 min. lyn',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minuten lyn',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 min. lyn',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 oere lyn',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 o. lyn',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 oeren lyn',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 o. lyn',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 dei lyn',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 d. lyn',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 dagen lyn',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 d. lyn',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 wike lyn',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 wike lyn',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 wiken lyn',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 wiken lyn',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 moanne lyn',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 moa. lyn',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 moannen lyn',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 moa. lyn',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 jier lyn',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 j lyn',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 jierren lyn',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 j lyn',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'oer 1 sekonde',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'oer 1 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekonde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 s.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekonden',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'oer 1 s.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minút 1 sekonde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 j 3 moa. 1 d. 1 s.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'oer 3 jierren',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 moa. lyn',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 j 3 moa. 1 d. 1 s. lyn',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 wike 10 oeren',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 wike 6 dagen',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 wike 6 dagen',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'oer 1 wike en 6 dagen',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 wiken 1 oere',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'oer ien oere',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dagen',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/FyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass FyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'fy'; // Western Frisian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'moarn om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sneon om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'snein om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'moandei om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tiisdei om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woansdei om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tongersdei om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'freed om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiisdei om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woansdei om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tongersdei om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'freed om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sneon om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ôfrûne snein om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'juster om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hjoed om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hjoed om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'moarn om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiisdei om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'juster om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'juster om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ôfrûne tiisdei om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ôfrûne moandei om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ôfrûne snein om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ôfrûne sneon om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ôfrûne freed om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ôfrûne tongersdei om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ôfrûne woansdei om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ôfrûne freed om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekonde lyn',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. lyn',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekonden lyn',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. lyn',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minút lyn',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. lyn',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten lyn',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. lyn',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oere lyn',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. lyn',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oeren lyn',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. lyn',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dei lyn',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. lyn',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen lyn',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. lyn',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wike lyn',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 wike lyn',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wiken lyn',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 wiken lyn',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 moanne lyn',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 moa. lyn',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 moannen lyn',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 moa. lyn',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jier lyn',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 j lyn',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jierren lyn',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 j lyn',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'oer 1 sekonde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'oer 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekonde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekonden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'oer 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minút 1 sekonde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j 3 moa. 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'oer 3 jierren',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 moa. lyn',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 j 3 moa. 1 d. 1 s. lyn',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wike 10 oeren',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wike 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wike 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'oer 1 wike en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wiken 1 oere',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'oer ien oere',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GaIeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GaIeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ga_IE'; // Irish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amárach ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Satharn ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Domhnaigh ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Luain ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Máirt ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Céadaoin ag 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Déardaoin ag 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dé hAoine ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Máirt ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Céadaoin ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Déardaoin ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé hAoine ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Satharn ag 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Dé Domhnaigh seo caite ag 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Inné aig 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Inniu ag 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Inniu ag 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amárach ag 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Máirt ag 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Inné aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Inné aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Máirt seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Luain seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Domhnaigh seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Satharn seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé hAoine seo caite ag 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Déardaoin seo caite ag 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Dé Céadaoin seo caite ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé hAoine seo caite ag 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1d 1d 1d 1d 1d',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2na 1d',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3mh 1d',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4mh 1d',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5mh 1d',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6mh 1d',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7mh 1d',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11mh 2na',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40mh',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41mh',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100mh',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 r.n. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 r.n., 12:00 r.n.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 r.n., 1:30 r.n.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 r.n., 2:00 r.n.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 r.n., 6:00 r.n.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 r.n., 10:00 r.n.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 i.n., 12:00 i.n.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 i.n., 5:00 i.n.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 i.n., 9:30 i.n.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 i.n., 11:00 i.n.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0mh',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 soicind ó shin',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1so ó shin',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 soicind ó shin',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2so ó shin',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 nóiméad ó shin',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1n ó shin',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 nóiméad ó shin',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2n ó shin',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uair an chloig ó shin',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u ó shin',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uair an chloig ó shin',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u ó shin',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 lá ó shin',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1l ó shin',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 lá ó shin',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2l ó shin',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sheachtain ó shin',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1sh ó shin',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sheachtain ó shin',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2sh ó shin',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mí ó shin',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1m ó shin',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mí ó shin',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2m ó shin',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 bliain ó shin',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1b ó shin',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 bliain ó shin',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2b ó shin',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'i 1 soicind',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'i 1so',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 soicind tar éis',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1so tar éis',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 soicind roimh',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1so roimh',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 soicind',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1so',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 soicind',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2so',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'i 1so',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 nóiméad 1 soicind',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2b 3m 1l 1so',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'i 3 bliain',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5m ó shin',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2b 3m 1l 1so ó shin',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sheachtain 10 uair an chloig',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sheachtain 6 lá',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sheachtain 6 lá',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'i 1 sheachtain agus 6 lá',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sheachtain 1 uair an chloig',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'i uair an chloig',\n        // CarbonInterval::days(2)->forHumans()\n        '2 lá',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1l 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ga'; // Irish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amárach ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Satharn ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Domhnaigh ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Luain ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Máirt ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Céadaoin ag 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Déardaoin ag 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dé hAoine ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Máirt ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Céadaoin ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Déardaoin ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé hAoine ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Satharn ag 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Dé Domhnaigh seo caite ag 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Inné aig 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Inniu ag 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Inniu ag 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amárach ag 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé Máirt ag 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Inné aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Inné aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Máirt seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Luain seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Domhnaigh seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé Satharn seo caite ag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dé hAoine seo caite ag 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Déardaoin seo caite ag 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Dé Céadaoin seo caite ag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dé hAoine seo caite ag 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1d 1d 1d 1d 1d',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2na 1d',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3mh 1d',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4mh 1d',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5mh 1d',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6mh 1d',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7mh 1d',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11mh 2na',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40mh',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41mh',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100mh',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 r.n. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 r.n., 12:00 r.n.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 r.n., 1:30 r.n.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 r.n., 2:00 r.n.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 r.n., 6:00 r.n.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 r.n., 10:00 r.n.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 i.n., 12:00 i.n.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 i.n., 5:00 i.n.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 i.n., 9:30 i.n.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 i.n., 11:00 i.n.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0mh',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 soicind ó shin',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1so ó shin',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 soicind ó shin',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2so ó shin',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 nóiméad ó shin',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1n ó shin',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 nóiméad ó shin',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2n ó shin',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uair an chloig ó shin',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u ó shin',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uair an chloig ó shin',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u ó shin',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 lá ó shin',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1l ó shin',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 lá ó shin',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2l ó shin',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sheachtain ó shin',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1sh ó shin',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sheachtain ó shin',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2sh ó shin',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mí ó shin',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1m ó shin',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mí ó shin',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2m ó shin',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 bliain ó shin',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1b ó shin',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 bliain ó shin',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2b ó shin',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'i 1 soicind',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'i 1so',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 soicind tar éis',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1so tar éis',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 soicind roimh',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1so roimh',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 soicind',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1so',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 soicind',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2so',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'i 1so',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 nóiméad 1 soicind',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2b 3m 1l 1so',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'i 3 bliain',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5m ó shin',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2b 3m 1l 1so ó shin',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sheachtain 10 uair an chloig',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sheachtain 6 lá',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sheachtain 6 lá',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'i 1 sheachtain agus 6 lá',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sheachtain 1 uair an chloig',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'i uair an chloig',\n        // CarbonInterval::days(2)->forHumans()\n        '2 lá',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1l 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GdGbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GdGbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gd_GB'; // ScottishGaelic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'A-màireach aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Disathairne aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Didòmhnaich aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diluain aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dimàirt aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diciadain aig 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Diardaoin aig 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dihaoine aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dimàirt aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Diciadain aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Diardaoin aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dihaoine aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Disathairne aig 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Didòmhnaich seo chaidh aig 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'An-dè aig 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'An-diugh aig 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'An-diugh aig 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'A-màireach aig 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dimàirt aig 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'An-dè aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'An-dè aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dimàirt seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diluain seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Didòmhnaich seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Disathairne seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dihaoine seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Diardaoin seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Diciadain seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dihaoine seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1d 1d 1d 1d 1d',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2na 1d',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3mh 1d',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4mh 1d',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5mh 1d',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6mh 1d',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7mh 1d',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11mh 2na',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40mh',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41mh',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100mh',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 m CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 m, 12:00 m',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 m, 1:30 m',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 m, 2:00 m',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 m, 6:00 m',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 m, 10:00 m',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 f, 12:00 f',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 f, 5:00 f',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 f, 9:30 f',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 f, 11:00 f',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0mh',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'bho chionn 1 diogan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'bho chionn 1 d.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'bho chionn 2 diogan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'bho chionn 2 d.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'bho chionn 1 mionaidean',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'bho chionn 1 md.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'bho chionn 2 mionaidean',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'bho chionn 2 md.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'bho chionn 1 uairean',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'bho chionn 1 u.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'bho chionn 2 uairean',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'bho chionn 2 u.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'bho chionn 1 latha',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'bho chionn 1 l.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'bho chionn 2 latha',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'bho chionn 2 l.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'bho chionn 1 seachdainean',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'bho chionn 1 s.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'bho chionn 2 seachdainean',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'bho chionn 2 s.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'bho chionn 1 mìosan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'bho chionn 1 ms.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'bho chionn 2 mìosan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'bho chionn 2 ms.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'bho chionn 1 bliadhna',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'bho chionn 1 b.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'bho chionn 2 bliadhna',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'bho chionn 2 b.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ann an 1 diogan',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ann an 1 d.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 diogan',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 d.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 diogan',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 d.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ann an 1 d.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mionaidean 1 diogan',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 b. 3 ms. 1 l. 1 d.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ann an 3 bliadhna',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'bho chionn 5 ms.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'bho chionn 2 b. 3 ms. 1 l. 1 d.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 seachdainean 10 uairean',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seachdainean 6 latha',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seachdainean 6 latha',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ann an 1 seachdainean agus 6 latha',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 seachdainean 1 uairean',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ann an uair',\n        // CarbonInterval::days(2)->forHumans()\n        '2 latha',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 l. 3 u.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gd'; // ScottishGaelic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'A-màireach aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Disathairne aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Didòmhnaich aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diluain aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dimàirt aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diciadain aig 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Diardaoin aig 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dihaoine aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dimàirt aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Diciadain aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Diardaoin aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dihaoine aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Disathairne aig 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Didòmhnaich seo chaidh aig 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'An-dè aig 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'An-diugh aig 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'An-diugh aig 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'A-màireach aig 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dimàirt aig 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'An-dè aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'An-dè aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dimàirt seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diluain seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Didòmhnaich seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Disathairne seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dihaoine seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Diardaoin seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Diciadain seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dihaoine seo chaidh aig 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1d 1d 1d 1d 1d',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2na 1d',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3mh 1d',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4mh 1d',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5mh 1d',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6mh 1d',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7mh 1d',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11mh 2na',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40mh',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41mh',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100mh',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 m CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 m, 12:00 m',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 m, 1:30 m',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 m, 2:00 m',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 m, 6:00 m',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 m, 10:00 m',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 f, 12:00 f',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 f, 5:00 f',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 f, 9:30 f',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 f, 11:00 f',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0mh',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'bho chionn 1 diogan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'bho chionn 1 d.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'bho chionn 2 diogan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'bho chionn 2 d.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'bho chionn 1 mionaidean',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'bho chionn 1 md.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'bho chionn 2 mionaidean',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'bho chionn 2 md.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'bho chionn 1 uairean',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'bho chionn 1 u.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'bho chionn 2 uairean',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'bho chionn 2 u.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'bho chionn 1 latha',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'bho chionn 1 l.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'bho chionn 2 latha',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'bho chionn 2 l.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'bho chionn 1 seachdainean',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'bho chionn 1 s.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'bho chionn 2 seachdainean',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'bho chionn 2 s.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'bho chionn 1 mìosan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'bho chionn 1 ms.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'bho chionn 2 mìosan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'bho chionn 2 ms.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'bho chionn 1 bliadhna',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'bho chionn 1 b.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'bho chionn 2 bliadhna',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'bho chionn 2 b.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ann an 1 diogan',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ann an 1 d.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 diogan',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 d.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 diogan',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 d.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ann an 1 d.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mionaidean 1 diogan',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 b. 3 ms. 1 l. 1 d.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ann an 3 bliadhna',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'bho chionn 5 ms.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'bho chionn 2 b. 3 ms. 1 l. 1 d.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 seachdainean 10 uairean',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seachdainean 6 latha',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seachdainean 6 latha',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ann an 1 seachdainean agus 6 latha',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 seachdainean 1 uairean',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ann an uair',\n        // CarbonInterval::days(2)->forHumans()\n        '2 latha',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 l. 3 u.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GezErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GezErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gez_ER'; // Geez\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'እኁድ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑይ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last እኁድ at 8:49 ምሴት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ምሴት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑይ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last እኁድ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ጽባሕ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ጽባሕ, 12:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ጽባሕ, 1:30 ጽባሕ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ጽባሕ, 2:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ጽባሕ, 6:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ጽባሕ, 10:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ምሴት, 12:00 ምሴት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ምሴት, 5:00 ምሴት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ምሴት, 9:30 ምሴት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ምሴት, 11:00 ምሴት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ካልእ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ካልእ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ካልእ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ካልእ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ንኡስ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ንኡስ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ንኡስ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ንኡስ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 አንትሙ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 አንትሙ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 አንትሙ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 አንትሙ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ዕለት ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ዕለት ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ዕለት ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ዕለት ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ሰብዑ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ሰብዑ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ሰብዑ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ሰብዑ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ወርሕ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ወርሕ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ወርሕ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ወርሕ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ዓመት ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ካልእ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ካልእ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ካልእ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ካልእ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ካልእ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ካልእ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ካልእ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ካልእ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ካልእ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ካልእ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ካልእ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ንኡስ 1 ካልእ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ዓመት 3 ወርሕ 1 ዕለት 1 ካልእ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ዓመት from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ወርሕ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ዓመት 3 ወርሕ 1 ዕለት 1 ካልእ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሰብዑ 10 አንትሙ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰብዑ 6 ዕለት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰብዑ 6 ዕለት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ሰብዑ and 6 ዕለት from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሰብዑ 1 አንትሙ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 አንትሙ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ዕለት',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ዕለት 3 አንትሙ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GezEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GezEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gez_ET'; // Geez\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'እኁድ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑይ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last እኁድ at 8:49 ምሴት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ምሴት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑይ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last እኁድ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ጽባሕ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ጽባሕ, 12:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ጽባሕ, 1:30 ጽባሕ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ጽባሕ, 2:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ጽባሕ, 6:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ጽባሕ, 10:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ምሴት, 12:00 ምሴት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ምሴት, 5:00 ምሴት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ምሴት, 9:30 ምሴት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ምሴት, 11:00 ምሴት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GezTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GezTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gez'; // Geez\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'እኁድ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑይ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last እኁድ at 8:49 ምሴት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ምሴት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሠሉስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑይ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last እኁድ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቀዳሚት at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሐሙስ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ራብዕ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርበ at 12:00 ጽባሕ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ጽባሕ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ጽባሕ, 12:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ጽባሕ, 1:30 ጽባሕ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ጽባሕ, 2:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ጽባሕ, 6:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ጽባሕ, 10:00 ጽባሕ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ምሴት, 12:00 ምሴት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ምሴት, 5:00 ምሴት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ምሴት, 9:30 ምሴት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ምሴት, 11:00 ምሴት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ካልእ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ካልእ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ካልእ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ካልእ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ንኡስ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ንኡስ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ንኡስ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ንኡስ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 አንትሙ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 አንትሙ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 አንትሙ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 አንትሙ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ዕለት ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ዕለት ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ዕለት ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ዕለት ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ሰብዑ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ሰብዑ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ሰብዑ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ሰብዑ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ወርሕ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ወርሕ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ወርሕ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ወርሕ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ዓመት ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ካልእ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ካልእ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ካልእ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ካልእ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ካልእ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ካልእ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ካልእ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ካልእ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ካልእ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ካልእ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ካልእ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ንኡስ 1 ካልእ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ዓመት 3 ወርሕ 1 ዕለት 1 ካልእ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ዓመት from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ወርሕ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ዓመት 3 ወርሕ 1 ዕለት 1 ካልእ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሰብዑ 10 አንትሙ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰብዑ 6 ዕለት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰብዑ 6 ዕለት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ሰብዑ and 6 ዕለት from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሰብዑ 1 አንትሙ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 አንትሙ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ዕለት',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ዕለት 3 አንትሙ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GlEsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GlEsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gl_ES'; // Galician\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañá ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luns ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mércores ás 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'xoves ás 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venres ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mércores ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'xoves ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venres ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado ás 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'o domingo pasado ás 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onte á 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoxe ás 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoxe ás 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañá ás 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes ás 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'onte á 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onte á 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o martes pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o luns pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o domingo pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o sábado pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o venres pasado ás 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'o xoves pasado ás 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'o mércores pasado ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'o venres pasado ás 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hai 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hai 1 seg.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hai 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hai 2 seg.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hai 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hai 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hai 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hai 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hai 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hai 1 h.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hai 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hai 2 h.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hai 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hai 1 d.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hai 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hai 2 d.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hai 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hai 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hai 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hai 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hai 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hai 1 mes.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hai 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hai 2 mes.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hai 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hai 1 a.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hai 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hai 2 a.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo despois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 seg. despois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 seg. antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 seg.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1 seg.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a. 3 mes. 1 d. 1 seg.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hai 5 mes.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hai 2 a. 3 mes. 1 d. 1 seg.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana e 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'nunha hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 h.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gl'; // Galician\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañá ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luns ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mércores ás 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'xoves ás 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venres ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mércores ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'xoves ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venres ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado ás 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'o domingo pasado ás 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onte á 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoxe ás 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoxe ás 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañá ás 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes ás 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'onte á 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onte á 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o martes pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o luns pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o domingo pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o sábado pasado ás 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'o venres pasado ás 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'o xoves pasado ás 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'o mércores pasado ás 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'o venres pasado ás 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hai 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hai 1 seg.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hai 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hai 2 seg.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hai 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hai 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hai 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hai 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hai 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hai 1 h.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hai 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hai 2 h.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hai 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hai 1 d.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hai 2 días',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hai 2 d.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hai 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hai 1 sem.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hai 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hai 2 sem.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hai 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hai 1 mes.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hai 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hai 2 mes.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hai 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hai 1 a.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hai 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hai 2 a.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo despois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 seg. despois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 seg. antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 seg.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1 seg.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a. 3 mes. 1 d. 1 seg.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hai 5 mes.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hai 2 a. 3 mes. 1 d. 1 seg.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 días',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana e 6 días',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'nunha hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 días',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 h.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GomLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GomLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gom_Latn'; // Konkani Latin script\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Faleam rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Son\\'var, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Aitar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Somar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Budvar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ieta to Brestar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ieta to Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Budvar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Brestar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Son\\'var, rati 12:00 vazta',\n        // Carbon::now()->subDays(2)->calendar()\n        'Fatlo Aitar, rati 8:49 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kal rati 10:00 vazta',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aiz sokalli 10:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aiz rati 2:00 vazta',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Faleam rati 1:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kal rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kal rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Somar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Aitar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Son\\'var, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Fatlo Brestar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Fatlo Budvar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fatlo Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1er 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2er 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3er 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4er 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5er 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6er 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7er 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11er 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 rati CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 rati, 12:00 rati',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 rati, 1:30 rati',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 rati, 2:00 rati',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 sokalli, 6:00 sokalli',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 sokalli, 10:00 sokalli',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 donparam, 12:00 donparam',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 sanje, 5:00 sanje',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 rati, 9:30 rati',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 rati, 11:00 rati',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 second',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2v 3mh 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 satolleacho 10 hor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 satolleacho 6 dis',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 satolleacho 6 dis',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 satolleacho 1 hor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dis',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GomTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GomTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gom'; // Konkani Latin script\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Faleam rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Son\\'var, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Aitar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Somar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieta to Budvar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ieta to Brestar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ieta to Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Budvar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Brestar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Son\\'var, rati 12:00 vazta',\n        // Carbon::now()->subDays(2)->calendar()\n        'Fatlo Aitar, rati 8:49 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kal rati 10:00 vazta',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Aiz sokalli 10:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aiz rati 2:00 vazta',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Faleam rati 1:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ieta to Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kal rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kal rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Mongllar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Somar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Aitar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Son\\'var, rati 12:00 vazta',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Fatlo Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Fatlo Brestar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Fatlo Budvar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fatlo Sukrar, rati 12:00 vazta',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1er 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2er 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3er 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4er 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5er 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6er 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7er 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11er 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 rati CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 rati, 12:00 rati',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 rati, 1:30 rati',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 rati, 2:00 rati',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 sokalli, 6:00 sokalli',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 sokalli, 10:00 sokalli',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 donparam, 12:00 donparam',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 sanje, 5:00 sanje',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 rati, 9:30 rati',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 rati, 11:00 rati',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 second',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2v 3mh 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 satolleacho 10 hor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 satolleacho 6 dis',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 satolleacho 6 dis',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 satolleacho 1 hor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dis',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GswChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GswChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gsw_CH'; // Swiss German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunntig at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunschtig at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 2.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am vormittag CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 am Vormittag, 12:00 am vormittag',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 am Vormittag, 1:30 am vormittag',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 am Vormittag, 2:00 am vormittag',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 am Vormittag, 6:00 am vormittag',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 am Vormittag, 10:00 am vormittag',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 am Namittag, 12:00 am namittag',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 am Namittag, 5:00 am namittag',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 am Namittag, 9:30 am namittag',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 am Namittag, 11:00 am namittag',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 Johr 3 Monet 1 Tag 1 Sekunde',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Schtund',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Woche 1 Schtund',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tag 3 Schtund',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GswFrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GswFrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gsw_FR'; // Swiss German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunntig at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunschtig at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vorm. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 vorm., 12:00 vorm.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 vorm., 1:30 vorm.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 vorm., 2:00 vorm.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 vorm., 6:00 vorm.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 vorm., 10:00 vorm.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 nam., 12:00 nam.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 nam., 5:00 nam.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 nam., 9:30 nam.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 nam., 11:00 nam.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 Johr 3 Monet 1 Tag 1 Sekunde',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Schtund',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Woche 1 Schtund',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tag 3 Schtund',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GswLiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GswLiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gsw_LI'; // Swiss German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunntig at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunschtig at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vorm. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 vorm., 12:00 vorm.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 vorm., 1:30 vorm.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 vorm., 2:00 vorm.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 vorm., 6:00 vorm.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 vorm., 10:00 vorm.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 nam., 12:00 nam.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 nam., 5:00 nam.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 nam., 9:30 nam.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 nam., 11:00 nam.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 Johr 3 Monet 1 Tag 1 Sekunde',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Schtund',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Woche 1 Schtund',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tag 3 Schtund',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GswTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GswTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gsw'; // Swiss German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunschtig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friitig at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschtig at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunntig at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ziischtig at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ziischtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mäntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunntig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samschtig at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunschtig at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mittwuch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friitig at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 2.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am vormittag CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 am Vormittag, 12:00 am vormittag',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 am Vormittag, 1:30 am vormittag',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 am Vormittag, 2:00 am vormittag',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 am Vormittag, 6:00 am vormittag',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 am Vormittag, 10:00 am vormittag',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 am Namittag, 12:00 am namittag',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 am Namittag, 5:00 am namittag',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 am Namittag, 9:30 am namittag',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 am Namittag, 11:00 am namittag',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekunde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minute 1 Sekunde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 Johr 3 Monet 1 Tag 1 Sekunde',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woche 10 Schtund',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woche 6 Tag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Woche 1 Schtund',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Tag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Tag 3 Schtund',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GuInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GuInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gu_IN'; // Gujarati\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'કાલે રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'શનિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'રવિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'સોમવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'બુધ્વાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ગુરુવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'બુધ્વાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ગુરુવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'શનિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::now()->subDays(2)->calendar()\n        'પાછલા રવિવાર, રાત 8:49 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ગઇકાલે રાત 10:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'આજ બપોર 10:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'આજ રાત 2:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'કાલે રાત 1:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ગઇકાલે રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ગઇકાલે રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા સોમવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા રવિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા શનિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'પાછલા ગુરુવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'પાછલા બુધ્વાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'પાછલા શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 રાત CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 રાત, 12:00 રાત',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 રાત, 1:30 રાત',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 રાત, 2:00 રાત',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 સવાર, 6:00 સવાર',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 બપોર, 10:00 બપોર',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 બપોર, 12:00 બપોર',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 સાંજ, 5:00 સાંજ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 રાત, 9:30 રાત',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 રાત, 11:00 રાત',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'અમુક પળો પેહલા',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1સે. પેહલા',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 સેકંડ પેહલા',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2સે. પેહલા',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'એક મિનિટ પેહલા',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1મિ. પેહલા',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 મિનિટ પેહલા',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2મિ. પેહલા',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'એક કલાક પેહલા',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1ક. પેહલા',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 કલાક પેહલા',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2ક. પેહલા',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'એક દિવસ પેહલા',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1દિ. પેહલા',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 દિવસ પેહલા',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2દિ. પેહલા',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 અઠવાડિયું પેહલા',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1અઠ. પેહલા',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 અઠવાડિયા પેહલા',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2અઠ. પેહલા',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'એક મહિનો પેહલા',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1મહિનો પેહલા',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 મહિના પેહલા',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2મહિના પેહલા',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'એક વર્ષ પેહલા',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1વર્ષ પેહલા',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 વર્ષ પેહલા',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2વર્ષો પેહલા',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'અમુક પળો મા',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1સે. મા',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'અમુક પળો પછી',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1સે. પછી',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'અમુક પળો પહેલા',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1સે. પહેલા',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'અમુક પળો',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1સે.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 સેકંડ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2સે.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1સે. મા',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'એક મિનિટ અમુક પળો',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2વર્ષો 3મહિના 1દિ. 1સે.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 વર્ષ મા',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5મહિના પેહલા',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2વર્ષો 3મહિના 1દિ. 1સે. પેહલા',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 અઠવાડિયું 10 કલાક',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 અઠવાડિયું 6 દિવસ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 અઠવાડિયું 6 દિવસ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 અઠવાડિયું અને 6 દિવસ મા',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 અઠવાડિયા એક કલાક',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'એક કલાક મા',\n        // CarbonInterval::days(2)->forHumans()\n        '2 દિવસ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1દિ. 3ક.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gu'; // Gujarati\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'કાલે રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'શનિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'રવિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'સોમવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'બુધ્વાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ગુરુવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'બુધ્વાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ગુરુવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'શનિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::now()->subDays(2)->calendar()\n        'પાછલા રવિવાર, રાત 8:49 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ગઇકાલે રાત 10:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'આજ બપોર 10:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'આજ રાત 2:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'કાલે રાત 1:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ગઇકાલે રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ગઇકાલે રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા મંગળવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા સોમવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા રવિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા શનિવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'પાછલા શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'પાછલા ગુરુવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'પાછલા બુધ્વાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'પાછલા શુક્રવાર, રાત 12:00 વાગ્યે',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 રાત CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 રાત, 12:00 રાત',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 રાત, 1:30 રાત',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 રાત, 2:00 રાત',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 સવાર, 6:00 સવાર',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 બપોર, 10:00 બપોર',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 બપોર, 12:00 બપોર',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 સાંજ, 5:00 સાંજ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 રાત, 9:30 રાત',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 રાત, 11:00 રાત',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'અમુક પળો પેહલા',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1સે. પેહલા',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 સેકંડ પેહલા',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2સે. પેહલા',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'એક મિનિટ પેહલા',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1મિ. પેહલા',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 મિનિટ પેહલા',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2મિ. પેહલા',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'એક કલાક પેહલા',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1ક. પેહલા',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 કલાક પેહલા',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2ક. પેહલા',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'એક દિવસ પેહલા',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1દિ. પેહલા',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 દિવસ પેહલા',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2દિ. પેહલા',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 અઠવાડિયું પેહલા',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1અઠ. પેહલા',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 અઠવાડિયા પેહલા',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2અઠ. પેહલા',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'એક મહિનો પેહલા',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1મહિનો પેહલા',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 મહિના પેહલા',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2મહિના પેહલા',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'એક વર્ષ પેહલા',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1વર્ષ પેહલા',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 વર્ષ પેહલા',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2વર્ષો પેહલા',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'અમુક પળો મા',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1સે. મા',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'અમુક પળો પછી',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1સે. પછી',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'અમુક પળો પહેલા',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1સે. પહેલા',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'અમુક પળો',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1સે.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 સેકંડ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2સે.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1સે. મા',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'એક મિનિટ અમુક પળો',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2વર્ષો 3મહિના 1દિ. 1સે.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 વર્ષ મા',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5મહિના પેહલા',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2વર્ષો 3મહિના 1દિ. 1સે. પેહલા',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 અઠવાડિયું 10 કલાક',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 અઠવાડિયું 6 દિવસ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 અઠવાડિયું 6 દિવસ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 અઠવાડિયું અને 6 દિવસ મા',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 અઠવાડિયા એક કલાક',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'એક કલાક મા',\n        // CarbonInterval::days(2)->forHumans()\n        '2 દિવસ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1દિ. 3ક.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GuzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GuzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'guz'; // Gusii\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Esabato at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chumapiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chumatato at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chumaine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aramisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ichuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chumaine at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aramisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ichuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Esabato at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Chumapiri at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chumaine at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chumaine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chumatato at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chumapiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Esabato at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ichuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aramisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Chumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ichuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ma CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ma, 12:00 ma',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Ma, 1:30 ma',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Ma, 2:00 ma',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Ma, 6:00 ma',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Ma, 10:00 ma',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Mo, 12:00 mo',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Mo, 5:00 mo',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Mo, 9:30 mo',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Mo, 11:00 mo',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ibere ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ibere ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ibere ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ibere ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 rituko ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 rituko ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 rituko ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 rituko ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 isano naibere ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 isano naibere ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 isano naibere ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 isano naibere ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 omotunyi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 omotunyi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 omotunyi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 omotunyi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 omwaka ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 omwaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 omwaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 omwaka ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ibere from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ibere from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ibere after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ibere after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ibere before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ibere before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ibere',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ibere',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ibere',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ibere',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ibere from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ibere',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 omwaka 3 omotunyi 1 rituko 1 ibere',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 omwaka from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 omotunyi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 omwaka 3 omotunyi 1 rituko 1 ibere ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 isano naibere 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 isano naibere 6 rituko',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 isano naibere 6 rituko',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 isano naibere and 6 rituko from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 isano naibere 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 rituko',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 rituko 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GvGbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GvGbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gv_GB'; // Manx\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jesarn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jedoonee at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jelhein at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jercean at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Jerdein at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jercean at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jerdein at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jesarn at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jedoonee at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jelhein at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jedoonee at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jesarn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Jerdein at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jercean at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 derrey ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 derrey ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 derrey ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 derrey ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 feer veg ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 feer veg ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 feer veg ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 feer veg ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 laa ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 laa ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 laa ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 laa ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 shiaghtin ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 shiaghtin ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 shiaghtin ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 shiaghtin ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mee ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mee ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mee ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mee ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 blein ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 blein ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 blein ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 blein ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 derrey from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 derrey from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 derrey after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 derrey after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 derrey before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 derrey before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 derrey',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 derrey',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 derrey',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 derrey',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 derrey from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 feer veg 1 derrey',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 blein 3 mee 1 laa 1 derrey',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 blein from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mee ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 blein 3 mee 1 laa 1 derrey ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 shiaghtin 10 oor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 shiaghtin 6 laa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 shiaghtin 6 laa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 shiaghtin and 6 laa from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 shiaghtin 1 oor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 oor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 laa',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 laa 3 oor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/GvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass GvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'gv'; // Manx\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jesarn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jedoonee at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jelhein at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jercean at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Jerdein at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jercean at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jerdein at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jesarn at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jedoonee at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jemayrt at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jelhein at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jedoonee at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jesarn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Jerdein at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jercean at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jeheiney at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 derrey ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 derrey ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 derrey ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 derrey ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 feer veg ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 feer veg ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 feer veg ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 feer veg ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oor ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oor ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oor ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oor ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 laa ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 laa ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 laa ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 laa ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 shiaghtin ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 shiaghtin ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 shiaghtin ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 shiaghtin ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mee ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mee ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mee ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mee ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 blein ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 blein ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 blein ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 blein ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 derrey from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 derrey from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 derrey after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 derrey after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 derrey before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 derrey before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 derrey',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 derrey',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 derrey',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 derrey',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 derrey from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 feer veg 1 derrey',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 blein 3 mee 1 laa 1 derrey',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 blein from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mee ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 blein 3 mee 1 laa 1 derrey ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 shiaghtin 10 oor',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 shiaghtin 6 laa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 shiaghtin 6 laa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 shiaghtin and 6 laa from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 shiaghtin 1 oor',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 oor from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 laa',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 laa 3 oor',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HaGhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HaGhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ha_GH'; // Hausa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lahadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamis at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ná bíyú ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 áwàa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 áwàa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 rana ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 rana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 mako ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 mako ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 wátàa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'shekara 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'shekara 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'shekara 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'shekara 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ná bíyú after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ná bíyú after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ná bíyú before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ná bíyú before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ná bíyú from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minti 1 1 ná bíyú',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'shekara 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 wátàa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 mako 10 áwàa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 mako and 6 rana from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 mako 1 áwàa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 áwàa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 rana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 rana 3 áwàa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HaNeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HaNeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ha_NE'; // Hausa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lahadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamis at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ná bíyú ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 áwàa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 áwàa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 rana ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 rana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 mako ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 mako ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 wátàa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'shekara 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'shekara 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'shekara 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'shekara 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ná bíyú after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ná bíyú after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ná bíyú before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ná bíyú before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ná bíyú from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minti 1 1 ná bíyú',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'shekara 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 wátàa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 mako 10 áwàa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 mako and 6 rana from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 mako 1 áwàa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 áwàa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 rana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 rana 3 áwàa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HaNgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HaNgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ha_NG'; // Hausa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lahadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamis at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ná bíyú ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 áwàa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 áwàa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 rana ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 rana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 mako ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 mako ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 wátàa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'shekara 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'shekara 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'shekara 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'shekara 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ná bíyú after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ná bíyú after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ná bíyú before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ná bíyú before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ná bíyú from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minti 1 1 ná bíyú',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'shekara 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 wátàa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 mako 10 áwàa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 mako and 6 rana from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 mako 1 áwàa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 áwàa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 rana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 rana 3 áwàa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ha'; // Hausa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamis at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asabar at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lahadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Talata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Talata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Litini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lahadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asabar at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamis at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laraba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumaʼa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ná bíyú ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ná bíyú ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 áwàa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 áwàa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 áwàa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 rana ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 rana ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 rana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 mako ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 mako ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 mako ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 wátàa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 wátàa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'shekara 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'shekara 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'shekara 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'shekara 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ná bíyú from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ná bíyú after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ná bíyú after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ná bíyú before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ná bíyú before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ná bíyú',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ná bíyú',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ná bíyú from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minti 1 1 ná bíyú',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'shekara 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 wátàa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'shekara 2 3 wátàa 1 rana 1 ná bíyú ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 mako 10 áwàa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mako 6 rana',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 mako and 6 rana from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 mako 1 áwàa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 áwàa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 rana',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 rana 3 áwàa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HakTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HakTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hak'; // Hakka Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜六 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜日 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜一 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜三 at 12:00 上晝',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '禮拜四 at 12:00 上晝',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜三 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜四 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜六 at 12:00 上晝',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 禮拜日 at 8:49 下晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 下晝',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 上晝',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜一 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜日 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜六 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 禮拜四 at 12:00 上晝',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 禮拜三 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 上晝 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 上晝, 12:00 上晝',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 上晝, 1:30 上晝',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 上晝, 2:00 上晝',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 上晝, 6:00 上晝',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 上晝, 10:00 上晝',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 下晝, 12:00 下晝',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 下晝, 5:00 下晝',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 下晝, 9:30 下晝',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 下晝, 11:00 下晝',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 miéu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 miéu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 miéu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 miéu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 fûn ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 fûn ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 fûn ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 fûn ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 sṳ̀ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 sṳ̀ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 sṳ̀ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sṳ̀ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ngit ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ngit ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ngit ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ngit ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 lî-pai ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 lî-pai ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 lî-pai ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 lî-pai ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ngie̍t ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ngie̍t ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ngie̍t ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ngie̍t ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ngien11 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ngien11 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ngien11 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ngien11 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 miéu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 miéu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 miéu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 miéu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 miéu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 miéu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 miéu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 miéu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 miéu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 miéu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 miéu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 fûn 1 miéu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ngien11 3 ngie̍t 1 ngit 1 miéu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ngien11 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ngie̍t ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ngien11 3 ngie̍t 1 ngit 1 miéu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 lî-pai 10 sṳ̀',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lî-pai 6 ngit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lî-pai 6 ngit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 lî-pai and 6 ngit from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 lî-pai 1 sṳ̀',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 sṳ̀ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ngit',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ngit 3 sṳ̀',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HakTwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HakTwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hak_TW'; // Hakka Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜六 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜日 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜一 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜三 at 12:00 上晝',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '禮拜四 at 12:00 上晝',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜三 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜四 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜六 at 12:00 上晝',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 禮拜日 at 8:49 下晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 下晝',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 上晝',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜二 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜一 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜日 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜六 at 12:00 上晝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 禮拜四 at 12:00 上晝',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 禮拜三 at 12:00 上晝',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 禮拜五 at 12:00 上晝',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 上晝 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 上晝, 12:00 上晝',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 上晝, 1:30 上晝',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 上晝, 2:00 上晝',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 上晝, 6:00 上晝',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 上晝, 10:00 上晝',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 下晝, 12:00 下晝',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 下晝, 5:00 下晝',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 下晝, 9:30 下晝',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 下晝, 11:00 下晝',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 miéu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 miéu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 miéu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 miéu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 fûn ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 fûn ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 fûn ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 fûn ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 sṳ̀ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 sṳ̀ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 sṳ̀ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sṳ̀ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ngit ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ngit ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ngit ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ngit ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 lî-pai ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 lî-pai ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 lî-pai ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 lî-pai ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ngie̍t ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ngie̍t ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ngie̍t ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ngie̍t ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ngien11 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ngien11 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ngien11 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ngien11 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 miéu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 miéu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 miéu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 miéu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 miéu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 miéu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 miéu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 miéu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 miéu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 miéu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 miéu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 fûn 1 miéu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ngien11 3 ngie̍t 1 ngit 1 miéu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ngien11 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ngie̍t ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ngien11 3 ngie̍t 1 ngit 1 miéu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 lî-pai 10 sṳ̀',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lî-pai 6 ngit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lî-pai 6 ngit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 lî-pai and 6 ngit from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 lî-pai 1 sṳ̀',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 sṳ̀ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ngit',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ngit 3 sṳ̀',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HawTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HawTest extends LocalizationTestCase\n{\n    public const LOCALE = 'haw'; // Hawaiian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Poʻaono at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lāpule at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Poʻakahi at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Poʻalua at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Poʻakolu at 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Poʻahā at 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Poʻalima at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Poʻalua at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Poʻakolu at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Poʻahā at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Poʻalima at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Poʻaono at 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lāpule at 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Poʻalua at 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Poʻalua at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Poʻakahi at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lāpule at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Poʻaono at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Poʻalima at 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Poʻahā at 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Poʻakolu at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Poʻalima at 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 lua ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 lua ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 lua ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 lua ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuke ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuke ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuke ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuke ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hola ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 hola ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hola ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 hola ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 lā ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 lā ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 lā ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 lā ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 pule ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 pule ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 pule ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 pule ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 makahiki ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 makahiki ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 makahiki ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 makahiki ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 lua from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 lua from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 lua after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 lua after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 lua before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 lua before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 lua',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 lua',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 lua',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 lua',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 lua from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuke 1 lua',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 makahiki 3 mahina 1 lā 1 lua',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 makahiki from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 makahiki 3 mahina 1 lā 1 lua ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 pule 10 hola',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 pule 6 lā',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 pule 6 lā',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 pule and 6 lā from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 pule 1 hola',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 hola from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 lā',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 lā 3 hola',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HeIlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HeIlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'he_IL'; // Hebrew\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'מחר ב־00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'שבת בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'ראשון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'שני בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'שלישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'רביעי בשעה 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'חמישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'שישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'שלישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'רביעי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'חמישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'שישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'שבת בשעה 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'ביום ראשון האחרון בשעה 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'אתמול ב־22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'היום ב־10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'היום ב־02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'מחר ב־01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'שלישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'אתמול ב־00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'אתמול ב־00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'ביום שלישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'ביום שני האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'ביום ראשון האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'ביום שבת האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ביום שישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'ביום חמישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'ביום רביעי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ביום שישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 לפנות בוקר CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 לפנות בוקר, 12:00 לפנות בוקר',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 לפנות בוקר, 1:30 לפנות בוקר',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 לפנות בוקר, 2:00 לפנות בוקר',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 בבוקר, 6:00 בבוקר',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 לפני הצהריים, 10:00 לפנה\"צ',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 אחרי הצהריים, 12:00 אחה\"צ',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 אחרי הצהריים, 5:00 אחה\"צ',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 בערב, 9:30 בערב',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 בערב, 11:00 בערב',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'לפני שנייה',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'לפני שניה',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'לפני 2 שניות',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'לפני 2 שנ׳',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'לפני דקה',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'לפני דקה',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'לפני שתי דקות',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'לפני 2 דק׳',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'לפני שעה',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'לפני שעה',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'לפני שעתיים',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'לפני 2 שע׳',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'לפני יום',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'לפני יום',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'לפני יומיים',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'לפני 2 ימ׳',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'לפני שבוע',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'לפני שבוע',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'לפני שבועיים',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'לפני 2 שב׳',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'לפני חודש',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'לפני חודש',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'לפני חודשיים',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'לפני 2 חו׳',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'לפני שנה',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'לפני שנה',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'לפני שנתיים',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'לפני 2 שנ׳',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'בעוד שנייה מעכשיו',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'בעוד שניה מעכשיו',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'אחרי שנייה',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'אחרי שניה',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'לפני שנייה',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'לפני שניה',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        'שנייה',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        'שניה',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 שניות',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 שנ׳',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'בעוד שניה מעכשיו',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        'דקה שנייה',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 שנ׳ 3 חו׳ יום שניה',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'בעוד 3 שנים מעכשיו',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'לפני 5 חו׳',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'לפני 2 שנ׳ 3 חו׳ יום שניה',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        'שבוע 10 שעות',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'שבוע 6 ימים',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'שבוע 6 ימים',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'בעוד שבוע ו -6 ימים מעכשיו',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        'שבועיים שעה',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'בעוד שעה מעכשיו',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        'יומיים',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        'יום 3 שע׳',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'he'; // Hebrew\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'מחר ב־00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'שבת בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'ראשון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'שני בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'שלישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'רביעי בשעה 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'חמישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'שישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'שלישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'רביעי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'חמישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'שישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'שבת בשעה 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'ביום ראשון האחרון בשעה 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'אתמול ב־22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'היום ב־10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'היום ב־02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'מחר ב־01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'שלישי בשעה 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'אתמול ב־00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'אתמול ב־00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'ביום שלישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'ביום שני האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'ביום ראשון האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'ביום שבת האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ביום שישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'ביום חמישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'ביום רביעי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ביום שישי האחרון בשעה 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 לפנות בוקר CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 לפנות בוקר, 12:00 לפנות בוקר',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 לפנות בוקר, 1:30 לפנות בוקר',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 לפנות בוקר, 2:00 לפנות בוקר',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 בבוקר, 6:00 בבוקר',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 לפני הצהריים, 10:00 לפנה\"צ',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 אחרי הצהריים, 12:00 אחה\"צ',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 אחרי הצהריים, 5:00 אחה\"צ',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 בערב, 9:30 בערב',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 בערב, 11:00 בערב',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'לפני שנייה',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'לפני שניה',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'לפני 2 שניות',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'לפני 2 שנ׳',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'לפני דקה',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'לפני דקה',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'לפני שתי דקות',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'לפני 2 דק׳',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'לפני שעה',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'לפני שעה',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'לפני שעתיים',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'לפני 2 שע׳',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'לפני יום',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'לפני יום',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'לפני יומיים',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'לפני 2 ימ׳',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'לפני שבוע',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'לפני שבוע',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'לפני שבועיים',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'לפני 2 שב׳',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'לפני חודש',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'לפני חודש',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'לפני חודשיים',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'לפני 2 חו׳',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'לפני שנה',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'לפני שנה',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'לפני שנתיים',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'לפני 2 שנ׳',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'בעוד שנייה מעכשיו',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'בעוד שניה מעכשיו',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'אחרי שנייה',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'אחרי שניה',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'לפני שנייה',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'לפני שניה',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        'שנייה',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        'שניה',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 שניות',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 שנ׳',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'בעוד שניה מעכשיו',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        'דקה שנייה',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 שנ׳ 3 חו׳ יום שניה',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'בעוד 3 שנים מעכשיו',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'לפני 5 חו׳',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'לפני 2 שנ׳ 3 חו׳ יום שניה',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        'שבוע 10 שעות',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'שבוע 6 ימים',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'שבוע 6 ימים',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'בעוד שבוע ו -6 ימים מעכשיו',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        'שבועיים שעה',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'בעוד שעה מעכשיו',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        'יומיים',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        'יום 3 שע׳',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HiInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HiInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hi_IN'; // Hindi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'कल रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'गुरूवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गुरूवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार, रात 12:00 बजे',\n        // Carbon::now()->subDays(2)->calendar()\n        'पिछले रविवार, रात 8:49 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'कल रात 10:00 बजे',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज दोपहर 10:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज रात 2:00 बजे',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'कल रात 1:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'कल रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'कल रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले सोमवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले रविवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले शनिवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'पिछले गुरूवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'पिछले बुधवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'पिछले शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 रात CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 रात, 12:00 रात',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 रात, 1:30 रात',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 रात, 2:00 रात',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 सुबह, 6:00 सुबह',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 दोपहर, 10:00 दोपहर',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 दोपहर, 12:00 दोपहर',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 शाम, 5:00 शाम',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 रात, 9:30 रात',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 रात, 11:00 रात',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'कुछ ही क्षण पहले',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकंड पहले',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकंड पहले',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकंड पहले',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'एक मिनट पहले',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनट पहले',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनट पहले',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनटों पहले',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'एक घंटा पहले',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घंटा पहले',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घंटे पहले',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घंटे पहले',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'एक दिन पहले',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन पहले',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन पहले',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिनों पहले',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 सप्ताह पहले',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 सप्ताह पहले',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 सप्ताह पहले',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 सप्ताह पहले',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'एक महीने पहले',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 माह पहले',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महीने पहले',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महीने पहले',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'एक वर्ष पहले',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष पहले',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वर्ष पहले',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्षों पहले',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'कुछ ही क्षण में',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकंड में',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'कुछ ही क्षण के बाद',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकंड के बाद',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'कुछ ही क्षण के पहले',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकंड के पहले',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'कुछ ही क्षण',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकंड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकंड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकंड',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकंड में',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'एक मिनट कुछ ही क्षण',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्षों 3 महीने 1 दिन 1 सेकंड',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वर्ष में',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महीने पहले',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्षों 3 महीने 1 दिन 1 सेकंड पहले',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 10 घंटे',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 सप्ताह और 6 दिन में',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 सप्ताह एक घंटा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'एक घंटा में',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घंटे',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hi'; // Hindi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'कल रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'गुरूवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गुरूवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार, रात 12:00 बजे',\n        // Carbon::now()->subDays(2)->calendar()\n        'पिछले रविवार, रात 8:49 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'कल रात 10:00 बजे',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज दोपहर 10:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज रात 2:00 बजे',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'कल रात 1:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'कल रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'कल रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले मंगलवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले सोमवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले रविवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले शनिवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'पिछले शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'पिछले गुरूवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'पिछले बुधवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'पिछले शुक्रवार, रात 12:00 बजे',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 रात CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 रात, 12:00 रात',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 रात, 1:30 रात',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 रात, 2:00 रात',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 सुबह, 6:00 सुबह',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 दोपहर, 10:00 दोपहर',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 दोपहर, 12:00 दोपहर',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 शाम, 5:00 शाम',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 रात, 9:30 रात',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 रात, 11:00 रात',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'कुछ ही क्षण पहले',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकंड पहले',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकंड पहले',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकंड पहले',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'एक मिनट पहले',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनट पहले',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनट पहले',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनटों पहले',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'एक घंटा पहले',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घंटा पहले',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घंटे पहले',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घंटे पहले',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'एक दिन पहले',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन पहले',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन पहले',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिनों पहले',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 सप्ताह पहले',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 सप्ताह पहले',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 सप्ताह पहले',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 सप्ताह पहले',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'एक महीने पहले',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 माह पहले',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महीने पहले',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महीने पहले',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'एक वर्ष पहले',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष पहले',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वर्ष पहले',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्षों पहले',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'कुछ ही क्षण में',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकंड में',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'कुछ ही क्षण के बाद',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकंड के बाद',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'कुछ ही क्षण के पहले',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकंड के पहले',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'कुछ ही क्षण',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकंड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकंड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकंड',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकंड में',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'एक मिनट कुछ ही क्षण',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्षों 3 महीने 1 दिन 1 सेकंड',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वर्ष में',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महीने पहले',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्षों 3 महीने 1 दिन 1 सेकंड पहले',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 10 घंटे',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताह 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 सप्ताह और 6 दिन में',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 सप्ताह एक घंटा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'एक घंटा में',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घंटे',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HifFjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HifFjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hif_FJ'; // Fiji Hindi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Shanivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ravivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Somvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Budhvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Guruvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Budhvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Guruvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Shanivar at 12:00 Purvahan',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ravivar at 8:49 Aparaahna',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 Aparaahna',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 Purvahan',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Somvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ravivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Shanivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Guruvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Budhvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 purvahan CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Purvahan, 12:00 purvahan',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Purvahan, 1:30 purvahan',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Purvahan, 2:00 purvahan',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Purvahan, 6:00 purvahan',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Purvahan, 10:00 purvahan',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Aparaahna, 12:00 aparaahna',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Aparaahna, 5:00 aparaahna',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Aparaahna, 9:30 aparaahna',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Aparaahna, 11:00 aparaahna',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Second ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Second ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Second ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Minit ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 minit ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 minit ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 minit ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 Din ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 Din ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 Din ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 Din ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Hafta ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Hafta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Hafta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Hafta ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 saal ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 saal ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 saal ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 saal ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Second from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Second after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Second before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Second',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Second',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Second from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minit 1 Second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 saal 3 Mahina 1 Din 1 Second',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 saal from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 saal 3 Mahina 1 Din 1 Second ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Hafta 10 minit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Hafta 6 Din',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Hafta 6 Din',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Hafta and 6 Din from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Hafta 1 minit',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 minit from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Din',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Din 3 minit',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HifTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HifTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hif'; // Fiji Hindi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Shanivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ravivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Somvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Budhvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Guruvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Budhvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Guruvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Shanivar at 12:00 Purvahan',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ravivar at 8:49 Aparaahna',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 Aparaahna',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 Purvahan',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mangalvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Somvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ravivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Shanivar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Guruvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Budhvar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Shukravar at 12:00 Purvahan',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 purvahan CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Purvahan, 12:00 purvahan',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Purvahan, 1:30 purvahan',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Purvahan, 2:00 purvahan',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Purvahan, 6:00 purvahan',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Purvahan, 10:00 purvahan',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Aparaahna, 12:00 aparaahna',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Aparaahna, 5:00 aparaahna',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Aparaahna, 9:30 aparaahna',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Aparaahna, 11:00 aparaahna',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Second ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Second ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Second ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Minit ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 minit ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 minit ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 minit ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 Din ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 Din ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 Din ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 Din ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Hafta ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Hafta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Hafta ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Hafta ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 saal ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 saal ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 saal ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 saal ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Second from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Second after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Second before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Second',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Second',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Second',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Second from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minit 1 Second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 saal 3 Mahina 1 Din 1 Second',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 saal from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 saal 3 Mahina 1 Din 1 Second ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Hafta 10 minit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Hafta 6 Din',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Hafta 6 Din',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Hafta and 6 Din from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Hafta 1 minit',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 minit from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Din',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Din 3 minit',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HneInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HneInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hne_IN'; // Chhattisgarhi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सनिवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'इतवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिरसपत at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिरसपत at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सनिवार at 12:00 बिहिनियाँ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last इतवार at 8:49 मंझनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 मंझनियाँ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last इतवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सनिवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिरसपत at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 बिहिनियाँ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 बिहिनियाँ, 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 बिहिनियाँ, 1:30 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 बिहिनियाँ, 2:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 बिहिनियाँ, 6:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 बिहिनियाँ, 10:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 मंझनियाँ, 12:00 मंझनियाँ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 मंझनियाँ, 5:00 मंझनियाँ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 मंझनियाँ, 9:30 मंझनियाँ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 मंझनियाँ, 11:00 मंझनियाँ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HneTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HneTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hne'; // Chhattisgarhi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सनिवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'इतवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिरसपत at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिरसपत at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सनिवार at 12:00 बिहिनियाँ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last इतवार at 8:49 मंझनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 मंझनियाँ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last इतवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सनिवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिरसपत at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last सुकरवार at 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 बिहिनियाँ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 बिहिनियाँ, 12:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 बिहिनियाँ, 1:30 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 बिहिनियाँ, 2:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 बिहिनियाँ, 6:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 बिहिनियाँ, 10:00 बिहिनियाँ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 मंझनियाँ, 12:00 मंझनियाँ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 मंझनियाँ, 5:00 मंझनियाँ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 मंझनियाँ, 9:30 मंझनियाँ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 मंझनियाँ, 11:00 मंझनियाँ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HrBaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HrBaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hr_BA'; // Croatian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'sutra u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'u subotu u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'u nedjelju u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'u ponedjeljak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'u srijedu u 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'u četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'u petak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'u srijedu u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'u četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'u petak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'u subotu u 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'prošlu nedjelja u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'jučer u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'danas u 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'sutra u 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'jučer u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'jučer u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'prošli utorak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'prošli ponedjeljak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'prošlu nedjelja u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'prošle subote u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'prošli petak u 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'prošli četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'prošlu srijeda u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'prošli petak u 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'prije 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'prije 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'prije 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'prije 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'prije 1 minutu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'prije 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'prije 2 minute',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'prije 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'prije 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'prije 2 sata',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'prije 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'prije 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'prije 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'prije 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'prije 1 tjedan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'prije 1 tj.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'prije 2 tjedna',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'prije 2 tj.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'prije 1 mjesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'prije 1 mj.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'prije 2 mjeseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'prije 2 mj.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'prije 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'prije 1 god.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'prije 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'prije 2 god.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekundu poslije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. poslije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekundu prije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. prije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minutu 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 god. 3 mj. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'prije 5 mj.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'prije 2 god. 3 mj. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 tjedan 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tjedan 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tjedan 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'za 1 tjedan i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 tjedna 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d. 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HrHrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HrHrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hr_HR'; // Croatian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'sutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'u nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'u ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'prošlu nedjelju u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'jučer u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'sutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'jučer u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'jučer u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'prošli utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'prošli ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'prošlu nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'prošli petak u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'prošli četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'prošlu srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'prošli petak u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'prije 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'prije 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'prije 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'prije 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'prije 1 minutu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'prije 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'prije 2 minute',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'prije 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'prije 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'prije 2 sata',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'prije 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'prije 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'prije 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'prije 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'prije 1 tjedan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'prije 1 tj.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'prije 2 tjedna',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'prije 2 tj.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'prije 1 mjesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'prije 1 mj.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'prije 2 mjeseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'prije 2 mj.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'prije 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'prije 1 god.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'prije 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'prije 2 god.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekundu poslije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. poslije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekundu prije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. prije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minutu 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 god. 3 mj. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'prije 5 mj.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'prije 2 god. 3 mj. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 tjedan 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tjedan 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tjedan 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'za 1 tjedan i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 tjedna 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d. 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hr'; // Croatian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'sutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'u nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'u ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'prošlu nedjelju u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'jučer u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'sutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'jučer u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'jučer u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'prošli utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'prošli ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'prošlu nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'prošli petak u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'prošli četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'prošlu srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'prošli petak u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'prije 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'prije 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'prije 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'prije 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'prije 1 minutu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'prije 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'prije 2 minute',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'prije 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'prije 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'prije 2 sata',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'prije 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'prije 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'prije 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'prije 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'prije 1 tjedan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'prije 1 tj.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'prije 2 tjedna',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'prije 2 tj.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'prije 1 mjesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'prije 1 mj.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'prije 2 mjeseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'prije 2 mj.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'prije 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'prije 1 god.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'prije 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'prije 2 god.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekundu poslije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. poslije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekundu prije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. prije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minutu 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 god. 3 mj. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'prije 5 mj.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'prije 2 god. 3 mj. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 tjedan 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tjedan 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tjedan 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'za 1 tjedan i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 tjedna 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d. 3 sata',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HsbDeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HsbDeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hsb_DE'; // Upper Sorbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njedźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Póndźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wutora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Srjeda at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Štvórtk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Pjatk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wutora at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Srjeda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Štvórtk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Pjatk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Njedźela at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wutora at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wutora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Póndźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njedźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Pjatk at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Štvórtk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Srjeda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Pjatk at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 druhi ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 druhi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 druhi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 druhi ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 chwila ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 chwila ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 chwila ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 chwila ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hodźina ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 hodźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hodźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 hodźina ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dźeń ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dźeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dźeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dźeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tydźeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tydźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tydźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tydźeń ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 měsac ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 měsac ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 měsac ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 měsac ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 lěto ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 lěto ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 druhi from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 druhi from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 druhi after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 druhi after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 druhi before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 druhi before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 druhi',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 druhi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 druhi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 druhi',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 druhi from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 chwila 1 druhi',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 lěto 3 měsac 1 dźeń 1 druhi',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 lěto from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 měsac ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 lěto 3 měsac 1 dźeń 1 druhi ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tydźeń 10 hodźina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźeń 6 dźeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźeń 6 dźeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tydźeń and 6 dźeń from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tydźeń 1 hodźina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 hodźina from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dźeń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dźeń 3 hodźina',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HsbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HsbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hsb'; // Upper Sorbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njedźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Póndźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wutora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Srjeda at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Štvórtk at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Pjatk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wutora at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Srjeda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Štvórtk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Pjatk at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sobota at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Njedźela at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wutora at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wutora at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Póndźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njedźela at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sobota at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Pjatk at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Štvórtk at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Srjeda at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Pjatk at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 druhi ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 druhi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 druhi ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 druhi ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 chwila ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 chwila ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 chwila ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 chwila ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hodźina ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 hodźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hodźina ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 hodźina ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dźeń ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dźeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dźeń ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dźeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tydźeń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tydźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tydźeń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tydźeń ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 měsac ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 měsac ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 měsac ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 měsac ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 lěto ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 lěto ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 lěto ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 druhi from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 druhi from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 druhi after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 druhi after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 druhi before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 druhi before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 druhi',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 druhi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 druhi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 druhi',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 druhi from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 chwila 1 druhi',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 lěto 3 měsac 1 dźeń 1 druhi',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 lěto from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 měsac ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 lěto 3 měsac 1 dźeń 1 druhi ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tydźeń 10 hodźina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźeń 6 dźeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźeń 6 dźeń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tydźeń and 6 dźeń from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tydźeń 1 hodźina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 hodźina from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dźeń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dźeń 3 hodźina',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HtHtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HtHtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ht_HT'; // Haitian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanch at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lendi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'madi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mèkredi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jedi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'madi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mèkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dimanch at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'madi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last madi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lendi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dimanch at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last jedi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mèkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segonn ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segonn ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segonn ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segonn ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 lè ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 lè ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 lè ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 lè ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 jou ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 jou ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 jou ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 jou ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'semèn 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'semèn 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'semèn 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'semèn 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'mwa 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'mwa 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'mwa 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'mwa 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 lane ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 lane ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 lane ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 lane ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segonn from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segonn from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segonn after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segonn after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segonn before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segonn before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segonn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segonn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segonn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segonn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segonn from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 segonn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 lane mwa 3 1 jou 1 segonn',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 lane from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'mwa 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 lane mwa 3 1 jou 1 segonn ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'semèn 1 10 lè',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'semèn 1 6 jou',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'semèn 1 6 jou',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'semèn 1 and 6 jou from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'semèn 2 1 lè',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 lè from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jou',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 jou 3 lè',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ht'; // Haitian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimanch at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lendi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'madi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mèkredi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jedi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'madi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mèkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dimanch at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'madi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last madi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lendi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dimanch at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last jedi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mèkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segonn ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segonn ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segonn ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segonn ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 lè ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 lè ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 lè ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 lè ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 jou ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 jou ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 jou ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 jou ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'semèn 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'semèn 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'semèn 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'semèn 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'mwa 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'mwa 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'mwa 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'mwa 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 lane ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 lane ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 lane ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 lane ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segonn from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segonn from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segonn after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segonn after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segonn before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segonn before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segonn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segonn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segonn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segonn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segonn from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 segonn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 lane mwa 3 1 jou 1 segonn',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 lane from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'mwa 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 lane mwa 3 1 jou 1 segonn ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'semèn 1 10 lè',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'semèn 1 6 jou',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'semèn 1 6 jou',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'semèn 1 and 6 jou from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'semèn 2 1 lè',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 lè from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jou',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 jou 3 lè',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HuHuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HuHuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hu_HU'; // Hungarian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'holnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'szombaton 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vasárnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hétfőn 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kedden 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'szerdán 0:00-kor',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'csütörtökön 0:00-kor',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pénteken 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kedden 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'szerdán 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'csütörtökön 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pénteken 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'szombaton 0:00-kor',\n        // Carbon::now()->subDays(2)->calendar()\n        'múlt vasárnap 20:49-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tegnap 22:00-kor',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ma 10:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ma 2:00-kor',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'holnap 1:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kedden 0:00-kor',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'tegnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tegnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt kedden 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt hétfőn 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt vasárnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt szombaton 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt pénteken 0:00-kor',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'múlt csütörtökön 0:00-kor',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'múlt szerdán 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'múlt pénteken 0:00-kor',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 de CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 DE, 12:00 de',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 DE, 1:30 de',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 DE, 2:00 de',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 DE, 6:00 de',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 DE, 10:00 de',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 DU, 12:00 du',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 DU, 5:00 du',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 DU, 9:30 du',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 DU, 11:00 du',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 másodperce',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 másodperce',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 másodperce',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 másodperce',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 perce',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 perce',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 perce',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 perce',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 órája',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 órája',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 órája',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 órája',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 napja',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 napja',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 napja',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 napja',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 hete',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 hete',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 hete',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 hete',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 hónapja',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 hónapja',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 hónapja',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 hónapja',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 éve',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 éve',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 éve',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 éve',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 másodperc múlva',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 másodperc múlva',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 másodperccel később',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 másodperccel később',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 másodperccel korábban',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 másodperccel korábban',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 másodperc',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 másodperc',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 másodperc',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 másodperc',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 másodperc múlva',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 perc 1 másodperc',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 év 3 hónap 1 nap 1 másodperc',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 év múlva',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 hónapja',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 éve 3 hónapja 1 napja 1 másodperce',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 hét 10 óra',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hét 6 nap',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hét 6 nap',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 hét és 6 nap múlva',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 hét 1 óra',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 óra múlva',\n        // CarbonInterval::days(2)->forHumans()\n        '2 nap',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 nap 3 óra',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hu'; // Hungarian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'holnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'szombaton 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vasárnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hétfőn 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kedden 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'szerdán 0:00-kor',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'csütörtökön 0:00-kor',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pénteken 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kedden 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'szerdán 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'csütörtökön 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pénteken 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'szombaton 0:00-kor',\n        // Carbon::now()->subDays(2)->calendar()\n        'múlt vasárnap 20:49-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tegnap 22:00-kor',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ma 10:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ma 2:00-kor',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'holnap 1:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kedden 0:00-kor',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'tegnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tegnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt kedden 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt hétfőn 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt vasárnap 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt szombaton 0:00-kor',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'múlt pénteken 0:00-kor',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'múlt csütörtökön 0:00-kor',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'múlt szerdán 0:00-kor',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'múlt pénteken 0:00-kor',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 de CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 DE, 12:00 de',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 DE, 1:30 de',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 DE, 2:00 de',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 DE, 6:00 de',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 DE, 10:00 de',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 DU, 12:00 du',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 DU, 5:00 du',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 DU, 9:30 du',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 DU, 11:00 du',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 másodperce',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 másodperce',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 másodperce',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 másodperce',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 perce',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 perce',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 perce',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 perce',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 órája',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 órája',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 órája',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 órája',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 napja',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 napja',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 napja',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 napja',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 hete',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 hete',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 hete',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 hete',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 hónapja',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 hónapja',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 hónapja',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 hónapja',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 éve',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 éve',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 éve',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 éve',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 másodperc múlva',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 másodperc múlva',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 másodperccel később',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 másodperccel később',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 másodperccel korábban',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 másodperccel korábban',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 másodperc',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 másodperc',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 másodperc',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 másodperc',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 másodperc múlva',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 perc 1 másodperc',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 év 3 hónap 1 nap 1 másodperc',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 év múlva',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 hónapja',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 éve 3 hónapja 1 napja 1 másodperce',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 hét 10 óra',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hét 6 nap',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hét 6 nap',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 hét és 6 nap múlva',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 hét 1 óra',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 óra múlva',\n        // CarbonInterval::days(2)->forHumans()\n        '2 nap',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 nap 3 óra',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HyAmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HyAmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hy_AM'; // Armenian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'վաղը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'շաբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'կիրակի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'երկուշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'չորեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'հինգշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'չորեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'հինգշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'շաբաթ օրը ժամը 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'անցած կիրակի օրը ժամը 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'երեկ 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'այսօր 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'այսօր 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'վաղը 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'երեկ 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'երեկ 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'անցած երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'անցած երկուշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'անցած կիրակի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'անցած շաբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'անցած ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'անցած հինգշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'անցած չորեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'անցած ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1-ին 1-ին',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1-ին',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1-ին',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1-ին',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1-ին',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1-ին',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1-ին',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2-րդ',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40-րդ',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-րդ',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-րդ',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 գիշերվա CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 գիշերվա, 12:00 գիշերվա',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 գիշերվա, 1:30 գիշերվա',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 գիշերվա, 2:00 գիշերվա',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 առավոտվա, 6:00 առավոտվա',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 առավոտվա, 10:00 առավոտվա',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ցերեկվա, 12:00 ցերեկվա',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 երեկոյան, 5:00 երեկոյան',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 երեկոյան, 9:30 երեկոյան',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 երեկոյան, 11:00 երեկոյան',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 վայրկյան առաջ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1վրկ առաջ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 վայրկյան առաջ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2վրկ առաջ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 րոպե առաջ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1ր առաջ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 րոպե առաջ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2ր առաջ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 ժամ առաջ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1ժ առաջ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 ժամ առաջ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2ժ առաջ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 օր առաջ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1օր առաջ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 օր առաջ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2օր առաջ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 շաբաթ առաջ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1շ առաջ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 շաբաթ առաջ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2շ առաջ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ամիս առաջ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1ամ առաջ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ամիս առաջ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2ամ առաջ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 տարի առաջ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1տ առաջ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 տարի առաջ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2տ առաջ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 վայրկյան հետո',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1վրկ հետո',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 վայրկյան հետո',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1վրկ հետո',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 վայրկյան առաջ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1վրկ առաջ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 վայրկյան',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1վրկ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 վայրկյան',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2վրկ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1վրկ հետո',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 րոպե 1 վայրկյան',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2տ 3ամ 1օր 1վրկ',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 տարի հետո',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5ամ առաջ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2տ 3ամ 1օր 1վրկ առաջ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 շաբաթ 10 ժամ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 շաբաթ 6 օր',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 շաբաթ 6 օր',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 շաբաթ եւ 6 օր հետո',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 շաբաթ 1 ժամ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'ժամ հետո',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 օր',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1օր 3ժ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/HyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass HyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'hy'; // Armenian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'վաղը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'շաբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'կիրակի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'երկուշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'չորեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'հինգշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'չորեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'հինգշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'շաբաթ օրը ժամը 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'անցած կիրակի օրը ժամը 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'երեկ 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'այսօր 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'այսօր 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'վաղը 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'երեկ 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'երեկ 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'անցած երեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'անցած երկուշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'անցած կիրակի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'անցած շաբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'անցած ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'անցած հինգշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'անցած չորեքշաբթի օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'անցած ուրբաթ օրը ժամը 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1-ին 1-ին',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1-ին',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1-ին',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1-ին',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1-ին',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1-ին',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1-ին',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2-րդ',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40-րդ',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-րդ',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-րդ',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 գիշերվա CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 գիշերվա, 12:00 գիշերվա',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 գիշերվա, 1:30 գիշերվա',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 գիշերվա, 2:00 գիշերվա',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 առավոտվա, 6:00 առավոտվա',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 առավոտվա, 10:00 առավոտվա',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ցերեկվա, 12:00 ցերեկվա',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 երեկոյան, 5:00 երեկոյան',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 երեկոյան, 9:30 երեկոյան',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 երեկոյան, 11:00 երեկոյան',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 վայրկյան առաջ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1վրկ առաջ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 վայրկյան առաջ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2վրկ առաջ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 րոպե առաջ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1ր առաջ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 րոպե առաջ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2ր առաջ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 ժամ առաջ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1ժ առաջ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 ժամ առաջ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2ժ առաջ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 օր առաջ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1օր առաջ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 օր առաջ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2օր առաջ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 շաբաթ առաջ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1շ առաջ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 շաբաթ առաջ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2շ առաջ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ամիս առաջ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1ամ առաջ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ամիս առաջ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2ամ առաջ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 տարի առաջ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1տ առաջ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 տարի առաջ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2տ առաջ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 վայրկյանից',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1վրկից',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 վայրկյան հետո',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1վրկ հետո',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 վայրկյան առաջ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1վրկ առաջ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 վայրկյան',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1վրկ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 վայրկյան',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2վրկ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1վրկից',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 րոպե 1 վայրկյան',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2տ 3ամ 1օր 1վրկ',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 տարիից',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5ամ առաջ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2տ 3ամ 1օր 1վրկ առաջ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 շաբաթ 10 ժամ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 շաբաթ 6 օր',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 շաբաթ 6 օր',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 շաբաթ եւ 6 օրից',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 շաբաթ 1 ժամ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'ժամից',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 օր',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1օր 3ժ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/I18nTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass I18nTest extends LocalizationTestCase\n{\n    public const LOCALE = 'i18n'; // i18n\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '7 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '1 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '2 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '3 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '4 at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '5 at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '6 at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '3 at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '4 at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '5 at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '6 at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '7 at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 1 at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '3 at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 3 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 2 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 1 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 7 at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 6 at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 5 at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 4 at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 6 at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IaFrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IaFrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ia_FR'; // Interlingua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabbato at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dominica at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercuridi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jovedi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercuridi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jovedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabbato at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dominica at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dominica at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabbato at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last jovedi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mercuridi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secunda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 secunda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secunda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 secunda ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuscule ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuscule ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuscule ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuscule ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hora ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 hora ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hora ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 hora ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 die ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 die ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 die ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 die ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 septimana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 septimana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 septimana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 septimana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mense ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mense ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mense ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mense ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'anno 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'anno 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'anno 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'anno 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 secunda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 secunda from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secunda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 secunda after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secunda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 secunda before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 secunda from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuscule 1 secunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'anno 2 3 mense 1 die 1 secunda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'anno 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mense ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'anno 2 3 mense 1 die 1 secunda ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 septimana 10 hora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 septimana 6 die',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 septimana 6 die',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 septimana and 6 die from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 septimana 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 hora from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 die',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 die 3 hora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ia'; // Interlingua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabbato at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dominica at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercuridi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jovedi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercuridi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jovedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabbato at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dominica at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dominica at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabbato at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last jovedi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mercuridi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last venerdi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secunda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 secunda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secunda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 secunda ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuscule ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuscule ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuscule ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuscule ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hora ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 hora ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hora ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 hora ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 die ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 die ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 die ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 die ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 septimana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 septimana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 septimana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 septimana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mense ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mense ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mense ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mense ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'anno 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'anno 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'anno 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'anno 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 secunda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 secunda from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secunda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 secunda after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secunda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 secunda before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secunda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 secunda from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuscule 1 secunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'anno 2 3 mense 1 die 1 secunda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'anno 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mense ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'anno 2 3 mense 1 die 1 secunda ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 septimana 10 hora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 septimana 6 die',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 septimana 6 die',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 septimana and 6 die from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 septimana 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 hora from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 die',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 die 3 hora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IdIdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IdIdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'id_ID'; // Indonesian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Besok pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamis pukul 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamis pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Minggu lalu pukul 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kemarin pukul 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Besok pukul 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kemarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kemarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senin lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumat lalu pukul 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Kamis lalu pukul 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lalu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumat lalu pukul 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pagi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 pagi, 12:00 pagi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 pagi, 1:30 pagi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 pagi, 2:00 pagi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 pagi, 6:00 pagi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 pagi, 10:00 pagi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 siang, 12:00 siang',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 sore, 5:00 sore',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 malam, 9:30 malam',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 malam, 11:00 malam',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 detik yang lalu',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1dt yang lalu',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 detik yang lalu',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2dt yang lalu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menit yang lalu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1mnt yang lalu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menit yang lalu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2mnt yang lalu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lalu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1j yang lalu',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lalu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2j yang lalu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lalu',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1hr yang lalu',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lalu',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2hr yang lalu',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lalu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1mgg yang lalu',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lalu',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2mgg yang lalu',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lalu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1bln yang lalu',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lalu',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2bln yang lalu',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lalu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1thn yang lalu',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lalu',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2thn yang lalu',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 detik dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1dt dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 detik setelahnya',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1dt setelahnya',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 detik sebelumnya',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1dt sebelumnya',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 detik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1dt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 detik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2dt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1dt dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menit 1 detik',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2thn 3bln 1hr 1dt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5bln yang lalu',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2thn 3bln 1hr 1dt yang lalu',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1hr 3j',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'id'; // Indonesian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Besok pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamis pukul 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamis pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Minggu lalu pukul 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kemarin pukul 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Besok pukul 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kemarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kemarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senin lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumat lalu pukul 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Kamis lalu pukul 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lalu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumat lalu pukul 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pagi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 pagi, 12:00 pagi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 pagi, 1:30 pagi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 pagi, 2:00 pagi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 pagi, 6:00 pagi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 pagi, 10:00 pagi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 siang, 12:00 siang',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 sore, 5:00 sore',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 malam, 9:30 malam',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 malam, 11:00 malam',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 detik yang lalu',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1dt yang lalu',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 detik yang lalu',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2dt yang lalu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menit yang lalu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1mnt yang lalu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menit yang lalu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2mnt yang lalu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lalu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1j yang lalu',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lalu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2j yang lalu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lalu',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1hr yang lalu',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lalu',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2hr yang lalu',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lalu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1mgg yang lalu',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lalu',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2mgg yang lalu',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lalu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1bln yang lalu',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lalu',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2bln yang lalu',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lalu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1thn yang lalu',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lalu',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2thn yang lalu',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 detik dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1dt dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 detik setelahnya',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1dt setelahnya',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 detik sebelumnya',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1dt sebelumnya',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 detik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1dt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 detik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2dt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1dt dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menit 1 detik',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2thn 3bln 1hr 1dt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5bln yang lalu',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2thn 3bln 1hr 1dt yang lalu',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1hr 3j',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IgNgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IgNgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ig_NG'; // Igbo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'satọde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wenzde at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tọsde at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wenzde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tọsde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'satọde at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sọnde at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last satọde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tọsde at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last wenzde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sekọnd 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sekọnd 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sekọnd 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sekọnd 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minit 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minit 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minit 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minit 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'awa 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'awa 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'awa 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'awa 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ụbọchị 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ụbọchị 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ụbọchị 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ụbọchị 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'izu 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'izu 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'izu 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'izu 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'önwa 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'önwa 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'önwa 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'önwa 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'afo 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'afo 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'afo 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'afo 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekọnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sekọnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekọnd 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sekọnd 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekọnd 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sekọnd 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekọnd 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sekọnd 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekọnd 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sekọnd 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sekọnd 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minit 1 sekọnd 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'afo 2 önwa 3 ụbọchị 1 sekọnd 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'afo 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'önwa 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'afo 2 önwa 3 ụbọchị 1 sekọnd 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'izu 1 awa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'izu 1 ụbọchị 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'izu 1 ụbọchị 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'izu 1 and ụbọchị 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'izu 2 awa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'awa 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ụbọchị 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ụbọchị 1 awa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ig'; // Igbo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'satọde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wenzde at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tọsde at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wenzde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tọsde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'satọde at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sọnde at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tuzde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sọnde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last satọde at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tọsde at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last wenzde at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last fraịde at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sekọnd 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sekọnd 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sekọnd 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sekọnd 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minit 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minit 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minit 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minit 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'awa 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'awa 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'awa 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'awa 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ụbọchị 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ụbọchị 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ụbọchị 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ụbọchị 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'izu 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'izu 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'izu 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'izu 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'önwa 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'önwa 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'önwa 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'önwa 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'afo 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'afo 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'afo 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'afo 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekọnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sekọnd 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekọnd 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sekọnd 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekọnd 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sekọnd 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekọnd 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sekọnd 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekọnd 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sekọnd 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sekọnd 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minit 1 sekọnd 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'afo 2 önwa 3 ụbọchị 1 sekọnd 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'afo 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'önwa 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'afo 2 önwa 3 ụbọchị 1 sekọnd 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'izu 1 awa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'izu 1 ụbọchị 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'izu 1 ụbọchị 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'izu 1 and ụbọchị 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'izu 2 awa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'awa 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ụbọchị 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ụbọchị 1 awa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ii'; // SichuanYi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꆏꊂꃘ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꑭꆏꑍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꆏꊂꋍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꆏꊂꑍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꆏꊂꌕ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ꆏꊂꇖ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ꆏꊂꉬ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꆏꊂꑍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꆏꊂꌕ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꆏꊂꇖ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꆏꊂꉬ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꆏꊂꃘ at 12:00 ꎸꄑ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ꑭꆏꑍ at 8:49 ꁯꋒ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ꁯꋒ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꆏꊂꑍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꆏꊂꑍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꆏꊂꋍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꑭꆏꑍ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꆏꊂꃘ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꆏꊂꉬ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ꆏꊂꇖ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ꆏꊂꌕ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ꆏꊂꉬ at 12:00 ꎸꄑ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ꎸꄑ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ꎸꄑ, 12:00 ꎸꄑ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ꎸꄑ, 1:30 ꎸꄑ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ꎸꄑ, 2:00 ꎸꄑ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ꎸꄑ, 6:00 ꎸꄑ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ꎸꄑ, 10:00 ꎸꄑ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ꁯꋒ, 12:00 ꁯꋒ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ꁯꋒ, 5:00 ꁯꋒ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ꁯꋒ, 9:30 ꁯꋒ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ꁯꋒ, 11:00 ꁯꋒ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ꇅ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ꇅ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ꇅ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ꇅ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ꀄꊭ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ꀄꊭ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ꀄꊭ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ꀄꊭ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ꄮꈉ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ꄮꈉ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ꄮꈉ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ꄮꈉ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ꏜ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ꏜ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ꏜ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ꏜ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ꏃ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ꏃ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ꏃ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ꏃ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ꆪ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ꆪ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ꆪ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ꆪ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ꒉ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ꒉ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ꒉ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ꒉ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ꇅ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ꇅ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ꇅ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ꇅ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ꇅ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ꇅ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ꇅ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ꇅ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ꇅ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ꇅ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ꇅ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ꀄꊭ 1 ꇅ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ꒉ 3 ꆪ 1 ꏜ 1 ꇅ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ꒉ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ꆪ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ꒉ 3 ꆪ 1 ꏜ 1 ꇅ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ꏃ 10 ꄮꈉ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ꏃ 6 ꏜ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ꏃ 6 ꏜ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ꏃ and 6 ꏜ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ꏃ 1 ꄮꈉ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ꄮꈉ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ꏜ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ꏜ 3 ꄮꈉ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IkCaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IkCaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ik_CA'; // Inupiaq\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maqinġuoiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minġuiqsioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Savałłiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qitchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Sisamiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qitchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sisamiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maqinġuoiq at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Minġuiqsioiq at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Savałłiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Minġuiqsioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Maqinġuoiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Sisamiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Qitchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 iġñiq ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 iġñiq ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 iġñiq ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 iġñiq ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 Siḷa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 Siḷa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 Siḷa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 Siḷa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 siqiñiq ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 siqiñiq ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 siqiñiq ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 siqiñiq ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tatqiat ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tatqiat ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tatqiat ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tatqiat ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Tatqiat ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Tatqiat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Tatqiat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Tatqiat ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ukiuq ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ukiuq ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ukiuq ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ukiuq ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 iġñiq from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 iġñiq from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 iġñiq after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 iġñiq after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 iġñiq before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 iġñiq before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 iġñiq',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 iġñiq',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 iġñiq',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 iġñiq',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 iġñiq from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 iġñiq',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ukiuq 3 Tatqiat 1 siqiñiq 1 iġñiq',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ukiuq from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Tatqiat ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ukiuq 3 Tatqiat 1 siqiñiq 1 iġñiq ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tatqiat 10 Siḷa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tatqiat 6 siqiñiq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tatqiat 6 siqiñiq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tatqiat and 6 siqiñiq from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tatqiat 1 Siḷa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 Siḷa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 siqiñiq',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 siqiñiq 3 Siḷa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ik'; // Inupiaq\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maqinġuoiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minġuiqsioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Savałłiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qitchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Sisamiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qitchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sisamiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maqinġuoiq at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Minġuiqsioiq at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ilaqtchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Savałłiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Minġuiqsioiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Maqinġuoiq at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Sisamiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Qitchiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Tallimmiioiq at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 iġñiq ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 iġñiq ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 iġñiq ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 iġñiq ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 Siḷa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 Siḷa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 Siḷa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 Siḷa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 siqiñiq ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 siqiñiq ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 siqiñiq ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 siqiñiq ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tatqiat ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tatqiat ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tatqiat ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tatqiat ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Tatqiat ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Tatqiat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Tatqiat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Tatqiat ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ukiuq ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ukiuq ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ukiuq ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ukiuq ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 iġñiq from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 iġñiq from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 iġñiq after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 iġñiq after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 iġñiq before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 iġñiq before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 iġñiq',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 iġñiq',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 iġñiq',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 iġñiq',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 iġñiq from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 iġñiq',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ukiuq 3 Tatqiat 1 siqiñiq 1 iġñiq',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ukiuq from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Tatqiat ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ukiuq 3 Tatqiat 1 siqiñiq 1 iġñiq ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tatqiat 10 Siḷa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tatqiat 6 siqiñiq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tatqiat 6 siqiñiq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tatqiat and 6 siqiñiq from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tatqiat 1 Siḷa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 Siḷa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 siqiñiq',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 siqiñiq 3 Siḷa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/InTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass InTest extends LocalizationTestCase\n{\n    public const LOCALE = 'in'; // in\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Besok pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamis pukul 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamis pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Minggu lalu pukul 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kemarin pukul 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Besok pukul 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kemarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kemarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senin lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lalu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumat lalu pukul 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Kamis lalu pukul 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lalu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumat lalu pukul 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pagi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 pagi, 12:00 pagi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 pagi, 1:30 pagi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 pagi, 2:00 pagi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 pagi, 6:00 pagi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 pagi, 10:00 pagi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 siang, 12:00 siang',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 sore, 5:00 sore',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 malam, 9:30 malam',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 malam, 11:00 malam',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 detik yang lalu',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1dt yang lalu',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 detik yang lalu',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2dt yang lalu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menit yang lalu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1mnt yang lalu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menit yang lalu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2mnt yang lalu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lalu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1j yang lalu',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lalu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2j yang lalu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lalu',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1hr yang lalu',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lalu',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2hr yang lalu',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lalu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1mgg yang lalu',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lalu',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2mgg yang lalu',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lalu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1bln yang lalu',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lalu',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2bln yang lalu',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lalu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1thn yang lalu',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lalu',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2thn yang lalu',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 detik dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1dt dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 detik setelahnya',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1dt setelahnya',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 detik sebelumnya',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1dt sebelumnya',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 detik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1dt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 detik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2dt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1dt dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menit 1 detik',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2thn 3bln 1hr 1dt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5bln yang lalu',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2thn 3bln 1hr 1dt yang lalu',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1hr 3j',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IsIsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IsIsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'is_IS'; // Icelandic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'laugardaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mánudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miðvikudaginn at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'fimmtudaginn at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'föstudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miðvikudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fimmtudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'föstudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'laugardaginn at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sunnudaginn at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mánudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sunnudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last laugardaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last föstudaginn at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last fimmtudaginn at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last miðvikudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last föstudaginn at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 fh CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 fh, 12:00 fh',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 fh, 1:30 fh',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 fh, 2:00 fh',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 fh, 6:00 fh',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 fh, 10:00 fh',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 eh, 12:00 eh',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 eh, 5:00 eh',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 eh, 9:30 eh',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 eh, 11:00 eh',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekúnda síðan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekúnda síðan',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekúndur síðan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekúndur síðan',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mínúta síðan',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mínúta síðan',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mínútur síðan',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mínútur síðan',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 klukkutími síðan',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 klukkutími síðan',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 klukkutímar síðan',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 klukkutímar síðan',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dagur síðan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dagur síðan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagar síðan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dagar síðan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vika síðan',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vika síðan',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vikur síðan',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vikur síðan',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mánuður síðan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mánuður síðan',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mánuðir síðan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mánuðir síðan',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ár síðan',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ár síðan',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ár síðan',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ár síðan',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekúnda síðan',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekúnda síðan',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekúnda eftir',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekúnda eftir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekúnda fyrir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekúnda fyrir',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekúnda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekúnda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekúndur',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekúndur',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekúnda síðan',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mínúta 1 sekúnda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ár 3 mánuðir 1 dagur 1 sekúnda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ár síðan',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mánuðir síðan',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ár 3 mánuðir 1 dagur 1 sekúnda síðan',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vika 10 klukkutímar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vika og 6 dagar síðan',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vikur 1 klukkutími',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 klukkutími síðan',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dagur 3 klukkutímar',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'is'; // Icelandic\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'laugardaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sunnudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mánudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miðvikudaginn at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'fimmtudaginn at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'föstudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miðvikudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fimmtudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'föstudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'laugardaginn at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sunnudaginn at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last þriðjudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mánudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sunnudaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last laugardaginn at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last föstudaginn at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last fimmtudaginn at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last miðvikudaginn at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last föstudaginn at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 fh CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 fh, 12:00 fh',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 fh, 1:30 fh',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 fh, 2:00 fh',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 fh, 6:00 fh',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 fh, 10:00 fh',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 eh, 12:00 eh',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 eh, 5:00 eh',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 eh, 9:30 eh',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 eh, 11:00 eh',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekúnda síðan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekúnda síðan',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekúndur síðan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekúndur síðan',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mínúta síðan',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mínúta síðan',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mínútur síðan',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mínútur síðan',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 klukkutími síðan',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 klukkutími síðan',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 klukkutímar síðan',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 klukkutímar síðan',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dagur síðan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dagur síðan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagar síðan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dagar síðan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vika síðan',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vika síðan',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vikur síðan',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vikur síðan',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mánuður síðan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mánuður síðan',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mánuðir síðan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mánuðir síðan',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ár síðan',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ár síðan',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ár síðan',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ár síðan',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekúnda síðan',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekúnda síðan',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekúnda eftir',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekúnda eftir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekúnda fyrir',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekúnda fyrir',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekúnda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekúnda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekúndur',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekúndur',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekúnda síðan',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mínúta 1 sekúnda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ár 3 mánuðir 1 dagur 1 sekúnda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ár síðan',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mánuðir síðan',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ár 3 mánuðir 1 dagur 1 sekúnda síðan',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vika 10 klukkutímar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vika 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vika og 6 dagar síðan',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vikur 1 klukkutími',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 klukkutími síðan',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dagur 3 klukkutímar',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ItChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ItChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'it_CH'; // Italian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domani alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'la scorsa domenica alle 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Oggi alle 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Oggi alle 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Domani alle 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'la scorsa domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'lo scorso giovedì alle 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'lo scorso mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secondo fa',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secondi fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. fa',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora fa',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 h fa',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore fa',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 h fa',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno fa',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 g fa',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorni fa',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gg fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settimana fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 set. fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settimane fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 set. fa',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese fa',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese fa',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mesi fa',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mesi fa',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anno fa',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anno fa',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anni fa',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anni fa',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tra 1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tra 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secondo dopo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sec. dopo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secondo prima',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sec. prima',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tra 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 secondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anni 3 mesi 1 g 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'tra 3 anni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mesi fa',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anni 3 mesi 1 g 1 sec. fa',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settimana 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'tra 1 settimana e 6 giorni',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settimane 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in un\\'ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 g 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ItItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ItItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'it_IT'; // Italian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domani alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'la scorsa domenica alle 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Oggi alle 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Oggi alle 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Domani alle 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'la scorsa domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'lo scorso giovedì alle 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'lo scorso mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secondo fa',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secondi fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. fa',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora fa',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 h fa',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore fa',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 h fa',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno fa',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 g fa',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorni fa',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gg fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settimana fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 set. fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settimane fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 set. fa',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese fa',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese fa',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mesi fa',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mesi fa',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anno fa',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anno fa',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anni fa',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anni fa',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tra 1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tra 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secondo dopo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sec. dopo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secondo prima',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sec. prima',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tra 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 secondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anni 3 mesi 1 g 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'tra 3 anni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mesi fa',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anni 3 mesi 1 g 1 sec. fa',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settimana 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'tra 1 settimana e 6 giorni',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settimane 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in un\\'ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 g 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ItSmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ItSmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'it_SM'; // Italian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domani alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'la scorsa domenica alle 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Oggi alle 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Oggi alle 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Domani alle 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'la scorsa domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'lo scorso giovedì alle 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'lo scorso mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secondo fa',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secondi fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. fa',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora fa',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 h fa',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore fa',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 h fa',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno fa',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 g fa',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorni fa',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gg fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settimana fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 set. fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settimane fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 set. fa',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese fa',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese fa',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mesi fa',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mesi fa',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anno fa',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anno fa',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anni fa',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anni fa',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tra 1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tra 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secondo dopo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sec. dopo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secondo prima',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sec. prima',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tra 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 secondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anni 3 mesi 1 g 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'tra 3 anni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mesi fa',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anni 3 mesi 1 g 1 sec. fa',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settimana 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'tra 1 settimana e 6 giorni',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settimane 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in un\\'ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 g 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'it'; // Italian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domani alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'la scorsa domenica alle 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Oggi alle 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Oggi alle 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Domani alle 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'la scorsa domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'lo scorso giovedì alle 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'lo scorso mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secondo fa',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secondi fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. fa',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora fa',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 h fa',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore fa',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 h fa',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno fa',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 g fa',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorni fa',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gg fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settimana fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 set. fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settimane fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 set. fa',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese fa',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese fa',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mesi fa',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mesi fa',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anno fa',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anno fa',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anni fa',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anni fa',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tra 1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tra 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secondo dopo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sec. dopo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secondo prima',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sec. prima',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tra 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 secondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anni 3 mesi 1 g 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'tra 3 anni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mesi fa',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anni 3 mesi 1 g 1 sec. fa',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settimana 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'tra 1 settimana e 6 giorni',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settimane 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in un\\'ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 g 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ItVaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ItVaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'it_VA'; // Italian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domani alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'giovedì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venerdì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabato alle 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'la scorsa domenica alle 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Oggi alle 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Oggi alle 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Domani alle 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì alle 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ieri alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso martedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso lunedì alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'la scorsa domenica alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso sabato alle 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'lo scorso giovedì alle 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'lo scorso mercoledì alle 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lo scorso venerdì alle 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secondo fa',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secondi fa',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto fa',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti fa',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. fa',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora fa',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 h fa',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore fa',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 h fa',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno fa',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 g fa',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorni fa',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gg fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settimana fa',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 set. fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settimane fa',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 set. fa',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese fa',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese fa',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mesi fa',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mesi fa',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anno fa',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anno fa',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anni fa',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anni fa',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tra 1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tra 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secondo dopo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sec. dopo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secondo prima',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sec. prima',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tra 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 secondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anni 3 mesi 1 g 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'tra 3 anni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mesi fa',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anni 3 mesi 1 g 1 sec. fa',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settimana 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settimana 6 giorni',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'tra 1 settimana e 6 giorni',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settimane 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in un\\'ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 g 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IuCaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IuCaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'iu_CA'; // Inuktitut\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓯᕙᑖᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓈᑦᑎᖑᔭᕐᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᐱᖓᓲᓕᖅᓯᐅᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ᕿᑎᖅᑰᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᐱᖓᓲᓕᖅᓯᐅᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᕿᑎᖅᑰᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᓯᕙᑖᕕᒃ at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ᓈᑦᑎᖑᔭᕐᕕᒃ at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓇᒡᒐᔾᔭᐅ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓈᑦᑎᖑᔭᕐᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓯᕙᑖᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ᕿᑎᖅᑰᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ᐱᖓᓲᓕᖅᓯᐅᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 marluk ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 marluk ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 marluk ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 marluk ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 titiqqaralaaq ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 titiqqaralaaq ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 titiqqaralaaq ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 titiqqaralaaq ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ikarraq ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ikarraq ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ikarraq ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ikarraq ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ulloq ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ulloq ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ulloq ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ulloq ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sapaatip akunnera ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sapaatip akunnera ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sapaatip akunnera ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sapaatip akunnera ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 qaammat ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 qaammat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 qaammat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 qaammat ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 marluk from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 marluk from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 marluk after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 marluk after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 marluk before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 marluk before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 marluk',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 marluk',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 marluk',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 marluk',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 marluk from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 titiqqaralaaq 1 marluk',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ᐅᑭᐅᖅ 3 qaammat 1 ulloq 1 marluk',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ᐅᑭᐅᖅ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 qaammat ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ᐅᑭᐅᖅ 3 qaammat 1 ulloq 1 marluk ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sapaatip akunnera 10 ikarraq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sapaatip akunnera 6 ulloq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sapaatip akunnera 6 ulloq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sapaatip akunnera and 6 ulloq from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sapaatip akunnera 1 ikarraq',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ikarraq from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ulloq',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ulloq 3 ikarraq',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'iu'; // Inuktitut\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓯᕙᑖᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓈᑦᑎᖑᔭᕐᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ᐱᖓᓲᓕᖅᓯᐅᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ᕿᑎᖅᑰᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᐱᖓᓲᓕᖅᓯᐅᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᕿᑎᖅᑰᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᓯᕙᑖᕕᒃ at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ᓈᑦᑎᖑᔭᕐᕕᒃ at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓇᒡᒐᔾᔭᐅ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓈᑦᑎᖑᔭᕐᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᓯᕙᑖᕕᒃ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ᕿᑎᖅᑰᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ᐱᖓᓲᓕᖅᓯᐅᑦ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ᐅᓪᓗᕈᓘᑐᐃᓇᖅ at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 marluk ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 marluk ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 marluk ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 marluk ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 titiqqaralaaq ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 titiqqaralaaq ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 titiqqaralaaq ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 titiqqaralaaq ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ikarraq ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ikarraq ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ikarraq ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ikarraq ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ulloq ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ulloq ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ulloq ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ulloq ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sapaatip akunnera ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sapaatip akunnera ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sapaatip akunnera ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sapaatip akunnera ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 qaammat ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 qaammat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 qaammat ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 qaammat ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ᐅᑭᐅᖅ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 marluk from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 marluk from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 marluk after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 marluk after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 marluk before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 marluk before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 marluk',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 marluk',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 marluk',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 marluk',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 marluk from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 titiqqaralaaq 1 marluk',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ᐅᑭᐅᖅ 3 qaammat 1 ulloq 1 marluk',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ᐅᑭᐅᖅ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 qaammat ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ᐅᑭᐅᖅ 3 qaammat 1 ulloq 1 marluk ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sapaatip akunnera 10 ikarraq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sapaatip akunnera 6 ulloq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sapaatip akunnera 6 ulloq',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sapaatip akunnera and 6 ulloq from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sapaatip akunnera 1 ikarraq',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ikarraq from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ulloq',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ulloq 3 ikarraq',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/IwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass IwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'iw'; // iw\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'יום שבת at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'יום ראשון at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'יום שני at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'יום שלישי at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'יום רביעי at 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'יום חמישי at 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'יום שישי at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'יום שלישי at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'יום רביעי at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'יום חמישי at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'יום שישי at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'יום שבת at 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last יום ראשון at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'יום שלישי at 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last יום שלישי at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last יום שני at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last יום ראשון at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last יום שבת at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last יום שישי at 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last יום חמישי at 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last יום רביעי at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last יום שישי at 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 לפנה״צ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 לפנה״צ, 12:00 לפנה״צ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 לפנה״צ, 1:30 לפנה״צ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 לפנה״צ, 2:00 לפנה״צ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 לפנה״צ, 6:00 לפנה״צ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 לפנה״צ, 10:00 לפנה״צ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 אחה״צ, 12:00 אחה״צ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 אחה״צ, 5:00 אחה״צ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 אחה״צ, 9:30 אחה״צ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 אחה״צ, 11:00 אחה״צ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'לפני 1 שניה',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'לפני 1 שניה',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'לפני 2 שניה',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'לפני 2 שניה',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'לפני 1 דקה',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'לפני 1 דקה',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'לפני 2 דקה',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'לפני 2 דקה',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'לפני 1 שעה',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'לפני 1 שעה',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'לפני 2 שעה',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'לפני 2 שעה',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'לפני 1 יום',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'לפני 1 יום',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'לפני 2 יום',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'לפני 2 יום',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'לפני 1 שבוע',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'לפני 1 שבוע',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'לפני 2 שבוע',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'לפני 2 שבוע',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'לפני 1 חודש',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'לפני 1 חודש',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'לפני 2 חודש',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'לפני 2 חודש',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'לפני 1 שנה',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'לפני 1 שנה',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'לפני 2 שנה',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'לפני 2 שנה',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'בעוד 1 שניה',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'בעוד 1 שניה',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 שניה after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 שניה after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 שניה before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 שניה before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 שניה',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 שניה',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 שניה',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 שניה',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'בעוד 1 שניה',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 דקה 1 שניה',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 שנה 3 חודש 1 יום 1 שניה',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'בעוד 3 שנה',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'לפני 5 חודש',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'לפני 2 שנה 3 חודש 1 יום 1 שניה',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 שבוע 10 שעה',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 שבוע 6 יום',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 שבוע 6 יום',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'בעוד 1 שבוע and 6 יום',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 שבוע 1 שעה',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'בעוד 1 שעה',\n        // CarbonInterval::days(2)->forHumans()\n        '2 יום',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 יום 3 שעה',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/JaJpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass JaJpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ja_JP'; // Japanese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '明日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '土曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週日曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週月曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週火曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週水曜日 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '来週木曜日 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '来週金曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '火曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '水曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '木曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '金曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '土曜日 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        '日曜日 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '昨日 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '今日 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '今日 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        '明日 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '火曜日 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '昨日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '昨日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '火曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '月曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '日曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '先週土曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '先週金曜日 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '先週木曜日 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '先週水曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '先週金曜日 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1日 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2日 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3日 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4日 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5日 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6日 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7日 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11日 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40日',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41日',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100日',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 午前 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 午前, 12:00 午前',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 午前, 1:30 午前',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 午前, 2:00 午前',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 午前, 6:00 午前',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 午前, 10:00 午前',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 午後, 12:00 午後',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 午後, 5:00 午後',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 午後, 9:30 午後',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 午後, 11:00 午後',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1秒前',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1秒前',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2秒前',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2秒前',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1分前',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1分前',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2分前',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2分前',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1時間前',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1時間前',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2時間前',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2時間前',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1日前',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1日前',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2日前',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2日前',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1週間前',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1週間前',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2週間前',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2週間前',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1ヶ月前',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1ヶ月前',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2ヶ月前',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2ヶ月前',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1年前',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1年前',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2年前',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2年前',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1秒後',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1秒後',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1秒後',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1秒後',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1秒前',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1秒前',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1秒',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2秒',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1秒後',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1分 1秒',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2年 3ヶ月 1日 1秒',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3年後',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5ヶ月前',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2年 3ヶ月 1日 1秒前',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1週間 10時間',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1週間 6日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1週間 6日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1週間、6日後',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2週間 1時間',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1時間後',\n        // CarbonInterval::days(2)->forHumans()\n        '2日',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1日 3時間',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/JaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse Carbon\\Carbon;\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass JaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ja'; // Japanese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '明日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '土曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週日曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週月曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週火曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '来週水曜日 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '来週木曜日 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '来週金曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '火曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '水曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '木曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '金曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '土曜日 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        '日曜日 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '昨日 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '今日 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '今日 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        '明日 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '火曜日 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '昨日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '昨日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '火曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '月曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '日曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '先週土曜日 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '先週金曜日 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '先週木曜日 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '先週水曜日 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '先週金曜日 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1日 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2日 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3日 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4日 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5日 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6日 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7日 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11日 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40日',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41日',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100日',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 午前 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 午前, 12:00 午前',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 午前, 1:30 午前',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 午前, 2:00 午前',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 午前, 6:00 午前',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 午前, 10:00 午前',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 午後, 12:00 午後',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 午後, 5:00 午後',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 午後, 9:30 午後',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 午後, 11:00 午後',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1秒前',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1秒前',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2秒前',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2秒前',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1分前',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1分前',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2分前',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2分前',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1時間前',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1時間前',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2時間前',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2時間前',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1日前',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1日前',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2日前',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2日前',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1週間前',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1週間前',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2週間前',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2週間前',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1ヶ月前',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1ヶ月前',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2ヶ月前',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2ヶ月前',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1年前',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1年前',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2年前',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2年前',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1秒後',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1秒後',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1秒後',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1秒後',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1秒前',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1秒前',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1秒',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2秒',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2秒',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1秒後',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1分 1秒',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2年 3ヶ月 1日 1秒',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3年後',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5ヶ月前',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2年 3ヶ月 1日 1秒前',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1週間 10時間',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1週間 6日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1週間 6日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1週間、6日後',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2週間 1時間',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1時間後',\n        // CarbonInterval::days(2)->forHumans()\n        '2日',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1日 3時間',\n    ];\n\n    public function testYearWithJapaneseNumbers()\n    {\n        $this->assertSame('二千十五', Carbon::parse('2015-12-23 00:00:00')->locale('ja')->getAltNumber('year'));\n    }\n}\n"
  },
  {
    "path": "tests/Localization/JgoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass JgoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'jgo'; // Ngomba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/JmcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass JmcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'jmc'; // Machame\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapilyi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatanu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapilyi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapilyi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 utuko CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 utuko, 12:00 utuko',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 utuko, 1:30 utuko',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 utuko, 2:00 utuko',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 utuko, 6:00 utuko',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 utuko, 10:00 utuko',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kyiukonyi, 12:00 kyiukonyi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kyiukonyi, 5:00 kyiukonyi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kyiukonyi, 9:30 kyiukonyi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kyiukonyi, 11:00 kyiukonyi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/JvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass JvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'jv'; // Javanese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mbenjang pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Septu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senen pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Seloso pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rebu pukul 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kemis pukul 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jemuwah pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Seloso pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rebu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kemis pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jemuwah pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Septu pukul 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Minggu kepengker pukul 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kala wingi pukul 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Dinten puniko pukul 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dinten puniko pukul 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Mbenjang pukul 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Seloso pukul 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kala wingi pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kala wingi pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Seloso kepengker pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Senen kepengker pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Minggu kepengker pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Septu kepengker pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jemuwah kepengker pukul 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Kemis kepengker pukul 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rebu kepengker pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jemuwah kepengker pukul 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 enjing CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 enjing, 12:00 enjing',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 enjing, 1:30 enjing',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 enjing, 2:00 enjing',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 enjing, 6:00 enjing',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 enjing, 10:00 enjing',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 siyang, 12:00 siyang',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 sonten, 5:00 sonten',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ndalu, 9:30 ndalu',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ndalu, 11:00 ndalu',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 detik ingkang kepengker',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 detik ingkang kepengker',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 detik ingkang kepengker',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 detik ingkang kepengker',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menit ingkang kepengker',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 menit ingkang kepengker',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menit ingkang kepengker',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 menit ingkang kepengker',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam ingkang kepengker',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 jam ingkang kepengker',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam ingkang kepengker',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 jam ingkang kepengker',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dina ingkang kepengker',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dina ingkang kepengker',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dina ingkang kepengker',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dina ingkang kepengker',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu ingkang kepengker',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 minggu ingkang kepengker',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu ingkang kepengker',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 minggu ingkang kepengker',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 wulan ingkang kepengker',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 wulan ingkang kepengker',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 wulan ingkang kepengker',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 wulan ingkang kepengker',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taun ingkang kepengker',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taun ingkang kepengker',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taun ingkang kepengker',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taun ingkang kepengker',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'wonten ing 1 detik',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'wonten ing 1 detik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 detik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 detik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 detik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 detik',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'wonten ing 1 detik',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menit 1 detik',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taun 3 wulan 1 dina 1 detik',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'wonten ing 3 taun',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 wulan ingkang kepengker',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taun 3 wulan 1 dina 1 detik ingkang kepengker',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 dina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 dina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wonten ing 1 minggu lan 6 dina',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'wonten ing setunggal jam',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dina',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dina 3 jam',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KaGeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KaGeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ka_GE'; // Georgian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'ხვალ, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'შაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'კვირას, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'შემდეგ ორშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'შემდეგ სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'შემდეგ ოთხშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'შემდეგ ხუთშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'შემდეგ პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'შემდეგ სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'შემდეგ ოთხშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'შემდეგ ხუთშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'შემდეგ პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'შემდეგ შაბათს, 00:00-ზე',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'წინა კვირას, 20:49-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'გუშინ, 22:00-ზე',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'დღეს, 10:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'დღეს, 02:00-ზე',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'ხვალ, 01:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'შემდეგ სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'გუშინ, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'გუშინ, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'წინა სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'წინა ორშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'წინა კვირას, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'წინა შაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'წინა პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'წინა ხუთშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'წინა ოთხშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'წინა პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1-ლი 1-ლი 1-ლი 1-ლი 1-ლი',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        'მე-2 1-ლი',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        'მე-3 1-ლი',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        'მე-4 1-ლი',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        'მე-5 1-ლი',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        'მე-6 1-ლი',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        'მე-7 1-ლი',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        'მე-11 მე-2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        'მე-40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41-ე',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        'მე-100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 ღამის CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ღამის, 12:00 ღამის',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ღამის, 1:30 ღამის',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ღამის, 2:00 ღამის',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 დილის, 6:00 დილის',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 დილის, 10:00 დილის',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 შუადღის, 12:00 შუადღის',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 საღამოს, 5:00 საღამოს',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 საღამოს, 9:30 საღამოს',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ღამის, 11:00 ღამის',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 წამის წინ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 წამის წინ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 წამის წინ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 წამის წინ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 წუთის წინ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 წუთის წინ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 წუთის წინ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 წუთის წინ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 საათის წინ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 საათის წინ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 საათის წინ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 საათის წინ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 დღის წინ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 დღის წინ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 დღის წინ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 დღის წინ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 კვირის წინ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 კვირის წინ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 კვირის წინ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 კვირის წინ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 თვის წინ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 თვის წინ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 თვის წინ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 თვის წინ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 წლის წინ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 წლის წინ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 წლის წინ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 წლის წინ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 წამში',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 წამში',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 წამის შემდეგ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 წამის შემდეგ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 წამით ადრე',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 წამით ადრე',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 წამი',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 წამი',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 წამი',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 წამი',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 წამში',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 წუთი 1 წამი',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 წელი 3 თვე 1 დღე 1 წამი',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 წელიწადში',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 თვის წინ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 წლის 3 თვის 1 დღის 1 წამის წინ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 კვირა 10 საათი',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 კვირა 6 დღე',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 კვირა 6 დღე',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 კვირაში და 6 დღეში',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 კვირა 1 საათი',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'საათში',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 დღე',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 დღე 3 საათი',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ka'; // Georgian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'ხვალ, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'შაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'კვირას, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'შემდეგ ორშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'შემდეგ სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'შემდეგ ოთხშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'შემდეგ ხუთშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'შემდეგ პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'შემდეგ სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'შემდეგ ოთხშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'შემდეგ ხუთშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'შემდეგ პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'შემდეგ შაბათს, 00:00-ზე',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'წინა კვირას, 20:49-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'გუშინ, 22:00-ზე',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'დღეს, 10:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'დღეს, 02:00-ზე',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'ხვალ, 01:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'შემდეგ სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'გუშინ, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'გუშინ, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'წინა სამშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'წინა ორშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'წინა კვირას, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'წინა შაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'წინა პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'წინა ხუთშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'წინა ოთხშაბათს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'წინა პარასკევს, 00:00-ზე',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1-ლი 1-ლი 1-ლი 1-ლი 1-ლი',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        'მე-2 1-ლი',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        'მე-3 1-ლი',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        'მე-4 1-ლი',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        'მე-5 1-ლი',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        'მე-6 1-ლი',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        'მე-7 1-ლი',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        'მე-11 მე-2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        'მე-40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41-ე',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        'მე-100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 ღამის CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ღამის, 12:00 ღამის',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ღამის, 1:30 ღამის',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ღამის, 2:00 ღამის',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 დილის, 6:00 დილის',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 დილის, 10:00 დილის',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 შუადღის, 12:00 შუადღის',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 საღამოს, 5:00 საღამოს',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 საღამოს, 9:30 საღამოს',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ღამის, 11:00 ღამის',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 წამის წინ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 წამის წინ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 წამის წინ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 წამის წინ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 წუთის წინ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 წუთის წინ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 წუთის წინ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 წუთის წინ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 საათის წინ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 საათის წინ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 საათის წინ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 საათის წინ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 დღის წინ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 დღის წინ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 დღის წინ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 დღის წინ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 კვირის წინ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 კვირის წინ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 კვირის წინ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 კვირის წინ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 თვის წინ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 თვის წინ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 თვის წინ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 თვის წინ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 წლის წინ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 წლის წინ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 წლის წინ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 წლის წინ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 წამში',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 წამში',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 წამის შემდეგ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 წამის შემდეგ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 წამით ადრე',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 წამით ადრე',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 წამი',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 წამი',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 წამი',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 წამი',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 წამში',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 წუთი 1 წამი',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 წელი 3 თვე 1 დღე 1 წამი',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 წელიწადში',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 თვის წინ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 წლის 3 თვის 1 დღის 1 წამის წინ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 კვირა 10 საათი',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 კვირა 6 დღე',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 კვირა 6 დღე',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 კვირაში და 6 დღეში',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 კვირა 1 საათი',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'საათში',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 დღე',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 დღე 3 საათი',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KabDzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KabDzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kab_DZ'; // Kabyle\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sed at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Acer at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Arim at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aram at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad at 12:00 FT',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Amhad at 12:00 FT',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Sem at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aram at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ahad at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Amhad at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sem at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sed at 12:00 FT',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Acer at 8:49 MD',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 MD',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 FT',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aram at 12:00 FT',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aram at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Arim at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Acer at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sed at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sem at 12:00 FT',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Amhad at 12:00 FT',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ahad at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Sem at 12:00 FT',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ft CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 FT, 12:00 ft',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 FT, 1:30 ft',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 FT, 2:00 ft',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 FT, 6:00 ft',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 FT, 10:00 ft',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MD, 12:00 md',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MD, 5:00 md',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MD, 9:30 md',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MD, 11:00 md',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tasdidt ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tasdidt ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tasdidt ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tasdidt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 n tedqiqin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 n tedqiqin ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 n tedqiqin ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 n tedqiqin ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 n tsaɛtin ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 n tsaɛtin ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 n tsaɛtin ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 n tsaɛtin ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 n wussan ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 n wussan ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 n wussan ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 n wussan ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 n ledwaṛ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 n ledwaṛ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 n ledwaṛ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 n ledwaṛ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 n wayyuren ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 n wayyuren ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 n wayyuren ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 n wayyuren ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 n yiseggasen ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 n yiseggasen ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 n yiseggasen ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 n yiseggasen ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tasdidt from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tasdidt from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tasdidt after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tasdidt after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tasdidt before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tasdidt before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tasdidt',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tasdidt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tasdidt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tasdidt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tasdidt from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 n tedqiqin 1 tasdidt',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 n yiseggasen 3 n wayyuren 1 n wussan 1 tasdidt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 n yiseggasen from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 n wayyuren ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 n yiseggasen 3 n wayyuren 1 n wussan 1 tasdidt ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 n ledwaṛ 10 n tsaɛtin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 n ledwaṛ 6 n wussan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 n ledwaṛ 6 n wussan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 n ledwaṛ and 6 n wussan from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 n ledwaṛ 1 n tsaɛtin',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 n tsaɛtin from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 n wussan',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 n wussan 3 n tsaɛtin',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KabTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KabTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kab'; // Kabyle\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sed at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Acer at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Arim at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aram at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad at 12:00 FT',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Amhad at 12:00 FT',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Sem at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aram at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ahad at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Amhad at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sem at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sed at 12:00 FT',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Acer at 8:49 MD',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 MD',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 FT',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aram at 12:00 FT',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aram at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Arim at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Acer at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sed at 12:00 FT',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sem at 12:00 FT',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Amhad at 12:00 FT',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ahad at 12:00 FT',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Sem at 12:00 FT',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ft CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 FT, 12:00 ft',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 FT, 1:30 ft',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 FT, 2:00 ft',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 FT, 6:00 ft',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 FT, 10:00 ft',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MD, 12:00 md',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MD, 5:00 md',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MD, 9:30 md',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MD, 11:00 md',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 tasdidt ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 tasdidt ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 tasdidt ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 tasdidt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 n tedqiqin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 n tedqiqin ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 n tedqiqin ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 n tedqiqin ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 n tsaɛtin ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 n tsaɛtin ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 n tsaɛtin ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 n tsaɛtin ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 n wussan ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 n wussan ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 n wussan ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 n wussan ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 n ledwaṛ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 n ledwaṛ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 n ledwaṛ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 n ledwaṛ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 n wayyuren ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 n wayyuren ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 n wayyuren ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 n wayyuren ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 n yiseggasen ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 n yiseggasen ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 n yiseggasen ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 n yiseggasen ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 tasdidt from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 tasdidt from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 tasdidt after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 tasdidt after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 tasdidt before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 tasdidt before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 tasdidt',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 tasdidt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 tasdidt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 tasdidt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 tasdidt from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 n tedqiqin 1 tasdidt',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 n yiseggasen 3 n wayyuren 1 n wussan 1 tasdidt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 n yiseggasen from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 n wayyuren ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 n yiseggasen 3 n wayyuren 1 n wussan 1 tasdidt ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 n ledwaṛ 10 n tsaɛtin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 n ledwaṛ 6 n wussan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 n ledwaṛ 6 n wussan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 n ledwaṛ and 6 n wussan from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 n ledwaṛ 1 n tsaɛtin',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 n tsaɛtin from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 n wussan',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 n wussan 3 n tsaɛtin',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KamTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KamTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kam'; // Kamba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wa thanthatũ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wa kyumwa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wa kwambĩlĩlya at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wa kelĩ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wa katatũ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Wa kana at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Wa katano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wa kelĩ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wa katatũ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wa kana at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wa katano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wa thanthatũ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Wa kyumwa at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wa kelĩ at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wa kelĩ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wa kwambĩlĩlya at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wa kyumwa at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wa thanthatũ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wa katano at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Wa kana at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wa katatũ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Wa katano at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ĩyakwakya CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ĩyakwakya, 12:00 ĩyakwakya',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Ĩyakwakya, 1:30 ĩyakwakya',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Ĩyakwakya, 2:00 ĩyakwakya',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Ĩyakwakya, 6:00 ĩyakwakya',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Ĩyakwakya, 10:00 ĩyakwakya',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ĩyawĩoo, 12:00 ĩyawĩoo',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ĩyawĩoo, 5:00 ĩyawĩoo',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ĩyawĩoo, 9:30 ĩyawĩoo',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ĩyawĩoo, 11:00 ĩyawĩoo',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KdeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KdeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kde'; // Makonde\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Liduva litandi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Liduva lyapili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Liduva lyatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Liduva lyanchechi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Liduva lyannyano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Liduva lyannyano na linji at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Liduva lyannyano na mavili at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Liduva lyanchechi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Liduva lyannyano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Liduva lyannyano na linji at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Liduva lyannyano na mavili at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Liduva litandi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Liduva lyapili at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Liduva lyanchechi at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Liduva lyanchechi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Liduva lyatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Liduva lyapili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Liduva litandi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Liduva lyannyano na mavili at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Liduva lyannyano na linji at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Liduva lyannyano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Liduva lyannyano na mavili at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 muhi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Muhi, 12:00 muhi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Muhi, 1:30 muhi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Muhi, 2:00 muhi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Muhi, 6:00 muhi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Muhi, 10:00 muhi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Chilo, 12:00 chilo',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Chilo, 5:00 chilo',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Chilo, 9:30 chilo',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Chilo, 11:00 chilo',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KeaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KeaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kea'; // Kabuverdianu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabadu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dumingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sigunda-fera at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tersa-fera at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kuarta-fera at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'kinta-fera at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sesta-fera at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tersa-fera at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kuarta-fera at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kinta-fera at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sesta-fera at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabadu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dumingu at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tersa-fera at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tersa-fera at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sigunda-fera at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dumingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabadu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sesta-fera at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last kinta-fera at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last kuarta-fera at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last sesta-fera at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a, 12:00 a',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a, 1:30 a',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a, 2:00 a',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a, 6:00 a',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a, 10:00 a',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p, 12:00 p',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p, 5:00 p',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p, 9:30 p',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p, 11:00 p',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 dós ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 dós ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 dós ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 dós ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 sugundu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 sugundu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 sugundu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 sugundu ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 diâ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 diâ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 diâ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 diâ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 día dumingu ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 día dumingu ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 día dumingu ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 día dumingu ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 otunu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 otunu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 otunu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 otunu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 dós from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 dós from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 dós after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 dós after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 dós before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 dós before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 dós',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 dós',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 dós',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 dós',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 dós from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 sugundu 1 dós',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 otunu 3mos 1 diâ 1 dós',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 otunu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 otunu 3mos 1 diâ 1 dós ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 día dumingu 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 día dumingu 6 diâ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 día dumingu 6 diâ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 día dumingu and 6 diâ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 día dumingu 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 diâ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 diâ 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KhqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KhqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'khq'; // Koyra Chiini\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Assabdu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atalata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Aljuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aljuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Assabdu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Alhadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atalata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atini at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Assabdu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aljuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Aljuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 adduha CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Adduha, 12:00 adduha',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Adduha, 1:30 adduha',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Adduha, 2:00 adduha',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Adduha, 6:00 adduha',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Adduha, 10:00 adduha',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Aluula, 12:00 aluula',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Aluula, 5:00 aluula',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Aluula, 9:30 aluula',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Aluula, 11:00 aluula',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ki'; // Kikuyu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumamothi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kiumia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumatatũ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumaine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Njumatana at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aramithi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Njumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumaine at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumatana at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aramithi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumamothi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Kiumia at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njumaine at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumaine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumatatũ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kiumia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumamothi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Njumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aramithi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Njumatana at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Njumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 kiroko CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Kiroko, 12:00 kiroko',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Kiroko, 1:30 kiroko',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Kiroko, 2:00 kiroko',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Kiroko, 6:00 kiroko',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Kiroko, 10:00 kiroko',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Hwaĩ-inĩ, 12:00 hwaĩ-inĩ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Hwaĩ-inĩ, 5:00 hwaĩ-inĩ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Hwaĩ-inĩ, 9:30 hwaĩ-inĩ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Hwaĩ-inĩ, 11:00 hwaĩ-inĩ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 igego ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 igego ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 igego ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 igego ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mundu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mundu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mundu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mundu ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 thaa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 thaa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 thaa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 thaa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 mũthenya ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 mũthenya ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 mũthenya ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 mũthenya ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 kiumia ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 kiumia ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 kiumia ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 kiumia ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mweri ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mweri ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mweri ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mweri ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 mĩaka ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 mĩaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 mĩaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 mĩaka ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 igego from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 igego from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 igego after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 igego after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 igego before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 igego before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 igego',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 igego',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 igego',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 igego',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 igego from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mundu 1 igego',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 mĩaka 3 mweri 1 mũthenya 1 igego',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 mĩaka from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mweri ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 mĩaka 3 mweri 1 mũthenya 1 igego ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 kiumia 10 thaa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 kiumia 6 mũthenya',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 kiumia 6 mũthenya',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 kiumia and 6 mũthenya from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 kiumia 1 thaa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 thaa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 mũthenya',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 mũthenya 3 thaa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KkKzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KkKzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kk_KZ'; // Kazakh\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ертең сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'жексенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'дүйсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сәрсенбі сағат 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'бейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'жұма сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сәрсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'бейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'жұма сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сенбі сағат 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Өткен аптаның жексенбі сағат 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кеше сағат 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Бүгін сағат 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Бүгін сағат 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ертең сағат 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Кеше сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кеше сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның дүйсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның жексенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның сенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның жұма сағат 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Өткен аптаның бейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Өткен аптаның сәрсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Өткен аптаның жұма сағат 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ші 1-ші 1-ші 1-ші 1-ші',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-ші 1-ші',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-ші 1-ші',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ші 1-ші',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ші 1-ші',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-шы 1-ші',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ші 1-ші',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ші 2-ші',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-шы',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ші',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ші',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ші',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунд бұрын',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 се. бұрын',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунд бұрын',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 се. бұрын',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минут бұрын',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 м. бұрын',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минут бұрын',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 м. бұрын',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сағат бұрын',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 са. бұрын',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сағат бұрын',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 са. бұрын',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 күн бұрын',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 к. бұрын',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 күн бұрын',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 к. бұрын',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 апта бұрын',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ап. бұрын',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 апта бұрын',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ап. бұрын',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ай бұрын',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ай бұрын',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ай бұрын',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ай бұрын',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 жыл бұрын',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ж. бұрын',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 жыл бұрын',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ж. бұрын',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 секунд ішінде',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 се. ішінде',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунд кейін',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 се. кейін',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунд бұрын',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 се. бұрын',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 се.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 се.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 се. ішінде',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ж. 3 ай 1 к. 1 се.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 жыл ішінде',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ай бұрын',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ж. 3 ай 1 к. 1 се. бұрын',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 апта 10 сағат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 апта және 6 күн ішінде',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 апта 1 сағат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'бір сағат ішінде',\n        // CarbonInterval::days(2)->forHumans()\n        '2 күн',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 к. 3 са.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kk'; // Kazakh\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ертең сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'жексенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'дүйсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сәрсенбі сағат 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'бейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'жұма сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сәрсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'бейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'жұма сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сенбі сағат 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Өткен аптаның жексенбі сағат 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кеше сағат 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Бүгін сағат 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Бүгін сағат 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ертең сағат 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Кеше сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кеше сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның сейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның дүйсенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның жексенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның сенбі сағат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптаның жұма сағат 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Өткен аптаның бейсенбі сағат 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Өткен аптаның сәрсенбі сағат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Өткен аптаның жұма сағат 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ші 1-ші 1-ші 1-ші 1-ші',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-ші 1-ші',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-ші 1-ші',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ші 1-ші',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ші 1-ші',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-шы 1-ші',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ші 1-ші',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ші 2-ші',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-шы',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ші',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ші',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ші',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунд бұрын',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 се. бұрын',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунд бұрын',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 се. бұрын',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минут бұрын',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 м. бұрын',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минут бұрын',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 м. бұрын',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сағат бұрын',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 са. бұрын',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сағат бұрын',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 са. бұрын',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 күн бұрын',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 к. бұрын',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 күн бұрын',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 к. бұрын',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 апта бұрын',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ап. бұрын',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 апта бұрын',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ап. бұрын',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ай бұрын',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ай бұрын',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ай бұрын',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ай бұрын',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 жыл бұрын',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ж. бұрын',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 жыл бұрын',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ж. бұрын',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 секунд ішінде',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 се. ішінде',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунд кейін',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 се. кейін',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунд бұрын',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 се. бұрын',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 се.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 се.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 се. ішінде',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ж. 3 ай 1 к. 1 се.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 жыл ішінде',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ай бұрын',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ж. 3 ай 1 к. 1 се. бұрын',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 апта 10 сағат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 апта және 6 күн ішінде',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 апта 1 сағат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'бір сағат ішінде',\n        // CarbonInterval::days(2)->forHumans()\n        '2 күн',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 к. 3 са.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KkjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KkjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kkj'; // Kako\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KlGlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KlGlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kl_GL'; // Kalaallisut\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'arfininngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sapaat at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ataasinngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pingasunngorneq at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sisamanngorneq at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pingasunngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sisamanngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'arfininngorneq at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sapaat at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ataasinngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sapaat at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last arfininngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sisamanngorneq at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last pingasunngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sikunti matuma siorna',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s matuma siorna',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sikuntit matuma siorna',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s matuma siorna',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutsi matuma siorna',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m matuma siorna',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutsit matuma siorna',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m matuma siorna',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tiimi matuma siorna',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h matuma siorna',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tiimit matuma siorna',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h matuma siorna',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ulloq matuma siorna',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d matuma siorna',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ullut matuma siorna',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d matuma siorna',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sap. ak. matuma siorna',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w matuma siorna',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sap. ak. matuma siorna',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w matuma siorna',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'qaammat 1 matuma siorna',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo matuma siorna',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'qaammatit 2 matuma siorna',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos matuma siorna',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ukioq 1 matuma siorna',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr matuma siorna',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ukiut 2 matuma siorna',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs matuma siorna',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sikunti from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sikunti after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sikunti before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sikunti',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sikuntit',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutsi 1 sikunti',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ukiut 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos matuma siorna',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s matuma siorna',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sap. ak. 10 tiimit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sap. ak. 6 ullut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sap. ak. 6 ullut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sap. ak. and 6 ullut from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sap. ak. 1 tiimi',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'tiimi from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ullut',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kl'; // Kalaallisut\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'arfininngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sapaat at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ataasinngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pingasunngorneq at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sisamanngorneq at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pingasunngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sisamanngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'arfininngorneq at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sapaat at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last marlunngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ataasinngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sapaat at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last arfininngorneq at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sisamanngorneq at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last pingasunngorneq at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last tallimanngorneq at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sikunti matuma siorna',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s matuma siorna',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sikuntit matuma siorna',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s matuma siorna',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutsi matuma siorna',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m matuma siorna',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutsit matuma siorna',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m matuma siorna',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tiimi matuma siorna',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h matuma siorna',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tiimit matuma siorna',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h matuma siorna',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ulloq matuma siorna',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d matuma siorna',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ullut matuma siorna',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d matuma siorna',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sap. ak. matuma siorna',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w matuma siorna',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sap. ak. matuma siorna',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w matuma siorna',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'qaammat 1 matuma siorna',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo matuma siorna',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'qaammatit 2 matuma siorna',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos matuma siorna',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ukioq 1 matuma siorna',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr matuma siorna',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ukiut 2 matuma siorna',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs matuma siorna',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sikunti from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sikunti after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sikunti before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sikunti',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sikuntit',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutsi 1 sikunti',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ukiut 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos matuma siorna',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s matuma siorna',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sap. ak. 10 tiimit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sap. ak. 6 ullut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sap. ak. 6 ullut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sap. ak. and 6 ullut from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sap. ak. 1 tiimi',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'tiimi from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ullut',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KlnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KlnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kln'; // Kalenjin\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kolo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kotisap at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kotaai at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Koaeng’ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kosomok at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Koang’wan at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Komuut at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Koaeng’ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kosomok at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Koang’wan at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Komuut at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kolo at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Kotisap at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Koaeng’ at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Koaeng’ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kotaai at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kotisap at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kolo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Komuut at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Koang’wan at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Kosomok at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Komuut at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 krn CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 krn, 12:00 krn',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 krn, 1:30 krn',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 krn, 2:00 krn',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 krn, 6:00 krn',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 krn, 10:00 krn',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 koosk, 12:00 koosk',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 koosk, 5:00 koosk',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 koosk, 9:30 koosk',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 koosk, 11:00 koosk',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 maghatiat ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 maghatiat ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 maghatiat ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 maghatiat ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 maghatiat 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 maghatiat from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 maghatiat 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KmKhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KmKhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'km_KH'; // Central Khmer\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ស្អែក ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'សៅរ៍ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អាទិត្យ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ច័ន្ទ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អង្គារ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ពុធ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ព្រហស្បតិ៍ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'សុក្រ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'អង្គារ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ពុធ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ព្រហស្បតិ៍ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'សុក្រ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'សៅរ៍ ម៉ោង 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'អាទិត្យ សប្តាហ៍មុន ម៉ោង 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ម្សិលមិញ ម៉ោង 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ថ្ងៃនេះ ម៉ោង 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ថ្ងៃនេះ ម៉ោង 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ស្អែក ម៉ោង 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'អង្គារ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ម្សិលមិញ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ម្សិលមិញ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អង្គារ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ច័ន្ទ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អាទិត្យ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'សៅរ៍ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'សុក្រ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ព្រហស្បតិ៍ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ពុធ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'សុក្រ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ទី1 ទី1 ទី1 ទី1 ទី1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ទី2 ទី1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ទី3 ទី1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ទី4 ទី1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ទី5 ទី1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ទី6 ទី1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ទី7 ទី1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ទី11 ទី2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ទី40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ទី41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ទី100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ព្រឹក CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ព្រឹក, 12:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ព្រឹក, 1:30 ព្រឹក',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ព្រឹក, 2:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ព្រឹក, 6:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ព្រឹក, 10:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ល្ងាច, 12:00 ល្ងាច',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ល្ងាច, 5:00 ល្ងាច',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ល្ងាច, 9:30 ល្ងាច',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ល្ងាច, 11:00 ល្ងាច',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ទី0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 វិនាទីមុន',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 វិនាទីមុន',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 វិនាទីមុន',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 វិនាទីមុន',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 នាទីមុន',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 នាទីមុន',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 នាទីមុន',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 នាទីមុន',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ម៉ោងមុន',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ម៉ោងមុន',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ម៉ោងមុន',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ម៉ោងមុន',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ថ្ងៃមុន',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ថ្ងៃមុន',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ថ្ងៃមុន',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ថ្ងៃមុន',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 សប្តាហ៍មុន',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 សប្តាហ៍មុន',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 សប្តាហ៍មុន',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 សប្តាហ៍មុន',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ខែមុន',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ខែមុន',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ខែមុន',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ខែមុន',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ឆ្នាំមុន',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ឆ្នាំមុន',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ឆ្នាំមុន',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ឆ្នាំមុន',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 វិនាទីទៀត',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 វិនាទីទៀត',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'នៅ​ក្រោយ 1 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'នៅ​ក្រោយ 1 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'នៅ​មុន 1 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'នៅ​មុន 1 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 វិនាទីទៀត',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 នាទី 1 វិនាទី',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ឆ្នាំ 3 ខែ 1 ថ្ងៃ 1 វិនាទី',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ឆ្នាំទៀត',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ខែមុន',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ឆ្នាំ 3 ខែ 1 ថ្ងៃ 1 វិនាទីមុន',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 សប្តាហ៍ 10 ម៉ោង',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 សប្តាហ៍ 6 ថ្ងៃ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 សប្តាហ៍ 6 ថ្ងៃ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 សប្តាហ៍និង 6 ថ្ងៃទៀត',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 សប្តាហ៍ 1 ម៉ោង',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'មួយម៉ោងទៀត',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ថ្ងៃ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ថ្ងៃ 3 ម៉ោង',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'km'; // Central Khmer\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ស្អែក ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'សៅរ៍ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អាទិត្យ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ច័ន្ទ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អង្គារ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ពុធ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ព្រហស្បតិ៍ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'សុក្រ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'អង្គារ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ពុធ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ព្រហស្បតិ៍ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'សុក្រ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'សៅរ៍ ម៉ោង 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'អាទិត្យ សប្តាហ៍មុន ម៉ោង 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ម្សិលមិញ ម៉ោង 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ថ្ងៃនេះ ម៉ោង 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ថ្ងៃនេះ ម៉ោង 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ស្អែក ម៉ោង 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'អង្គារ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ម្សិលមិញ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ម្សិលមិញ ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អង្គារ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ច័ន្ទ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'អាទិត្យ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'សៅរ៍ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'សុក្រ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ព្រហស្បតិ៍ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ពុធ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'សុក្រ សប្តាហ៍មុន ម៉ោង 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ទី1 ទី1 ទី1 ទី1 ទី1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ទី2 ទី1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ទី3 ទី1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ទី4 ទី1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ទី5 ទី1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ទី6 ទី1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ទី7 ទី1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ទី11 ទី2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ទី40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ទី41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ទី100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ព្រឹក CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ព្រឹក, 12:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ព្រឹក, 1:30 ព្រឹក',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ព្រឹក, 2:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ព្រឹក, 6:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ព្រឹក, 10:00 ព្រឹក',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ល្ងាច, 12:00 ល្ងាច',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ល្ងាច, 5:00 ល្ងាច',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ល្ងាច, 9:30 ល្ងាច',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ល្ងាច, 11:00 ល្ងាច',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ទី0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 វិនាទីមុន',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 វិនាទីមុន',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 វិនាទីមុន',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 វិនាទីមុន',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 នាទីមុន',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 នាទីមុន',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 នាទីមុន',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 នាទីមុន',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ម៉ោងមុន',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ម៉ោងមុន',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ម៉ោងមុន',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ម៉ោងមុន',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ថ្ងៃមុន',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ថ្ងៃមុន',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ថ្ងៃមុន',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ថ្ងៃមុន',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 សប្តាហ៍មុន',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 សប្តាហ៍មុន',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 សប្តាហ៍មុន',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 សប្តាហ៍មុន',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ខែមុន',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ខែមុន',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ខែមុន',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ខែមុន',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ឆ្នាំមុន',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ឆ្នាំមុន',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ឆ្នាំមុន',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ឆ្នាំមុន',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 វិនាទីទៀត',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 វិនាទីទៀត',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'នៅ​ក្រោយ 1 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'នៅ​ក្រោយ 1 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'នៅ​មុន 1 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'នៅ​មុន 1 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 វិនាទី',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 វិនាទី',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 វិនាទីទៀត',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 នាទី 1 វិនាទី',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ឆ្នាំ 3 ខែ 1 ថ្ងៃ 1 វិនាទី',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ឆ្នាំទៀត',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ខែមុន',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ឆ្នាំ 3 ខែ 1 ថ្ងៃ 1 វិនាទីមុន',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 សប្តាហ៍ 10 ម៉ោង',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 សប្តាហ៍ 6 ថ្ងៃ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 សប្តាហ៍ 6 ថ្ងៃ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 សប្តាហ៍និង 6 ថ្ងៃទៀត',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 សប្តាហ៍ 1 ម៉ោង',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'មួយម៉ោងទៀត',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ថ្ងៃ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ថ្ងៃ 3 ម៉ោង',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KnInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KnInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kn_IN'; // Kannada\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ನಾಳೆ ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಶನಿವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಭಾನುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಸೋಮವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಬುಧವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ಗುರುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಬುಧವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಗುರುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶನಿವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ಕೊನೆಯ ಭಾನುವಾರ, ರಾತ್ರಿ 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ನಿನ್ನೆ ರಾತ್ರಿ 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ಇಂದು ಮಧ್ಯಾಹ್ನ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಇಂದು ರಾತ್ರಿ 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ನಾಳೆ ರಾತ್ರಿ 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ನಿನ್ನೆ ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ನಿನ್ನೆ ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಸೋಮವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಭಾನುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಶನಿವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ಕೊನೆಯ ಗುರುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ಕೊನೆಯ ಬುಧವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಕೊನೆಯ ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ನೇ 1ನೇ 1ನೇ 1ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7ನೇ 2ನೇ',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11ನೇ 2ನೇ',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ನೇ',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ನೇ',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ನೇ',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ರಾತ್ರಿ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ರಾತ್ರಿ, 12:00 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ರಾತ್ರಿ, 1:30 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ರಾತ್ರಿ, 2:00 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ಬೆಳಿಗ್ಗೆ, 6:00 ಬೆಳಿಗ್ಗೆ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ಮಧ್ಯಾಹ್ನ, 10:00 ಮಧ್ಯಾಹ್ನ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ಮಧ್ಯಾಹ್ನ, 12:00 ಮಧ್ಯಾಹ್ನ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ಸಂಜೆ, 5:00 ಸಂಜೆ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ರಾತ್ರಿ, 9:30 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ರಾತ್ರಿ, 11:00 ರಾತ್ರಿ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0ನೇ',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ಸೆಕೆಂಡ್ ಹಿಂದೆ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ಸೆಕೆಂಡ್ ಹಿಂದೆ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ಸೆಕೆಂಡುಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ಸೆಕೆಂಡುಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ನಿಮಿಷ ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ನಿಮಿಷ ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ನಿಮಿಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ನಿಮಿಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ಗಂಟೆ ಹಿಂದೆ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ಗಂಟೆ ಹಿಂದೆ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ಗಂಟೆಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ಗಂಟೆಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ದಿನ ಹಿಂದೆ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ದಿನ ಹಿಂದೆ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ದಿನಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ದಿನಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ವಾರ ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ವಾರ ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ವಾರಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ವಾರಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ವರ್ಷ ಹಿಂದೆ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ವರ್ಷ ಹಿಂದೆ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ವರ್ಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ವರ್ಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ಸೆಕೆಂಡ್ ನಂತರ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ಸೆಕೆಂಡ್ ನಂತರ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ಸೆಕೆಂಡುಗಳು',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ಸೆಕೆಂಡುಗಳು',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ಸೆಕೆಂಡ್ ನಂತರ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ನಿಮಿಷ 1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ವರ್ಷಗಳು 3 ತಿಂಗಳು 1 ದಿನ 1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ವರ್ಷಗಳು ನಂತರ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ವರ್ಷಗಳು 3 ತಿಂಗಳು 1 ದಿನ 1 ಸೆಕೆಂಡ್ ಹಿಂದೆ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ವಾರ 10 ಗಂಟೆಗಳು',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ವಾರ 6 ದಿನಗಳು',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ವಾರ 6 ದಿನಗಳು',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ವಾರ, 6 ದಿನಗಳು ನಂತರ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ವಾರಗಳು 1 ಗಂಟೆ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ಒಂದು ಗಂಟೆ ನಂತರ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ದಿನಗಳು',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ದಿನ 3 ಗಂಟೆಗಳು',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kn'; // Kannada\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ನಾಳೆ ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಶನಿವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಭಾನುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಸೋಮವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಬುಧವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ಗುರುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಬುಧವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಗುರುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶನಿವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ಕೊನೆಯ ಭಾನುವಾರ, ರಾತ್ರಿ 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ನಿನ್ನೆ ರಾತ್ರಿ 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ಇಂದು ಮಧ್ಯಾಹ್ನ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಇಂದು ರಾತ್ರಿ 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ನಾಳೆ ರಾತ್ರಿ 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ನಿನ್ನೆ ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ನಿನ್ನೆ ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಮಂಗಳವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಸೋಮವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಭಾನುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಶನಿವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಕೊನೆಯ ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ಕೊನೆಯ ಗುರುವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ಕೊನೆಯ ಬುಧವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಕೊನೆಯ ಶುಕ್ರವಾರ, ರಾತ್ರಿ 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ನೇ 1ನೇ 1ನೇ 1ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6ನೇ 1ನೇ',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7ನೇ 2ನೇ',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11ನೇ 2ನೇ',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ನೇ',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ನೇ',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ನೇ',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ರಾತ್ರಿ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ರಾತ್ರಿ, 12:00 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ರಾತ್ರಿ, 1:30 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ರಾತ್ರಿ, 2:00 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ಬೆಳಿಗ್ಗೆ, 6:00 ಬೆಳಿಗ್ಗೆ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ಮಧ್ಯಾಹ್ನ, 10:00 ಮಧ್ಯಾಹ್ನ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ಮಧ್ಯಾಹ್ನ, 12:00 ಮಧ್ಯಾಹ್ನ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ಸಂಜೆ, 5:00 ಸಂಜೆ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ರಾತ್ರಿ, 9:30 ರಾತ್ರಿ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ರಾತ್ರಿ, 11:00 ರಾತ್ರಿ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0ನೇ',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ಸೆಕೆಂಡ್ ಹಿಂದೆ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ಸೆಕೆಂಡ್ ಹಿಂದೆ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ಸೆಕೆಂಡುಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ಸೆಕೆಂಡುಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ನಿಮಿಷ ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ನಿಮಿಷ ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ನಿಮಿಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ನಿಮಿಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ಗಂಟೆ ಹಿಂದೆ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ಗಂಟೆ ಹಿಂದೆ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ಗಂಟೆಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ಗಂಟೆಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ದಿನ ಹಿಂದೆ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ದಿನ ಹಿಂದೆ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ದಿನಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ದಿನಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ವಾರ ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ವಾರ ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ವಾರಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ವಾರಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ವರ್ಷ ಹಿಂದೆ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ವರ್ಷ ಹಿಂದೆ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ವರ್ಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ವರ್ಷಗಳು ಹಿಂದೆ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ಸೆಕೆಂಡ್ ನಂತರ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ಸೆಕೆಂಡ್ ನಂತರ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ಸೆಕೆಂಡುಗಳು',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ಸೆಕೆಂಡುಗಳು',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ಸೆಕೆಂಡ್ ನಂತರ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ನಿಮಿಷ 1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ವರ್ಷಗಳು 3 ತಿಂಗಳು 1 ದಿನ 1 ಸೆಕೆಂಡ್',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ವರ್ಷಗಳು ನಂತರ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ತಿಂಗಳು ಹಿಂದೆ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ವರ್ಷಗಳು 3 ತಿಂಗಳು 1 ದಿನ 1 ಸೆಕೆಂಡ್ ಹಿಂದೆ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ವಾರ 10 ಗಂಟೆಗಳು',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ವಾರ 6 ದಿನಗಳು',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ವಾರ 6 ದಿನಗಳು',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ವಾರ, 6 ದಿನಗಳು ನಂತರ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ವಾರಗಳು 1 ಗಂಟೆ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ಒಂದು ಗಂಟೆ ನಂತರ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ದಿನಗಳು',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ದಿನ 3 ಗಂಟೆಗಳು',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KoKpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KoKpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ko_KP'; // Korean\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '내일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '토요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '일요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '월요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '수요일 오전 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '목요일 오전 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '금요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '수요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '목요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '금요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '토요일 오전 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        '지난주 일요일 오후 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '어제 오후 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '오늘 오전 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '오늘 오전 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        '내일 오전 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '어제 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '어제 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 화요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 월요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 일요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 토요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 금요일 오전 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '지난주 목요일 오전 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '지난주 수요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '지난주 금요일 오전 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1월 1월 1일 1주 1주',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2일 1주',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3일 1주',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4일 1주',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5일 1주',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6일 1주',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7일 1주',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11일 2주',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40일',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41일',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100일',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 오전 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 오전, 12:00 오전',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 오전, 1:30 오전',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 오전, 2:00 오전',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 오전, 6:00 오전',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 오전, 10:00 오전',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 오후, 12:00 오후',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 오후, 5:00 오후',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 오후, 9:30 오후',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 오후, 11:00 오후',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1초 전',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1초 전',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2초 전',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2초 전',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1분 전',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1분 전',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2분 전',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2분 전',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1시간 전',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1시간 전',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2시간 전',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2시간 전',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1일 전',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1일 전',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2일 전',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2일 전',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1주 전',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1주일 전',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2주 전',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2주일 전',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1개월 전',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1개월 전',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2개월 전',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2개월 전',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1년 전',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1년 전',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2년 전',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2년 전',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1초 후',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1초 전',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1초 전',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1초',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1초',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2초',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2초',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1초 후',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1분 1초',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2년 3개월 1일 1초',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3년 후',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5개월 전',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2년 3개월 1일 1초 전',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1주 10시간',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1주 6일',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1주 6일',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1주 6일 후',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2주 1시간',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '한시간 후',\n        // CarbonInterval::days(2)->forHumans()\n        '2일',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1일 3시간',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KoKrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KoKrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ko_KR'; // Korean\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '내일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '토요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '일요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '월요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '수요일 오전 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '목요일 오전 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '금요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '수요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '목요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '금요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '토요일 오전 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        '지난주 일요일 오후 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '어제 오후 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '오늘 오전 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '오늘 오전 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        '내일 오전 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '어제 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '어제 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 화요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 월요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 일요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 토요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 금요일 오전 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '지난주 목요일 오전 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '지난주 수요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '지난주 금요일 오전 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1월 1월 1일 1주 1주',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2일 1주',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3일 1주',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4일 1주',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5일 1주',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6일 1주',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7일 2주',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11일 2주',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40일',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41일',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100일',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 오전 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 오전, 12:00 오전',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 오전, 1:30 오전',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 오전, 2:00 오전',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 오전, 6:00 오전',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 오전, 10:00 오전',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 오후, 12:00 오후',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 오후, 5:00 오후',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 오후, 9:30 오후',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 오후, 11:00 오후',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1초 전',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1초 전',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2초 전',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2초 전',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1분 전',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1분 전',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2분 전',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2분 전',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1시간 전',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1시간 전',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2시간 전',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2시간 전',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1일 전',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1일 전',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2일 전',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2일 전',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1주 전',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1주일 전',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2주 전',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2주일 전',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1개월 전',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1개월 전',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2개월 전',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2개월 전',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1년 전',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1년 전',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2년 전',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2년 전',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1초 후',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1초 전',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1초 전',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1초',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1초',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2초',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2초',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1초 후',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1분 1초',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2년 3개월 1일 1초',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3년 후',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5개월 전',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2년 3개월 1일 1초 전',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1주 10시간',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1주 6일',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1주 6일',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1주 6일 후',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2주 1시간',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '한시간 후',\n        // CarbonInterval::days(2)->forHumans()\n        '2일',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1일 3시간',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ko'; // Korean\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '내일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '토요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '일요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '월요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '수요일 오전 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '목요일 오전 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '금요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '수요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '목요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '금요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '토요일 오전 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        '지난주 일요일 오후 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '어제 오후 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '오늘 오전 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '오늘 오전 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        '내일 오전 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '화요일 오전 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '어제 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '어제 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 화요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 월요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 일요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 토요일 오전 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '지난주 금요일 오전 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '지난주 목요일 오전 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '지난주 수요일 오전 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '지난주 금요일 오전 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1월 1월 1일 1주 1주',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2일 1주',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3일 1주',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4일 1주',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5일 1주',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6일 1주',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7일 2주',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11일 2주',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40일',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41일',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100일',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 오전 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 오전, 12:00 오전',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 오전, 1:30 오전',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 오전, 2:00 오전',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 오전, 6:00 오전',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 오전, 10:00 오전',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 오후, 12:00 오후',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 오후, 5:00 오후',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 오후, 9:30 오후',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 오후, 11:00 오후',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1초 전',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1초 전',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2초 전',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2초 전',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1분 전',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1분 전',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2분 전',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2분 전',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1시간 전',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1시간 전',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2시간 전',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2시간 전',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1일 전',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1일 전',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2일 전',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2일 전',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1주 전',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1주일 전',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2주 전',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2주일 전',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1개월 전',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1개월 전',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2개월 전',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2개월 전',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1년 전',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1년 전',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2년 전',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2년 전',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1초 후',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1초 후',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1초 전',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1초 전',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1초',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1초',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2초',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2초',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1초 후',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1분 1초',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2년 3개월 1일 1초',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3년 후',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5개월 전',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2년 3개월 1일 1초 전',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1주 10시간',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1주 6일',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1주 6일',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1주 6일 후',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2주 1시간',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '한시간 후',\n        // CarbonInterval::days(2)->forHumans()\n        '2일',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1일 3시간',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KokInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KokInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kok_IN'; // Konkani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शेनवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आयतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बेरेसतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बेरेसतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शेनवार at 12:00 म.पू.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last आयतार at 8:49 म.नं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 म.नं.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 म.पू.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last आयतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शेनवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बेरेसतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 म.पू. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 म.पू., 12:00 म.पू.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 म.पू., 1:30 म.पू.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 म.पू., 2:00 म.पू.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 म.पू., 6:00 म.पू.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 म.पू., 10:00 म.पू.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 म.नं., 12:00 म.नं.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 म.नं., 5:00 म.नं.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 म.नं., 9:30 म.नं.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 म.नं., 11:00 म.नं.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 तेंको ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 तेंको ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 तेंको ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 तेंको ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 नोंद ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 नोंद ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 नोंद ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 नोंद ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 घंते ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घंते ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घंते ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घंते ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिवसु ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिवसु ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिवसु ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिवसु ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 आदित्यवार ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 आदित्यवार ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 आदित्यवार ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 आदित्यवार ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 मैनो ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 मैनो ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 मैनो ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 मैनो ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 वैशाकु ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वैशाकु ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वैशाकु ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वैशाकु ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 तेंको from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 तेंको from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 तेंको after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 तेंको after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 तेंको before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 तेंको before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 तेंको',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 तेंको',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 तेंको',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 तेंको',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 तेंको from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 नोंद 1 तेंको',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वैशाकु 3 मैनो 1 दिवसु 1 तेंको',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वैशाकु from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 मैनो ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वैशाकु 3 मैनो 1 दिवसु 1 तेंको ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 आदित्यवार 10 घंते',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आदित्यवार 6 दिवसु',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आदित्यवार 6 दिवसु',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 आदित्यवार and 6 दिवसु from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 आदित्यवार 1 घंते',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 घंते from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिवसु',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिवसु 3 घंते',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KokTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KokTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kok'; // Konkani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शेनवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आयतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बेरेसतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बेरेसतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शेनवार at 12:00 म.पू.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last आयतार at 8:49 म.नं.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 म.नं.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 म.पू.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगळवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last आयतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शेनवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बेरेसतार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुकरार at 12:00 म.पू.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 म.पू. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 म.पू., 12:00 म.पू.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 म.पू., 1:30 म.पू.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 म.पू., 2:00 म.पू.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 म.पू., 6:00 म.पू.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 म.पू., 10:00 म.पू.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 म.नं., 12:00 म.नं.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 म.नं., 5:00 म.नं.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 म.नं., 9:30 म.नं.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 म.नं., 11:00 म.नं.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 तेंको ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 तेंको ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 तेंको ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 तेंको ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 नोंद ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 नोंद ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 नोंद ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 नोंद ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 घंते ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घंते ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घंते ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घंते ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिवसु ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिवसु ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिवसु ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिवसु ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 आदित्यवार ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 आदित्यवार ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 आदित्यवार ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 आदित्यवार ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 मैनो ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 मैनो ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 मैनो ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 मैनो ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 वैशाकु ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वैशाकु ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वैशाकु ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वैशाकु ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 तेंको from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 तेंको from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 तेंको after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 तेंको after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 तेंको before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 तेंको before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 तेंको',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 तेंको',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 तेंको',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 तेंको',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 तेंको from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 नोंद 1 तेंको',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वैशाकु 3 मैनो 1 दिवसु 1 तेंको',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वैशाकु from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 मैनो ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वैशाकु 3 मैनो 1 दिवसु 1 तेंको ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 आदित्यवार 10 घंते',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आदित्यवार 6 दिवसु',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आदित्यवार 6 दिवसु',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 आदित्यवार and 6 दिवसु from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 आदित्यवार 1 घंते',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 घंते from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिवसु',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिवसु 3 घंते',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KsInDevanagariTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KsInDevanagariTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ks_IN@devanagari'; // Kashmiri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बटुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आथवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'चॅ़दुरवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ब्वदवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ब्रसवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शोकुरवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ब्वदवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ब्रसवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शोकुरवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बटुवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last आथवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last बोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last चॅ़दुरवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last आथवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last बटुवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शोकुरवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ब्रसवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ब्वदवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शोकुरवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KsInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KsInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ks_IN'; // Kashmiri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بٹوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آتهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ژءندروار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بودهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'برىسوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بودهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'برىسوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بٹوار at 12:00 دوپھربرونھ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last آتهوار at 8:49 دوپھرپتھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 دوپھرپتھ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ژءندروار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last آتهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last بٹوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last برىسوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last بودهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 دوپھربرونھ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 دوپھربرونھ, 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 دوپھربرونھ, 1:30 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 دوپھربرونھ, 2:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 دوپھربرونھ, 6:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 دوپھربرونھ, 10:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 دوپھرپتھ, 12:00 دوپھرپتھ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 دوپھرپتھ, 5:00 دوپھرپتھ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 دوپھرپتھ, 9:30 دوپھرپتھ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 دوپھرپتھ, 11:00 دوپھرپتھ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 दोʼयुम ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 दोʼयुम ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 दोʼयुम ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 दोʼयुम ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 فَن ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 فَن ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 فَن ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 فَن ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 سۄن ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 سۄن ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 سۄن ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 سۄن ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 آتھٕوار ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 آتھٕوار ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 آتھٕوار ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 آتھٕوار ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 रान् ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 रान् ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 रान् ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 रान् ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 آب ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 آب ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 آب ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 آب ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 दोʼयुम from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 दोʼयुम from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 दोʼयुम after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 दोʼयुम after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 दोʼयुम before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 दोʼयुम before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 दोʼयुम',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 दोʼयुम',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 दोʼयुम',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 दोʼयुम',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 दोʼयुम from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 فَن 1 दोʼयुम',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 آب 3 रान् 1d 1 दोʼयुम',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 آب from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 रान् ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 آب 3 रान् 1d 1 दोʼयुम ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 آتھٕوار 10 سۄن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 آتھٕوار 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 آتھٕوار 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 آتھٕوار and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 آتھٕوار 1 سۄن',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 سۄن from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3 سۄن',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ks'; // Kashmiri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بٹوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آتهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ژءندروار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بودهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'برىسوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بودهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'برىسوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بٹوار at 12:00 دوپھربرونھ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last آتهوار at 8:49 دوپھرپتھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 دوپھرپتھ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last بوءںوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ژءندروار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last آتهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last بٹوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last برىسوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last بودهوار at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last جمع at 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 دوپھربرونھ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 دوپھربرونھ, 12:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 دوپھربرونھ, 1:30 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 دوپھربرونھ, 2:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 دوپھربرونھ, 6:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 دوپھربرونھ, 10:00 دوپھربرونھ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 دوپھرپتھ, 12:00 دوپھرپتھ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 دوپھرپتھ, 5:00 دوپھرپتھ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 دوپھرپتھ, 9:30 دوپھرپتھ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 دوپھرپتھ, 11:00 دوپھرپتھ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 दोʼयुम ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 दोʼयुम ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 दोʼयुम ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 दोʼयुम ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 فَن ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 فَن ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 فَن ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 فَن ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 سۄن ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 سۄن ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 سۄن ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 سۄن ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 آتھٕوار ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 آتھٕوار ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 آتھٕوار ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 آتھٕوار ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 रान् ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 रान् ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 रान् ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 रान् ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 آب ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 آب ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 آب ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 آب ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 दोʼयुम from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 दोʼयुम from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 दोʼयुम after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 दोʼयुम after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 दोʼयुम before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 दोʼयुम before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 दोʼयुम',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 दोʼयुम',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 दोʼयुम',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 दोʼयुम',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 दोʼयुम from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 فَن 1 दोʼयुम',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 آب 3 रान् 1d 1 दोʼयुम',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 آب from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 रान् ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 آب 3 रान् 1d 1 दोʼयुम ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 آتھٕوار 10 سۄن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 آتھٕوار 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 آتھٕوار 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 آتھٕوار and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 آتھٕوار 1 سۄن',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 سۄن from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3 سۄن',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KsbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KsbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ksb'; // Shambala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaapii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaane at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaane at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumaapii at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaane at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaane at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaapii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumaatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 makeo CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 makeo, 12:00 makeo',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 makeo, 1:30 makeo',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 makeo, 2:00 makeo',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 makeo, 6:00 makeo',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 makeo, 10:00 makeo',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 nyiaghuo, 12:00 nyiaghuo',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 nyiaghuo, 5:00 nyiaghuo',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 nyiaghuo, 9:30 nyiaghuo',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 nyiaghuo, 11:00 nyiaghuo',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KsfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KsfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ksf'; // Bafia\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samdí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndǝ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lǝndí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maadí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mɛkrɛdí at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jǝǝdí at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'júmbá at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maadí at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mɛkrɛdí at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jǝǝdí at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'júmbá at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samdí at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sɔ́ndǝ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maadí at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maadí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lǝndí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sɔ́ndǝ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last samdí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last júmbá at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last jǝǝdí at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mɛkrɛdí at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last júmbá at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 sárúwá CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 sárúwá, 12:00 sárúwá',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 sárúwá, 1:30 sárúwá',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 sárúwá, 2:00 sárúwá',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 sárúwá, 6:00 sárúwá',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 sárúwá, 10:00 sárúwá',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 cɛɛ́nko, 12:00 cɛɛ́nko',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 cɛɛ́nko, 5:00 cɛɛ́nko',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 cɛɛ́nko, 9:30 cɛɛ́nko',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 cɛɛ́nko, 11:00 cɛɛ́nko',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KshTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KshTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ksh'; // Colognian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samsdaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunndaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mohndaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dinnsdaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Metwoch at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunnersdaach at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friidaach at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinnsdaach at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Metwoch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunnersdaach at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friidaach at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samsdaach at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunndaach at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dinnsdaach at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dinnsdaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mohndaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunndaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samsdaach at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friidaach at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunnersdaach at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Metwoch at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friidaach at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 v.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 v.M., 12:00 v.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 v.M., 1:30 v.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 v.M., 2:00 v.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 v.M., 6:00 v.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 v.M., 10:00 v.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 n.M., 12:00 n.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 n.M., 5:00 n.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 n.M., 9:30 n.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 n.M., 11:00 n.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Sekůndt ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Sekůndt ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Sekůndt ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Sekůndt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Menutt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Menutt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Menutt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Menutt ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 Uhr ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 Uhr ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 Uhr ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 Uhr ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 Daach ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 Daach ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 Daach ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 Daach ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 woch ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 woch ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 woch ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 woch ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Moohnd ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Moohnd ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Moohnd ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Moohnd ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 Johr ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 Johr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 Johr ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 Johr ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Sekůndt from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Sekůndt from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekůndt after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sekůndt after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekůndt before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sekůndt before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekůndt',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekůndt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekůndt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekůndt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Sekůndt from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Menutt 1 Sekůndt',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 Johr 3 Moohnd 1 Daach 1 Sekůndt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 Johr from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Moohnd ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 Johr 3 Moohnd 1 Daach 1 Sekůndt ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 woch 10 Uhr',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 woch 6 Daach',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 woch 6 Daach',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 woch and 6 Daach from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 woch 1 Uhr',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 Uhr from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Daach',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Daach 3 Uhr',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ku'; // Kurdish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'şemî at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'yekşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'duşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'çarşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'pêncşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'în at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'çarşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'pêncşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'în at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'şemî at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last yekşem at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last duşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last yekşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last şemî at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last în at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last pêncşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last çarşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last în at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 2',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'berî 1 saniye',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'berî 1 saniye',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'berî 2 saniye',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'berî 2 saniye',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'berî 1 deqîqe',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'berî 1 deqîqe',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'berî 2 deqîqe',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'berî 2 deqîqe',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'berî 1 saet',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'berî 1 saet',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'berî 2 saet',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'berî 2 saet',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'berî 1 roj',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'berî 1 roj',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'berî 2 roj',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'berî 2 roj',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'berî 1 hefte',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'berî 1 hefte',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'berî 2 hefte',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'berî 2 hefte',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'berî 1 meh',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'berî 1 meh',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'berî 2 meh',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'berî 2 meh',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'berî 1 salê',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'berî 1 salê',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'berî 2 salan',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'berî 2 salan',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'di 1 saniye de',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'di 1 saniye de',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 saniye piştî',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 saniye piştî',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 saniye berê',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 saniye berê',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'di 1 saniye de',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 deqîqe 1 saniye',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 sal 3 meh 1 roj 1 saniye',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'di 3 salan de',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'berî 5 meh',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'berî 2 salan 3 meh 1 roj 1 saniye',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 hefte 10 saet',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hefte 6 roj',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hefte 6 roj',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'di 1 hefte û 6 roj de',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 hefte 1 saet',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'di 1 saet de',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 roj',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 roj 3 saet',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KuTrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KuTrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ku_TR'; // Kurdish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'şemî at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'yekşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'duşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'çarşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'pêncşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'în at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'çarşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'pêncşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'în at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'şemî at 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last yekşem at 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last sêşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last duşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last yekşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last şemî at 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last în at 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last pêncşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last çarşem at 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last în at 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 2',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'berî 1 saniye',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'berî 1 saniye',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'berî 2 saniye',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'berî 2 saniye',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'berî 1 deqîqe',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'berî 1 deqîqe',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'berî 2 deqîqe',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'berî 2 deqîqe',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'berî 1 saet',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'berî 1 saet',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'berî 2 saet',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'berî 2 saet',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'berî 1 roj',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'berî 1 roj',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'berî 2 roj',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'berî 2 roj',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'berî 1 hefte',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'berî 1 hefte',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'berî 2 hefte',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'berî 2 hefte',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'berî 1 meh',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'berî 1 meh',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'berî 2 meh',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'berî 2 meh',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'berî 1 salê',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'berî 1 salê',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'berî 2 salan',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'berî 2 salan',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'di 1 saniye de',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'di 1 saniye de',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 saniye piştî',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 saniye piştî',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 saniye berê',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 saniye berê',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'di 1 saniye de',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 deqîqe 1 saniye',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 sal 3 meh 1 roj 1 saniye',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'di 3 salan de',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'berî 5 meh',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'berî 2 salan 3 meh 1 roj 1 saniye',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 hefte 10 saet',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hefte 6 roj',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hefte 6 roj',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'di 1 hefte û 6 roj de',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 hefte 1 saet',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'di 1 saet de',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 roj',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 roj 3 saet',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KwGbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KwGbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kw_GB'; // Cornish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Sadorn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Sul at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Lun at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Merher at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'De Yow at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Merher at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Yow at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Sadorn at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last De Sul at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Lun at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Sul at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Sadorn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last De Yow at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last De Merher at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 pryjwyth ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 pryjwyth ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 pryjwyth ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 pryjwyth ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mynysen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mynysen ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mynysen ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mynysen ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 eur ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 eur ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 eur ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 eur ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dydh ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dydh ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dydh ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dydh ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 seythen ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 seythen ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 seythen ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 seythen ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mis ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mis ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mis ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mis ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 bledhen ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 bledhen ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 bledhen ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 bledhen ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 pryjwyth from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 pryjwyth from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 pryjwyth after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 pryjwyth after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 pryjwyth before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 pryjwyth before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 pryjwyth',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 pryjwyth',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 pryjwyth',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 pryjwyth',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 pryjwyth from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mynysen 1 pryjwyth',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 bledhen 3 mis 1 dydh 1 pryjwyth',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 bledhen from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mis ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 bledhen 3 mis 1 dydh 1 pryjwyth ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 seythen 10 eur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seythen 6 dydh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seythen 6 dydh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 seythen and 6 dydh from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 seythen 1 eur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 eur from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dydh',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dydh 3 eur',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'kw'; // Cornish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Sadorn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Sul at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Lun at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'De Merher at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'De Yow at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Merher at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Yow at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Sadorn at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last De Sul at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Merth at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Lun at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Sul at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Sadorn at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last De Yow at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last De Merher at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last De Gwener at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 pryjwyth ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 pryjwyth ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 pryjwyth ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 pryjwyth ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mynysen ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mynysen ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mynysen ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mynysen ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 eur ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 eur ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 eur ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 eur ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dydh ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dydh ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dydh ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dydh ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 seythen ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 seythen ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 seythen ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 seythen ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mis ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mis ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mis ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mis ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 bledhen ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 bledhen ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 bledhen ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 bledhen ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 pryjwyth from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 pryjwyth from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 pryjwyth after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 pryjwyth after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 pryjwyth before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 pryjwyth before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 pryjwyth',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 pryjwyth',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 pryjwyth',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 pryjwyth',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 pryjwyth from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mynysen 1 pryjwyth',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 bledhen 3 mis 1 dydh 1 pryjwyth',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 bledhen from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mis ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 bledhen 3 mis 1 dydh 1 pryjwyth ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 seythen 10 eur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seythen 6 dydh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seythen 6 dydh',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 seythen and 6 dydh from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 seythen 1 eur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 eur from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dydh',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dydh 3 eur',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KyKgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KyKgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ky_KG'; // Kirghiz\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Эртең саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ишемби саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Жекшемби саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дүйшөмбү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шейшемби саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шаршемби саат 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Бейшемби саат 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Жума саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шейшемби саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шаршемби саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Бейшемби саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Жума саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ишемби саат 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Өткен аптанын Жекшемби күнү саат 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кече саат 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Бүгүн саат 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Бүгүн саат 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Эртең саат 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шейшемби саат 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Кече саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кече саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Шейшемби күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Дүйшөмбү күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Жекшемби күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Ишемби күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Жума күнү саат 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Өткен аптанын Бейшемби күнү саат 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Өткен аптанын Шаршемби күнү саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Өткен аптанын Жума күнү саат 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-чи 1-чи 1-чи 1-чи 1-чи',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-чи 1-чи',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-чү 1-чи',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-чү 1-чи',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-чи 1-чи',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-чы 1-чи',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-чи 1-чи',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-чи 2-чи',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-чы',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-чи',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-чү',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 таңкы CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 таңкы, 12:00 таңкы',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 таңкы, 1:30 таңкы',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 таңкы, 2:00 таңкы',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 таңкы, 6:00 таңкы',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 таңкы, 10:00 таңкы',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 түштөн кийинки, 12:00 түштөн кийинки',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 түштөн кийинки, 5:00 түштөн кийинки',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 түштөн кийинки, 9:30 түштөн кийинки',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 түштөн кийинки, 11:00 түштөн кийинки',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-чү',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунд мурун',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. мурун',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунд мурун',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. мурун',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 мүнөт мурун',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мүн. мурун',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 мүнөт мурун',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мүн. мурун',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 саат мурун',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 саат. мурун',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 саат мурун',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 саат. мурун',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 күн мурун',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 күн мурун',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 күн мурун',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 күн мурун',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 апта мурун',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 апт. мурун',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 апта мурун',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 апт. мурун',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ай мурун',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ай мурун',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ай мурун',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ай мурун',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 жыл мурун',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 жыл мурун',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 жыл мурун',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 жыл мурун',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 секунд ичинде',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 сек. ичинде',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 сек. ичинде',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 мүнөт 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 жыл 3 ай 1 күн 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 жыл ичинде',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ай мурун',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 жыл 3 ай 1 күн 1 сек. мурун',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 апта 10 саат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 апта 6 күн ичинде',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 апта 1 саат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'бир саат ичинде',\n        // CarbonInterval::days(2)->forHumans()\n        '2 күн',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 күн 3 саат.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/KyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass KyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ky'; // Kirghiz\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Эртең саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ишемби саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Жекшемби саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дүйшөмбү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шейшемби саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шаршемби саат 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Бейшемби саат 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Жума саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шейшемби саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шаршемби саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Бейшемби саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Жума саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ишемби саат 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Өткен аптанын Жекшемби күнү саат 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кече саат 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Бүгүн саат 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Бүгүн саат 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Эртең саат 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шейшемби саат 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Кече саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кече саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Шейшемби күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Дүйшөмбү күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Жекшемби күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Ишемби күнү саат 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Өткен аптанын Жума күнү саат 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Өткен аптанын Бейшемби күнү саат 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Өткен аптанын Шаршемби күнү саат 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Өткен аптанын Жума күнү саат 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-чи 1-чи 1-чи 1-чи 1-чи',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-чи 1-чи',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-чү 1-чи',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-чү 1-чи',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-чи 1-чи',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-чы 1-чи',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-чи 1-чи',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-чи 2-чи',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-чы',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-чи',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-чү',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 таңкы CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 таңкы, 12:00 таңкы',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 таңкы, 1:30 таңкы',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 таңкы, 2:00 таңкы',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 таңкы, 6:00 таңкы',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 таңкы, 10:00 таңкы',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 түштөн кийинки, 12:00 түштөн кийинки',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 түштөн кийинки, 5:00 түштөн кийинки',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 түштөн кийинки, 9:30 түштөн кийинки',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 түштөн кийинки, 11:00 түштөн кийинки',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-чү',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунд мурун',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. мурун',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунд мурун',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. мурун',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 мүнөт мурун',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мүн. мурун',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 мүнөт мурун',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мүн. мурун',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 саат мурун',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 саат. мурун',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 саат мурун',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 саат. мурун',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 күн мурун',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 күн мурун',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 күн мурун',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 күн мурун',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 апта мурун',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 апт. мурун',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 апта мурун',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 апт. мурун',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ай мурун',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ай мурун',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ай мурун',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ай мурун',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 жыл мурун',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 жыл мурун',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 жыл мурун',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 жыл мурун',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 секунд ичинде',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 сек. ичинде',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 сек. ичинде',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 мүнөт 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 жыл 3 ай 1 күн 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 жыл ичинде',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ай мурун',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 жыл 3 ай 1 күн 1 сек. мурун',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 апта 10 саат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 апта 6 күн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 апта 6 күн ичинде',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 апта 1 саат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'бир саат ичинде',\n        // CarbonInterval::days(2)->forHumans()\n        '2 күн',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 күн 3 саат.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LagTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LagTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lag'; // Langi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamóosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapíiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatátu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaíne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatáano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alamíisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumáa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaíne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatáano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alamíisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumáa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamóosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapíiri at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaíne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumaíne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatátu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapíiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamóosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumáa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alamíisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatáano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumáa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 too CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 TOO, 12:00 too',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 TOO, 1:30 too',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 TOO, 2:00 too',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 TOO, 6:00 too',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 TOO, 10:00 too',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MUU, 12:00 muu',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MUU, 5:00 muu',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MUU, 9:30 muu',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MUU, 11:00 muu',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LanguagesCoverageTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse Tests\\AbstractTestCase;\n\nclass LanguagesCoverageTest extends AbstractTestCase\n{\n    public function testAllLanguagesAreTested()\n    {\n        $languages = glob(__DIR__.'/../../src/Carbon/Lang/*.php');\n        $tests = array_map(function ($file) {\n            return strtolower(substr(basename($file), 0, -8));\n        }, glob(__DIR__.'/*Test.php'));\n        $tester = $this;\n        $missingLanguages = array_filter($languages, function ($language) use ($tester, $tests) {\n            $file = basename($language);\n            $covered = \\in_array(\n                str_replace(['_', '-', '@'], '', strtolower(substr($file, 0, -4))),\n                $tests,\n                true,\n            );\n            $tester->assertTrue($covered, \"Expect $file language file to be covered.\");\n\n            return !$covered;\n        });\n\n        $this->assertCount(0, $missingLanguages, 'Expect to have 0 languages uncovered.');\n    }\n}\n"
  },
  {
    "path": "tests/Localization/LbLuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LbLuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lb_LU'; // Luxembourgish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Muer um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonndeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Méindeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mëttwoch um 0:00 Auer',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donneschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mëttwoch um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donneschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschdeg um 0:00 Auer',\n        // Carbon::now()->subDays(2)->calendar()\n        'Leschte Sonndeg um 20:49 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gëschter um 22:00 Auer',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Haut um 10:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Haut um 2:00 Auer',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Muer um 1:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Gëschter um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gëschter um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschten Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Méindeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Sonndeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Samschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Leschten Donneschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Leschte Mëttwoch um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Leschte Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 moies CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 moies, 12:00 moies',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 moies, 1:30 moies',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 moies, 2:00 moies',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 moies, 6:00 moies',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 moies, 10:00 moies',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mëttes, 12:00 mëttes',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 mëttes, 5:00 mëttes',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 mëttes, 9:30 mëttes',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 mëttes, 11:00 mëttes',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'virun 1 Sekonn',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'virun 1Sek',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'virun 2 Sekonnen',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'virun 2Sek',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'virun 1 Minutt',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'virun 1M',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'virun 2 Minutten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'virun 2M',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'virun 1 Stonn',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'virun 1Sto',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'virun 2 Stonnen',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'virun 2Sto',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'virun 1 Dag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'virun 1D',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'virun 2 Deeg',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'virun 2D',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'virun 1 Woch',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'virun 1Wo',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'virun 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'virun 2Wo',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'virun 1 Mount',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'virun 1Mo',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'virun 2 Méint',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'virun 2Mo',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'virun 1 Joer',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'virun 1J',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'virun 2 Joer',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'virun 2J',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'an 1 Sekonn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'an 1Sek',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekonn duerno',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1Sek duerno',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekonn virdrun',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1Sek virdrun',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekonn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1Sek',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekonnen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2Sek',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'an 1Sek',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minutt 1 Sekonn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2J 3Mo 1D 1Sek',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'an 3 Joer',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'virun 5Mo',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'virun 2J 3Mo 1D 1Sek',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woch 10 Stonnen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woch 6 Deeg',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woch 6 Deeg',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'an 1 Woch an 6 Deeg',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stonn',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an 1 Stonn',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Deeg',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1D 3Sto',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lb'; // Luxembourgish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Muer um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonndeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Méindeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mëttwoch um 0:00 Auer',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donneschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mëttwoch um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donneschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschdeg um 0:00 Auer',\n        // Carbon::now()->subDays(2)->calendar()\n        'Leschte Sonndeg um 20:49 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gëschter um 22:00 Auer',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Haut um 10:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Haut um 2:00 Auer',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Muer um 1:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Gëschter um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Gëschter um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschten Dënschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Méindeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Sonndeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Samschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Leschte Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Leschten Donneschdeg um 0:00 Auer',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Leschte Mëttwoch um 0:00 Auer',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Leschte Freideg um 0:00 Auer',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 moies CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 moies, 12:00 moies',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 moies, 1:30 moies',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 moies, 2:00 moies',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 moies, 6:00 moies',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 moies, 10:00 moies',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mëttes, 12:00 mëttes',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 mëttes, 5:00 mëttes',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 mëttes, 9:30 mëttes',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 mëttes, 11:00 mëttes',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'virun 1 Sekonn',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'virun 1Sek',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'virun 2 Sekonnen',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'virun 2Sek',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'virun 1 Minutt',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'virun 1M',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'virun 2 Minutten',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'virun 2M',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'virun 1 Stonn',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'virun 1Sto',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'virun 2 Stonnen',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'virun 2Sto',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'virun 1 Dag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'virun 1D',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'virun 2 Deeg',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'virun 2D',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'virun 1 Woch',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'virun 1Wo',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'virun 2 Wochen',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'virun 2Wo',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'virun 1 Mount',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'virun 1Mo',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'virun 2 Méint',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'virun 2Mo',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'virun 1 Joer',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'virun 1J',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'virun 2 Joer',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'virun 2J',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'an 1 Sekonn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'an 1Sek',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekonn duerno',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1Sek duerno',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekonn virdrun',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1Sek virdrun',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekonn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1Sek',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekonnen',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2Sek',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'an 1Sek',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minutt 1 Sekonn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2J 3Mo 1D 1Sek',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'an 3 Joer',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'virun 5Mo',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'virun 2J 3Mo 1D 1Sek',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Woch 10 Stonnen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woch 6 Deeg',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Woch 6 Deeg',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'an 1 Woch an 6 Deeg',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Wochen 1 Stonn',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an 1 Stonn',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Deeg',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1D 3Sto',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lg'; // Ganda\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lwamukaaga at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabiiti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Balaza at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lwakusatu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Lwakuna at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakusatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakuna at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwamukaaga at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sabiiti at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Balaza at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabiiti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lwamukaaga at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Lwakuna at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Lwakusatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 kyʼokubiri ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 kyʼokubiri ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 kyʼokubiri ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 kyʼokubiri ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ddakiika 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ddakiika 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ddakiika 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ddakiika 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saawa 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saawa 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saawa 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saawa 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 lunaku ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 lunaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 lunaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 lunaku ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sabbiiti ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sabbiiti ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sabbiiti ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sabbiiti ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 njuba ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 njuba ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 njuba ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 njuba ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 mwaaka ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 mwaaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 mwaaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 mwaaka ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 kyʼokubiri from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 kyʼokubiri from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 kyʼokubiri after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 kyʼokubiri after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 kyʼokubiri before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 kyʼokubiri before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 kyʼokubiri',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 kyʼokubiri',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 kyʼokubiri',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 kyʼokubiri',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 kyʼokubiri from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ddakiika 1 1 kyʼokubiri',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 mwaaka 3 njuba 1 lunaku 1 kyʼokubiri',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 mwaaka from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 njuba ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 mwaaka 3 njuba 1 lunaku 1 kyʼokubiri ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sabbiiti saawa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sabbiiti 6 lunaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sabbiiti 6 lunaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sabbiiti and 6 lunaku from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sabbiiti saawa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saawa 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 lunaku',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 lunaku saawa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LgUgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LgUgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lg_UG'; // Ganda\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lwamukaaga at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabiiti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Balaza at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lwakusatu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Lwakuna at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakusatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakuna at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwamukaaga at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sabiiti at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lwakubiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Balaza at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabiiti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lwamukaaga at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Lwakuna at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Lwakusatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Lwakutaano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 kyʼokubiri ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 kyʼokubiri ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 kyʼokubiri ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 kyʼokubiri ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ddakiika 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ddakiika 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ddakiika 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ddakiika 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saawa 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saawa 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saawa 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saawa 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 lunaku ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 lunaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 lunaku ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 lunaku ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sabbiiti ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sabbiiti ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sabbiiti ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sabbiiti ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 njuba ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 njuba ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 njuba ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 njuba ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 mwaaka ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 mwaaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 mwaaka ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 mwaaka ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 kyʼokubiri from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 kyʼokubiri from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 kyʼokubiri after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 kyʼokubiri after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 kyʼokubiri before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 kyʼokubiri before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 kyʼokubiri',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 kyʼokubiri',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 kyʼokubiri',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 kyʼokubiri',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 kyʼokubiri from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ddakiika 1 1 kyʼokubiri',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 mwaaka 3 njuba 1 lunaku 1 kyʼokubiri',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 mwaaka from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 njuba ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 mwaaka 3 njuba 1 lunaku 1 kyʼokubiri ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sabbiiti saawa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sabbiiti 6 lunaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sabbiiti 6 lunaku',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sabbiiti and 6 lunaku from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sabbiiti saawa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saawa 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 lunaku',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 lunaku saawa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LiNlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LiNlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'li_NL'; // Limburgish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaoterdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zóndig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maondig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'goonsdig at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'dónderdig at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'goonsdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dónderdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaoterdig at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last zóndig at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maondig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last zóndig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last zaoterdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last dónderdig at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last goonsdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Secónd ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Secónd ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Secónd ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Secónd ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 momênt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 momênt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 momênt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 momênt ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oer ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oer ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oer ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oer ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 daag ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 daag ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 daag ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 daag ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 waek ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 waek ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 waek ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 waek ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maond ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 maond ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maond ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 maond ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaor ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 jaor ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaor ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 jaor ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Secónd from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Secónd from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Secónd after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Secónd after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Secónd before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Secónd before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Secónd',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Secónd',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Secónd',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Secónd',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Secónd from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 momênt 1 Secónd',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 jaor 3 maond 1 daag 1 Secónd',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jaor from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 maond ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 jaor 3 maond 1 daag 1 Secónd ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 waek 10 oer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 waek 6 daag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 waek 6 daag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 waek and 6 daag from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 waek 1 oer',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 oer from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 daag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 daag 3 oer',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'li'; // Limburgish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaoterdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zóndig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maondig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'goonsdig at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'dónderdig at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'goonsdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dónderdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaoterdig at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last zóndig at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last daensdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last maondig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last zóndig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last zaoterdig at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last dónderdig at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last goonsdig at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vriedig at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Secónd ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Secónd ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Secónd ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Secónd ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 momênt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 momênt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 momênt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 momênt ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oer ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oer ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oer ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oer ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 daag ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 daag ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 daag ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 daag ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 waek ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 waek ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 waek ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 waek ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maond ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 maond ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maond ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 maond ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaor ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 jaor ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaor ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 jaor ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Secónd from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Secónd from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Secónd after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Secónd after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Secónd before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Secónd before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Secónd',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Secónd',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Secónd',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Secónd',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Secónd from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 momênt 1 Secónd',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 jaor 3 maond 1 daag 1 Secónd',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jaor from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 maond ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 jaor 3 maond 1 daag 1 Secónd ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 waek 10 oer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 waek 6 daag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 waek 6 daag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 waek and 6 daag from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 waek 1 oer',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 oer from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 daag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 daag 3 oer',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LijItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LijItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lij_IT'; // Ligurian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabbo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenega at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lûnedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercUrdì at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'zêggia at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venardì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercUrdì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zêggia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venardì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabbo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last domenega at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lûnedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last domenega at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabbo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last venardì at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last zêggia at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mercUrdì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last venardì at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segondo ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segondo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segondo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segondo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menûo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 menûo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menûo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 menûo ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 reléuio ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 reléuio ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 reléuio ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 reléuio ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 giorno ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorno ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 giorno ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settemannha ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 settemannha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settemannha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 settemannha ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 meize ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 meize ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 meize ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 meize ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 etæ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 etæ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 etæ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 etæ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segondo from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segondo from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segondo after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segondo after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segondo before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segondo before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segondo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segondo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segondo from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menûo 1 segondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 etæ 3 meize 1 giorno 1 segondo',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 etæ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 meize ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 etæ 3 meize 1 giorno 1 segondo ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settemannha 10 reléuio',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settemannha 6 giorno',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settemannha 6 giorno',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 settemannha and 6 giorno from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settemannha 1 reléuio',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 reléuio from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorno',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 giorno 3 reléuio',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LijTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LijTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lij'; // Ligurian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabbo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domenega at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lûnedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mercUrdì at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'zêggia at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venardì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mercUrdì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zêggia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venardì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabbo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last domenega at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martedì at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lûnedì at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last domenega at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabbo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last venardì at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last zêggia at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mercUrdì at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last venardì at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segondo ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segondo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segondo ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segondo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menûo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 menûo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menûo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 menûo ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 reléuio ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 reléuio ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 reléuio ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 reléuio ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 giorno ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 giorno ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 giorno ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 giorno ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 settemannha ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 settemannha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 settemannha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 settemannha ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 meize ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 meize ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 meize ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 meize ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 etæ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 etæ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 etæ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 etæ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segondo from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segondo from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segondo after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segondo after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segondo before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segondo before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segondo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segondo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segondo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segondo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segondo from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menûo 1 segondo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 etæ 3 meize 1 giorno 1 segondo',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 etæ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 meize ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 etæ 3 meize 1 giorno 1 segondo ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 settemannha 10 reléuio',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settemannha 6 giorno',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 settemannha 6 giorno',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 settemannha and 6 giorno from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 settemannha 1 reléuio',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 reléuio from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 giorno',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 giorno 3 reléuio',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LktTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LktTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lkt'; // Lakota\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 icinuŋpa ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 icinuŋpa ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 icinuŋpa ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 icinuŋpa ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 číkʼala ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 číkʼala ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 číkʼala ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 číkʼala ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 maza škaŋškaŋ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 maza škaŋškaŋ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 maza škaŋškaŋ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 maza škaŋškaŋ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 aŋpétu ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 aŋpétu ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 aŋpétu ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 aŋpétu ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 šakówiŋ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 šakówiŋ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 šakówiŋ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 šakówiŋ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 haŋwí ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 haŋwí ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 haŋwí ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 haŋwí ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 waníyetu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 waníyetu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 waníyetu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 waníyetu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 icinuŋpa from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 icinuŋpa from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 icinuŋpa after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 icinuŋpa after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 icinuŋpa before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 icinuŋpa before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 icinuŋpa',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 icinuŋpa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 icinuŋpa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 icinuŋpa',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 icinuŋpa from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 číkʼala 1 icinuŋpa',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 waníyetu 3 haŋwí 1 aŋpétu 1 icinuŋpa',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 waníyetu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 haŋwí ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 waníyetu 3 haŋwí 1 aŋpétu 1 icinuŋpa ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 šakówiŋ 10 maza škaŋškaŋ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 šakówiŋ 6 aŋpétu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 šakówiŋ 6 aŋpétu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 šakówiŋ and 6 aŋpétu from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 šakówiŋ 1 maza škaŋškaŋ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 maza škaŋškaŋ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 aŋpétu',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 aŋpétu 3 maza škaŋškaŋ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LnAoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LnAoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ln_AO'; // Lingala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa yambo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mpɔ́sɔ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last eyenga at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ mwa yambo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last eyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ntɔ́ngɔ́ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ntɔ́ngɔ́, 12:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ntɔ́ngɔ́, 1:30 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ntɔ́ngɔ́, 2:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ntɔ́ngɔ́, 6:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ntɔ́ngɔ́, 10:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mpókwa, 12:00 mpókwa',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 mpókwa, 5:00 mpókwa',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 mpókwa, 9:30 mpókwa',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 mpókwa, 11:00 mpókwa',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'segɔnde 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'segɔnde 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ngonga 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ngonga 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'sánzá 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'sánzá 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'mbula 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'mbula 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'mbula 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'mbula 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segɔnde 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'segɔnde 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segɔnde 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'segɔnde 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segɔnde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'segɔnde 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'segɔnde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'segɔnde 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'segɔnde 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 segɔnde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mbula 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'sánzá 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 ngonga 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mpɔ́sɔ 1 and mokɔlɔ 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 2 ngonga 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ngonga 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'mokɔlɔ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'mokɔlɔ 1 ngonga 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LnCdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LnCdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ln_CD'; // Lingala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lomíngo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mosálá mɔ̌kɔ́ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Misálá mísáto at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Misálá mínei at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá mínei at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mpɔ́sɔ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lomíngo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mosálá mɔ̌kɔ́ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lomíngo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Misálá mínei at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Misálá mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'segɔnde 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'segɔnde 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ngonga 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ngonga 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'sánzá 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'sánzá 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'mbula 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'mbula 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'mbula 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'mbula 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segɔnde 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'segɔnde 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segɔnde 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'segɔnde 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segɔnde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'segɔnde 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'segɔnde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'segɔnde 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'segɔnde 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 segɔnde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mbula 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'sánzá 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 ngonga 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mpɔ́sɔ 1 and mokɔlɔ 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 2 ngonga 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ngonga 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'mokɔlɔ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'mokɔlɔ 1 ngonga 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LnCfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LnCfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ln_CF'; // Lingala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa yambo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mpɔ́sɔ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last eyenga at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ mwa yambo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last eyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ntɔ́ngɔ́ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ntɔ́ngɔ́, 12:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ntɔ́ngɔ́, 1:30 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ntɔ́ngɔ́, 2:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ntɔ́ngɔ́, 6:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ntɔ́ngɔ́, 10:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mpókwa, 12:00 mpókwa',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 mpókwa, 5:00 mpókwa',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 mpókwa, 9:30 mpókwa',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 mpókwa, 11:00 mpókwa',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'segɔnde 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'segɔnde 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ngonga 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ngonga 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'sánzá 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'sánzá 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'mbula 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'mbula 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'mbula 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'mbula 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segɔnde 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'segɔnde 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segɔnde 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'segɔnde 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segɔnde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'segɔnde 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'segɔnde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'segɔnde 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'segɔnde 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 segɔnde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mbula 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'sánzá 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 ngonga 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mpɔ́sɔ 1 and mokɔlɔ 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 2 ngonga 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ngonga 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'mokɔlɔ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'mokɔlɔ 1 ngonga 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LnCgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LnCgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ln_CG'; // Lingala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'eyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa yambo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mpɔ́sɔ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last eyenga at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ mwa míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ mwa yambo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last eyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last mokɔlɔ ya mínéi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mokɔlɔ mwa mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mokɔlɔ ya mítáno at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ntɔ́ngɔ́ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ntɔ́ngɔ́, 12:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ntɔ́ngɔ́, 1:30 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ntɔ́ngɔ́, 2:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ntɔ́ngɔ́, 6:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ntɔ́ngɔ́, 10:00 ntɔ́ngɔ́',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mpókwa, 12:00 mpókwa',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 mpókwa, 5:00 mpókwa',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 mpókwa, 9:30 mpókwa',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 mpókwa, 11:00 mpókwa',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'segɔnde 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'segɔnde 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ngonga 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ngonga 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'sánzá 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'sánzá 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'mbula 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'mbula 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'mbula 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'mbula 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segɔnde 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'segɔnde 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segɔnde 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'segɔnde 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segɔnde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'segɔnde 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'segɔnde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'segɔnde 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'segɔnde 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 segɔnde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mbula 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'sánzá 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 ngonga 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mpɔ́sɔ 1 and mokɔlɔ 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 2 ngonga 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ngonga 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'mokɔlɔ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'mokɔlɔ 1 ngonga 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ln'; // Lingala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lomíngo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mosálá mɔ̌kɔ́ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Misálá mísáto at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Misálá mínei at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá mínei at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mpɔ́sɔ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lomíngo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Misálá míbalé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mosálá mɔ̌kɔ́ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lomíngo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mpɔ́sɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Misálá mínei at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Misálá mísáto at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Misálá mítáno at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'segɔnde 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'segɔnde 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'segɔnde 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'miniti 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'miniti 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'miniti 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ngonga 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ngonga 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ngonga 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'mokɔlɔ 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'mokɔlɔ 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mpɔ́sɔ 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'sánzá 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'sánzá 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'sánzá 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'mbula 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'mbula 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'mbula 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'mbula 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'segɔnde 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'segɔnde 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'segɔnde 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'segɔnde 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'segɔnde 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segɔnde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'segɔnde 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'segɔnde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'segɔnde 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'segɔnde 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'miniti 1 segɔnde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'mbula 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'sánzá 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'mbula 2 sánzá 3 mokɔlɔ 1 segɔnde 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 ngonga 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 1 mokɔlɔ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mpɔ́sɔ 1 and mokɔlɔ 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mpɔ́sɔ 2 ngonga 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ngonga 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'mokɔlɔ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'mokɔlɔ 1 ngonga 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LoLaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LoLaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lo_LA'; // Lao\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ອື່ນເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນເສົາໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອາທິດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນຈັນໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອັງຄານໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນພຸດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ວັນພະຫັດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ວັນສຸກໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນອັງຄານໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນພຸດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນພະຫັດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນສຸກໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນເສົາໜ້າເວລາ 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ວັນອາທິດແລ້ວນີ້ເວລາ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ວານນີ້ເວລາ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ມື້ນີ້ເວລາ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ນີ້ເວລາ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ມື້ອື່ນເວລາ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນອັງຄານໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ມື້ວານນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ວານນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອັງຄານແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນຈັນແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອາທິດແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນເສົາແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນສຸກແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ວັນພະຫັດແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ວັນພຸດແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນສຸກແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ທີ່1 ທີ່1 ທີ່1 ທີ່1 ທີ່1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ທີ່2 ທີ່1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ທີ່3 ທີ່1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ທີ່4 ທີ່1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ທີ່5 ທີ່1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ທີ່6 ທີ່1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ທີ່7 ທີ່2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ທີ່11 ທີ່2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ທີ່40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ທີ່41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ທີ່100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ຕອນເຊົ້າ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ຕອນເຊົ້າ, 12:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ຕອນເຊົ້າ, 1:30 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ຕອນເຊົ້າ, 2:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ຕອນເຊົ້າ, 6:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ຕອນເຊົ້າ, 10:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ຕອນແລງ, 12:00 ຕອນແລງ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ຕອນແລງ, 5:00 ຕອນແລງ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ຕອນແລງ, 9:30 ຕອນແລງ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ຕອນແລງ, 11:00 ຕອນແລງ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ທີ່0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ວິນາທີຜ່ານມາ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ວິ.ຜ່ານມາ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ວິນາທີຜ່ານມາ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ວິ.ຜ່ານມາ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ນາທີຜ່ານມາ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ນທ.ຜ່ານມາ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ນາທີຜ່ານມາ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ນທ.ຜ່ານມາ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ຊົ່ວໂມງຜ່ານມາ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ຊມ.ຜ່ານມາ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ຊົ່ວໂມງຜ່ານມາ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ຊມ.ຜ່ານມາ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ມື້ຜ່ານມາ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ມື້ຜ່ານມາ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ມື້ຜ່ານມາ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ມື້ຜ່ານມາ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ອາທິດຜ່ານມາ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ອທ.ຜ່ານມາ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ອາທິດຜ່ານມາ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ອທ.ຜ່ານມາ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ເດືອນຜ່ານມາ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ດ.ຜ່ານມາ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ເດືອນຜ່ານມາ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ດ.ຜ່ານມາ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ປີຜ່ານມາ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ປີຜ່ານມາ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ປີຜ່ານມາ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ປີຜ່ານມາ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ອີກ 1 ວິນາທີ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ອີກ 1 ວິ.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ວິນາທີ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ວິ.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ວິນາທີ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ວິ.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ອີກ 1 ວິ.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ນາທີ 1 ວິນາທີ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ປີ 3 ດ. 1 ມື້ 1 ວິ.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ອີກ 3 ປີ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ດ.ຜ່ານມາ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ປີ 3 ດ. 1 ມື້ 1 ວິ.ຜ່ານມາ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ອາທິດ 10 ຊົ່ວໂມງ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ອາທິດ 6 ມື້',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ອາທິດ 6 ມື້',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ອີກ 1 ອາທິດແລະ 6 ມື້',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ອາທິດ 1 ຊົ່ວໂມງ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ອີກ 1 ຊົ່ວໂມງ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ມື້',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ມື້ 3 ຊມ.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lo'; // Lao\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ອື່ນເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນເສົາໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອາທິດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນຈັນໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອັງຄານໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນພຸດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ວັນພະຫັດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ວັນສຸກໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນອັງຄານໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນພຸດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນພະຫັດໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນສຸກໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນເສົາໜ້າເວລາ 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ວັນອາທິດແລ້ວນີ້ເວລາ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ວານນີ້ເວລາ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ມື້ນີ້ເວລາ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ນີ້ເວລາ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ມື້ອື່ນເວລາ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນອັງຄານໜ້າເວລາ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ມື້ວານນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ມື້ວານນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອັງຄານແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນຈັນແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນອາທິດແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນເສົາແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ວັນສຸກແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ວັນພະຫັດແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ວັນພຸດແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ວັນສຸກແລ້ວນີ້ເວລາ 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ທີ່1 ທີ່1 ທີ່1 ທີ່1 ທີ່1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ທີ່2 ທີ່1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ທີ່3 ທີ່1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ທີ່4 ທີ່1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ທີ່5 ທີ່1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ທີ່6 ທີ່1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ທີ່7 ທີ່2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ທີ່11 ທີ່2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ທີ່40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ທີ່41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ທີ່100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ຕອນເຊົ້າ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ຕອນເຊົ້າ, 12:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ຕອນເຊົ້າ, 1:30 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ຕອນເຊົ້າ, 2:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ຕອນເຊົ້າ, 6:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ຕອນເຊົ້າ, 10:00 ຕອນເຊົ້າ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ຕອນແລງ, 12:00 ຕອນແລງ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ຕອນແລງ, 5:00 ຕອນແລງ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ຕອນແລງ, 9:30 ຕອນແລງ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ຕອນແລງ, 11:00 ຕອນແລງ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ທີ່0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ວິນາທີຜ່ານມາ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ວິ.ຜ່ານມາ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ວິນາທີຜ່ານມາ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ວິ.ຜ່ານມາ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ນາທີຜ່ານມາ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ນທ.ຜ່ານມາ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ນາທີຜ່ານມາ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ນທ.ຜ່ານມາ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ຊົ່ວໂມງຜ່ານມາ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ຊມ.ຜ່ານມາ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ຊົ່ວໂມງຜ່ານມາ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ຊມ.ຜ່ານມາ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ມື້ຜ່ານມາ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ມື້ຜ່ານມາ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ມື້ຜ່ານມາ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ມື້ຜ່ານມາ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ອາທິດຜ່ານມາ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ອທ.ຜ່ານມາ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ອາທິດຜ່ານມາ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ອທ.ຜ່ານມາ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ເດືອນຜ່ານມາ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ດ.ຜ່ານມາ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ເດືອນຜ່ານມາ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ດ.ຜ່ານມາ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ປີຜ່ານມາ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ປີຜ່ານມາ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ປີຜ່ານມາ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ປີຜ່ານມາ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ອີກ 1 ວິນາທີ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ອີກ 1 ວິ.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ວິນາທີ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ວິ.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ວິນາທີ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ວິ.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ອີກ 1 ວິ.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ນາທີ 1 ວິນາທີ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ປີ 3 ດ. 1 ມື້ 1 ວິ.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ອີກ 3 ປີ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ດ.ຜ່ານມາ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ປີ 3 ດ. 1 ມື້ 1 ວິ.ຜ່ານມາ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ອາທິດ 10 ຊົ່ວໂມງ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ອາທິດ 6 ມື້',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ອາທິດ 6 ມື້',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ອີກ 1 ອາທິດແລະ 6 ມື້',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ອາທິດ 1 ຊົ່ວໂມງ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ອີກ 1 ຊົ່ວໂມງ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ມື້',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ມື້ 3 ຊມ.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LocalizationTestCase.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse InvalidArgumentException;\nuse PHPUnit\\Framework\\Attributes\\Group;\nuse Tests\\AbstractTestCase;\n\n/**\n * @SuppressWarnings(NumberOfChildren)\n */\nabstract class LocalizationTestCase extends AbstractTestCase\n{\n    public const LOCALE = 'en';\n\n    public const LOCALES = [\n        'aa' => 'Afar',\n        'ab' => 'Abkhazian',\n        'ae' => 'Avestan',\n        'af' => 'Afrikaans',\n        'ak' => 'Akan',\n        'am' => 'Amharic',\n        'an' => 'Aragonese',\n        'ar' => 'Arabic',\n        'as' => 'Assamese',\n        'av' => 'Avaric',\n        'ay' => 'Aymara',\n        'az' => 'Azerbaijani',\n        'ba' => 'Bashkir',\n        'be' => 'Belarusian',\n        'bg' => 'Bulgarian',\n        'bh' => 'Bihari',\n        'bi' => 'Bislama',\n        'bm' => 'Bambara',\n        'bn' => 'Bengali',\n        'bo' => 'Tibetan',\n        'br' => 'Breton',\n        'bs' => 'Bosnian',\n        'ca' => 'Catalan',\n        'ce' => 'Chechen',\n        'ch' => 'Chamorro',\n        'co' => 'Corsican',\n        'cr' => 'Cree',\n        'cs' => 'Czech',\n        'cu' => 'OldChurchSlavonic',\n        'cv' => 'Chuvash',\n        'cy' => 'Welsh',\n        'da' => 'Danish',\n        'de' => 'German',\n        'dv' => 'Divehi',\n        'dz' => 'Dzongkha',\n        'ee' => 'Ewe',\n        'el' => 'Greek',\n        'en' => 'English',\n        'eo' => 'Esperanto',\n        'es' => 'Spanish',\n        'et' => 'Estonian',\n        'eu' => 'Basque',\n        'fa' => 'Persian',\n        'ff' => 'Fulah',\n        'fi' => 'Finnish',\n        'fj' => 'Fijian',\n        'fo' => 'Faroese',\n        'fr' => 'French',\n        'fy' => 'WesternFrisian',\n        'ga' => 'Irish',\n        'gd' => 'ScottishGaelic',\n        'gl' => 'Galician',\n        'gn' => 'Guarani',\n        'gu' => 'Gujarati',\n        'gv' => 'Manx',\n        'ha' => 'Hausa',\n        'he' => 'Hebrew',\n        'hi' => 'Hindi',\n        'ho' => 'HiriMotu',\n        'hr' => 'Croatian',\n        'ht' => 'Haitian',\n        'hu' => 'Hungarian',\n        'hy' => 'Armenian',\n        'hz' => 'Herero',\n        'ia' => 'Interlingua',\n        'id' => 'Indonesian',\n        'ie' => 'Interlingue',\n        'ig' => 'Igbo',\n        'ii' => 'SichuanYi',\n        'ik' => 'Inupiaq',\n        'io' => 'Ido',\n        'is' => 'Icelandic',\n        'it' => 'Italian',\n        'iu' => 'Inuktitut',\n        'ja' => 'Japanese',\n        'jv' => 'Javanese',\n        'ka' => 'Georgian',\n        'kg' => 'Kongo',\n        'ki' => 'Kikuyu',\n        'kj' => 'Kwanyama',\n        'kk' => 'Kazakh',\n        'kl' => 'Kalaallisut',\n        'km' => 'Khmer',\n        'kn' => 'Kannada',\n        'ko' => 'Korean',\n        'kr' => 'Kanuri',\n        'ks' => 'Kashmiri',\n        'ku' => 'Kurdish',\n        'kv' => 'Komi',\n        'kw' => 'Cornish',\n        'ky' => 'Kirghiz',\n        'la' => 'Latin',\n        'lb' => 'Luxembourgish',\n        'lg' => 'Ganda',\n        'li' => 'Limburgish',\n        'ln' => 'Lingala',\n        'lo' => 'Lao',\n        'lt' => 'Lithuanian',\n        'lu' => 'LubaKatanga',\n        'lv' => 'Latvian',\n        'mg' => 'Malagasy',\n        'mh' => 'Marshallese',\n        'mi' => 'Maori',\n        'mk' => 'Macedonian',\n        'ml' => 'Malayalam',\n        'mn' => 'Mongolian',\n        'mo' => 'Moldavian',\n        'mr' => 'Marathi',\n        'ms' => 'Malay',\n        'mt' => 'Maltese',\n        'my' => 'Burmese',\n        'na' => 'Nauru',\n        'nb' => 'NorwegianBokmal',\n        'nd' => 'NorthNdebele',\n        'ne' => 'Nepali',\n        'ng' => 'Ndonga',\n        'nl' => 'Dutch',\n        'nn' => 'NorwegianNynorsk',\n        'no' => 'Norwegian',\n        'nr' => 'SouthNdebele',\n        'nv' => 'Navajo',\n        'ny' => 'Chichewa',\n        'oc' => 'Occitan',\n        'oj' => 'Ojibwa',\n        'om' => 'Oromo',\n        'or' => 'Oriya',\n        'os' => 'Ossetian',\n        'pa' => 'Panjabi',\n        'pi' => 'Pali',\n        'pl' => 'Polish',\n        'ps' => 'Pashto',\n        'pt' => 'Portuguese',\n        'qu' => 'Quechua',\n        'rc' => 'Reunionese',\n        'rm' => 'Romansh',\n        'rn' => 'Kirundi',\n        'ro' => 'Romanian',\n        'ru' => 'Russian',\n        'rw' => 'Kinyarwanda',\n        'sa' => 'Sanskrit',\n        'sc' => 'Sardinian',\n        'sd' => 'Sindhi',\n        'se' => 'NorthernSami',\n        'sg' => 'Sango',\n        'sh' => 'SerboCroatian',\n        'si' => 'Sinhalese',\n        'sk' => 'Slovak',\n        'sl' => 'Slovenian',\n        'sm' => 'Samoan',\n        'sn' => 'Shona',\n        'so' => 'Somali',\n        'sq' => 'Albanian',\n        'sr' => 'Serbian',\n        'ss' => 'Swati',\n        'st' => 'Sotho',\n        'su' => 'Sundanese',\n        'sv' => 'Swedish',\n        'sw' => 'Swahili',\n        'ta' => 'Tamil',\n        'te' => 'Telugu',\n        'tg' => 'Tajik',\n        'th' => 'Thai',\n        'ti' => 'Tigrinya',\n        'tk' => 'Turkmen',\n        'tl' => 'Tagalog',\n        'tn' => 'Tswana',\n        'to' => 'Tonga',\n        'tr' => 'Turkish',\n        'ts' => 'Tsonga',\n        'tt' => 'Tatar',\n        'tw' => 'Twi',\n        'ty' => 'Tahitian',\n        'ug' => 'Uighur',\n        'uk' => 'Ukrainian',\n        'ur' => 'Urdu',\n        'uz' => 'Uzbek',\n        've' => 'Venda',\n        'vi' => 'Vietnamese',\n        'vo' => 'Volapuk',\n        'wa' => 'Walloon',\n        'wo' => 'Wolof',\n        'xh' => 'Xhosa',\n        'yi' => 'Yiddish',\n        'yo' => 'Yoruba',\n        'za' => 'Zhuang',\n        'zh' => 'Chinese',\n        'zu' => 'Zulu',\n        'gom' => 'Konkani Latin script',\n    ];\n\n    public const TESTS = [\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addDays(1)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addDays(2)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addDays(3)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addDays(4)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addDays(5)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addDays(6)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-05 00:00:00\\')->addDays(6)->calendar({class}::parse(\\'2018-01-05 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-06 00:00:00\\')->addDays(6)->calendar({class}::parse(\\'2018-01-06 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->addDays(2)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->addDays(3)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->addDays(4)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->addDays(5)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->addDays(6)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::now()->subDays(2)->calendar()',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subHours(2)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 12:00:00\\')->subHours(2)->calendar({class}::parse(\\'2018-01-04 12:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->addHours(2)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 23:00:00\\')->addHours(2)->calendar({class}::parse(\\'2018-01-04 23:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->addDays(2)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-08 00:00:00\\')->subDay()->calendar({class}::parse(\\'2018-01-08 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subDays(1)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subDays(2)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subDays(3)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subDays(4)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subDays(5)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->subDays(6)->calendar({class}::parse(\\'2018-01-04 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-03 00:00:00\\')->subDays(6)->calendar({class}::parse(\\'2018-01-03 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-02 00:00:00\\')->subDays(6)->calendar({class}::parse(\\'2018-01-02 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->subDays(2)->calendar({class}::parse(\\'2018-01-07 00:00:00\\'))',\n        '{class}::parse(\\'2018-01-01 00:00:00\\')->isoFormat(\\'Qo Mo Do Wo wo\\')',\n        '{class}::parse(\\'2018-01-02 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-01-03 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-01-04 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-01-05 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-01-06 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-01-07 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-01-11 00:00:00\\')->isoFormat(\\'Do wo\\')',\n        '{class}::parse(\\'2018-02-09 00:00:00\\')->isoFormat(\\'DDDo\\')',\n        '{class}::parse(\\'2018-02-10 00:00:00\\')->isoFormat(\\'DDDo\\')',\n        '{class}::parse(\\'2018-04-10 00:00:00\\')->isoFormat(\\'DDDo\\')',\n        '{class}::parse(\\'2018-02-10 00:00:00\\', \\'Europe/Paris\\')->isoFormat(\\'h:mm a z\\')',\n        '{class}::parse(\\'2018-02-10 00:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 01:30:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 02:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 06:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 10:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 12:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 17:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 21:30:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-02-10 23:00:00\\')->isoFormat(\\'h:mm A, h:mm a\\')',\n        '{class}::parse(\\'2018-01-01 00:00:00\\')->ordinal(\\'hour\\')',\n        '{class}::now()->subSeconds(1)->diffForHumans()',\n        '{class}::now()->subSeconds(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subSeconds(2)->diffForHumans()',\n        '{class}::now()->subSeconds(2)->diffForHumans(null, false, true)',\n        '{class}::now()->subMinutes(1)->diffForHumans()',\n        '{class}::now()->subMinutes(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subMinutes(2)->diffForHumans()',\n        '{class}::now()->subMinutes(2)->diffForHumans(null, false, true)',\n        '{class}::now()->subHours(1)->diffForHumans()',\n        '{class}::now()->subHours(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subHours(2)->diffForHumans()',\n        '{class}::now()->subHours(2)->diffForHumans(null, false, true)',\n        '{class}::now()->subDays(1)->diffForHumans()',\n        '{class}::now()->subDays(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subDays(2)->diffForHumans()',\n        '{class}::now()->subDays(2)->diffForHumans(null, false, true)',\n        '{class}::now()->subWeeks(1)->diffForHumans()',\n        '{class}::now()->subWeeks(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subWeeks(2)->diffForHumans()',\n        '{class}::now()->subWeeks(2)->diffForHumans(null, false, true)',\n        '{class}::now()->subMonths(1)->diffForHumans()',\n        '{class}::now()->subMonths(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subMonths(2)->diffForHumans()',\n        '{class}::now()->subMonths(2)->diffForHumans(null, false, true)',\n        '{class}::now()->subYears(1)->diffForHumans()',\n        '{class}::now()->subYears(1)->diffForHumans(null, false, true)',\n        '{class}::now()->subYears(2)->diffForHumans()',\n        '{class}::now()->subYears(2)->diffForHumans(null, false, true)',\n        '{class}::now()->addSecond()->diffForHumans()',\n        '{class}::now()->addSecond()->diffForHumans(null, false, true)',\n        '{class}::now()->addSecond()->diffForHumans({class}::now())',\n        '{class}::now()->addSecond()->diffForHumans({class}::now(), false, true)',\n        '{class}::now()->diffForHumans({class}::now()->addSecond())',\n        '{class}::now()->diffForHumans({class}::now()->addSecond(), false, true)',\n        '{class}::now()->addSecond()->diffForHumans({class}::now(), true)',\n        '{class}::now()->addSecond()->diffForHumans({class}::now(), true, true)',\n        '{class}::now()->diffForHumans({class}::now()->addSecond()->addSecond(), true)',\n        '{class}::now()->diffForHumans({class}::now()->addSecond()->addSecond(), true, true)',\n        '{class}::now()->addSecond()->diffForHumans(null, false, true, 1)',\n        '{class}::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)',\n        '{class}::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)',\n        '{class}::now()->addYears(3)->diffForHumans(null, null, false, 4)',\n        '{class}::now()->subMonths(5)->diffForHumans(null, null, true, 4)',\n        '{class}::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)',\n        '{class}::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)',\n        '{class}::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)',\n        '{class}::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)',\n        '{class}::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])',\n        '{class}::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)',\n        '{class}::now()->addHour()->diffForHumans([\"aUnit\" => true])',\n        'CarbonInterval::days(2)->forHumans()',\n        'CarbonInterval::create(\\'P1DT3H\\')->forHumans(true)',\n    ];\n\n    public const CASES = [];\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        Carbon::setLocale(static::LOCALE);\n\n        if (!$this->areSameLocales(Carbon::getLocale(), static::LOCALE)) {\n            throw new InvalidArgumentException('Locale '.static::LOCALE.' not found');\n        }\n\n        CarbonImmutable::setLocale(static::LOCALE);\n\n        if (!$this->areSameLocales(CarbonImmutable::getLocale(), static::LOCALE)) {\n            throw new InvalidArgumentException('Locale '.static::LOCALE.' not found');\n        }\n\n        CarbonInterval::setLocale(static::LOCALE);\n\n        if (!$this->areSameLocales(CarbonInterval::getLocale(), static::LOCALE)) {\n            throw new InvalidArgumentException('Locale '.static::LOCALE.' not found');\n        }\n    }\n\n    #[Group('language')]\n    public function testLanguage()\n    {\n        $this->wrapWithNonDstDate(function () {\n            $date = Carbon::parse('2018-05-15 20:49:13.881726');\n            Carbon::setTestNow($this->now = $date);\n            $date = CarbonImmutable::parse('2018-05-15 20:49:13.881726');\n            CarbonImmutable::setTestNow($this->immutableNow = $date);\n\n            foreach (static::TESTS as $index => $test) {\n                foreach ([Carbon::class, CarbonImmutable::class] as $class) {\n                    $test = str_replace('{class}', $class, $test);\n                    $result = eval(\"use Carbon\\CarbonInterval; return $test;\");\n                    $expected = static::CASES[$index];\n                    $locale = static::LOCALE;\n                    $key = preg_replace('/^([^_]+)_.*$/', '$1', static::LOCALE);\n\n                    if (isset(static::LOCALES[$key])) {\n                        $locale = static::LOCALES[$key].' ('.$locale.')';\n                    }\n\n                    $this->assertSame(\n                        $expected,\n                        $result,\n                        'In '.$locale.', '.str_replace('Carbon\\\\', '', $test).' should return '.$expected,\n                    );\n                }\n            }\n        });\n    }\n}\n"
  },
  {
    "path": "tests/Localization/LrcIqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LrcIqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lrc_IQ'; // Northern Luri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 هنر ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 هنر ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 هنر ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 هنر ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 هنر 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LrcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LrcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lrc'; // Northern Luri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 هنر ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 هنر ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 هنر ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 هنر ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 هنر 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LtLtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LtLtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lt_LT'; // Lithuanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Rytoj 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'šeštadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'sekmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'pirmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'antradienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'trečiadienį 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ketvirtadienį 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'penktadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'antradienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'trečiadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ketvirtadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'penktadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'šeštadienį 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Paskutinį sekmadienį 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Vakar 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Šiandien 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Šiandien 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Rytoj 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'antradienį 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Vakar 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Vakar 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Paskutinį antradienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Paskutinį pirmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Paskutinį sekmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Paskutinį šeštadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Paskutinį penktadienį 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Paskutinį ketvirtadienį 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Paskutinį trečiadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Paskutinį penktadienį 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1-as 1-as 1-as 1-as 1-as',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2-as 1-as',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3-ias 1-as',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4-as 1-as',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5-as 1-as',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6-as 1-as',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7-as 1-as',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11-as 2-as',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40-as',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-as',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-as',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 priešpiet CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 priešpiet, 12:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 priešpiet, 1:30 priešpiet',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 priešpiet, 2:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 priešpiet, 6:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 priešpiet, 10:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 popiet, 12:00 popiet',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 popiet, 5:00 popiet',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 popiet, 9:30 popiet',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 popiet, 11:00 popiet',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0-is',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'prieš 1 sekundę',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'prieš 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'prieš 2 sekundes',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'prieš 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'prieš 1 minutę',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'prieš 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'prieš 2 minutes',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'prieš 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'prieš 1 valandą',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'prieš 1 val.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'prieš 2 valandas',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'prieš 2 val.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'prieš 1 dieną',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'prieš 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'prieš 2 dienas',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'prieš 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'prieš 1 savaitę',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'prieš 1 sav.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'prieš 2 savaites',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'prieš 2 sav.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'prieš 1 mėnesį',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'prieš 1 mėn.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'prieš 2 mėnesius',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'prieš 2 mėn.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'prieš 1 metus',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'prieš 1 m.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'prieš 2 metus',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'prieš 2 m.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 sekundė nuo dabar',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 sek. nuo dabar',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'po 1 sekundė',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'po 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'už 1 sekundės',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'už 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundė',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekundės',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 sek. nuo dabar',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minutė 1 sekundė',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 m. 3 mėn. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 metai nuo dabar',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'prieš 5 mėn.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'prieš 2 m. 3 mėn. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 savaitė 10 valandų',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 savaitė 6 dienos',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 savaitė 6 dienos',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 savaitė ir 6 dienos nuo dabar',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 savaitės 1 valanda',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1 valanda nuo dabar',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dienos',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 val.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lt'; // Lithuanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Rytoj 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'šeštadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'sekmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'pirmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'antradienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'trečiadienį 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ketvirtadienį 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'penktadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'antradienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'trečiadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ketvirtadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'penktadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'šeštadienį 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Paskutinį sekmadienį 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Vakar 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Šiandien 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Šiandien 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Rytoj 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'antradienį 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Vakar 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Vakar 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Paskutinį antradienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Paskutinį pirmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Paskutinį sekmadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Paskutinį šeštadienį 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Paskutinį penktadienį 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Paskutinį ketvirtadienį 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Paskutinį trečiadienį 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Paskutinį penktadienį 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1-as 1-as 1-as 1-as 1-as',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2-as 1-as',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3-ias 1-as',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4-as 1-as',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5-as 1-as',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6-as 1-as',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7-as 1-as',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11-as 2-as',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40-as',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41-as',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100-as',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 priešpiet CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 priešpiet, 12:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 priešpiet, 1:30 priešpiet',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 priešpiet, 2:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 priešpiet, 6:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 priešpiet, 10:00 priešpiet',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 popiet, 12:00 popiet',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 popiet, 5:00 popiet',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 popiet, 9:30 popiet',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 popiet, 11:00 popiet',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0-is',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'prieš 1 sekundę',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'prieš 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'prieš 2 sekundes',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'prieš 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'prieš 1 minutę',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'prieš 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'prieš 2 minutes',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'prieš 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'prieš 1 valandą',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'prieš 1 val.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'prieš 2 valandas',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'prieš 2 val.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'prieš 1 dieną',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'prieš 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'prieš 2 dienas',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'prieš 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'prieš 1 savaitę',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'prieš 1 sav.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'prieš 2 savaites',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'prieš 2 sav.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'prieš 1 mėnesį',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'prieš 1 mėn.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'prieš 2 mėnesius',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'prieš 2 mėn.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'prieš 1 metus',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'prieš 1 m.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'prieš 2 metus',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'prieš 2 m.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 sekundė nuo dabar',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 sek. nuo dabar',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'po 1 sekundė',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'po 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'už 1 sekundės',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'už 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundė',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekundės',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 sek. nuo dabar',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minutė 1 sekundė',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 m. 3 mėn. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 metai nuo dabar',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'prieš 5 mėn.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'prieš 2 m. 3 mėn. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 savaitė 10 valandų',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 savaitė 6 dienos',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 savaitė 6 dienos',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 savaitė ir 6 dienos nuo dabar',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 savaitės 1 valanda',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1 valanda nuo dabar',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dienos',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 val.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lu'; // LubaKatanga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lubingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lumingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nkodya at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ndàayà at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ndangù at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Njòwa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ngòvya at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ndàayà at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ndangù at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Njòwa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ngòvya at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lubingu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Lumingu at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ndàayà at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ndàayà at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Nkodya at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lumingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lubingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ngòvya at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Njòwa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ndangù at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ngòvya at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 dinda CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Dinda, 12:00 dinda',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Dinda, 1:30 dinda',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Dinda, 2:00 dinda',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Dinda, 6:00 dinda',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Dinda, 10:00 dinda',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Dilolo, 12:00 dilolo',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Dilolo, 5:00 dilolo',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Dilolo, 9:30 dilolo',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Dilolo, 11:00 dilolo',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LuoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LuoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'luo'; // Luo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ngeso at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapil at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wuok Tich at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tich Ariyo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tich Adek at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Tich Ang’wen at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Tich Abich at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tich Ariyo at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tich Adek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tich Ang’wen at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tich Abich at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ngeso at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapil at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tich Ariyo at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tich Ariyo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wuok Tich at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapil at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ngeso at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tich Abich at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Tich Ang’wen at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Tich Adek at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Tich Abich at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 od CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 OD, 12:00 od',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 OD, 1:30 od',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 OD, 2:00 od',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 OD, 6:00 od',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 OD, 10:00 od',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 OT, 12:00 ot',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 OT, 5:00 ot',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 OT, 9:30 ot',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 OT, 11:00 ot',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'nus dakika 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'nus dakika 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'nus dakika 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'nus dakika 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'dakika 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'dakika 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'dakika 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'dakika 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'seche 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'seche 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'seche 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'seche 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ndalo 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ndalo 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ndalo 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ndalo 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'jumbe 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'jumbe 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'jumbe 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'jumbe 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'dweche 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'dweche 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'dweche 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'dweche 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'higni 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'higni 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'higni 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'higni 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'nus dakika 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'nus dakika 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'nus dakika 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'nus dakika 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'nus dakika 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'nus dakika 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'nus dakika 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'nus dakika 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'nus dakika 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'nus dakika 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'nus dakika 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'dakika 1 nus dakika 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'higni 2 dweche 3 ndalo 1 nus dakika 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'higni 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'dweche 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'higni 2 dweche 3 ndalo 1 nus dakika 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'jumbe 1 seche 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'jumbe 1 ndalo 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'jumbe 1 ndalo 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'jumbe 1 and ndalo 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'jumbe 2 seche 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'seche 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ndalo 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ndalo 1 seche 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LuyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LuyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'luy'; // Luyia\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Murwa wa Kanne at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Murwa wa Katano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Murwa wa Kanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Murwa wa Katano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapiri at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Murwa wa Katano at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Murwa wa Kanne at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Murwa wa Katano at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LvLvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LvLvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lv_LV'; // Latvian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'rīt plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'sestdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'svētdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'nākošo pirmdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'nākošo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'nākošo trešdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'nākošo ceturtdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'nākošo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'nākošo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'nākošo trešdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'nākošo ceturtdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'nākošo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'nākošo sestdien plkst. 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'pagājušo svētdien plkst. 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'vakar plkst. 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'šodien plkst. 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'šodien plkst. 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'rīt plkst. 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'nākošo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'vakar plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'vakar plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'pagājušo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'pagājušo pirmdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'pagājušo svētdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'pagājušo sestdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'pagājušo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'pagājušo ceturtdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'pagājušo trešdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'pagājušo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 priekšpusdiena CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 priekšpusdiena, 12:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 priekšpusdiena, 1:30 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 priekšpusdiena, 2:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 priekšpusdiena, 6:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 priekšpusdiena, 10:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 pēcpusdiena, 12:00 pēcpusdiena',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 pēcpusdiena, 5:00 pēcpusdiena',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 pēcpusdiena, 9:30 pēcpusdiena',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 pēcpusdiena, 11:00 pēcpusdiena',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'pirms 1 sekundes',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'pirms 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'pirms 2 sekundēm',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'pirms 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'pirms 1 minūtes',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'pirms 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'pirms 2 minūtēm',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'pirms 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'pirms 1 stundas',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'pirms 1 st.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'pirms 2 stundām',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'pirms 2 st.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'pirms 1 dienas',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'pirms 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'pirms 2 dienām',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'pirms 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'pirms 1 nedēļas',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'pirms 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'pirms 2 nedēļām',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'pirms 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'pirms 1 mēneša',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'pirms 1 mēn.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'pirms 2 mēnešiem',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'pirms 2 mēn.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'pirms 1 gada',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'pirms 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'pirms 2 gadiem',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'pirms 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'pēc 1 sekundes',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'pēc 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekundi vēlāk',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. vēlāk',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekundi agrāk',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. agrāk',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekunde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekundes',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'pēc 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minūte 1 sekunde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 g. 3 mēn. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'pēc 3 gadiem',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'pirms 5 mēn.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'pirms 2 g. 3 mēn. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 nedēļa 10 stundas',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 nedēļa 6 dienas',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 nedēļa 6 dienas',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'pēc 1 nedēļas un 6 dienām',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 nedēļas 1 stunda',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'pēc stundas',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dienas',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d. 3 st.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lv'; // Latvian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'rīt plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'sestdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'svētdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'nākošo pirmdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'nākošo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'nākošo trešdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'nākošo ceturtdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'nākošo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'nākošo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'nākošo trešdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'nākošo ceturtdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'nākošo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'nākošo sestdien plkst. 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'pagājušo svētdien plkst. 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'vakar plkst. 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'šodien plkst. 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'šodien plkst. 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'rīt plkst. 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'nākošo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'vakar plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'vakar plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'pagājušo otrdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'pagājušo pirmdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'pagājušo svētdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'pagājušo sestdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'pagājušo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'pagājušo ceturtdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'pagājušo trešdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'pagājušo piektdien plkst. 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 priekšpusdiena CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 priekšpusdiena, 12:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 priekšpusdiena, 1:30 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 priekšpusdiena, 2:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 priekšpusdiena, 6:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 priekšpusdiena, 10:00 priekšpusdiena',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 pēcpusdiena, 12:00 pēcpusdiena',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 pēcpusdiena, 5:00 pēcpusdiena',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 pēcpusdiena, 9:30 pēcpusdiena',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 pēcpusdiena, 11:00 pēcpusdiena',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'pirms 1 sekundes',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'pirms 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'pirms 2 sekundēm',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'pirms 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'pirms 1 minūtes',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'pirms 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'pirms 2 minūtēm',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'pirms 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'pirms 1 stundas',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'pirms 1 st.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'pirms 2 stundām',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'pirms 2 st.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'pirms 1 dienas',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'pirms 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'pirms 2 dienām',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'pirms 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'pirms 1 nedēļas',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'pirms 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'pirms 2 nedēļām',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'pirms 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'pirms 1 mēneša',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'pirms 1 mēn.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'pirms 2 mēnešiem',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'pirms 2 mēn.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'pirms 1 gada',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'pirms 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'pirms 2 gadiem',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'pirms 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'pēc 1 sekundes',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'pēc 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekundi vēlāk',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. vēlāk',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekundi agrāk',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. agrāk',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekunde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekundes',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'pēc 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minūte 1 sekunde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 g. 3 mēn. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'pēc 3 gadiem',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'pirms 5 mēn.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'pirms 2 g. 3 mēn. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 nedēļa 10 stundas',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 nedēļa 6 dienas',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 nedēļa 6 dienas',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'pēc 1 nedēļas un 6 dienām',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 nedēļas 1 stunda',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'pēc stundas',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dienas',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d. 3 st.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LzhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LzhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lzh'; // Literary Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週六 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週日 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週一 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週二 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週三 at 12:00 朝',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '週四 at 12:00 朝',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '週五 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週二 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週三 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週四 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週五 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週六 at 12:00 朝',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 週日 at 8:49 暮',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 暮',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 朝',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週二 at 12:00 朝',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週二 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週一 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週日 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週六 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週五 at 12:00 朝',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 週四 at 12:00 朝',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 週三 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 週五 at 12:00 朝',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 朝 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 朝, 12:00 朝',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 朝, 1:30 朝',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 朝, 2:00 朝',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 朝, 6:00 朝',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 朝, 10:00 朝',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 暮, 12:00 暮',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 暮, 5:00 暮',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 暮, 9:30 暮',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 暮, 11:00 暮',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 楚 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 楚 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 楚 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 楚 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 點 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 點 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 點 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 點 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 氧 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 氧 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 氧 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 氧 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 日(曆法) ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 日(曆法) ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 日(曆法) ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 日(曆法) ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 星期 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 星期 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 星期 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 星期 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 月 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 月 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 夏 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 夏 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 夏 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 夏 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 楚 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 楚 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 楚 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 楚 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 楚 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 楚 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 楚',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 楚',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 楚',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 楚',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 楚 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 點 1 楚',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 夏 3 月 1 日(曆法) 1 楚',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 夏 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 月 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 夏 3 月 1 日(曆法) 1 楚 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 星期 10 氧',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 星期 6 日(曆法)',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 星期 6 日(曆法)',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 星期 and 6 日(曆法) from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 星期 1 氧',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 氧 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 日(曆法)',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 日(曆法) 3 氧',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/LzhTwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass LzhTwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'lzh_TW'; // Literary Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週六 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週日 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週一 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週二 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '週三 at 12:00 朝',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '週四 at 12:00 朝',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '週五 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週二 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週三 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週四 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週五 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週六 at 12:00 朝',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 週日 at 8:49 暮',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 暮',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 朝',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '週二 at 12:00 朝',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週二 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週一 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週日 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週六 at 12:00 朝',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 週五 at 12:00 朝',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 週四 at 12:00 朝',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 週三 at 12:00 朝',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 週五 at 12:00 朝',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 朝 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 朝, 12:00 朝',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 朝, 1:30 朝',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 朝, 2:00 朝',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 朝, 6:00 朝',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 朝, 10:00 朝',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 暮, 12:00 暮',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 暮, 5:00 暮',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 暮, 9:30 暮',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 暮, 11:00 暮',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 楚 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 楚 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 楚 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 楚 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 點 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 點 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 點 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 點 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 氧 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 氧 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 氧 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 氧 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 日(曆法) ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 日(曆法) ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 日(曆法) ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 日(曆法) ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 星期 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 星期 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 星期 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 星期 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 月 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 月 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 月 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 夏 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 夏 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 夏 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 夏 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 楚 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 楚 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 楚 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 楚 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 楚 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 楚 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 楚',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 楚',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 楚',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 楚',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 楚 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 點 1 楚',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 夏 3 月 1 日(曆法) 1 楚',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 夏 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 月 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 夏 3 月 1 日(曆法) 1 楚 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 星期 10 氧',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 星期 6 日(曆法)',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 星期 6 日(曆法)',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 星期 and 6 日(曆法) from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 星期 1 氧',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 氧 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 日(曆法)',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 日(曆法) 3 氧',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MagInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MagInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mag_IN'; // Magahi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सनिचर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'एतवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुध at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिफे at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुध at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिफे at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सनिचर at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last एतवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last एतवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सनिचर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिफे at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुध at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MagTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MagTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mag'; // Magahi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सनिचर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'एतवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुध at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिफे at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुध at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिफे at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सनिचर at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last एतवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last एतवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सनिचर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिफे at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुध at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last सूक at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MaiInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MaiInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mai_IN'; // Maithili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनीदिन at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविदिन at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 समय ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 समय ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 समय ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 समय ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिन ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 महिना ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ऋतु ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ऋतु ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ऋतु ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ऋतु ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 समय 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ऋतु 3 महिना 1 दिन 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ऋतु from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ऋतु 3 महिना 1 दिन 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 श्रेणी:क्यालेन्डर 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 श्रेणी:क्यालेन्डर 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 श्रेणी:क्यालेन्डर 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 श्रेणी:क्यालेन्डर and 6 दिन from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 श्रेणी:क्यालेन्डर 1 घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 घण्टा from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MaiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MaiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mai'; // Maithili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनीदिन at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविदिन at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतीदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रदिन at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 समय ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 समय ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 समय ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 समय ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिन ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 श्रेणी:क्यालेन्डर ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 महिना ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ऋतु ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ऋतु ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ऋतु ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ऋतु ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 समय 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ऋतु 3 महिना 1 दिन 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ऋतु from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ऋतु 3 महिना 1 दिन 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 श्रेणी:क्यालेन्डर 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 श्रेणी:क्यालेन्डर 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 श्रेणी:क्यालेन्डर 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 श्रेणी:क्यालेन्डर and 6 दिन from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 श्रेणी:क्यालेन्डर 1 घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 घण्टा from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MasTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MasTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mas'; // Masai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamósi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapílí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatátu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumane at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatánɔ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alaámisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumáa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumane at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatánɔ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alaámisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumáa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamósi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapílí at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumane at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumane at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatátu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapílí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamósi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumáa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alaámisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatánɔ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumáa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ɛnkakɛnyá CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ɛnkakɛnyá, 12:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Ɛnkakɛnyá, 1:30 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Ɛnkakɛnyá, 2:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Ɛnkakɛnyá, 6:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Ɛnkakɛnyá, 10:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ɛndámâ, 12:00 ɛndámâ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ɛndámâ, 5:00 ɛndámâ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ɛndámâ, 9:30 ɛndámâ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ɛndámâ, 11:00 ɛndámâ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 are ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 are ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 are ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 are ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 esahabu ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 esahabu ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 esahabu ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 esahabu ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 enkolongʼ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 enkolongʼ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 enkolongʼ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 enkolongʼ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 engolongeare orwiki ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 engolongeare orwiki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 engolongeare orwiki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 engolongeare orwiki ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 olapa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 olapa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 olapa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 olapa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 olameyu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 olameyu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 olameyu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 olameyu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 are from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 are from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 are after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 are after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 are before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 are before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 are',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 are',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 are',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 are',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 are from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 are',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 olameyu 3 olapa 1 enkolongʼ 1 are',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 olameyu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 olapa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 olameyu 3 olapa 1 enkolongʼ 1 are ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 engolongeare orwiki 10 esahabu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 engolongeare orwiki 6 enkolongʼ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 engolongeare orwiki 6 enkolongʼ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 engolongeare orwiki and 6 enkolongʼ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 engolongeare orwiki 1 esahabu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 esahabu from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 enkolongʼ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 enkolongʼ 3 esahabu',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MasTzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MasTzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mas_TZ'; // Masai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamósi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapílí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatátu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumane at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatánɔ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alaámisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumáa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumane at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatánɔ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alaámisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumáa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamósi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapílí at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumane at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumane at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatátu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapílí at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamósi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumáa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alaámisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatánɔ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jumáa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ɛnkakɛnyá CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ɛnkakɛnyá, 12:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Ɛnkakɛnyá, 1:30 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Ɛnkakɛnyá, 2:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Ɛnkakɛnyá, 6:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Ɛnkakɛnyá, 10:00 ɛnkakɛnyá',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ɛndámâ, 12:00 ɛndámâ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ɛndámâ, 5:00 ɛndámâ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ɛndámâ, 9:30 ɛndámâ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ɛndámâ, 11:00 ɛndámâ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 are ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 are ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 are ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 are ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 esahabu ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 esahabu ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 esahabu ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 esahabu ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 enkolongʼ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 enkolongʼ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 enkolongʼ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 enkolongʼ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 engolongeare orwiki ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 engolongeare orwiki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 engolongeare orwiki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 engolongeare orwiki ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 olapa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 olapa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 olapa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 olapa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 olameyu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 olameyu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 olameyu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 olameyu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 are from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 are from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 are after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 are after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 are before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 are before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 are',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 are',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 are',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 are',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 are from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 are',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 olameyu 3 olapa 1 enkolongʼ 1 are',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 olameyu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 olapa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 olameyu 3 olapa 1 enkolongʼ 1 are ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 engolongeare orwiki 10 esahabu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 engolongeare orwiki 6 enkolongʼ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 engolongeare orwiki 6 enkolongʼ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 engolongeare orwiki and 6 enkolongʼ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 engolongeare orwiki 1 esahabu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 esahabu from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 enkolongʼ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 enkolongʼ 3 esahabu',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'me'; // me\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sjutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedjelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sjutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošle nedjelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedjelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srijede u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'prije 1 sekund',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'prije 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'prije 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'prije 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'prije 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'prije 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'prije 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'prije 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'prije 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'prije 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'prije 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'prije 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'prije 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'prije 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'prije 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'prije 1 nedjelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'prije 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'prije 2 nedjelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'prije 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'prije 1 mjesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'prije 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'prije 2 mjeseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'prije 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'prije 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'prije 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'prije 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'prije 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekund nakon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 sek. nakon',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund prije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 sek. prije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'prije 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'prije 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedjelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedjelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedjelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedjelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedjelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MerTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MerTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mer'; // Meru\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kiumia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Muramuko at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wairi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wethatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Wena at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Wetano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wairi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wethatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wena at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wetano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Kiumia at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wairi at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wairi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Muramuko at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kiumia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wetano at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Wena at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wethatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Wetano at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 rũ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 RŨ, 12:00 rũ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 RŨ, 1:30 rũ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 RŨ, 2:00 rũ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 RŨ, 6:00 rũ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 RŨ, 10:00 rũ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ŨG, 12:00 ũg',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ŨG, 5:00 ũg',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ŨG, 9:30 ũg',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ŨG, 11:00 ũg',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 gikeno ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 gikeno ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 gikeno ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 gikeno ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 monto ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 monto ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 monto ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 monto ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 muchaara ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 muchaara ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 muchaara ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 muchaara ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 murume ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 murume ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 murume ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 murume ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 gikeno from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 gikeno from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 gikeno after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 gikeno after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 gikeno before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 gikeno before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 gikeno',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 gikeno',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 gikeno',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 gikeno',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 gikeno from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 monto 1 gikeno',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 murume 3 muchaara 1d 1 gikeno',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 murume from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 muchaara ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 murume 3 muchaara 1d 1 gikeno ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MfeMuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MfeMuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mfe_MU'; // Morisyen\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimans at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lindi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'merkredi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'zedi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'merkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dimans at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mardi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lindi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dimans at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last zedi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last merkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 déziém ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 déziém ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 déziém ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 déziém ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minitt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minitt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minitt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minitt ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 -er-tan ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 -er-tan ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 -er-tan ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 -er-tan ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zour ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 zour ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zour ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 zour ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sémenn ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sémenn ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sémenn ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sémenn ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mwa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mwa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mwa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mwa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 banané ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 banané ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 banané ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 banané ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 déziém from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 déziém from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 déziém after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 déziém after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 déziém before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 déziém before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 déziém',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 déziém',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 déziém',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 déziém',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 déziém from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minitt 1 déziém',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 banané 3 mwa 1 zour 1 déziém',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 banané from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mwa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 banané 3 mwa 1 zour 1 déziém ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sémenn 10 -er-tan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sémenn 6 zour',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sémenn 6 zour',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sémenn and 6 zour from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sémenn 1 -er-tan',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 -er-tan from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zour',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 zour 3 -er-tan',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MfeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MfeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mfe'; // Morisyen\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimans at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lindi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'merkredi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'zedi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'merkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'samdi at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dimans at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mardi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lindi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dimans at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last samdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last zedi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last merkredi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vandredi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 déziém ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 déziém ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 déziém ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 déziém ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minitt ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minitt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minitt ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minitt ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 -er-tan ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 -er-tan ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 -er-tan ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 -er-tan ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zour ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 zour ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zour ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 zour ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sémenn ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sémenn ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sémenn ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sémenn ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mwa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mwa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mwa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mwa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 banané ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 banané ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 banané ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 banané ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 déziém from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 déziém from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 déziém after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 déziém after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 déziém before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 déziém before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 déziém',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 déziém',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 déziém',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 déziém',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 déziém from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minitt 1 déziém',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 banané 3 mwa 1 zour 1 déziém',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 banané from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mwa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 banané 3 mwa 1 zour 1 déziém ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sémenn 10 -er-tan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sémenn 6 zour',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sémenn 6 zour',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sémenn and 6 zour from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sémenn 1 -er-tan',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 -er-tan from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zour',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 zour 3 -er-tan',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MgMgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MgMgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mg_MG'; // Malagasy\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabotsy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alahady at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alatsinainy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'talata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alarobia at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'alakamisy at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'zoma at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talata at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alarobia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alakamisy at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zoma at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabotsy at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last alahady at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talata at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last talata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last alatsinainy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last alahady at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabotsy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last zoma at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last alakamisy at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last alarobia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last zoma at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segondra ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segondra ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segondra ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segondra ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minitra ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minitra ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minitra ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minitra ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ora ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 andro ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 andro ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 andro ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 andro ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 herinandro ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 herinandro ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 herinandro ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 herinandro ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 volana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 volana ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 volana ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 volana ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taona ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taona ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taona ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taona ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segondra from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segondra from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segondra after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segondra after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segondra before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segondra before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segondra',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segondra',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segondra',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segondra',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segondra from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minitra 1 segondra',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taona 3 volana 1 andro 1 segondra',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 taona from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 volana ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taona 3 volana 1 andro 1 segondra ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 herinandro 10 ora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 herinandro 6 andro',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 herinandro 6 andro',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 herinandro and 6 andro from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 herinandro 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ora from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 andro',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 andro 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mg'; // Malagasy\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sabotsy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alahady at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alatsinainy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'talata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alarobia at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'alakamisy at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'zoma at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talata at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alarobia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alakamisy at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zoma at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sabotsy at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last alahady at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talata at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last talata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last alatsinainy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last alahady at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sabotsy at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last zoma at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last alakamisy at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last alarobia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last zoma at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segondra ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 segondra ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segondra ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 segondra ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minitra ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minitra ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minitra ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minitra ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ora ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 andro ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 andro ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 andro ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 andro ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 herinandro ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 herinandro ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 herinandro ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 herinandro ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 volana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 volana ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 volana ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 volana ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taona ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taona ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taona ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taona ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 segondra from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 segondra from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segondra after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segondra after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segondra before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segondra before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segondra',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segondra',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segondra',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segondra',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 segondra from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minitra 1 segondra',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taona 3 volana 1 andro 1 segondra',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 taona from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 volana ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taona 3 volana 1 andro 1 segondra ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 herinandro 10 ora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 herinandro 6 andro',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 herinandro 6 andro',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 herinandro and 6 andro from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 herinandro 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ora from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 andro',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 andro 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MghTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MghTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mgh'; // Makhuwa-Meetto\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabato at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Arahamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arahamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sabato at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabato at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Arahamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 wichishu CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 wichishu, 12:00 wichishu',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 wichishu, 1:30 wichishu',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 wichishu, 2:00 wichishu',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 wichishu, 6:00 wichishu',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 wichishu, 10:00 wichishu',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 mchochil’l, 12:00 mchochil’l',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 mchochil’l, 5:00 mchochil’l',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 mchochil’l, 9:30 mchochil’l',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 mchochil’l, 11:00 mchochil’l',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MgoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MgoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mgo'; // Metaʼ\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aneg 7 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aneg 1 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aneg 2 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aneg 3 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aneg 4 at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aneg 5 at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Aneg 6 at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aneg 3 at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aneg 4 at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aneg 5 at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aneg 6 at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aneg 7 at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Aneg 1 at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aneg 3 at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aneg 3 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aneg 2 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aneg 1 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aneg 7 at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aneg 6 at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aneg 5 at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Aneg 4 at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Aneg 6 at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MhrRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MhrRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mhr_RU'; // Eastern Mari\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шуматкече at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Рушарня at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шочмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вӱргече at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Изарня at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Вӱргече at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Изарня at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шуматкече at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Рушарня at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шочмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Рушарня at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шуматкече at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Изарня at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Вӱргече at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 кокымшан ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 кокымшан ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 кокымшан ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 кокымшан ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минут ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 минут ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минут ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 минут ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 час ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 час ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 час ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 кече ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 кече ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 кече ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 кече ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 арня ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 арня ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 арня ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 арня ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Тылзе ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Тылзе ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Тылзе ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Тылзе ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 идалык ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 идалык ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 идалык ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 идалык ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 кокымшан from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 кокымшан from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 кокымшан after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 кокымшан after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 кокымшан before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 кокымшан before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 кокымшан',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 кокымшан',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 кокымшан',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 кокымшан',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 кокымшан from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 кокымшан',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 идалык 3 Тылзе 1 кече 1 кокымшан',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 идалык from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Тылзе ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 идалык 3 Тылзе 1 кече 1 кокымшан ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 арня 10 час',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 арня 6 кече',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 арня 6 кече',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 арня and 6 кече from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 арня 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 час from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 кече',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 кече 3 час',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MhrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MhrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mhr'; // Eastern Mari\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шуматкече at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Рушарня at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Шочмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вӱргече at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Изарня at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Вӱргече at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Изарня at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Шуматкече at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Рушарня at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Кушкыжмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шочмо at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Рушарня at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Шуматкече at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Изарня at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Вӱргече at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Кугарня at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 кокымшан ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 кокымшан ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 кокымшан ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 кокымшан ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минут ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 минут ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минут ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 минут ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 час ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 час ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 час ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 кече ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 кече ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 кече ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 кече ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 арня ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 арня ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 арня ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 арня ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Тылзе ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Тылзе ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Тылзе ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Тылзе ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 идалык ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 идалык ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 идалык ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 идалык ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 кокымшан from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 кокымшан from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 кокымшан after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 кокымшан after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 кокымшан before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 кокымшан before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 кокымшан',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 кокымшан',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 кокымшан',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 кокымшан',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 кокымшан from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 кокымшан',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 идалык 3 Тылзе 1 кече 1 кокымшан',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 идалык from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Тылзе ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 идалык 3 Тылзе 1 кече 1 кокымшан ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 арня 10 час',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 арня 6 кече',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 арня 6 кече',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 арня and 6 кече from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 арня 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 час from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 кече',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 кече 3 час',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MiNzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MiNzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mi_NZ'; // Maori\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'apopo i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hātarei i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rātapu i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mane i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tūrei i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wenerei i 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Tāite i 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Paraire i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūrei i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wenerei i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tāite i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Paraire i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Hātarei i 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Rātapu whakamutunga i 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'inanahi i 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i teie mahana, i 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i teie mahana, i 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'apopo i 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūrei i 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'inanahi i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'inanahi i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tūrei whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mane whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rātapu whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hātarei whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Paraire whakamutunga i 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Tāite whakamutunga i 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Wenerei whakamutunga i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Paraire whakamutunga i 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 hēkona i mua',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 hēkona i mua',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 hēkona i mua',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 hēkona i mua',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 meneti i mua',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 meneti i mua',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 meneti i mua',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 meneti i mua',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 haora i mua',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 haora i mua',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 haora i mua',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 haora i mua',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ra i mua',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ra i mua',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ra i mua',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ra i mua',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wiki i mua',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 wiki i mua',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wiki i mua',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 wiki i mua',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 marama i mua',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 marama i mua',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 marama i mua',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 marama i mua',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tau i mua',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tau i mua',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tau i mua',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tau i mua',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'i roto i 1 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'i roto i 1 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 hēkona',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 hēkona',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'i roto i 1 hēkona',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 meneti 1 hēkona',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tau 3 marama 1 ra 1 hēkona',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'i roto i 3 tau',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 marama i mua',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tau 3 marama 1 ra 1 hēkona i mua',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wiki 10 haora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wiki 6 ra',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wiki 6 ra',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'i roto i 1 wiki me te 6 ra',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wiki 1 haora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'i roto i te haora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ra',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ra 3 haora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mi'; // Maori\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'apopo i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hātarei i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rātapu i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mane i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tūrei i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wenerei i 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Tāite i 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Paraire i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūrei i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wenerei i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tāite i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Paraire i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Hātarei i 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Rātapu whakamutunga i 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'inanahi i 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i teie mahana, i 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i teie mahana, i 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'apopo i 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūrei i 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'inanahi i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'inanahi i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tūrei whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mane whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rātapu whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hātarei whakamutunga i 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Paraire whakamutunga i 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Tāite whakamutunga i 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Wenerei whakamutunga i 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Paraire whakamutunga i 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 hēkona i mua',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 hēkona i mua',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 hēkona i mua',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 hēkona i mua',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 meneti i mua',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 meneti i mua',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 meneti i mua',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 meneti i mua',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 haora i mua',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 haora i mua',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 haora i mua',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 haora i mua',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ra i mua',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ra i mua',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ra i mua',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ra i mua',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wiki i mua',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 wiki i mua',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wiki i mua',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 wiki i mua',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 marama i mua',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 marama i mua',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 marama i mua',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 marama i mua',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tau i mua',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tau i mua',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tau i mua',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tau i mua',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'i roto i 1 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'i roto i 1 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 hēkona',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 hēkona',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 hēkona',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'i roto i 1 hēkona',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 meneti 1 hēkona',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tau 3 marama 1 ra 1 hēkona',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'i roto i 3 tau',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 marama i mua',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tau 3 marama 1 ra 1 hēkona i mua',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wiki 10 haora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wiki 6 ra',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wiki 6 ra',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'i roto i 1 wiki me te 6 ra',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wiki 1 haora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'i roto i te haora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ra',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ra 3 haora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MiqNiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MiqNiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'miq_NI'; // Mískito\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'satadi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sandi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mundi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wensde at 12:00 VM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tausde at 12:00 VM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'praidi at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wensde at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tausde at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'praidi at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'satadi at 12:00 VM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sandi at 8:49 NM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 NM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 VM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mundi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sandi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last satadi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last praidi at 12:00 VM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tausde at 12:00 VM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last wensde at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last praidi at 12:00 VM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 53rd',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 53rd',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 53rd',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 53rd',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 53rd',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 53rd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 1st',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kati ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 kati ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kati ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 kati ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3 kati 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 kati ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3 kati 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MiqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MiqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'miq'; // Mískito\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'satadi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sandi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mundi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wensde at 12:00 VM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tausde at 12:00 VM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'praidi at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wensde at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tausde at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'praidi at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'satadi at 12:00 VM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sandi at 8:49 NM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 NM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 VM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tiusdi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mundi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sandi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last satadi at 12:00 VM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last praidi at 12:00 VM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tausde at 12:00 VM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last wensde at 12:00 VM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last praidi at 12:00 VM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 53rd',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 53rd',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 53rd',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 53rd',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 53rd',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 53rd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 1st',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 vm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 VM, 12:00 vm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 VM, 1:30 vm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 VM, 2:00 vm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 VM, 6:00 vm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 VM, 10:00 vm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 NM, 12:00 nm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 NM, 5:00 nm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 NM, 9:30 nm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 NM, 11:00 nm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kati ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 kati ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kati ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 kati ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3 kati 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 kati ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3 kati 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MjwInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MjwInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mjw_IN'; // Karbi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bhomti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bhomkuru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Urmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Thelang at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Theman at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thelang at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Theman at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bhomti at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Bhomkuru at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Urmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bhomkuru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bhomti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Theman at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Thelang at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MjwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MjwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mjw'; // Karbi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bhomti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bhomkuru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Urmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Thelang at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Theman at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thelang at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Theman at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bhomti at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Bhomkuru at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Durmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Urmi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bhomkuru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bhomti at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Theman at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Thelang at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Bhomta at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MkMkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MkMkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mk_MK'; // Macedonian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Утре во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во сабота во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во недела во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во понеделник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во среда во 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Во четврток во 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Во петок во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во вторник во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во среда во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во четврток во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во петок во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во сабота во 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Изминатата недела во 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера во 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Денес во 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Денес во 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Утре во 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во вторник во 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатиот вторник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатиот понеделник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатата недела во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатата сабота во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатиот петок во 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Изминатиот четврток во 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Изминатата среда во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Изминатиот петок во 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ви 1-ви 1-ви 1-ви 1-ви',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-ри 1-ви',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-ти 1-ви',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ти 1-ви',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ти 1-ви',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ти 1-ви',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ми 1-ви',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ти 2-ри',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ти',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ви',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ен',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ам CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 АМ, 12:00 ам',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 АМ, 1:30 ам',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 АМ, 2:00 ам',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 АМ, 6:00 ам',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 АМ, 10:00 ам',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ПМ, 12:00 пм',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ПМ, 5:00 пм',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ПМ, 9:30 пм',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ПМ, 11:00 пм',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ев',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'пред 1 секунда',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'пред 1 сек.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'пред 2 секунди',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'пред 2 сек.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'пред 1 минута',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'пред 1 мин.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'пред 2 минути',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'пред 2 мин.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'пред 1 час',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'пред 1 час',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'пред 2 часа',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'пред 2 часа',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'пред 1 ден',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'пред 1 ден',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'пред 2 дена',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'пред 2 дена',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'пред 1 седмица',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'пред 1 седмица',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'пред 2 седмици',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'пред 2 седмици',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'пред 1 месец',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'пред 1 месец',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'пред 2 месеци',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'пред 2 месеци',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'пред 1 година',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'пред 1 год.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'пред 2 години',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'пред 2 год.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'после 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'после 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'по 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'по 1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'пред 1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'пред 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунди',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'после 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 год. 3 месеци 1 ден 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'после 3 години',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'пред 5 месеци',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'пред 2 год. 3 месеци 1 ден 1 сек.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 седмица 10 часа',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дена',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дена',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'после 1 седмица и 6 дена',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 седмици 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'после час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дена',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ден 3 часа',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mk'; // Macedonian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Утре во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во сабота во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во недела во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во понеделник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во среда во 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Во четврток во 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Во петок во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во вторник во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во среда во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во четврток во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во петок во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во сабота во 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Изминатата недела во 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера во 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Денес во 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Денес во 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Утре во 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Во вторник во 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатиот вторник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатиот понеделник во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатата недела во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатата сабота во 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Изминатиот петок во 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Изминатиот четврток во 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Изминатата среда во 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Изминатиот петок во 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ви 1-ви 1-ви 1-ви 1-ви',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-ри 1-ви',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-ти 1-ви',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ти 1-ви',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ти 1-ви',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ти 1-ви',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ми 1-ви',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ти 2-ри',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ти',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ви',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ен',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ам CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 АМ, 12:00 ам',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 АМ, 1:30 ам',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 АМ, 2:00 ам',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 АМ, 6:00 ам',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 АМ, 10:00 ам',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ПМ, 12:00 пм',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ПМ, 5:00 пм',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ПМ, 9:30 пм',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ПМ, 11:00 пм',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ев',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'пред 1 секунда',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'пред 1 сек.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'пред 2 секунди',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'пред 2 сек.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'пред 1 минута',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'пред 1 мин.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'пред 2 минути',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'пред 2 мин.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'пред 1 час',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'пред 1 час',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'пред 2 часа',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'пред 2 часа',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'пред 1 ден',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'пред 1 ден',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'пред 2 дена',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'пред 2 дена',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'пред 1 седмица',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'пред 1 седмица',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'пред 2 седмици',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'пред 2 седмици',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'пред 1 месец',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'пред 1 месец',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'пред 2 месеци',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'пред 2 месеци',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'пред 1 година',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'пред 1 год.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'пред 2 години',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'пред 2 год.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'после 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'после 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'по 1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'по 1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'пред 1 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'пред 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунди',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'после 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 год. 3 месеци 1 ден 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'после 3 години',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'пред 5 месеци',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'пред 2 год. 3 месеци 1 ден 1 сек.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 седмица 10 часа',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дена',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 седмица 6 дена',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'после 1 седмица и 6 дена',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 седмици 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'после час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дена',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ден 3 часа',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MlInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MlInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ml_IN'; // Malayalam\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'നാളെ രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ശനിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഞായറാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'തിങ്കളാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ബുധനാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'വ്യാഴാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ബുധനാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'വ്യാഴാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ശനിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::now()->subDays(2)->calendar()\n        'കഴിഞ്ഞ ഞായറാഴ്ച, രാത്രി 8:49 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഇന്നലെ രാത്രി 10:00 -നു',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ഇന്ന് രാവിലെ 10:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഇന്ന് രാത്രി 2:00 -നു',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'നാളെ രാത്രി 1:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ഇന്നലെ രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഇന്നലെ രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ തിങ്കളാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ ഞായറാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ ശനിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'കഴിഞ്ഞ വ്യാഴാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'കഴിഞ്ഞ ബുധനാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'കഴിഞ്ഞ വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 രാത്രി CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 രാത്രി, 12:00 രാത്രി',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 രാത്രി, 1:30 രാത്രി',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 രാത്രി, 2:00 രാത്രി',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 രാവിലെ, 6:00 രാവിലെ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 രാവിലെ, 10:00 രാവിലെ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ഉച്ച കഴിഞ്ഞ്, 12:00 ഉച്ച കഴിഞ്ഞ്',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 വൈകുന്നേരം, 5:00 വൈകുന്നേരം',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 രാത്രി, 9:30 രാത്രി',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 രാത്രി, 11:00 രാത്രി',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ദിവസം മുൻപ്',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ദിവസം മുൻപ്',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ദിവസം മുൻപ്',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ദിവസം മുൻപ്',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 മാസം മുൻപ്',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 മാസം മുൻപ്',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 മാസം മുൻപ്',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 മാസം മുൻപ്',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 വർഷം മുൻപ്',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 വർഷം മുൻപ്',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 വർഷം മുൻപ്',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 വർഷം മുൻപ്',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 സെക്കൻഡ് കഴിഞ്ഞ്',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 സെക്കൻഡ് കഴിഞ്ഞ്',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 സെക്കൻഡ്',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 സെക്കൻഡ്',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 സെക്കൻഡ്',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 സെക്കൻഡ്',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 സെക്കൻഡ് കഴിഞ്ഞ്',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 മിനിറ്റ് 1 സെക്കൻഡ്',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 വർഷം 3 മാസം 1 ദിവസം 1 സെക്കൻഡ്',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 വർഷം കഴിഞ്ഞ്',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 മാസം മുൻപ്',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 വർഷം 3 മാസം 1 ദിവസം 1 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ആഴ്ച 10 മണിക്കൂർ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ആഴ്ച 6 ദിവസം',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ആഴ്ച 6 ദിവസം',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ആഴ്ച, 6 ദിവസം കഴിഞ്ഞ്',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ആഴ്ച 1 മണിക്കൂർ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ഒരു മണിക്കൂർ കഴിഞ്ഞ്',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ദിവസം',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ദിവസം 3 മണിക്കൂർ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ml'; // Malayalam\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'നാളെ രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ശനിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഞായറാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'തിങ്കളാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ബുധനാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'വ്യാഴാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ബുധനാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'വ്യാഴാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ശനിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::now()->subDays(2)->calendar()\n        'കഴിഞ്ഞ ഞായറാഴ്ച, രാത്രി 8:49 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഇന്നലെ രാത്രി 10:00 -നു',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ഇന്ന് രാവിലെ 10:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഇന്ന് രാത്രി 2:00 -നു',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'നാളെ രാത്രി 1:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ഇന്നലെ രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ഇന്നലെ രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ ചൊവ്വാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ തിങ്കളാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ ഞായറാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ ശനിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'കഴിഞ്ഞ വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'കഴിഞ്ഞ വ്യാഴാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'കഴിഞ്ഞ ബുധനാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'കഴിഞ്ഞ വെള്ളിയാഴ്ച, രാത്രി 12:00 -നു',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 രാത്രി CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 രാത്രി, 12:00 രാത്രി',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 രാത്രി, 1:30 രാത്രി',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 രാത്രി, 2:00 രാത്രി',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 രാവിലെ, 6:00 രാവിലെ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 രാവിലെ, 10:00 രാവിലെ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ഉച്ച കഴിഞ്ഞ്, 12:00 ഉച്ച കഴിഞ്ഞ്',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 വൈകുന്നേരം, 5:00 വൈകുന്നേരം',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 രാത്രി, 9:30 രാത്രി',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 രാത്രി, 11:00 രാത്രി',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 മിനിറ്റ് മുൻപ്',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 മണിക്കൂർ മുൻപ്',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ദിവസം മുൻപ്',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ദിവസം മുൻപ്',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ദിവസം മുൻപ്',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ദിവസം മുൻപ്',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ആഴ്ച മുൻപ്',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 മാസം മുൻപ്',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 മാസം മുൻപ്',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 മാസം മുൻപ്',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 മാസം മുൻപ്',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 വർഷം മുൻപ്',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 വർഷം മുൻപ്',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 വർഷം മുൻപ്',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 വർഷം മുൻപ്',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 സെക്കൻഡ് കഴിഞ്ഞ്',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 സെക്കൻഡ് കഴിഞ്ഞ്',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 സെക്കൻഡ്',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 സെക്കൻഡ്',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 സെക്കൻഡ്',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 സെക്കൻഡ്',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 സെക്കൻഡ് കഴിഞ്ഞ്',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 മിനിറ്റ് 1 സെക്കൻഡ്',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 വർഷം 3 മാസം 1 ദിവസം 1 സെക്കൻഡ്',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 വർഷം കഴിഞ്ഞ്',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 മാസം മുൻപ്',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 വർഷം 3 മാസം 1 ദിവസം 1 സെക്കൻഡ് മുൻപ്',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ആഴ്ച 10 മണിക്കൂർ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ആഴ്ച 6 ദിവസം',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ആഴ്ച 6 ദിവസം',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ആഴ്ച, 6 ദിവസം കഴിഞ്ഞ്',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ആഴ്ച 1 മണിക്കൂർ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ഒരു മണിക്കൂർ കഴിഞ്ഞ്',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ദിവസം',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ദിവസം 3 മണിക്കൂർ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MnMnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MnMnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mn_MN'; // Mongolian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Бямба at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ням at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Даваа at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Мягмар at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Лхагва at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Пүрэв at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Баасан at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Мягмар at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Лхагва at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Пүрэв at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Баасан at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Бямба at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ням at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Мягмар at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Мягмар at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Даваа at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ням at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Бямба at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Баасан at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Пүрэв at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Лхагва at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Баасан at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 өглөө CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 өглөө, 12:00 өглөө',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 өглөө, 1:30 өглөө',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 өглөө, 2:00 өглөө',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 өглөө, 6:00 өглөө',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 өглөө, 10:00 өглөө',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 орой, 12:00 орой',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 орой, 5:00 орой',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 орой, 9:30 орой',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 орой, 11:00 орой',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секундын өмнө',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1с өмнө',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секундын өмнө',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2с өмнө',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минутын өмнө',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1м өмнө',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минутын өмнө',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2м өмнө',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 цагийн өмнө',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1ц өмнө',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 цагийн өмнө',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2ц өмнө',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 хоногийн өмнө',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 хоногийн өмнө',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 хоногийн өмнө',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 хоногийн өмнө',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 долоо хоногийн өмнө',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 долоо хоногийн өмнө',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 долоо хоногийн өмнө',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 долоо хоногийн өмнө',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 сарын өмнө',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 сарын өмнө',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 сарын өмнө',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 сарын өмнө',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 жилийн өмнө',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 жилийн өмнө',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 жилийн өмнө',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 жилийн өмнө',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'одоогоос 1 секундын дараа',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'одоогоос 1с',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секундын дараа',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1с дараа',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секундын өмнө',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1с өмнө',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1с',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2с',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'одоогоос 1с',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 жил 3 сар 1 өдөр 1с',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'одоогоос 3 жилийн дараа',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 сарын өмнө',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 жил 3 сар 1 өдөр 1с өмнө',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 долоо хоног 10 цаг',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 долоо хоног 6 өдөр',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 долоо хоног 6 өдөр',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'одоогоос 1 долоо хоног, 6 хоногийн дараа',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 долоо хоног 1 цаг',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'одоогоос 1 цагийн дараа',\n        // CarbonInterval::days(2)->forHumans()\n        '2 өдөр',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 өдөр 3ц',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mn'; // Mongolian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Бямба at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ням at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Даваа at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Мягмар at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Лхагва at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Пүрэв at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Баасан at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Мягмар at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Лхагва at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Пүрэв at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Баасан at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Бямба at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ням at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Мягмар at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Мягмар at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Даваа at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ням at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Бямба at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Баасан at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Пүрэв at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Лхагва at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Баасан at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 өглөө CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 өглөө, 12:00 өглөө',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 өглөө, 1:30 өглөө',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 өглөө, 2:00 өглөө',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 өглөө, 6:00 өглөө',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 өглөө, 10:00 өглөө',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 орой, 12:00 орой',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 орой, 5:00 орой',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 орой, 9:30 орой',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 орой, 11:00 орой',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секундын өмнө',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1с өмнө',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секундын өмнө',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2с өмнө',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минутын өмнө',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1м өмнө',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минутын өмнө',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2м өмнө',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 цагийн өмнө',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1ц өмнө',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 цагийн өмнө',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2ц өмнө',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 хоногийн өмнө',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 хоногийн өмнө',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 хоногийн өмнө',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 хоногийн өмнө',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 долоо хоногийн өмнө',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 долоо хоногийн өмнө',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 долоо хоногийн өмнө',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 долоо хоногийн өмнө',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 сарын өмнө',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 сарын өмнө',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 сарын өмнө',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 сарын өмнө',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 жилийн өмнө',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 жилийн өмнө',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 жилийн өмнө',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 жилийн өмнө',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'одоогоос 1 секундын дараа',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'одоогоос 1с',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секундын дараа',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1с дараа',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секундын өмнө',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1с өмнө',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1с',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2с',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'одоогоос 1с',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 жил 3 сар 1 өдөр 1с',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'одоогоос 3 жилийн дараа',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 сарын өмнө',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 жил 3 сар 1 өдөр 1с өмнө',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 долоо хоног 10 цаг',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 долоо хоног 6 өдөр',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 долоо хоног 6 өдөр',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'одоогоос 1 долоо хоног, 6 хоногийн дараа',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 долоо хоног 1 цаг',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'одоогоос 1 цагийн дараа',\n        // CarbonInterval::days(2)->forHumans()\n        '2 өдөр',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 өдөр 3ц',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MniInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MniInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mni_IN'; // Manipuri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'থাংজ at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'নোংমাইজিং at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'নিংথৌকাবা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'য়ুমশকৈশা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'শগোলশেন at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'য়ুমশকৈশা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'শগোলশেন at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'থাংজ at 12:00 এ.ম.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last নোংমাইজিং at 8:49 প.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 প.ম.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 এ.ম.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last নিংথৌকাবা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last নোংমাইজিং at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last থাংজ at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last শগোলশেন at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last য়ুমশকৈশা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 এ.ম. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 এ.ম., 12:00 এ.ম.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 এ.ম., 1:30 এ.ম.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 এ.ম., 2:00 এ.ম.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 এ.ম., 6:00 এ.ম.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 এ.ম., 10:00 এ.ম.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 প.ম., 12:00 প.ম.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 প.ম., 5:00 প.ম.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 প.ম., 9:30 প.ম.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 প.ম., 11:00 প.ম.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ইসিং ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ইসিং ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ইসিং ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ইসিং ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ইসিং 3mos 1d 1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ইসিং from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ইসিং 3mos 1d 1 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MniTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MniTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mni'; // Manipuri\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'থাংজ at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'নোংমাইজিং at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'নিংথৌকাবা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'য়ুমশকৈশা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'শগোলশেন at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'য়ুমশকৈশা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'শগোলশেন at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'থাংজ at 12:00 এ.ম.',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last নোংমাইজিং at 8:49 প.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 প.ম.',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 এ.ম.',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last লৈবাকপোকপা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last নিংথৌকাবা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last নোংমাইজিং at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last থাংজ at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last শগোলশেন at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last য়ুমশকৈশা at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ইরাই at 12:00 এ.ম.',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 এ.ম. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 এ.ম., 12:00 এ.ম.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 এ.ম., 1:30 এ.ম.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 এ.ম., 2:00 এ.ম.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 এ.ম., 6:00 এ.ম.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 এ.ম., 10:00 এ.ম.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 প.ম., 12:00 প.ম.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 প.ম., 5:00 প.ম.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 প.ম., 9:30 প.ম.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 প.ম., 11:00 প.ম.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ইসিং ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ইসিং ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ইসিং ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ইসিং ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ꯅꯤꯡꯊꯧꯀꯥꯕ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ইসিং 3mos 1d 1 ꯅꯤꯡꯊꯧꯀꯥꯕ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ইসিং from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ইসিং 3mos 1d 1 ꯅꯤꯡꯊꯧꯀꯥꯕ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mo'; // Moldavian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mâine la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sâmbătă la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'duminică la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luni la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miercuri la 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'joi la 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vineri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miercuri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'joi la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vineri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sâmbătă la 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'fosta duminică la 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'azi la 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'azi la 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mâine la 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ieri la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta marți la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta luni la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta duminică la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta sâmbătă la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta vineri la 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'fosta joi la 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'fosta miercuri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fosta vineri la 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secundă în urmă',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secundă în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 m. în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minut în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 m. în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oră în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oră în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zi în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 z. în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zi în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 z. în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 săptămână în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 săp. în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 săptămână în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 săp. în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lună în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 l. în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 lună în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 l. în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 an în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 a. în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 an în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 a. în urmă',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'peste 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'peste 1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'acum 1 secundă',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'acum 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secundă',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'peste 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 secundă',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a. 3 l. 1 z. 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'peste 3 an',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 l. în urmă',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 a. 3 l. 1 z. 1 sec. în urmă',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 săptămână 10 oră',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'peste 1 săptămână și 6 zi',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 săptămână 1 oră',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'peste o oră',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zi',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 z. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MrInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MrInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mr_IN'; // Marathi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'उद्या रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'गुरूवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गुरूवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार, रात्री 12:00 वाजता',\n        // Carbon::now()->subDays(2)->calendar()\n        'मागील रविवार, रात्री 8:49 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'काल रात्री 10:00 वाजता',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज दुपारी 10:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज रात्री 2:00 वाजता',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'उद्या रात्री 1:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'काल रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'काल रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील सोमवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील रविवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील शनिवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'मागील गुरूवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'मागील बुधवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मागील शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 रात्री CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 रात्री, 12:00 रात्री',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 रात्री, 1:30 रात्री',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 रात्री, 2:00 रात्री',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 सकाळी, 6:00 सकाळी',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 दुपारी, 10:00 दुपारी',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 दुपारी, 12:00 दुपारी',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 सायंकाळी, 5:00 सायंकाळी',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 रात्री, 9:30 रात्री',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 रात्री, 11:00 रात्री',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकंदपूर्वी',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकंदपूर्वी',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 मिनिटेपूर्वी',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनिटेपूर्वी',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनिटेपूर्वी',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनिटेपूर्वी',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 तासपूर्वी',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 तासपूर्वी',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 तासपूर्वी',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 तासपूर्वी',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिवसपूर्वी',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिवसपूर्वी',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिवसपूर्वी',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिवसपूर्वी',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 आठवडापूर्वी',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 आठवडापूर्वी',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 आठवडेपूर्वी',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 आठवडेपूर्वी',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 महिनापूर्वी',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिनापूर्वी',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिनेपूर्वी',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिनेपूर्वी',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 वर्षपूर्वी',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्षपूर्वी',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वर्षपूर्वी',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्षपूर्वी',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 सेकंदमध्ये',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकंदमध्ये',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 सेकंदनंतर',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकंदनंतर',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 सेकंद',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकंद',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकंद',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकंद',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकंदमध्ये',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 मिनिटे 1 सेकंद',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 महिने 1 दिवस 1 सेकंद',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वर्षमध्ये',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिनेपूर्वी',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 महिने 1 दिवस 1 सेकंदपूर्वी',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 आठवडा 10 तास',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आठवडा 6 दिवस',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आठवडा 6 दिवस',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 आठवडा आणि 6 दिवसमध्ये',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 आठवडे 1 तास',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 तासमध्ये',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिवस',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिवस 3 तास',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mr'; // Marathi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'उद्या रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'गुरूवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गुरूवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार, रात्री 12:00 वाजता',\n        // Carbon::now()->subDays(2)->calendar()\n        'मागील रविवार, रात्री 8:49 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'काल रात्री 10:00 वाजता',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज दुपारी 10:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज रात्री 2:00 वाजता',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'उद्या रात्री 1:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'काल रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'काल रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील मंगळवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील सोमवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील रविवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील शनिवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मागील शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'मागील गुरूवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'मागील बुधवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मागील शुक्रवार, रात्री 12:00 वाजता',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 रात्री CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 रात्री, 12:00 रात्री',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 रात्री, 1:30 रात्री',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 रात्री, 2:00 रात्री',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 सकाळी, 6:00 सकाळी',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 दुपारी, 10:00 दुपारी',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 दुपारी, 12:00 दुपारी',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 सायंकाळी, 5:00 सायंकाळी',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 रात्री, 9:30 रात्री',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 रात्री, 11:00 रात्री',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकंदपूर्वी',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकंदपूर्वी',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 मिनिटेपूर्वी',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनिटेपूर्वी',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनिटेपूर्वी',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनिटेपूर्वी',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 तासपूर्वी',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 तासपूर्वी',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 तासपूर्वी',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 तासपूर्वी',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिवसपूर्वी',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिवसपूर्वी',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिवसपूर्वी',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिवसपूर्वी',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 आठवडापूर्वी',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 आठवडापूर्वी',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 आठवडेपूर्वी',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 आठवडेपूर्वी',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 महिनापूर्वी',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिनापूर्वी',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिनेपूर्वी',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिनेपूर्वी',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 वर्षपूर्वी',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्षपूर्वी',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वर्षपूर्वी',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्षपूर्वी',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 सेकंदमध्ये',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकंदमध्ये',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 सेकंदनंतर',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकंदनंतर',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकंदपूर्वी',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 सेकंद',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकंद',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकंद',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकंद',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकंदमध्ये',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 मिनिटे 1 सेकंद',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 महिने 1 दिवस 1 सेकंद',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वर्षमध्ये',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिनेपूर्वी',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 महिने 1 दिवस 1 सेकंदपूर्वी',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 आठवडा 10 तास',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आठवडा 6 दिवस',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 आठवडा 6 दिवस',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 आठवडा आणि 6 दिवसमध्ये',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 आठवडे 1 तास',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 तासमध्ये',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिवस',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिवस 3 तास',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MsBnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MsBnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ms_BN'; // Malay\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Esok pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 12:00 a',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Khamis pukul 12:00 a',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaat pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Khamis pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 12:00 a',\n        // Carbon::now()->subDays(2)->calendar()\n        'Ahad lepas pukul 8:49 p',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 10:00 p',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 2:00 a',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Esok pukul 1:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 12:00 a',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kelmarin pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaat lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Khamis lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a, 12:00 a',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a, 1:30 a',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a, 2:00 a',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a, 6:00 a',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a, 10:00 a',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p, 12:00 p',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p, 5:00 p',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p, 9:30 p',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p, 11:00 p',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 saat yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 jam yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 hari yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 minggu yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 bulan yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tahun yang lepas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 saat kemudian',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 saat kemudian',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 saat sebelum',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 saat sebelum',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 saat',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 saat dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 saat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 bulan yang lepas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat yang lepas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 hari 3 jam',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MsMyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MsMyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ms_MY'; // Malay\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Esok pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Khamis pukul 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Khamis pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Ahad lepas pukul 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Esok pukul 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kelmarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaat lepas pukul 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Khamis lepas pukul 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lepas pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat lepas pukul 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 tengah malam CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 tengah malam, 12:00 tengah malam',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 pagi, 1:30 pagi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 pagi, 2:00 pagi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 pagi, 6:00 pagi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 pagi, 10:00 pagi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 tengah hari, 12:00 tengah hari',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 petang, 5:00 petang',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 malam, 9:30 malam',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 malam, 11:00 malam',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 saat yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 jam yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 hari yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 minggu yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 bulan yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tahun yang lepas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 saat kemudian',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 saat kemudian',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 saat sebelum',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 saat sebelum',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 saat',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 saat dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 saat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 bulan yang lepas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat yang lepas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 hari 3 jam',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MsSgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MsSgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ms_SG'; // Malay\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Esok pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 12:00 a',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Khamis pukul 12:00 a',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaat pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Khamis pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 12:00 a',\n        // Carbon::now()->subDays(2)->calendar()\n        'Ahad lepas pukul 8:49 p',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 10:00 p',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 2:00 a',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Esok pukul 1:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 12:00 a',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kelmarin pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaat lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Khamis lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat lepas pukul 12:00 a',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a, 12:00 a',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a, 1:30 a',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a, 2:00 a',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a, 6:00 a',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a, 10:00 a',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p, 12:00 p',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p, 5:00 p',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p, 9:30 p',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p, 11:00 p',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 saat yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 jam yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 hari yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 minggu yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 bulan yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tahun yang lepas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 saat kemudian',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 saat kemudian',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 saat sebelum',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 saat sebelum',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 saat',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 saat dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 saat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 bulan yang lepas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat yang lepas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 hari 3 jam',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ms'; // Malay\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Esok pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Khamis pukul 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jumaat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rabu pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Khamis pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabtu pukul 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Ahad lepas pukul 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hari ini pukul 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hari ini pukul 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Esok pukul 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selasa pukul 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Kelmarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kelmarin pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selasa lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Isnin lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ahad lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabtu lepas pukul 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumaat lepas pukul 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Khamis lepas pukul 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Rabu lepas pukul 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumaat lepas pukul 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 tengah malam CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 tengah malam, 12:00 tengah malam',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 pagi, 1:30 pagi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 pagi, 2:00 pagi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 pagi, 6:00 pagi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 pagi, 10:00 pagi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 tengah hari, 12:00 tengah hari',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 petang, 5:00 petang',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 malam, 9:30 malam',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 malam, 11:00 malam',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 saat yang lepas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 saat yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit yang lepas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 jam yang lepas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 jam yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 hari yang lepas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 hari yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 minggu yang lepas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 minggu yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 bulan yang lepas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 bulan yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tahun yang lepas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tahun yang lepas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 saat dari sekarang',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 saat kemudian',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 saat kemudian',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 saat sebelum',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 saat sebelum',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 saat',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 saat dari sekarang',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 saat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tahun dari sekarang',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 bulan yang lepas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tahun 3 bulan 1 hari 1 saat yang lepas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 minggu 10 jam',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 minggu 6 hari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 minggu dan 6 hari dari sekarang',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 minggu 1 jam',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sejam dari sekarang',\n        // CarbonInterval::days(2)->forHumans()\n        '2 hari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 hari 3 jam',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MtMtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MtMtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mt_MT'; // Maltese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Għada fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Is-Sibt fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-Ħadd fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tnejn fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tlieta fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'L-Erbgħa fil-00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Il-Ħamis fil-00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Il-Ġimgħa fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'It-Tlieta fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'L-Erbgħa fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Il-Ħamis fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Il-Ġimgħa fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Is-Sibt fil-00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Il-Ħadd li għadda fil-20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-bieraħ fil-22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Illum fil-10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Illum fil-02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Għada fil-01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'It-Tlieta fil-00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Il-bieraħ fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-bieraħ fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tlieta li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tnejn li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-Ħadd li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Is-Sibt li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-Ġimgħa li għadda fil-00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Il-Ħamis li għadda fil-00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'L-Erbgħa li għadda fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Il-Ġimgħa li għadda fil-00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ftit sekondi ilu',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sek. ilu',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekondi ilu',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sek. ilu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minuta ilu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'min. ilu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti ilu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. ilu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'siegħa ilu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'siegħa ilu',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 siegħat ilu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sigħat ilu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ġurnata ilu',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ġurnata ilu',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ġranet ilu',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ġranet ilu',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'gimgħa ilu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ġimgħa ilu',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ġimgħat ilu',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ġimgħat ilu',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'xahar ilu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 xahar ilu',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 xhur ilu',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 xhur ilu',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'sena ilu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'sa sena ilu',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 sni ilu',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 snin ilu',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'f’ ftit sekondi',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'f’ sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ftit sekondi',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'f’ sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minuta ftit sekondi',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 snin 3 xhur ġurnata sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'f’ 3 sni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 xhur ilu',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 snin 3 xhur ġurnata sek. ilu',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'gimgħa 10 siegħat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'gimgħa 6 ġranet',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'gimgħa 6 ġranet',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'f’ gimgħa u 6 ġranet',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ġimgħat siegħa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'f’ siegħa',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ġranet',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ġurnata 3 sigħat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mt'; // Maltese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Għada fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Is-Sibt fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-Ħadd fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tnejn fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tlieta fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'L-Erbgħa fil-00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Il-Ħamis fil-00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Il-Ġimgħa fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'It-Tlieta fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'L-Erbgħa fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Il-Ħamis fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Il-Ġimgħa fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Is-Sibt fil-00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Il-Ħadd li għadda fil-20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-bieraħ fil-22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Illum fil-10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Illum fil-02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Għada fil-01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'It-Tlieta fil-00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Il-bieraħ fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-bieraħ fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tlieta li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'It-Tnejn li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-Ħadd li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Is-Sibt li għadda fil-00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Il-Ġimgħa li għadda fil-00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Il-Ħamis li għadda fil-00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'L-Erbgħa li għadda fil-00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Il-Ġimgħa li għadda fil-00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ftit sekondi ilu',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sek. ilu',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekondi ilu',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sek. ilu',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minuta ilu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'min. ilu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti ilu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. ilu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'siegħa ilu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'siegħa ilu',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 siegħat ilu',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sigħat ilu',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ġurnata ilu',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ġurnata ilu',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ġranet ilu',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ġranet ilu',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'gimgħa ilu',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ġimgħa ilu',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ġimgħat ilu',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ġimgħat ilu',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'xahar ilu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 xahar ilu',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 xhur ilu',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 xhur ilu',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'sena ilu',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'sa sena ilu',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 sni ilu',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 snin ilu',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'f’ ftit sekondi',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'f’ sek.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ftit sekondi',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sek.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekondi',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'f’ sek.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minuta ftit sekondi',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 snin 3 xhur ġurnata sek.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'f’ 3 sni',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 xhur ilu',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 snin 3 xhur ġurnata sek. ilu',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'gimgħa 10 siegħat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'gimgħa 6 ġranet',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'gimgħa 6 ġranet',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'f’ gimgħa u 6 ġranet',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ġimgħat siegħa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'f’ siegħa',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ġranet',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ġurnata 3 sigħat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MuaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MuaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mua'; // Mundang\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Comzyeɓsuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Com’yakke at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Comlaaɗii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Comzyiiɗii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Comkolle at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Comkaldǝɓlii at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Comgaisuu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Comzyiiɗii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Comkolle at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Comkaldǝɓlii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Comgaisuu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Comzyeɓsuu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Com’yakke at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Comzyiiɗii at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Comzyiiɗii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Comlaaɗii at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Com’yakke at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Comzyeɓsuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Comgaisuu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Comkaldǝɓlii at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Comkolle at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Comgaisuu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 comme CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 comme, 12:00 comme',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 comme, 1:30 comme',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 comme, 2:00 comme',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 comme, 6:00 comme',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 comme, 10:00 comme',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 lilli, 12:00 lilli',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 lilli, 5:00 lilli',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 lilli, 9:30 lilli',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 lilli, 11:00 lilli',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MyMmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MyMmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'my_MM'; // Burmese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'မနက်ဖြန် ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'စနေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'တနင်္ဂနွေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'တနင်္လာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ဗုဒ္ဓဟူး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ကြာသပတေး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ဗုဒ္ဓဟူး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ကြာသပတေး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'စနေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'ပြီးခဲ့သော တနင်္ဂနွေ ၀၈:၄၉ ညနေ မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'မနေ.က ၁၀:၀၀ ညနေ မှာ',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'ယနေ. ၁၀:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'ယနေ. ၀၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'မနက်ဖြန် ၀၁:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'မနေ.က ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'မနေ.က ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'ပြီးခဲ့သော အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'ပြီးခဲ့သော တနင်္လာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'ပြီးခဲ့သော တနင်္ဂနွေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'ပြီးခဲ့သော စနေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'ပြီးခဲ့သော သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'ပြီးခဲ့သော ကြာသပတေး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'ပြီးခဲ့သော ဗုဒ္ဓဟူး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'ပြီးခဲ့သော သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st',\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 နံနက် CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 နံနက်, 12:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 နံနက်, 1:30 နံနက်',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 နံနက်, 2:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 နံနက်, 6:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 နံနက်, 10:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 ညနေ, 12:00 ညနေ',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 ညနေ, 5:00 ညနေ',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 ညနေ, 9:30 ညနေ',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ညနေ, 11:00 ညနေ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'လွန်ခဲ့သော 1 စက္ကန့် က',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'လွန်ခဲ့သော 1 စက္ကန့် က',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'လွန်ခဲ့သော 2 စက္ကန့် က',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'လွန်ခဲ့သော 2 စက္ကန့် က',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'လွန်ခဲ့သော 1 မိနစ် က',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'လွန်ခဲ့သော 1 မိနစ် က',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'လွန်ခဲ့သော 2 မိနစ် က',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'လွန်ခဲ့သော 2 မိနစ် က',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'လွန်ခဲ့သော 1 နာရီ က',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'လွန်ခဲ့သော 1 နာရီ က',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'လွန်ခဲ့သော 2 နာရီ က',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'လွန်ခဲ့သော 2 နာရီ က',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'လွန်ခဲ့သော 1 ရက် က',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'လွန်ခဲ့သော 1 ရက် က',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'လွန်ခဲ့သော 2 ရက် က',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'လွန်ခဲ့သော 2 ရက် က',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'လွန်ခဲ့သော 1 ပတ် က',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'လွန်ခဲ့သော 1 ပတ် က',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'လွန်ခဲ့သော 2 ပတ် က',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'လွန်ခဲ့သော 2 ပတ် က',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'လွန်ခဲ့သော 1 လ က',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'လွန်ခဲ့သော 1 လ က',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'လွန်ခဲ့သော 2 လ က',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'လွန်ခဲ့သော 2 လ က',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'လွန်ခဲ့သော 1 နှစ် က',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'လွန်ခဲ့သော 1 နှစ် က',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'လွန်ခဲ့သော 2 နှစ် က',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'လွန်ခဲ့သော 2 နှစ် က',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'လာမည့် 1 စက္ကန့် မှာ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'လာမည့် 1 စက္ကန့် မှာ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 စက္ကန့် ကြာပြီးနောက်',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 စက္ကန့် ကြာပြီးနောက်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 စက္ကန့် မတိုင်ခင်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 စက္ကန့် မတိုင်ခင်',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 စက္ကန့်',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 စက္ကန့်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 စက္ကန့်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 စက္ကန့်',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'လာမည့် 1 စက္ကန့် မှာ',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 မိနစ် 1 စက္ကန့်',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 နှစ် 3 လ 1 ရက် 1 စက္ကန့်',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'လာမည့် 3 နှစ် မှာ',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'လွန်ခဲ့သော 5 လ က',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'လွန်ခဲ့သော 2 နှစ် 3 လ 1 ရက် 1 စက္ကန့် က',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 ပတ် 10 နာရီ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ပတ် 6 ရက်',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ပတ် 6 ရက်',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'လာမည့် 1 ပတ် 6 ရက် မှာ',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 ပတ် 1 နာရီ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'လာမည့် တစ်နာရီ မှာ',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 ရက်',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 ရက် 3 နာရီ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'my'; // Burmese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'မနက်ဖြန် ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'စနေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'တနင်္ဂနွေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'တနင်္လာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ဗုဒ္ဓဟူး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ကြာသပတေး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ဗုဒ္ဓဟူး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ကြာသပတေး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'စနေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'ပြီးခဲ့သော တနင်္ဂနွေ ၀၈:၄၉ ညနေ မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'မနေ.က ၁၀:၀၀ ညနေ မှာ',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'ယနေ. ၁၀:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'ယနေ. ၀၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'မနက်ဖြန် ၀၁:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'မနေ.က ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'မနေ.က ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'ပြီးခဲ့သော အင်္ဂါ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'ပြီးခဲ့သော တနင်္လာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'ပြီးခဲ့သော တနင်္ဂနွေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'ပြီးခဲ့သော စနေ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'ပြီးခဲ့သော သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'ပြီးခဲ့သော ကြာသပတေး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'ပြီးခဲ့သော ဗုဒ္ဓဟူး ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'ပြီးခဲ့သော သောကြာ ၁၂:၀၀ နံနက် မှာ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st',\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 နံနက် CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 နံနက်, 12:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 နံနက်, 1:30 နံနက်',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 နံနက်, 2:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 နံနက်, 6:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 နံနက်, 10:00 နံနက်',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 ညနေ, 12:00 ညနေ',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 ညနေ, 5:00 ညနေ',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 ညနေ, 9:30 ညနေ',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ညနေ, 11:00 ညနေ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        'လွန်ခဲ့သော 1 စက္ကန့် က',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        'လွန်ခဲ့သော 1 စက္ကန့် က',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        'လွန်ခဲ့သော 2 စက္ကန့် က',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        'လွန်ခဲ့သော 2 စက္ကန့် က',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        'လွန်ခဲ့သော 1 မိနစ် က',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        'လွန်ခဲ့သော 1 မိနစ် က',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        'လွန်ခဲ့သော 2 မိနစ် က',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        'လွန်ခဲ့သော 2 မိနစ် က',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        'လွန်ခဲ့သော 1 နာရီ က',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        'လွန်ခဲ့သော 1 နာရီ က',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        'လွန်ခဲ့သော 2 နာရီ က',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        'လွန်ခဲ့သော 2 နာရီ က',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        'လွန်ခဲ့သော 1 ရက် က',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        'လွန်ခဲ့သော 1 ရက် က',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        'လွန်ခဲ့သော 2 ရက် က',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        'လွန်ခဲ့သော 2 ရက် က',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        'လွန်ခဲ့သော 1 ပတ် က',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        'လွန်ခဲ့သော 1 ပတ် က',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        'လွန်ခဲ့သော 2 ပတ် က',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        'လွန်ခဲ့သော 2 ပတ် က',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        'လွန်ခဲ့သော 1 လ က',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        'လွန်ခဲ့သော 1 လ က',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        'လွန်ခဲ့သော 2 လ က',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        'လွန်ခဲ့သော 2 လ က',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        'လွန်ခဲ့သော 1 နှစ် က',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        'လွန်ခဲ့သော 1 နှစ် က',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        'လွန်ခဲ့သော 2 နှစ် က',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        'လွန်ခဲ့သော 2 နှစ် က',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'လာမည့် 1 စက္ကန့် မှာ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'လာမည့် 1 စက္ကန့် မှာ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 စက္ကန့် ကြာပြီးနောက်',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 စက္ကန့် ကြာပြီးနောက်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 စက္ကန့် မတိုင်ခင်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 စက္ကန့် မတိုင်ခင်',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 စက္ကန့်',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 စက္ကန့်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 စက္ကန့်',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 စက္ကန့်',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'လာမည့် 1 စက္ကန့် မှာ',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 မိနစ် 1 စက္ကန့်',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 နှစ် 3 လ 1 ရက် 1 စက္ကန့်',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'လာမည့် 3 နှစ် မှာ',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        'လွန်ခဲ့သော 5 လ က',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        'လွန်ခဲ့သော 2 နှစ် 3 လ 1 ရက် 1 စက္ကန့် က',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 ပတ် 10 နာရီ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ပတ် 6 ရက်',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ပတ် 6 ရက်',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'လာမည့် 1 ပတ် 6 ရက် မှာ',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 ပတ် 1 နာရီ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'လာမည့် တစ်နာရီ မှာ',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 ရက်',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 ရက် 3 နာရီ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/MznTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass MznTest extends LocalizationTestCase\n{\n    public const LOCALE = 'mzn'; // Mazanderani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'فردا ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'یکشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'دوشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'چهارشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'پنجشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'جمعه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'شنبه ساعت 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'یکشنبه پیش ساعت 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'دیروز ساعت 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'امروز ساعت 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'امروز ساعت 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'فردا ساعت 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'سه‌شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'دیروز ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'سه‌شنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'دوشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'یکشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'شنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'پنجشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'چهارشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'جمعه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        ':timeم :timeم :timeم :timeم :timeم',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        ':timeم',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 قبل از ظهر CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 قبل از ظهر, 12:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 قبل از ظهر, 1:30 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 قبل از ظهر, 2:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 قبل از ظهر, 6:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 قبل از ظهر, 10:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 بعد از ظهر, 12:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 بعد از ظهر, 5:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 بعد از ظهر, 9:30 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 بعد از ظهر, 11:00 بعد از ظهر',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        ':timeم',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ساعت پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 روز پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 هفته پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 ماه پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 سال پیش',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 ثانیه پس از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 دقیقه 1 ثانیه',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 سال 3 ماه 1 روز 1 ثانیه',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 سال دیگر',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 ماه پیش',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 سال 3 ماه 1 روز 1 ثانیه پیش',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 هفته 10 ساعت',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 هفته و 6 روز دیگر',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 هفته 1 ساعت',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'یک ساعت دیگر',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 روز',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 روز 3 ساعت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NanTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NanTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nan'; // Min Nan Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜六 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜日 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜一 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜三 at 12:00 頂晡',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '禮拜四 at 12:00 頂晡',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜三 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜四 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜六 at 12:00 頂晡',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 禮拜日 at 8:49 下晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 下晡',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 頂晡',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜一 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜日 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜六 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 禮拜四 at 12:00 頂晡',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 禮拜三 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 頂晡 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 頂晡, 12:00 頂晡',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 頂晡, 1:30 頂晡',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 頂晡, 2:00 頂晡',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 頂晡, 6:00 頂晡',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 頂晡, 10:00 頂晡',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 下晡, 12:00 下晡',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 下晡, 5:00 下晡',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 下晡, 9:30 下晡',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 下晡, 11:00 下晡',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Bió ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Bió ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Bió ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Bió ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Hun-cheng ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Hun-cheng ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Hun-cheng ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Hun-cheng ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tiám-cheng ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 tiám-cheng ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tiám-cheng ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 tiám-cheng ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 日 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 日 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 日 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 日 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 lé-pài ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 lé-pài ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 lé-pài ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 lé-pài ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 goe̍h ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 goe̍h ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 goe̍h ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 goe̍h ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 年 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 年 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Bió from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Bió from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Bió after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Bió after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Bió before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Bió before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Bió',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Bió',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Bió',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Bió',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Bió from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Hun-cheng 1 Bió',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 年 3 goe̍h 1 日 1 Bió',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 年 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 goe̍h ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 年 3 goe̍h 1 日 1 Bió ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 lé-pài 10 tiám-cheng',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lé-pài 6 日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lé-pài 6 日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 lé-pài and 6 日 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 lé-pài 1 tiám-cheng',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 tiám-cheng from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 日',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 日 3 tiám-cheng',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NanTwLatinTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NanTwLatinTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nan_TW@latin'; // Min Nan Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pài-la̍k at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lé-pài-ji̍t at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pài-it at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pài-jī at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pài-saⁿ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'pài-sì at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pài-gō͘ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pài-jī at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pài-saⁿ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pài-sì at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pài-gō͘ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pài-la̍k at 12:00 téng-po͘',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last lé-pài-ji̍t at 8:49 ē-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ē-po͘',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 téng-po͘',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pài-jī at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pài-jī at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pài-it at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lé-pài-ji̍t at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pài-la̍k at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pài-gō͘ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last pài-sì at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last pài-saⁿ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pài-gō͘ at 12:00 téng-po͘',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 téng-po͘ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 téng-po͘, 12:00 téng-po͘',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 téng-po͘, 1:30 téng-po͘',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 téng-po͘, 2:00 téng-po͘',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 téng-po͘, 6:00 téng-po͘',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 téng-po͘, 10:00 téng-po͘',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ē-po͘, 12:00 ē-po͘',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ē-po͘, 5:00 ē-po͘',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ē-po͘, 9:30 ē-po͘',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ē-po͘, 11:00 ē-po͘',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NanTwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NanTwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nan_TW'; // Min Nan Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜六 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜日 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜一 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '禮拜三 at 12:00 頂晡',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '禮拜四 at 12:00 頂晡',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜三 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜四 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜六 at 12:00 頂晡',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last 禮拜日 at 8:49 下晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 下晡',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 頂晡',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜二 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜一 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜日 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜六 at 12:00 頂晡',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last 禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last 禮拜四 at 12:00 頂晡',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last 禮拜三 at 12:00 頂晡',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last 禮拜五 at 12:00 頂晡',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 頂晡 CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 頂晡, 12:00 頂晡',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 頂晡, 1:30 頂晡',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 頂晡, 2:00 頂晡',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 頂晡, 6:00 頂晡',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 頂晡, 10:00 頂晡',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 下晡, 12:00 下晡',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 下晡, 5:00 下晡',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 下晡, 9:30 下晡',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 下晡, 11:00 下晡',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Bió ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Bió ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Bió ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Bió ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Hun-cheng ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Hun-cheng ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Hun-cheng ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Hun-cheng ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 tiám-cheng ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 tiám-cheng ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 tiám-cheng ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 tiám-cheng ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 日 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 日 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 日 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 日 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 lé-pài ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 lé-pài ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 lé-pài ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 lé-pài ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 goe̍h ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 goe̍h ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 goe̍h ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 goe̍h ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 年 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 年 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 年 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Bió from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Bió from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Bió after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Bió after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Bió before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Bió before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Bió',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Bió',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Bió',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Bió',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Bió from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Hun-cheng 1 Bió',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 年 3 goe̍h 1 日 1 Bió',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 年 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 goe̍h ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 年 3 goe̍h 1 日 1 Bió ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 lé-pài 10 tiám-cheng',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lé-pài 6 日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 lé-pài 6 日',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 lé-pài and 6 日 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 lé-pài 1 tiám-cheng',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 tiám-cheng from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 日',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 日 3 tiám-cheng',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NaqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NaqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'naq'; // Nama\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Satertaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sontaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mantaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Denstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wunstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dondertaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fraitaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Denstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wunstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dondertaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fraitaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Satertaxtsees at 12:00 ǁgoagas',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sontaxtsees at 8:49 ǃuias',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ǃuias',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Denstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Denstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mantaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sontaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Satertaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fraitaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dondertaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wunstaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fraitaxtsees at 12:00 ǁgoagas',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ǁgoagas CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ǁgoagas, 12:00 ǁgoagas',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ǁgoagas, 1:30 ǁgoagas',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ǁgoagas, 2:00 ǁgoagas',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ǁgoagas, 6:00 ǁgoagas',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ǁgoagas, 10:00 ǁgoagas',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ǃuias, 12:00 ǃuias',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ǃuias, 5:00 ǃuias',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ǃuias, 9:30 ǃuias',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ǃuias, 11:00 ǃuias',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutga ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minutga ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutga ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minutga ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ǂgaes ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ǂgaes ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ǂgaes ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ǂgaes ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ǀhobas ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ǀhobas ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ǀhobas ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ǀhobas ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 hû ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 hû ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 hû ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 hû ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ǁaub ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ǁaub ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ǁaub ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ǁaub ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 kurigu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 kurigu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 kurigu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 kurigu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutga 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 kurigu 3 ǁaub 1 ǀhobas 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 kurigu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ǁaub ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 kurigu 3 ǁaub 1 ǀhobas 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 hû 10 ǂgaes',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hû 6 ǀhobas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hû 6 ǀhobas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 hû and 6 ǀhobas from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 hû 1 ǂgaes',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ǂgaes from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ǀhobas',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ǀhobas 3 ǂgaes',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NbNoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NbNoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nb_NO'; // Norwegian Bokmål\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'forrige søndag kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige fredag kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'forrige torsdag kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'forrige onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'forrige fredag kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sek siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sek siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutt siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dager siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 uke siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 uker siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 md. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 md. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 sek',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund etter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sek etter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sek før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 sek',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutt 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 md. 1 d. 1 sek',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 md. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 år 3 md. 1 d. 1 sek siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uke 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uke og 6 dager',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uker 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dager',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NbSjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NbSjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nb_SJ'; // Norwegian Bokmål\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'forrige søndag kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige fredag kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'forrige torsdag kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'forrige onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'forrige fredag kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sek siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sek siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutt siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dager siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 uke siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 uker siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 md. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 md. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 sek',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund etter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sek etter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sek før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 sek',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutt 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 md. 1 d. 1 sek',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 md. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 år 3 md. 1 d. 1 sek siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uke 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uke og 6 dager',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uker 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dager',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NbTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NbTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nb'; // Norwegian Bokmål\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'forrige søndag kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'forrige fredag kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'forrige torsdag kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'forrige onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'forrige fredag kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sek siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sek siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutt siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dager siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 uke siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 uker siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 md. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 md. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 sek',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund etter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sek etter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sek før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 sek',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutt 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 md. 1 d. 1 sek',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 md. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 år 3 md. 1 d. 1 sek siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uke 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uke og 6 dager',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uker 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dager',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nd'; // NorthNdebele\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mgqibelo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonto at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mvulo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sibili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sithathu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Sine at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Sihlanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sibili at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sithathu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sine at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sihlanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mgqibelo at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sonto at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sibili at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sibili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mvulo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sonto at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mgqibelo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sihlanu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Sine at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Sithathu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Sihlanu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'imizuzwana engu-1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'imizuzwana engu-1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'imizuzwana engu-2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'imizuzwana engu-2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'imizuzu engu-1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'imizuzu engu-1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'imizuzu engu-2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'imizuzu engu-2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'amahola angu-1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'amahola angu-1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'amahola angu-2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'amahola angu-2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'kwamalanga angu-1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'kwamalanga angu-1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'kwamalanga angu-2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'kwamalanga angu-2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'amaviki angu-1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'amaviki angu-1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'amaviki angu-2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'amaviki angu-2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'inyanga ezingu-1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'inyanga ezingu-1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'inyanga ezingu-2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'inyanga ezingu-2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'okweminyaka engu-1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'okweminyaka engu-1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'okweminyaka engu-2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'okweminyaka engu-2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'imizuzwana engu-1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'imizuzwana engu-1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'imizuzwana engu-1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'imizuzwana engu-1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'imizuzwana engu-1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'imizuzwana engu-1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'imizuzwana engu-2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'imizuzwana engu-2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'imizuzu engu-1 imizuzwana engu-1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'okweminyaka engu-2 inyanga ezingu-3 kwamalanga angu-1 imizuzwana engu-1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'okweminyaka engu-3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'inyanga ezingu-5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'okweminyaka engu-2 inyanga ezingu-3 kwamalanga angu-1 imizuzwana engu-1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'amaviki angu-1 amahola angu-10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'amaviki angu-1 kwamalanga angu-6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'amaviki angu-1 kwamalanga angu-6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'amaviki angu-1 and kwamalanga angu-6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'amaviki angu-2 amahola angu-1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'amahola angu-1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'kwamalanga angu-2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'kwamalanga angu-1 amahola angu-3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NdsDeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NdsDeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nds_DE'; // Low German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sünnavend at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sünndag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maandag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Middeweek at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunnersdag at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Middeweek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunnersdag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sünnavend at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sünndag at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Maandag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sünndag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sünnavend at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunnersdag at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Middeweek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vör 1 Sekunn',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vör 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vör 2 Sekunn',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vör 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vör 1 Minuut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vör 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vör 2 Minuut',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vör 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vör 1 Stünn',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vör 1St',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vör 2 Stünn',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vör 2St',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vör 1 Dag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vör 1D',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vör 2 Dag',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vör 2D',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vör 1 Week',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vör 1W',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vör 2 Week',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vör 2W',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vör 1 Maand',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vör 1M',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vör 2 Maand',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vör 2M',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vör 1 Johr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vör 1J',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vör 2 Johr',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vör 2J',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunn later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunn vörher',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s vörher',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minuut 1 Sekunn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2J 3M 1D 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Johr',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vör 5M',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vör 2J 3M 1D 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Week 10 Stünn',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Week 6 Dag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Week 6 Dag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Week and 6 Dag',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Week 1 Stünn',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in een Stünn',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Dag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1D 3St',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NdsNlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NdsNlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nds_NL'; // Low German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sinnowend at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sinndag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mondag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Meddwäakj at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Donnadag at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friedag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Meddwäakj at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Donnadag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friedag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sinnowend at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sinndag at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mondag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sinndag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sinnowend at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friedag at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Donnadag at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Meddwäakj at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friedag at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NdsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NdsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nds'; // Low German\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sünnavend at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sünndag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maandag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Middeweek at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Dunnersdag at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Middeweek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dunnersdag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sünnavend at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sünndag at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dingsdag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Maandag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sünndag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sünnavend at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Dunnersdag at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Middeweek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Freedag at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'vör 1 Sekunn',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'vör 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'vör 2 Sekunn',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'vör 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'vör 1 Minuut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'vör 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'vör 2 Minuut',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'vör 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'vör 1 Stünn',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'vör 1St',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'vör 2 Stünn',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'vör 2St',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'vör 1 Dag',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'vör 1D',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'vör 2 Dag',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'vör 2D',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vör 1 Week',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vör 1W',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vör 2 Week',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vör 2W',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'vör 1 Maand',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'vör 1M',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'vör 2 Maand',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'vör 2M',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'vör 1 Johr',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'vör 1J',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'vör 2 Johr',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'vör 2J',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'in 1 Sekunn',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'in 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekunn later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekunn vörher',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s vörher',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekunn',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekunn',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'in 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Minuut 1 Sekunn',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2J 3M 1D 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'in 3 Johr',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'vör 5M',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'vör 2J 3M 1D 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Week 10 Stünn',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Week 6 Dag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Week 6 Dag',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'in 1 Week and 6 Dag',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Week 1 Stünn',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'in een Stünn',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Dag',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1D 3St',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NeInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NeInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ne_IN'; // Nepali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'भोलि 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो शनिबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो आइतबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो सोमबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो मङ्गलबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो बुधबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'आउँदो बिहिबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'आउँदो शुक्रबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो मङ्गलबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो बुधबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो बिहिबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो शुक्रबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो शनिबार, 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'गएको आइतबार, 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'हिजो 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'भोलि 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो मङ्गलबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'हिजो 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'हिजो 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको मङ्गलबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको सोमबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको आइतबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको शनिबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको शुक्रबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'गएको बिहिबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'गएको बुधबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गएको शुक्रबार, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'केही क्षण अगाडि',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकेण्ड अगाडि',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकेण्ड अगाडि',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकेण्ड अगाडि',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'एक मिनेट अगाडि',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनेट अगाडि',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनेट अगाडि',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनेट अगाडि',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'एक घण्टा अगाडि',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा अगाडि',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा अगाडि',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा अगाडि',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'एक दिन अगाडि',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन अगाडि',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन अगाडि',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन अगाडि',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 हप्ता अगाडि',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'एक महिना अगाडि',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना अगाडि',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना अगाडि',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना अगाडि',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'एक बर्ष अगाडि',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष अगाडि',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 बर्ष अगाडि',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्ष अगाडि',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'केही क्षणमा',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकेण्डमा',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'केही क्षण पछि',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकेण्ड पछि',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'केही क्षण अघि',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकेण्ड अघि',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'केही क्षण',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकेण्ड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकेण्ड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकेण्ड',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकेण्डमा',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'एक मिनेट केही क्षण',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 महिना 1 दिन 1 सेकेण्ड',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 बर्षमा',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना अगाडि',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 महिना 1 दिन 1 सेकेण्ड अगाडि',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 हप्ता र 6 दिनमा',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 हप्ता एक घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'एक घण्टामा',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NeNpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NeNpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ne_NP'; // Nepali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'भोलि रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो शनिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो आइतबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो सोमबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो बुधबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'आउँदो बिहिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'आउँदो शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो बुधबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो बिहिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो शनिबार, रातिको 12:00 बजे',\n        // Carbon::now()->subDays(2)->calendar()\n        'गएको आइतबार, रातिको 8:49 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'हिजो रातिको 10:00 बजे',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज बिहानको 10:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज रातिको 2:00 बजे',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'भोलि रातिको 1:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'हिजो रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'हिजो रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको सोमबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको आइतबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको शनिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'गएको बिहिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'गएको बुधबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गएको शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 राति CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 राति, 12:00 राति',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 राति, 1:30 राति',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 राति, 2:00 राति',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 बिहान, 6:00 बिहान',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 बिहान, 10:00 बिहान',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 दिउँसो, 12:00 दिउँसो',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 साँझ, 5:00 साँझ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 राति, 9:30 राति',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 राति, 11:00 राति',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'केही क्षण अगाडि',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकेण्ड अगाडि',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकेण्ड अगाडि',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकेण्ड अगाडि',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'एक मिनेट अगाडि',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनेट अगाडि',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनेट अगाडि',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनेट अगाडि',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'एक घण्टा अगाडि',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा अगाडि',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा अगाडि',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा अगाडि',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'एक दिन अगाडि',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन अगाडि',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन अगाडि',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन अगाडि',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 हप्ता अगाडि',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'एक महिना अगाडि',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना अगाडि',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना अगाडि',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना अगाडि',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'एक बर्ष अगाडि',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष अगाडि',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 बर्ष अगाडि',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्ष अगाडि',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'केही क्षणमा',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकेण्डमा',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'केही क्षण पछि',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकेण्ड पछि',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'केही क्षण अघि',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकेण्ड अघि',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'केही क्षण',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकेण्ड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकेण्ड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकेण्ड',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकेण्डमा',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'एक मिनेट केही क्षण',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 महिना 1 दिन 1 सेकेण्ड',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 बर्षमा',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना अगाडि',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 महिना 1 दिन 1 सेकेण्ड अगाडि',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 हप्ता र 6 दिनमा',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 हप्ता एक घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'एक घण्टामा',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ne'; // Nepali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'भोलि रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो शनिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो आइतबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो सोमबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आउँदो बुधबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'आउँदो बिहिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'आउँदो शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो बुधबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो बिहिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो शनिबार, रातिको 12:00 बजे',\n        // Carbon::now()->subDays(2)->calendar()\n        'गएको आइतबार, रातिको 8:49 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'हिजो रातिको 10:00 बजे',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'आज बिहानको 10:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आज रातिको 2:00 बजे',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'भोलि रातिको 1:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'आउँदो मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'हिजो रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'हिजो रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको मङ्गलबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको सोमबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको आइतबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको शनिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'गएको शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'गएको बिहिबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'गएको बुधबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'गएको शुक्रबार, रातिको 12:00 बजे',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 राति CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 राति, 12:00 राति',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 राति, 1:30 राति',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 राति, 2:00 राति',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 बिहान, 6:00 बिहान',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 बिहान, 10:00 बिहान',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 दिउँसो, 12:00 दिउँसो',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 साँझ, 5:00 साँझ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 राति, 9:30 राति',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 राति, 11:00 राति',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'केही क्षण अगाडि',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 सेकेण्ड अगाडि',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 सेकेण्ड अगाडि',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 सेकेण्ड अगाडि',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'एक मिनेट अगाडि',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 मिनेट अगाडि',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 मिनेट अगाडि',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 मिनेट अगाडि',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'एक घण्टा अगाडि',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा अगाडि',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा अगाडि',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा अगाडि',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'एक दिन अगाडि',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन अगाडि',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन अगाडि',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन अगाडि',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 हप्ता अगाडि',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 हप्ता अगाडि',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'एक महिना अगाडि',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 महिना अगाडि',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 महिना अगाडि',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 महिना अगाडि',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'एक बर्ष अगाडि',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष अगाडि',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 बर्ष अगाडि',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्ष अगाडि',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'केही क्षणमा',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 सेकेण्डमा',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'केही क्षण पछि',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 सेकेण्ड पछि',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'केही क्षण अघि',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 सेकेण्ड अघि',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'केही क्षण',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 सेकेण्ड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 सेकेण्ड',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 सेकेण्ड',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 सेकेण्डमा',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'एक मिनेट केही क्षण',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 महिना 1 दिन 1 सेकेण्ड',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 बर्षमा',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 महिना अगाडि',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 महिना 1 दिन 1 सेकेण्ड अगाडि',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 हप्ता 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 हप्ता र 6 दिनमा',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 हप्ता एक घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'एक घण्टामा',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NhnMxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NhnMxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nhn_MX'; // Central Nahuatl\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'chicuaceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'teoilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'yeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'nahuilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'yeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'nahuilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'chicuaceilhuitl at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last teoilhuitl at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last teoilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last chicuaceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last nahuilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last yeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ome ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ome ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ome ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ome ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 toltecayotl ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 toltecayotl ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 toltecayotl ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 toltecayotl ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 tonatih ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 tonatih ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 tonatih ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 tonatih ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tonalli ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tonalli ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tonalli ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tonalli ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 metztli ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 metztli ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 metztli ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 metztli ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 xihuitl ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 xihuitl ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 xihuitl ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 xihuitl ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ome from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ome from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ome after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ome after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ome before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ome before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ome',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ome',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ome',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ome',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ome from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 toltecayotl 1 ome',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 xihuitl 3 metztli 1 tonatih 1 ome',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 xihuitl from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 metztli ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 xihuitl 3 metztli 1 tonatih 1 ome ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tonalli 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tonalli 6 tonatih',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tonalli 6 tonatih',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tonalli and 6 tonatih from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tonalli 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 tonatih',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 tonatih 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NhnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NhnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nhn'; // Central Nahuatl\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'chicuaceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'teoilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'yeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'nahuilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'yeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'nahuilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'chicuaceilhuitl at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last teoilhuitl at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last omeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last teoilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last chicuaceilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last nahuilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last yeilhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last macuililhuitl at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ome ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ome ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ome ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ome ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 toltecayotl ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 toltecayotl ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 toltecayotl ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 toltecayotl ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 tonatih ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 tonatih ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 tonatih ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 tonatih ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tonalli ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tonalli ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tonalli ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tonalli ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 metztli ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 metztli ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 metztli ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 metztli ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 xihuitl ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 xihuitl ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 xihuitl ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 xihuitl ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ome from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ome from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ome after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ome after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ome before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ome before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ome',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ome',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ome',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ome',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ome from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 toltecayotl 1 ome',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 xihuitl 3 metztli 1 tonatih 1 ome',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 xihuitl from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 metztli ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 xihuitl 3 metztli 1 tonatih 1 ome ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tonalli 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tonalli 6 tonatih',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tonalli 6 tonatih',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tonalli and 6 tonatih from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tonalli 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 tonatih',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 tonatih 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NiuNuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NiuNuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'niu_NU'; // Niuean\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Faiumu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Tapu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Gofua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Lotu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aho Tuloto at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Lotu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Tuloto at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Faiumu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Aho Tapu at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Gofua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Tapu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Faiumu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aho Tuloto at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Aho Lotu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekone ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekone ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekone ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekone ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 e tulā ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 e tulā ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 e tulā ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 e tulā ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 aho ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 aho ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 aho ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 aho ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 faahi tapu ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 faahi tapu ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 faahi tapu ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 faahi tapu ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tau ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tau ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tau ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tau ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekone from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekone from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekone after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekone after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekone before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekone before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekone',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekone',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekone',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekone',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekone from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuti 1 sekone',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tau 3 mahina 1 aho 1 sekone',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tau from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tau 3 mahina 1 aho 1 sekone ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 faahi tapu 10 e tulā',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 faahi tapu 6 aho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 faahi tapu 6 aho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 faahi tapu and 6 aho from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 faahi tapu 1 e tulā',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 e tulā from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 aho',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 aho 3 e tulā',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NiuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NiuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'niu'; // Niuean\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Faiumu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Tapu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Gofua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aho Lotu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aho Tuloto at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Lotu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Tuloto at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Faiumu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Aho Tapu at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Ua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Gofua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Tapu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Faiumu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aho Tuloto at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Aho Lotu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Aho Falaile at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekone ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekone ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekone ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekone ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 e tulā ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 e tulā ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 e tulā ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 e tulā ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 aho ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 aho ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 aho ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 aho ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 faahi tapu ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 faahi tapu ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 faahi tapu ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 faahi tapu ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tau ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tau ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tau ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tau ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekone from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekone from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekone after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekone after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekone before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekone before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekone',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekone',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekone',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekone',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekone from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuti 1 sekone',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tau 3 mahina 1 aho 1 sekone',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tau from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tau 3 mahina 1 aho 1 sekone ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 faahi tapu 10 e tulā',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 faahi tapu 6 aho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 faahi tapu 6 aho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 faahi tapu and 6 aho from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 faahi tapu 1 e tulā',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 e tulā from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 aho',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 aho 3 e tulā',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlAwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlAwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_AW'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlBeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlBeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_BE'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlBqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlBqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_BQ'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlCwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlCwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_CW'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlNlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlNlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_NL'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlSrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlSrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_SR'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlSxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlSxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl_SX'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriod;\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nl'; // Dutch\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'morgen om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'donderdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vrijdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'zaterdag om 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'afgelopen zondag om 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'vandaag om 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vandaag om 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'morgen om 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dinsdag om 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gisteren om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen dinsdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen maandag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zondag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen zaterdag om 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'afgelopen donderdag om 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'afgelopen woensdag om 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'afgelopen vrijdag om 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1ste 1ste 1ste 1ste 1ste',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2de 1ste',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3de 1ste',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4de 1ste',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5de 1ste',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6de 1ste',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7de 1ste',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11de 2de',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40ste',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41ste',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100ste',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 \\'s ochtends CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s ochtends, 12:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 \\'s ochtends, 1:30 \\'s ochtends',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 \\'s ochtends, 2:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 \\'s ochtends, 6:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 \\'s ochtends, 10:00 \\'s ochtends',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 \\'s middags, 12:00 \\'s middags',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 \\'s middags, 5:00 \\'s middags',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 \\'s middags, 9:30 \\'s middags',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 \\'s middags, 11:00 \\'s middags',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0de',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 seconde geleden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconden geleden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuut geleden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1min geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuten geleden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2min geleden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uur geleden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1u geleden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uur geleden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2u geleden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag geleden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d geleden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dagen geleden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week geleden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weken geleden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 maand geleden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mnd geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 maanden geleden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mnd geleden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jaar geleden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1j geleden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jaar geleden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2j geleden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'over 1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'over 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 seconde later',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s later',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 seconde eerder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s eerder',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 seconde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconden',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'over 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuut 1 seconde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2j 3mnd 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'over 3 jaar',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mnd geleden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2j 3mnd 1d 1s geleden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 uur',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 dagen',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'over 1 week en 6 dagen',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weken 1 uur',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'over een uur',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagen',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3u',\n    ];\n\n    public function testPeriod()\n    {\n        $this->assertSame('4 keer elke week van 2012-07-01 12:00:00', (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P7D')));\n        $this->assertSame('4 keer elk jaar van 2012-07-01 12:00:00', (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P1Y')));\n        $this->assertSame('4 keer elke 2 jaar van 2012-07-01 12:00:00', (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P2Y')));\n        $this->assertSame('4 keer elk jaar en 6 maanden van 2012-07-01 12:00:00', (string) (CarbonPeriod::create('R4/2012-07-01T12:00:00/P1Y6M')));\n        $this->assertSame('Elke dag en 5 uur van 2015-09-30 12:50:00 tot 2015-10-03 19:00:00', (string) (CarbonPeriod::create(\n            Carbon::parse('2015-09-30 12:50'),\n            CarbonInterval::day()->hours(5),\n            Carbon::parse('2015-10-03 19:00'),\n        )));\n        $this->assertSame('Elk uur en 30 minuten van 2015-09-30 12:50:00 tot 2015-10-03 19:00:00', (string) (CarbonPeriod::create(\n            Carbon::parse('2015-09-30 12:50'),\n            CarbonInterval::hour()->minutes(30),\n            Carbon::parse('2015-10-03 19:00'),\n        )));\n        $this->assertSame('Elke 4 uur en 30 minuten van 2015-09-30 12:50:00 tot 2015-10-03 19:00:00', (string) (CarbonPeriod::create(\n            Carbon::parse('2015-09-30 12:50'),\n            CarbonInterval::hours(4)->minutes(30),\n            Carbon::parse('2015-10-03 19:00'),\n        )));\n    }\n}\n"
  },
  {
    "path": "tests/Localization/NmgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NmgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nmg'; // Kwasio\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sásadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mɔ́ndɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndɔ mafú mába at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndɔ mafú málal at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sɔ́ndɔ mafú mána at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'mabágá má sukul at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ mafú mába at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ mafú málal at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ mafú mána at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mabágá má sukul at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sásadi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sɔ́ndɔ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sɔ́ndɔ mafú mába at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sɔ́ndɔ mafú mába at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mɔ́ndɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sɔ́ndɔ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sásadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mabágá má sukul at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sɔ́ndɔ mafú mána at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last sɔ́ndɔ mafú málal at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last mabágá má sukul at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 maná CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 maná, 12:00 maná',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 maná, 1:30 maná',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 maná, 2:00 maná',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 maná, 6:00 maná',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 maná, 10:00 maná',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kugú, 12:00 kugú',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kugú, 5:00 kugú',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kugú, 9:30 kugú',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kugú, 11:00 kugú',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NnNoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NnNoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nn_NO'; // NorwegianNynorsk\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'I morgon klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'laurdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'sundag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'måndag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'onsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'torsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'onsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'torsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'laurdag klokka 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Føregåande sundag klokka 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'I går klokka 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'I dag klokka 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'I dag klokka 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'I morgon klokka 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'I går klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'I går klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Føregåande tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Føregåande måndag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Føregåande sundag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Føregåande laurdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Føregåande fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Føregåande torsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Føregåande onsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Føregåande fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 f.m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 f.m., 12:00 f.m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 f.m., 1:30 f.m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 f.m., 2:00 f.m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 f.m., 6:00 f.m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 f.m., 10:00 f.m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 e.m., 12:00 e.m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 e.m., 5:00 e.m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 e.m., 9:30 e.m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 e.m., 11:00 e.m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 sekund sidan',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s sidan',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 sekund sidan',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s sidan',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minutt sidan',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m sidan',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutt sidan',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m sidan',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 time sidan',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1t sidan',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 timar sidan',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2t sidan',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 dag sidan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d sidan',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 dagar sidan',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d sidan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 veke sidan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1v sidan',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 veker sidan',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2v sidan',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 månad sidan',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 md sidan',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 månader sidan',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 md sidan',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 år sidan',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 år sidan',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 år sidan',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 år sidan',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'om 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'om 1s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekund etter',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s etter',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund før',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s før',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekund',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'om 1s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minutt 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 år 3 md 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'om 3 år',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 md sidan',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 år 3 md 1d 1s sidan',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 veke 10 timar',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 veke 6 dagar',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 veke 6 dagar',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'om 1 veke og 6 dagar',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 veker 1 time',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'om ein time',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dagar',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nn'; // NorwegianNynorsk\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'I morgon klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'laurdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'sundag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'måndag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'onsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'torsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'onsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'torsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'laurdag klokka 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Føregåande sundag klokka 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'I går klokka 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'I dag klokka 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'I dag klokka 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'I morgon klokka 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'I går klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'I går klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Føregåande tysdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Føregåande måndag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Føregåande sundag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Føregåande laurdag klokka 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Føregåande fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Føregåande torsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Føregåande onsdag klokka 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Føregåande fredag klokka 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 f.m. CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 f.m., 12:00 f.m.',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 f.m., 1:30 f.m.',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 f.m., 2:00 f.m.',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 f.m., 6:00 f.m.',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 f.m., 10:00 f.m.',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 e.m., 12:00 e.m.',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 e.m., 5:00 e.m.',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 e.m., 9:30 e.m.',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 e.m., 11:00 e.m.',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 sekund sidan',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s sidan',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 sekund sidan',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s sidan',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minutt sidan',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m sidan',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutt sidan',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m sidan',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 time sidan',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1t sidan',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 timar sidan',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2t sidan',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 dag sidan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d sidan',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 dagar sidan',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d sidan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 veke sidan',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1v sidan',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 veker sidan',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2v sidan',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 månad sidan',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 md sidan',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 månader sidan',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 md sidan',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 år sidan',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 år sidan',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 år sidan',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 år sidan',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'om 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'om 1s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekund etter',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s etter',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund før',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s før',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekund',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'om 1s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minutt 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 år 3 md 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'om 3 år',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 md sidan',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 år 3 md 1d 1s sidan',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 veke 10 timar',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 veke 6 dagar',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 veke 6 dagar',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'om 1 veke og 6 dagar',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 veker 1 time',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'om ein time',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dagar',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NnhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NnhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nnh'; // Ngiemboon\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Saturday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Sunday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Monday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Tuesday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Wednesday at 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Thursday at 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Friday at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Tuesday at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Wednesday at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Thursday at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Friday at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Saturday at 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Sunday at 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Tuesday at 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Tuesday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Monday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Sunday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Saturday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Friday at 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Thursday at 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Wednesday at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Friday at 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 1st',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7th 1st',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 mbaʼámbaʼ CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 mbaʼámbaʼ, 12:00 mbaʼámbaʼ',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 mbaʼámbaʼ, 1:30 mbaʼámbaʼ',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 mbaʼámbaʼ, 2:00 mbaʼámbaʼ',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 mbaʼámbaʼ, 6:00 mbaʼámbaʼ',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 mbaʼámbaʼ, 10:00 mbaʼámbaʼ',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ncwònzém, 12:00 ncwònzém',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ncwònzém, 5:00 ncwònzém',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ncwònzém, 9:30 ncwònzém',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ncwònzém, 11:00 ncwònzém',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'no'; // Norwegian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i morgen kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på søndag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på mandag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på onsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på torsdag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på fredag kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på lørdag kl. 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'i søndags kl. 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'i dag kl. 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i dag kl. 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'i morgen kl. 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'på tirsdag kl. 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i går kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i tirsdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i mandags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i søndags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i lørdags kl. 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'i torsdags kl. 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'i onsdags kl. 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'i fredags kl. 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekund siden',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sek siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekunder siden',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sek siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutt siden',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutter siden',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min siden',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 time siden',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 t siden',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 timer siden',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 t siden',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dag siden',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. siden',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dager siden',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 uke siden',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 u. siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 uker siden',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 u. siden',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 måned siden',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 md. siden',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 måneder siden',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 md. siden',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 år siden',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 år siden',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 år siden',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 sek',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund etter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sek etter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund før',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sek før',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sek',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sek',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 sek',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutt 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 md. 1 d. 1 sek',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 md. siden',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 år 3 md. 1 d. 1 sek siden',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 uke 10 timer',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 uke 6 dager',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 uke og 6 dager',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 uker 1 time',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en time',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dager',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 t',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nr'; // SouthNdebele\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'umGqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'uLesine at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLesine at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'umGqibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last uSonto at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last umGqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last uLesine at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last lesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NrZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NrZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nr_ZA'; // SouthNdebele\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'umGqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'uLesine at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLesine at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'umGqibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last uSonto at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uLesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last umGqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last uLesine at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last lesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ngoLesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NsoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NsoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nso'; // Northern Sotho\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mokibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'LaMorena at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mošupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mokibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last LaMorena at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mošupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last LaMorena at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mokibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Labone at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 motsotswana ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 motsotswana ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 motsotswana ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 motsotswana ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Motsotso ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Motsotso ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Motsotso ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Motsotso ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 Iri ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 Iri ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 Iri ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 Iri ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 Letšatši ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 Letšatši ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 Letšatši ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 Letšatši ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Beke ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Beke ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Beke ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Beke ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Kgwedi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Kgwedi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ngwaga ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ngwaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ngwaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ngwaga ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 motsotswana from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 motsotswana from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 motsotswana after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 motsotswana after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 motsotswana before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 motsotswana before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 motsotswana',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 motsotswana',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 motsotswana',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 motsotswana',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 motsotswana from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Motsotso 1 motsotswana',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ngwaga 3 Kgwedi 1 Letšatši 1 motsotswana',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ngwaga from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Kgwedi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ngwaga 3 Kgwedi 1 Letšatši 1 motsotswana ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Beke 10 Iri',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Beke 6 Letšatši',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Beke 6 Letšatši',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Beke and 6 Letšatši from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Beke 1 Iri',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 Iri from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Letšatši',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Letšatši 3 Iri',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NsoZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NsoZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nso_ZA'; // Northern Sotho\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mokibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'LaMorena at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mošupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mokibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last LaMorena at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mošupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last LaMorena at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mokibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Labone at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 motsotswana ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 motsotswana ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 motsotswana ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 motsotswana ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 Motsotso ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 Motsotso ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 Motsotso ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 Motsotso ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 Iri ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 Iri ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 Iri ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 Iri ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 Letšatši ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 Letšatši ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 Letšatši ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 Letšatši ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Beke ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Beke ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Beke ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Beke ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Kgwedi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Kgwedi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ngwaga ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ngwaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ngwaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ngwaga ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 motsotswana from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 motsotswana from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 motsotswana after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 motsotswana after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 motsotswana before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 motsotswana before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 motsotswana',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 motsotswana',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 motsotswana',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 motsotswana',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 motsotswana from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 Motsotso 1 motsotswana',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ngwaga 3 Kgwedi 1 Letšatši 1 motsotswana',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ngwaga from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Kgwedi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ngwaga 3 Kgwedi 1 Letšatši 1 motsotswana ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Beke 10 Iri',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Beke 6 Letšatši',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Beke 6 Letšatši',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Beke and 6 Letšatši from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Beke 1 Iri',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 Iri from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 Letšatši',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 Letšatši 3 Iri',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NusTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NusTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nus'; // Nuer\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bäkɛl lätni at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Cäŋ kuɔth at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jiec la̱t at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Rɛw lätni at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Diɔ̱k lätni at 12:00 rw',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ŋuaan lätni at 12:00 rw',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Dhieec lätni at 12:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rɛw lätni at 12:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Diɔ̱k lätni at 12:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ŋuaan lätni at 12:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Dhieec lätni at 12:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bäkɛl lätni at 12:00 rw',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Cäŋ kuɔth at 8:49 tŋ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 tŋ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 rw',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Rɛw lätni at 12:00 rw',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Rɛw lätni at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jiec la̱t at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Cäŋ kuɔth at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bäkɛl lätni at 12:00 rw',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dhieec lätni at 12:00 rw',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Ŋuaan lätni at 12:00 rw',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Diɔ̱k lätni at 12:00 rw',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Dhieec lätni at 12:00 rw',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 rw CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 RW, 12:00 rw',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 RW, 1:30 rw',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 RW, 2:00 rw',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 RW, 6:00 rw',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 RW, 10:00 rw',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 TŊ, 12:00 tŋ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 TŊ, 5:00 tŋ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 TŊ, 9:30 tŋ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 TŊ, 11:00 tŋ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 pay ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 pay ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 pay ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 pay ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jiök ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 jiök ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jiök ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 jiök ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 jiök 3 pay 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jiök from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 pay ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 jiök 3 pay 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/NynTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass NynTest extends LocalizationTestCase\n{\n    public const LOCALE = 'nyn'; // Nyankole\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwamukaaga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sande at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwokubanza at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Orwakashatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Orwakana at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Orwakataano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakashatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakana at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakataano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwamukaaga at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sande at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwakabiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwokubanza at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sande at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwamukaaga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Orwakataano at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Orwakana at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Orwakashatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Orwakataano at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OcFrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OcFrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'oc_FR'; // Occitan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Deman a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dissabte a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimenge a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'diluns a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimars a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimècres a 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'dijòus a 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'divendres a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dimars a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dimècres a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dijòus a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'divendres a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dissabte a 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimenge passat a 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ièr a 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Uèi a 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Uèi a 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Deman a 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dimars a 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ièr a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ièr a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimars passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'diluns passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimenge passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dissabte passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'divendres passat a 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'dijòus passat a 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'dimècres passat a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'divendres passat a 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1èr 1èr 1èr 1èra 1èra',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1èra',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3en 1èra',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4en 1èra',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5en 1èra',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6en 1èra',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7en 1èra',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11en 2nda',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40en',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41en',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100en',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0en',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'fa 1 segonda',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'fa 1 segonda',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'fa 2 segondas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'fa 2 segondas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'fa 1 minuta',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'fa 1 minuta',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'fa 2 minutas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'fa 2 minutas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'fa 1 ora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'fa 1 ora',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'fa 2 oras',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'fa 2 oras',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'fa 1 jorn',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'fa 1 jorn',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'fa 2 jorns',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'fa 2 jorns',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'fa 1 setmana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'fa 1 setmana',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'fa 2 setmanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'fa 2 setmanas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'fa 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'fa 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'fa 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'fa 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'fa 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'fa 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'fa 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'fa 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'd\\'aquí 1 segonda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'd\\'aquí 1 segonda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segonda aprèp',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segonda aprèp',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segonda abans',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segonda abans',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segonda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segonda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segondas',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segondas',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'd\\'aquí 1 segonda',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 segonda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 meses 1 jorn 1 segonda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'd\\'aquí 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'fa 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'fa 2 ans 3 meses 1 jorn 1 segonda',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 setmana 10 oras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setmana 6 jorns',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setmana 6 jorns',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'd\\'aquí 1 setmana e 6 jorns',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 setmanas 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'd\\'aquí una ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jorns',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 jorn 3 oras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'oc'; // Occitan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Deman a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dissabte a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimenge a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'diluns a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimars a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimècres a 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'dijòus a 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'divendres a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dimars a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dimècres a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dijòus a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'divendres a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dissabte a 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'dimenge passat a 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ièr a 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Uèi a 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Uèi a 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Deman a 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'dimars a 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ièr a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ièr a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimars passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'diluns passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimenge passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dissabte passat a 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'divendres passat a 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'dijòus passat a 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'dimècres passat a 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'divendres passat a 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1èr 1èr 1èr 1èra 1èra',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1èra',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3en 1èra',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4en 1èra',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5en 1èra',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6en 1èra',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7en 1èra',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11en 2nda',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40en',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41en',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100en',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0en',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'fa 1 segonda',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'fa 1 segonda',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'fa 2 segondas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'fa 2 segondas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'fa 1 minuta',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'fa 1 minuta',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'fa 2 minutas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'fa 2 minutas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'fa 1 ora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'fa 1 ora',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'fa 2 oras',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'fa 2 oras',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'fa 1 jorn',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'fa 1 jorn',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'fa 2 jorns',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'fa 2 jorns',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'fa 1 setmana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'fa 1 setmana',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'fa 2 setmanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'fa 2 setmanas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'fa 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'fa 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'fa 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'fa 2 meses',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'fa 1 an',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'fa 1 an',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'fa 2 ans',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'fa 2 ans',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'd\\'aquí 1 segonda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'd\\'aquí 1 segonda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segonda aprèp',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 segonda aprèp',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segonda abans',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 segonda abans',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segonda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 segonda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segondas',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 segondas',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'd\\'aquí 1 segonda',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 segonda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ans 3 meses 1 jorn 1 segonda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'd\\'aquí 3 ans',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'fa 5 meses',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'fa 2 ans 3 meses 1 jorn 1 segonda',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 setmana 10 oras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setmana 6 jorns',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 setmana 6 jorns',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'd\\'aquí 1 setmana e 6 jorns',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 setmanas 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'd\\'aquí una ora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jorns',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 jorn 3 oras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OmEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OmEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'om_ET'; // Oromo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sanbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dilbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wiixata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Roobii at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jimaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Roobii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jimaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sanbata at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Dilbata at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Qibxata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wiixata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dilbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sanbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jimaata at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Roobii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jimaata at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 wd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 WD, 12:00 wd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 WD, 1:30 wd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 WD, 2:00 wd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 WD, 6:00 wd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 WD, 10:00 wd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 WB, 12:00 wb',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 WB, 5:00 wb',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 WB, 9:30 wb',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 WB, 11:00 wb',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sekoondii 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sekoondii 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sekoondii 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sekoondii 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'daqiiqaa 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'daqiiqaa 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'daqiiqaa 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'daqiiqaa 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saʼaatii 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saʼaatii 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saʼaatii 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saʼaatii 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'guyyaa 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'guyyaa 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'guyyaa 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'guyyaa 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'torban 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'torban 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'torban 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'torban 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ji’a 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ji’a 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ji’a 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ji’a 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'wggoota 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'wggoota 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'wggoota 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'wggoota 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekoondii 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sekoondii 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekoondii 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sekoondii 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekoondii 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sekoondii 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekoondii 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sekoondii 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekoondii 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sekoondii 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sekoondii 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'daqiiqaa 1 sekoondii 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'wggoota 2 ji’a 3 guyyaa 1 sekoondii 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'wggoota 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ji’a 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'wggoota 2 ji’a 3 guyyaa 1 sekoondii 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'torban 1 saʼaatii 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'torban 1 guyyaa 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'torban 1 guyyaa 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'torban 1 and guyyaa 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'torban 2 saʼaatii 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saʼaatii 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'guyyaa 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'guyyaa 1 saʼaatii 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OmKeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OmKeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'om_KE'; // Oromo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sanbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dilbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wiixata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Roobii at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jimaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Roobii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jimaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sanbata at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Dilbata at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Qibxata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wiixata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dilbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sanbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jimaata at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Roobii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jimaata at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 wd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 WD, 12:00 wd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 WD, 1:30 wd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 WD, 2:00 wd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 WD, 6:00 wd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 WD, 10:00 wd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 WB, 12:00 wb',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 WB, 5:00 wb',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 WB, 9:30 wb',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 WB, 11:00 wb',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sekoondii 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sekoondii 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sekoondii 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sekoondii 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'daqiiqaa 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'daqiiqaa 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'daqiiqaa 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'daqiiqaa 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saʼaatii 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saʼaatii 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saʼaatii 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saʼaatii 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'guyyaa 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'guyyaa 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'guyyaa 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'guyyaa 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'torban 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'torban 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'torban 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'torban 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ji’a 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ji’a 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ji’a 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ji’a 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'wggoota 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'wggoota 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'wggoota 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'wggoota 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekoondii 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sekoondii 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekoondii 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sekoondii 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekoondii 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sekoondii 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekoondii 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sekoondii 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekoondii 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sekoondii 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sekoondii 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'daqiiqaa 1 sekoondii 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'wggoota 2 ji’a 3 guyyaa 1 sekoondii 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'wggoota 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ji’a 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'wggoota 2 ji’a 3 guyyaa 1 sekoondii 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'torban 1 saʼaatii 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'torban 1 guyyaa 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'torban 1 guyyaa 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'torban 1 and guyyaa 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'torban 2 saʼaatii 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saʼaatii 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'guyyaa 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'guyyaa 1 saʼaatii 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'om'; // Oromo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sanbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dilbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wiixata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Roobii at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kamiisa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Jimaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Roobii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kamiisa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jimaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sanbata at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Dilbata at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qibxata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Qibxata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Wiixata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dilbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sanbata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jimaata at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kamiisa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Roobii at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Jimaata at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 wd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 WD, 12:00 wd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 WD, 1:30 wd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 WD, 2:00 wd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 WD, 6:00 wd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 WD, 10:00 wd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 WB, 12:00 wb',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 WB, 5:00 wb',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 WB, 9:30 wb',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 WB, 11:00 wb',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sekoondii 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sekoondii 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sekoondii 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sekoondii 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'daqiiqaa 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'daqiiqaa 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'daqiiqaa 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'daqiiqaa 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saʼaatii 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saʼaatii 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saʼaatii 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saʼaatii 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'guyyaa 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'guyyaa 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'guyyaa 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'guyyaa 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'torban 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'torban 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'torban 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'torban 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ji’a 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ji’a 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ji’a 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ji’a 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'wggoota 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'wggoota 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'wggoota 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'wggoota 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekoondii 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sekoondii 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekoondii 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sekoondii 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekoondii 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sekoondii 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekoondii 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sekoondii 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekoondii 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sekoondii 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sekoondii 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'daqiiqaa 1 sekoondii 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'wggoota 2 ji’a 3 guyyaa 1 sekoondii 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'wggoota 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ji’a 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'wggoota 2 ji’a 3 guyyaa 1 sekoondii 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'torban 1 saʼaatii 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'torban 1 guyyaa 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'torban 1 guyyaa 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'torban 1 and guyyaa 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'torban 2 saʼaatii 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saʼaatii 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'guyyaa 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'guyyaa 1 saʼaatii 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OrInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OrInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'or_IN'; // Oriya\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'Tomorrow at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'ଶନିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'ରବିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'ସୋମବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ବୁଧବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ଗୁରୁବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ବୁଧବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ଗୁରୁବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'ଶନିବାର at ୧୨:୦ AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'Last ରବିବାର at ୮:୪୯ PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'Yesterday at ୧୦:୦ PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'Today at ୧୦:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'Today at ୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'Tomorrow at ୧:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Yesterday at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Yesterday at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'Last ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'Last ସୋମବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'Last ରବିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'Last ଶନିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'Last ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'Last ଗୁରୁବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'Last ବୁଧବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'Last ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 ସେକଣ୍ଢ ପୂର୍ବେ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 ସେ. ପୂର୍ବେ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 ସେକଣ୍ଢ ପୂର୍ବେ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 ସେ. ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 ମିନଟ ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 ମି. ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 ମିନଟ ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 ମି. ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ଘଣ୍ତ ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ଘ. ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ଘଣ୍ତ ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ଘ. ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 ସପ୍ତାହ ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 ସପ୍ତା. ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 ସପ୍ତାହ ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 ସପ୍ତା. ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ମାସ ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 ମା. ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ମାସ ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 ମା. ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 ବର୍ଷ ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 ବ. ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 ବର୍ଷ ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 ବ. ପୂର୍ବେ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 ସେକଣ୍ଢରେ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 ସେ.ରେ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 ସେକଣ୍ଢ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 ସେ.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 ସେକଣ୍ଢ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 ସେ.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 ସେ.ରେ',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 ମିନଟ 1 ସେକଣ୍ଢ',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 ବ. 3 ମା. 1 ଦିନ 1 ସେ.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 ବର୍ଷରେ',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 ମା. ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 ବ. 3 ମା. 1 ଦିନ 1 ସେ. ପୂର୍ବେ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 ସପ୍ତାହ 10 ଘଣ୍ତ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ସପ୍ତାହ 6 ଦିନ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ସପ୍ତାହ 6 ଦିନ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 ସପ୍ତାହ 6 ଦିନରେ',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 ସପ୍ତାହ 1 ଘଣ୍ତ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        '1 ଘଣ୍ତରେ',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 ଦିନ',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 ଦିନ 3 ଘ.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'or'; // Oriya\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'Tomorrow at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'ଶନିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'ରବିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'ସୋମବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ବୁଧବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ଗୁରୁବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'ବୁଧବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'ଗୁରୁବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'ଶନିବାର at ୧୨:୦ AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'Last ରବିବାର at ୮:୪୯ PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'Yesterday at ୧୦:୦ PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'Today at ୧୦:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'Today at ୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'Tomorrow at ୧:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Yesterday at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Yesterday at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'Last ମଙ୍ଗଳବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'Last ସୋମବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'Last ରବିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'Last ଶନିବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'Last ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'Last ଗୁରୁବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'Last ବୁଧବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'Last ଶୁକ୍ରବାର at ୧୨:୦ AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 ସେକଣ୍ଢ ପୂର୍ବେ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 ସେ. ପୂର୍ବେ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 ସେକଣ୍ଢ ପୂର୍ବେ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 ସେ. ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 ମିନଟ ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 ମି. ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 ମିନଟ ପୂର୍ବେ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 ମି. ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ଘଣ୍ତ ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ଘ. ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ଘଣ୍ତ ପୂର୍ବେ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ଘ. ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 ଦିନ ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 ସପ୍ତାହ ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 ସପ୍ତା. ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 ସପ୍ତାହ ପୂର୍ବେ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 ସପ୍ତା. ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ମାସ ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 ମା. ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ମାସ ପୂର୍ବେ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 ମା. ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 ବର୍ଷ ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 ବ. ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 ବର୍ଷ ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 ବ. ପୂର୍ବେ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 ସେକଣ୍ଢରେ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1 ସେ.ରେ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 ସେକଣ୍ଢ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 ସେ.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 ସେକଣ୍ଢ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 ସେ.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1 ସେ.ରେ',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 ମିନଟ 1 ସେକଣ୍ଢ',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 ବ. 3 ମା. 1 ଦିନ 1 ସେ.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 ବର୍ଷରେ',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 ମା. ପୂର୍ବେ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 ବ. 3 ମା. 1 ଦିନ 1 ସେ. ପୂର୍ବେ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 ସପ୍ତାହ 10 ଘଣ୍ତ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ସପ୍ତାହ 6 ଦିନ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 ସପ୍ତାହ 6 ଦିନ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 ସପ୍ତାହ 6 ଦିନରେ',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 ସପ୍ତାହ 1 ଘଣ୍ତ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        '1 ଘଣ୍ତରେ',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 ଦିନ',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 ଦିନ 3 ଘ.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OsRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OsRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'os_RU'; // Ossetian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сабат at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Хуыцаубон at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Къуырисæр at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Æртыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Цыппæрæм at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Æртыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Цыппæрæм at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Сабат at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Хуыцаубон at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Къуырисæр at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Хуыцаубон at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Сабат at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Цыппæрæм at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Æртыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 æндæр ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 æндæр ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 æндæр ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 æндæр ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 гыццыл ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 гыццыл ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 гыццыл ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 гыццыл ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сахат ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 сахат ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сахат ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 сахат ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 бон ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 бон ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 бон ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 бон ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 къуыри ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 къуыри ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 къуыри ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 къуыри ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 мӕй ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мӕй ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 мӕй ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мӕй ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 аз ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 аз ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 аз ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 аз ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 æндæр from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 æндæр from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 æндæр after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 æндæр after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 æндæр before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 æндæр before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 æндæр',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 æндæр',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 æндæр',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 æндæр',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 æндæр from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 гыццыл 1 æндæр',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 аз 3 мӕй 1 бон 1 æндæр',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 аз from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мӕй ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 аз 3 мӕй 1 бон 1 æндæр ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 къуыри 10 сахат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 къуыри 6 бон',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 къуыри 6 бон',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 къуыри and 6 бон from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 къуыри 1 сахат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 сахат from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 бон',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 бон 3 сахат',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/OsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass OsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'os'; // Ossetian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сабат at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Хуыцаубон at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Къуырисæр at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Æртыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Цыппæрæм at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Æртыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Цыппæрæм at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Сабат at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Хуыцаубон at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Дыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Къуырисæр at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Хуыцаубон at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Сабат at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Цыппæрæм at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Æртыццæг at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Майрæмбон at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 æндæр ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 æндæр ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 æндæр ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 æндæр ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 гыццыл ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 гыццыл ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 гыццыл ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 гыццыл ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 сахат ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 сахат ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 сахат ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 сахат ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 бон ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 бон ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 бон ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 бон ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 къуыри ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 къуыри ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 къуыри ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 къуыри ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 мӕй ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мӕй ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 мӕй ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мӕй ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 аз ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 аз ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 аз ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 аз ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 æндæр from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 æндæр from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 æндæр after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 æндæр after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 æндæр before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 æндæр before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 æндæр',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 æндæр',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 æндæр',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 æндæр',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 æндæр from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 гыццыл 1 æндæр',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 аз 3 мӕй 1 бон 1 æндæр',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 аз from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мӕй ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 аз 3 мӕй 1 бон 1 æндæр ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 къуыри 10 сахат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 къуыри 6 бон',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 къуыри 6 бон',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 къуыри and 6 бон from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 къуыри 1 сахат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 сахат from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 бон',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 бон 3 сахат',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PaArabTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PaArabTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pa_Arab'; // Panjabi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'کل بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'ہفتہ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'اتوار بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'پیر بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'منگل بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'بُدھ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'جمعرات بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جمعہ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'منگل بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'بُدھ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'جمعرات بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جمعہ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'ہفتہ بوقت 12:00 صبح',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'گذشتہ اتوار بوقت 8:49 شام',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'گذشتہ روز بوقت 10:00 شام',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'آج بوقت 10:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'آج بوقت 2:00 صبح',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'کل بوقت 1:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'منگل بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'گذشتہ روز بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'گذشتہ روز بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'گذشتہ منگل بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'گذشتہ پیر بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'گذشتہ اتوار بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'گذشتہ ہفتہ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'گذشتہ جمعہ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'گذشتہ جمعرات بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'گذشتہ بُدھ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'گذشتہ جمعہ بوقت 12:00 صبح',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 صبح CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 صبح, 12:00 صبح',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 صبح, 1:30 صبح',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 صبح, 2:00 صبح',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 صبح, 6:00 صبح',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 صبح, 10:00 صبح',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 شام, 12:00 شام',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 شام, 5:00 شام',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 شام, 9:30 شام',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 شام, 11:00 شام',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 سیکنڈ قبل',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 سیکنڈ قبل',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 سیکنڈ قبل',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 سیکنڈ قبل',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 منٹ قبل',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 منٹ قبل',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 منٹ قبل',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 منٹ قبل',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 گھنٹے قبل',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 گھنٹے قبل',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 گھنٹے قبل',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 گھنٹے قبل',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 دن قبل',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 دن قبل',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 دن قبل',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 دن قبل',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 ہفتے قبل',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 ہفتے قبل',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ہفتے قبل',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ہفتے قبل',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ماہ قبل',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 ماہ قبل',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ماہ قبل',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ماہ قبل',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 سال قبل',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 سال قبل',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 سال قبل',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 سال قبل',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 سیکنڈ پہلے',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 سیکنڈ پہلے',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 سیکنڈ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 سیکنڈ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 سیکنڈ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 سیکنڈ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 منٹ 1 سیکنڈ',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 سال بعد',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ماہ قبل',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ قبل',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 ہفتے 10 گھنٹے',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ہفتے 6 دن',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ہفتے 6 دن',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 ہفتے اور 6 دن بعد',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ہفتے 1 گھنٹے',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'ایک گھنٹہ بعد',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 دن',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 دن 3 گھنٹے',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PaGuruTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PaGuruTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pa_Guru'; // Panjabi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'ਕਲ 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ਨਿੱਚਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'ਅਗਲਾ ਐਤਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'ਅਗਲਾ ਸੋਮਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'ਅਗਲਾ ਬੁੱਧਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ਅਗਲਾ ਵੀਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ੁੱਕਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'ਅਗਲਾ ਬੁੱਧਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ਅਗਲਾ ਵੀਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ੁੱਕਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ਨਿੱਚਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'ਪਿਛਲੇ ਐਤਵਾਰ, 8:49 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'ਕਲ 10:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'ਅਜ 10:00 ਦੁਪਹਿਰ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'ਅਜ 2:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'ਕਲ 1:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ਕਲ 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ਕਲ 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'ਪਿਛਲੇ ਮੰਗਲਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'ਪਿਛਲੇ ਸੋਮਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'ਪਿਛਲੇ ਐਤਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'ਪਿਛਲੇ ਸ਼ਨਿੱਚਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ਪਿਛਲੇ ਸ਼ੁੱਕਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'ਪਿਛਲੇ ਵੀਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'ਪਿਛਲੇ ਬੁੱਧਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ਪਿਛਲੇ ਸ਼ੁੱਕਰਵਾਰ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ਰਾਤ CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 ਰਾਤ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 ਰਾਤ, 1:30 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 ਰਾਤ, 2:00 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 ਸਵੇਰ, 6:00 ਸਵੇਰ',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 ਦੁਪਹਿਰ, 10:00 ਦੁਪਹਿਰ',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ਦੁਪਹਿਰ, 12:00 ਦੁਪਹਿਰ',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ਸ਼ਾਮ, 5:00 ਸ਼ਾਮ',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ਰਾਤ, 9:30 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ਰਾਤ, 11:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'ਇਕ ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'ਇਕ ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'ਇੱਕ ਘੰਟਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'ਇੱਕ ਘੰਟਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 ਘੰਟੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 ਘੰਟੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'ਇੱਕ ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'ਇੱਕ ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'ਹਫਤਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'ਹਫਤਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ਹਫ਼ਤੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ਹਫ਼ਤੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'ਇੱਕ ਮਹੀਨਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'ਇੱਕ ਮਹੀਨਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'ਇੱਕ ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'ਇੱਕ ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਬਾਅਦ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਬਾਅਦ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        'ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        'ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ਸਕਿੰਟ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 ਸਕਿੰਟ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        'ਇਕ ਮਿੰਟ ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 ਸਾਲ 3 ਮਹੀਨੇ ਇੱਕ ਦਿਨ ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 ਸਾਲ ਵਿੱਚ',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 ਸਾਲ 3 ਮਹੀਨੇ ਇੱਕ ਦਿਨ ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        'ਹਫਤਾ 10 ਘੰਟੇ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'ਹਫਤਾ 6 ਦਿਨ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'ਹਫਤਾ 6 ਦਿਨ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'ਹਫਤਾ ਅਤੇ 6 ਦਿਨ ਵਿੱਚ',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ਹਫ਼ਤੇ ਇੱਕ ਘੰਟਾ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'ਇੱਕ ਘੰਟਾ ਵਿੱਚ',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 ਦਿਨ',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        'ਇੱਕ ਦਿਨ 3 ਘੰਟੇ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PaInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PaInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pa_IN'; // Panjabi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'ਕਲ ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ਨੀਚਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'ਅਗਲਾ ਐਤਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'ਅਗਲਾ ਸੋਮਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'ਅਗਲਾ ਬੁਧਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ਅਗਲਾ ਵੀਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'ਅਗਲਾ ਬੁਧਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'ਅਗਲਾ ਵੀਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'ਅਗਲਾ ਸ਼ਨੀਚਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'ਪਿਛਲੇ ਐਤਵਾਰ, ਰਾਤ 8:49 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'ਕਲ ਰਾਤ 10:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'ਅਜ ਦੁਪਹਿਰ 10:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'ਅਜ ਰਾਤ 2:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'ਕਲ ਰਾਤ 1:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ਕਲ ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'ਕਲ ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'ਪਿਛਲੇ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'ਪਿਛਲੇ ਸੋਮਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'ਪਿਛਲੇ ਐਤਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'ਪਿਛਲੇ ਸ਼ਨੀਚਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ਪਿਛਲੇ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'ਪਿਛਲੇ ਵੀਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'ਪਿਛਲੇ ਬੁਧਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'ਪਿਛਲੇ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ਰਾਤ CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 ਰਾਤ, 12:00 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 ਰਾਤ, 1:30 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 ਰਾਤ, 2:00 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 ਸਵੇਰ, 6:00 ਸਵੇਰ',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 ਦੁਪਹਿਰ, 10:00 ਦੁਪਹਿਰ',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ਦੁਪਹਿਰ, 12:00 ਦੁਪਹਿਰ',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ਸ਼ਾਮ, 5:00 ਸ਼ਾਮ',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ਰਾਤ, 9:30 ਰਾਤ',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ਰਾਤ, 11:00 ਰਾਤ',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'ਇਕ ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'ਇਕ ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 ਮਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'ਇੱਕ ਘੰਟਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'ਇੱਕ ਘੰਟਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 ਘੰਟੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 ਘੰਟੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'ਇੱਕ ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'ਇੱਕ ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 ਦਿਨ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'ਹਫਤਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'ਹਫਤਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ਹਫ਼ਤੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ਹਫ਼ਤੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'ਇੱਕ ਮਹੀਨਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'ਇੱਕ ਮਹੀਨਾ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'ਇੱਕ ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'ਇੱਕ ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 ਸਾਲ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਬਾਅਦ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਬਾਅਦ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        'ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        'ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ਸਕਿੰਟ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 ਸਕਿੰਟ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        'ਇਕ ਮਿੰਟ ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 ਸਾਲ 3 ਮਹੀਨੇ ਇੱਕ ਦਿਨ ਕੁਝ ਸਕਿੰਟ',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 ਸਾਲ ਵਿੱਚ',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 ਸਾਲ 3 ਮਹੀਨੇ ਇੱਕ ਦਿਨ ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        'ਹਫਤਾ 10 ਘੰਟੇ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'ਹਫਤਾ 6 ਦਿਨ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        'ਹਫਤਾ 6 ਦਿਨ',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'ਹਫਤਾ ਅਤੇ 6 ਦਿਨ ਵਿੱਚ',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ਹਫ਼ਤੇ ਇੱਕ ਘੰਟਾ',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'ਇੱਕ ਘੰਟਾ ਵਿੱਚ',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 ਦਿਨ',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        'ਇੱਕ ਦਿਨ 3 ਘੰਟੇ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PaPkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PaPkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pa_PK'; // Panjabi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'کل بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'هفته بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'اتوار بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'پير بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'منگل بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'بدھ بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'جمعرات بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جمعه بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'منگل بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'بدھ بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'جمعرات بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جمعه بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'هفته بوقت 12:00 ص',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'گذشتہ اتوار بوقت 8:49 ش',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'گذشتہ روز بوقت 10:00 ش',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'آج بوقت 10:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'آج بوقت 2:00 ص',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'کل بوقت 1:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'منگل بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'گذشتہ روز بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'گذشتہ روز بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'گذشتہ منگل بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'گذشتہ پير بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'گذشتہ اتوار بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'گذشتہ هفته بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'گذشتہ جمعه بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'گذشتہ جمعرات بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'گذشتہ بدھ بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'گذشتہ جمعه بوقت 12:00 ص',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ص CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 ص, 12:00 ص',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 ص, 1:30 ص',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 ص, 2:00 ص',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 ص, 6:00 ص',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 ص, 10:00 ص',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ش, 12:00 ش',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ش, 5:00 ش',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ش, 9:30 ش',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ش, 11:00 ش',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 سیکنڈ قبل',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 سیکنڈ قبل',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 سیکنڈ قبل',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 سیکنڈ قبل',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 منٹ قبل',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 منٹ قبل',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 منٹ قبل',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 منٹ قبل',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 گھنٹے قبل',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 گھنٹے قبل',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 گھنٹے قبل',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 گھنٹے قبل',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 دن قبل',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 دن قبل',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 دن قبل',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 دن قبل',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 ہفتے قبل',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 ہفتے قبل',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ہفتے قبل',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ہفتے قبل',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ماہ قبل',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 ماہ قبل',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ماہ قبل',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ماہ قبل',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 سال قبل',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 سال قبل',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 سال قبل',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 سال قبل',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 سیکنڈ پہلے',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 سیکنڈ پہلے',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 سیکنڈ',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 سیکنڈ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 سیکنڈ',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 سیکنڈ',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 سیکنڈ بعد',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 منٹ 1 سیکنڈ',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 سال بعد',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ماہ قبل',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ قبل',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 ہفتے 10 گھنٹے',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ہفتے 6 دن',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ہفتے 6 دن',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 ہفتے اور 6 دن بعد',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ہفتے 1 گھنٹے',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'ایک گھنٹہ بعد',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 دن',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 دن 3 گھنٹے',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pa'; // Panjabi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਕਲ ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਅਗਲਾ ਸ਼ਨੀਚਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਅਗਲਾ ਐਤਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਅਗਲਾ ਸੋਮਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਅਗਲਾ ਬੁਧਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ਅਗਲਾ ਵੀਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ਅਗਲਾ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਅਗਲਾ ਬੁਧਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਅਗਲਾ ਵੀਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਅਗਲਾ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਅਗਲਾ ਸ਼ਨੀਚਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::now()->subDays(2)->calendar()\n        'ਪਿਛਲੇ ਐਤਵਾਰ, ਰਾਤ 8:49 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਕਲ ਰਾਤ 10:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ਅਜ ਦੁਪਹਿਰ 10:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਅਜ ਰਾਤ 2:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ਕਲ ਰਾਤ 1:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਅਗਲਾ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ਕਲ ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਕਲ ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਪਿਛਲੇ ਮੰਗਲਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਪਿਛਲੇ ਸੋਮਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਪਿਛਲੇ ਐਤਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਪਿਛਲੇ ਸ਼ਨੀਚਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ਪਿਛਲੇ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ਪਿਛਲੇ ਵੀਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ਪਿਛਲੇ ਬੁਧਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ਪਿਛਲੇ ਸ਼ੁੱਕਰਵਾਰ, ਰਾਤ 12:00 ਵਜੇ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ਰਾਤ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ਰਾਤ, 12:00 ਰਾਤ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ਰਾਤ, 1:30 ਰਾਤ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ਰਾਤ, 2:00 ਰਾਤ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ਸਵੇਰ, 6:00 ਸਵੇਰ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ਦੁਪਹਿਰ, 10:00 ਦੁਪਹਿਰ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ਦੁਪਹਿਰ, 12:00 ਦੁਪਹਿਰ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ਸ਼ਾਮ, 5:00 ਸ਼ਾਮ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ਰਾਤ, 9:30 ਰਾਤ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ਰਾਤ, 11:00 ਰਾਤ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ਸਕਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ਸਕਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ਇਕ ਮਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ਇਕ ਮਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ਮਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ਮਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ਇੱਕ ਘੰਟਾ ਪਹਿਲਾਂ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ਇੱਕ ਘੰਟਾ ਪਹਿਲਾਂ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ਘੰਟੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ਘੰਟੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ਇੱਕ ਦਿਨ ਪਹਿਲਾਂ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ਇੱਕ ਦਿਨ ਪਹਿਲਾਂ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ਦਿਨ ਪਹਿਲਾਂ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ਦਿਨ ਪਹਿਲਾਂ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ਹਫਤਾ ਪਹਿਲਾਂ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ਹਫਤਾ ਪਹਿਲਾਂ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ਹਫ਼ਤੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ਹਫ਼ਤੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ਇੱਕ ਮਹੀਨਾ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ਇੱਕ ਮਹੀਨਾ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ਇੱਕ ਸਾਲ ਪਹਿਲਾਂ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ਇੱਕ ਸਾਲ ਪਹਿਲਾਂ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ਸਾਲ ਪਹਿਲਾਂ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ਸਾਲ ਪਹਿਲਾਂ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਬਾਅਦ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਬਾਅਦ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਪਹਿਲਾਂ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'ਕੁਝ ਸਕਿੰਟ ਤੋਂ ਪਹਿਲਾਂ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ਕੁਝ ਸਕਿੰਟ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ਕੁਝ ਸਕਿੰਟ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ਸਕਿੰਟ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ਸਕਿੰਟ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ਕੁਝ ਸਕਿੰਟ ਵਿੱਚ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ਇਕ ਮਿੰਟ ਕੁਝ ਸਕਿੰਟ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ਸਾਲ 3 ਮਹੀਨੇ ਇੱਕ ਦਿਨ ਕੁਝ ਸਕਿੰਟ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ਸਾਲ ਵਿੱਚ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ਮਹੀਨੇ ਪਹਿਲਾਂ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ਸਾਲ 3 ਮਹੀਨੇ ਇੱਕ ਦਿਨ ਕੁਝ ਸਕਿੰਟ ਪਹਿਲਾਂ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'ਹਫਤਾ 10 ਘੰਟੇ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ਹਫਤਾ 6 ਦਿਨ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ਹਫਤਾ 6 ਦਿਨ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ਹਫਤਾ ਅਤੇ 6 ਦਿਨ ਵਿੱਚ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ਹਫ਼ਤੇ ਇੱਕ ਘੰਟਾ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ਇੱਕ ਘੰਟਾ ਵਿੱਚ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ਦਿਨ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ਇੱਕ ਦਿਨ 3 ਘੰਟੇ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PapAwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PapAwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pap_AW'; // Papiamento\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'djasabra at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'djadomingo at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'djaluna at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'djawebs at 00.00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'djarason at 00.00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'djabierne at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'djawebs at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'djarason at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'djabierne at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'djasabra at 00.00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last djadomingo at 20.49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22.00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02.00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last djamars at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last djaluna at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last djadomingo at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last djasabra at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last djabierne at 00.00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last djarason at 00.00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last djawebs at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last djabierne at 00.00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekònde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sekònde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekònde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sekònde',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minüt 1 sekònde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 aña 3 luna 1 dia 1 sekònde',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'from_now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 siman 10 ora',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 siman 6 dia',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 siman 6 dia',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'from_now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 siman 1 ora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'from_now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dia',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 dia 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PapCwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PapCwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pap_CW'; // Papiamento\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'djasabra at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'djadomingo at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'djaluna at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'djawebs at 00.00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'djarason at 00.00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'djabierne at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'djawebs at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'djarason at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'djabierne at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'djasabra at 00.00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last djadomingo at 20.49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22.00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02.00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last djamars at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last djaluna at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last djadomingo at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last djasabra at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last djabierne at 00.00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last djarason at 00.00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last djawebs at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last djabierne at 00.00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekònde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sekònde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekònde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sekònde',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minüt 1 sekònde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 aña 3 luna 1 dia 1 sekònde',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'from_now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 siman 10 ora',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 siman 6 dia',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 siman 6 dia',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'from_now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 siman 1 ora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'from_now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dia',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 dia 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PapTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PapTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pap'; // Papiamento\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'djasabra at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'djadomingo at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'djaluna at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'djawebs at 00.00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'djarason at 00.00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'djabierne at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'djawebs at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'djarason at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'djabierne at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'djasabra at 00.00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last djadomingo at 20.49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22.00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02.00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'djamars at 00.00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last djamars at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last djaluna at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last djadomingo at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last djasabra at 00.00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last djabierne at 00.00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last djarason at 00.00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last djawebs at 00.00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last djabierne at 00.00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekònde',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sekònde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekònde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sekònde',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minüt 1 sekònde',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 aña 3 luna 1 dia 1 sekònde',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'from_now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 siman 10 ora',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 siman 6 dia',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 siman 6 dia',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'from_now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 siman 1 ora',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'from_now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dia',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 dia 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PlPlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PlPlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pl_PL'; // Polish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'Jutro o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'W sobotę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'W niedzielę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'W poniedziałek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'We wtorek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'W środę o 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'W czwartek o 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'W piątek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'We wtorek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'W środę o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'W czwartek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'W piątek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'W sobotę o 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'W zeszłą niedzielę o 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'Wczoraj o 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'Dziś o 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'Dziś o 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'Jutro o 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'We wtorek o 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Wczoraj o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Wczoraj o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'W zeszły wtorek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'W zeszły poniedziałek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'W zeszłą niedzielę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'W zeszłą sobotę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'W zeszły piątek o 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'W zeszły czwartek o 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'W zeszłą środę o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'W zeszły piątek o 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 przed południem CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 przed południem, 12:00 przed południem',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 przed południem, 1:30 przed południem',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 przed południem, 2:00 przed południem',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 przed południem, 6:00 przed południem',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 przed południem, 10:00 przed południem',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 po południu, 12:00 po południu',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 po południu, 5:00 po południu',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 po południu, 9:30 po południu',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 po południu, 11:00 po południu',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 sekunda temu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 sek. temu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 sekundy temu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 sek. temu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 minuta temu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 min temu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 minuty temu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 min temu',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 godzina temu',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 godz. temu',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 godziny temu',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 godz. temu',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 dzień temu',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 d temu',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 dni temu',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 d temu',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 tydzień temu',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 tyg. temu',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 tygodnie temu',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 tyg. temu',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 miesiąc temu',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 mies. temu',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 miesiące temu',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 mies. temu',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 rok temu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 r temu',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 lata temu',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 l temu',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'za 1 sekundę',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekunda po',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. po',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekunda przed',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. przed',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekunda',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekundy',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minuta 1 sekunda',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 l 3 mies. 1 d 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'za 3 lata',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 mies. temu',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 l 3 mies. 1 d 1 sek. temu',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 tydzień 10 godzin',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tydzień 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tydzień 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'za 1 tydzień i 6 dni',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 tygodnie 1 godzina',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'za godzinę',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dni',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 godz.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pl'; // Polish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'Jutro o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'W sobotę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'W niedzielę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'W poniedziałek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'We wtorek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'W środę o 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'W czwartek o 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'W piątek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'We wtorek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'W środę o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'W czwartek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'W piątek o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'W sobotę o 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'W zeszłą niedzielę o 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'Wczoraj o 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'Dziś o 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'Dziś o 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'Jutro o 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'We wtorek o 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Wczoraj o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'Wczoraj o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'W zeszły wtorek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'W zeszły poniedziałek o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'W zeszłą niedzielę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'W zeszłą sobotę o 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'W zeszły piątek o 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'W zeszły czwartek o 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'W zeszłą środę o 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'W zeszły piątek o 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 przed południem CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 przed południem, 12:00 przed południem',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 przed południem, 1:30 przed południem',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 przed południem, 2:00 przed południem',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 przed południem, 6:00 przed południem',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 przed południem, 10:00 przed południem',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 po południu, 12:00 po południu',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 po południu, 5:00 po południu',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 po południu, 9:30 po południu',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 po południu, 11:00 po południu',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 sekunda temu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 sek. temu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 sekundy temu',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 sek. temu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 minuta temu',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 min temu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 minuty temu',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 min temu',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 godzina temu',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 godz. temu',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 godziny temu',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 godz. temu',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 dzień temu',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 d temu',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 dni temu',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 d temu',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 tydzień temu',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 tyg. temu',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 tygodnie temu',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 tyg. temu',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 miesiąc temu',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 mies. temu',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 miesiące temu',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 mies. temu',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 rok temu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 r temu',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 lata temu',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 l temu',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'za 1 sekundę',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 sekunda po',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 sek. po',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 sekunda przed',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 sek. przed',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 sekunda',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 sekundy',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 minuta 1 sekunda',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 l 3 mies. 1 d 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'za 3 lata',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 mies. temu',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 l 3 mies. 1 d 1 sek. temu',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 tydzień 10 godzin',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tydzień 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 tydzień 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'za 1 tydzień i 6 dni',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 tygodnie 1 godzina',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'za godzinę',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 dni',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 d 3 godz.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PrgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PrgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'prg'; // Prussian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 kitan ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 kitan ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 kitan ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 kitan ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 līkuts ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 līkuts ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 līkuts ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 līkuts ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 bruktēt ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 bruktēt ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 bruktēt ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 bruktēt ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 di ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 di ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 di ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 di ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 sawaītin ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 sawaītin ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 sawaītin ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 sawaītin ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mēniks ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mēniks ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mēniks ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mēniks ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 meta ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 meta ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 meta ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 meta ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 kitan from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 kitan from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 kitan after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 kitan after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 kitan before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 kitan before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 kitan',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 kitan',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 kitan',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 kitan',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 kitan from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 līkuts 1 kitan',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 meta 3 mēniks 1 di 1 kitan',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 meta from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mēniks ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 meta 3 mēniks 1 di 1 kitan ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 sawaītin 10 bruktēt',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sawaītin 6 di',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 sawaītin 6 di',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 sawaītin and 6 di from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 sawaītin 1 bruktēt',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 bruktēt from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 di',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 di 3 bruktēt',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PsAfTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PsAfTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ps_AF'; // Pashto\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'خالي at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اتوار at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ګل at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'نهه at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'شورو at 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'زيارت at 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمعه at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'نهه at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'شورو at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'زيارت at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعه at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'خالي at 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last اتوار at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'نهه at 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last نهه at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ګل at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last اتوار at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last خالي at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last جمعه at 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last زيارت at 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last شورو at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last جمعه at 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 غ.م. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 غ.م., 12:00 غ.م.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 غ.م., 1:30 غ.م.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 غ.م., 2:00 غ.م.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 غ.م., 6:00 غ.م.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 غ.م., 10:00 غ.م.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 غ.و., 12:00 غ.و.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 غ.و., 5:00 غ.و.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 غ.و., 9:30 غ.و.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 غ.و., 11:00 غ.و.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ثانيه دمخه',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1ثانيه دمخه',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ثانيې دمخه',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2ثانيې دمخه',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 دقيقه دمخه',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1دقيقه دمخه',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 دقيقې دمخه',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2دقيقې دمخه',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ساعت دمخه',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1ساعت دمخه',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ساعته دمخه',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2ساعته دمخه',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ورځ دمخه',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1ورځ دمخه',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ورځي دمخه',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2ورځي دمخه',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 اونۍ دمخه',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1اونۍ دمخه',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 اونۍ دمخه',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2اونۍ دمخه',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 مياشت دمخه',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1مياشت دمخه',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 مياشتي دمخه',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2مياشتي دمخه',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 کال دمخه',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1کال دمخه',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 کاله دمخه',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2کاله دمخه',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ثانيه له اوس څخه',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1ثانيه له اوس څخه',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ثانيه وروسته',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1ثانيه وروسته',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ثانيه دمخه',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1ثانيه دمخه',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ثانيه',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1ثانيه',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ثانيې',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2ثانيې',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1ثانيه له اوس څخه',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 دقيقه 1 ثانيه',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2کاله 3مياشتي 1ورځ 1ثانيه',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 کاله له اوس څخه',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5مياشتي دمخه',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2کاله 3مياشتي 1ورځ 1ثانيه دمخه',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 اونۍ 10 ساعته',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 اونۍ 6 ورځي',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 اونۍ 6 ورځي',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 اونۍ او 6 ورځي له اوس څخه',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 اونۍ 1 ساعت',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ساعت له اوس څخه',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ورځي',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1ورځ 3ساعته',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ps'; // Pashto\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'خالي at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اتوار at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ګل at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'نهه at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'شورو at 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'زيارت at 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمعه at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'نهه at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'شورو at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'زيارت at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعه at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'خالي at 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last اتوار at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'نهه at 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last نهه at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ګل at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last اتوار at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last خالي at 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last جمعه at 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last زيارت at 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last شورو at 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last جمعه at 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 غ.م. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 غ.م., 12:00 غ.م.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 غ.م., 1:30 غ.م.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 غ.م., 2:00 غ.م.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 غ.م., 6:00 غ.م.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 غ.م., 10:00 غ.م.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 غ.و., 12:00 غ.و.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 غ.و., 5:00 غ.و.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 غ.و., 9:30 غ.و.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 غ.و., 11:00 غ.و.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ثانيه دمخه',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1ثانيه دمخه',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ثانيې دمخه',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2ثانيې دمخه',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 دقيقه دمخه',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1دقيقه دمخه',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 دقيقې دمخه',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2دقيقې دمخه',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ساعت دمخه',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1ساعت دمخه',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ساعته دمخه',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2ساعته دمخه',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ورځ دمخه',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1ورځ دمخه',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ورځي دمخه',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2ورځي دمخه',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 اونۍ دمخه',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1اونۍ دمخه',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 اونۍ دمخه',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2اونۍ دمخه',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 مياشت دمخه',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1مياشت دمخه',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 مياشتي دمخه',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2مياشتي دمخه',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 کال دمخه',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1کال دمخه',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 کاله دمخه',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2کاله دمخه',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ثانيه له اوس څخه',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1ثانيه له اوس څخه',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ثانيه وروسته',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1ثانيه وروسته',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ثانيه دمخه',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1ثانيه دمخه',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ثانيه',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1ثانيه',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ثانيې',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2ثانيې',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1ثانيه له اوس څخه',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 دقيقه 1 ثانيه',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2کاله 3مياشتي 1ورځ 1ثانيه',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 کاله له اوس څخه',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5مياشتي دمخه',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2کاله 3مياشتي 1ورځ 1ثانيه دمخه',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 اونۍ 10 ساعته',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 اونۍ 6 ورځي',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 اونۍ 6 ورځي',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 اونۍ او 6 ورځي له اوس څخه',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 اونۍ 1 ساعت',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ساعت له اوس څخه',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ورځي',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1ورځ 3ساعته',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtAoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtAoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_AO'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtBrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtBrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_BR'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_CH'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtCvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtCvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_CV'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtGqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtGqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_GQ'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtGwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtGwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_GW'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtLuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtLuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_LU'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtMoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtMoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_MO'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtMzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtMzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_MZ'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtPtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtPtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_PT'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtStTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtStTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_ST'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/PtTlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass PtTlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'pt_TL'; // Portuguese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Amanhã às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'quinta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sexta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado às 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Último domingo às 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hoje às 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hoje às 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Amanhã às 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'terça-feira às 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ontem às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última terça-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última segunda-feira às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último domingo às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Último sábado às 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Última quinta-feira às 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Última quarta-feira às 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Última sexta-feira às 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'há 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'há 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'há 2 segundos',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'há 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'há 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'há 1min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'há 2 minutos',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'há 2min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'há 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'há 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'há 2 horas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'há 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'há 1 dia',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'há 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'há 2 dias',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'há 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'há 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'há 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'há 2 semanas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'há 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'há 1 mês',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'há 1m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'há 2 meses',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'há 2m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'há 1 ano',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'há 1a',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'há 2 anos',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'há 2a',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'em 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'em 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo depois',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s depois',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundos',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'em 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2a 3m 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'em 3 anos',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'há 5m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'há 2a 3m 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 horas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 dias',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'em 1 semana e 6 dias',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semanas 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'em uma hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dias',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/QuBoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass QuBoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'qu_BO'; // Quechua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minuto',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 hora',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 día',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semana',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 mes',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 año',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 año',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 año 3 mes 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 año',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 mes',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 año 3 mes 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 hora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 día',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semana 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 día',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/QuEcTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass QuEcTest extends LocalizationTestCase\n{\n    public const LOCALE = 'qu_EC'; // Quechua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minuto',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 hora',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 día',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semana',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 mes',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 año',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 año',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 año 3 mes 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 año',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 mes',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 año 3 mes 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 hora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 día',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semana 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 día',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/QuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass QuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'qu'; // Quechua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mañana a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sábado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'domingo a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunes a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miércoles a las 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'jueves a las 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'viernes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miércoles a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'jueves a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'viernes a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sábado a las 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'el domingo pasado a las 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'hoy a las 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'hoy a las 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mañana a las 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martes a las 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ayer a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ayer a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el martes pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el lunes pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el domingo pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el sábado pasado a las 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'el viernes pasado a las 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'el jueves pasado a las 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'el miércoles pasado a las 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'el viernes pasado a las 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 2º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a. m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a. m., 12:00 a. m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a. m., 1:30 a. m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a. m., 2:00 a. m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a. m., 6:00 a. m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a. m., 10:00 a. m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p. m., 12:00 p. m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p. m., 5:00 p. m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p. m., 9:30 p. m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p. m., 11:00 p. m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'hace 1 segundo',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'hace 1s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'hace 2 segundo',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'hace 2s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'hace 1 minuto',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'hace 1m',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'hace 2 minuto',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'hace 2m',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'hace 1 hora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'hace 1h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'hace 2 hora',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'hace 2h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'hace 1 día',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'hace 1d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'hace 2 día',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'hace 2d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'hace 1 semana',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'hace 1sem',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'hace 2 semana',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'hace 2sem',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'hace 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'hace 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'hace 2 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'hace 2 mes',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'hace 1 año',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'hace 1 año',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'hace 2 año',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'hace 2 año',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'en 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'en 1s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 segundo después',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s después',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 segundo antes',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s antes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'en 1s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 año 3 mes 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'en 3 año',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'hace 5 mes',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'hace 2 año 3 mes 1d 1s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 semana 10 hora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 semana 6 día',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'en 1 semana y 6 día',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 semana 1 hora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'en una hora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 día',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/QuzPeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass QuzPeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'quz_PE'; // Cusco Quechua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sawatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tuminku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miyirkulis at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'juywis at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miyirkulis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'juywis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sawatu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last tuminku at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martis at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tuminku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sawatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last juywis at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last miyirkulis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 iskay ñiqin ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 iskay ñiqin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 iskay ñiqin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 iskay ñiqin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 uchuy ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 uchuy ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 uchuy ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 uchuy ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ura ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ura ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ura ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ura ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 pʼunchaw ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 pʼunchaw ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 pʼunchaw ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 pʼunchaw ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 simana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 simana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 simana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 simana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 killa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 killa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 killa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 killa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 wata ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 wata ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 wata ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 wata ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 iskay ñiqin from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 iskay ñiqin from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 iskay ñiqin after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 iskay ñiqin after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 iskay ñiqin before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 iskay ñiqin before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 iskay ñiqin',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 iskay ñiqin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 iskay ñiqin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 iskay ñiqin',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 iskay ñiqin from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 uchuy 1 iskay ñiqin',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 wata 3 killa 1 pʼunchaw 1 iskay ñiqin',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 wata from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 killa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 wata 3 killa 1 pʼunchaw 1 iskay ñiqin ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 simana 10 ura',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 simana 6 pʼunchaw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 simana 6 pʼunchaw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 simana and 6 pʼunchaw from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 simana 1 ura',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ura from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 pʼunchaw',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 pʼunchaw 3 ura',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/QuzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass QuzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'quz'; // Cusco Quechua\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sawatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tuminku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miyirkulis at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'juywis at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miyirkulis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'juywis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sawatu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last tuminku at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'martis at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tuminku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sawatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last juywis at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last miyirkulis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last wiyirnis at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 iskay ñiqin ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 iskay ñiqin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 iskay ñiqin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 iskay ñiqin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 uchuy ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 uchuy ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 uchuy ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 uchuy ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ura ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ura ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ura ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ura ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 pʼunchaw ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 pʼunchaw ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 pʼunchaw ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 pʼunchaw ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 simana ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 simana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 simana ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 simana ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 killa ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 killa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 killa ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 killa ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 wata ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 wata ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 wata ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 wata ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 iskay ñiqin from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 iskay ñiqin from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 iskay ñiqin after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 iskay ñiqin after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 iskay ñiqin before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 iskay ñiqin before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 iskay ñiqin',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 iskay ñiqin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 iskay ñiqin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 iskay ñiqin',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 iskay ñiqin from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 uchuy 1 iskay ñiqin',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 wata 3 killa 1 pʼunchaw 1 iskay ñiqin',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 wata from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 killa ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 wata 3 killa 1 pʼunchaw 1 iskay ñiqin ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 simana 10 ura',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 simana 6 pʼunchaw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 simana 6 pʼunchaw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 simana and 6 pʼunchaw from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 simana 1 ura',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ura from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 pʼunchaw',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 pʼunchaw 3 ura',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RajInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RajInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'raj_IN'; // Rajasthani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 दुनियांण ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 दुनियांण ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 दुनियांण ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 दुनियांण ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 अेक ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 अेक ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 अेक ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 अेक ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 निवाज ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 निवाज ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 निवाज ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 निवाज ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 सूरज ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 सूरज ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 सूरज ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 सूरज ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 आंहू ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 आंहू ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 आंहू ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 आंहू ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 आंहू 3 सूरज 1 अेक 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 आंहू from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 सूरज ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 आंहू 3 सूरज 1 अेक 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 निवाज 10 दुनियांण',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 निवाज 6 अेक',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 निवाज 6 अेक',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 निवाज and 6 अेक from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 निवाज 1 दुनियांण',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 दुनियांण from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 अेक',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 अेक 3 दुनियांण',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RajTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RajTest extends LocalizationTestCase\n{\n    public const LOCALE = 'raj'; // Rajasthani\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगल्लवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतिवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 दुनियांण ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 दुनियांण ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 दुनियांण ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 दुनियांण ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 अेक ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 अेक ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 अेक ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 अेक ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 निवाज ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 निवाज ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 निवाज ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 निवाज ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 सूरज ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 सूरज ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 सूरज ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 सूरज ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 आंहू ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 आंहू ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 आंहू ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 आंहू ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 आंहू 3 सूरज 1 अेक 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 आंहू from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 सूरज ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 आंहू 3 सूरज 1 अेक 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 निवाज 10 दुनियांण',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 निवाज 6 अेक',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 निवाज 6 अेक',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 निवाज and 6 अेक from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 निवाज 1 दुनियांण',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 दुनियांण from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 अेक',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 अेक 3 दुनियांण',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'rm'; // Romansh\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sonda at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dumengia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'glindesdi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mardi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mesemna at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'gievgia at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'venderdi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mesemna at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gievgia at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'venderdi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sonda at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dumengia at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mardi at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mardi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last glindesdi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dumengia at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sonda at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last venderdi at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last gievgia at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mesemna at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last venderdi at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 avantmezdi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 avantmezdi, 12:00 avantmezdi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 avantmezdi, 1:30 avantmezdi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 avantmezdi, 2:00 avantmezdi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 avantmezdi, 6:00 avantmezdi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 avantmezdi, 10:00 avantmezdi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 suentermezdi, 12:00 suentermezdi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 suentermezdi, 5:00 suentermezdi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 suentermezdi, 9:30 suentermezdi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 suentermezdi, 11:00 suentermezdi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secunda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secunda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oura ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oura ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 di ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 di ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 emna ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 emna ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mais ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mais ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 onn ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 onn ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 secunda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secunda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secunda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 secunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 onn from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 emna 10 oura',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 emna 6 di',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 emna 6 di',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 emna e 6 di from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 emna 1 oura',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 di',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'rn'; // Kirundi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku wa gatandatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku w’indwi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku wa mbere at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku wa kabiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku wa gatatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ku wa kane at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ku wa gatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ku wa kabiri at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ku wa gatatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ku wa kane at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ku wa gatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ku wa gatandatu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ku w’indwi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ku wa kabiri at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku wa kabiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku wa mbere at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku w’indwi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku wa gatandatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku wa gatanu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Ku wa kane at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ku wa gatatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ku wa gatanu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 z.mu. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Z.MU., 12:00 z.mu.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Z.MU., 1:30 z.mu.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Z.MU., 2:00 z.mu.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Z.MU., 6:00 z.mu.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Z.MU., 10:00 z.mu.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Z.MW., 12:00 z.mw.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Z.MW., 5:00 z.mw.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Z.MW., 9:30 z.mw.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Z.MW., 11:00 z.mw.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'inguvu 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'inguvu 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'inguvu 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'inguvu 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'iminuta 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'iminuta 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'iminuta 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'iminuta 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'amasaha 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'amasaha 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'amasaha 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'amasaha 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'imisi 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'imisi 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'imisi 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'imisi 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'indwi 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'indwi 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'indwi 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'indwi 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'amezi 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'amezi 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'amezi 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'amezi 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'imyaka 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'imyaka 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'imyaka 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'imyaka 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'inguvu 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'inguvu 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'inguvu 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'inguvu 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'inguvu 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'inguvu 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'inguvu 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'inguvu 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'inguvu 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'inguvu 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'inguvu 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'iminuta 1 inguvu 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'imyaka 2 amezi 3 imisi 1 inguvu 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'imyaka 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'amezi 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'imyaka 2 amezi 3 imisi 1 inguvu 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'indwi 1 amasaha 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'indwi 1 imisi 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'indwi 1 imisi 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'indwi 1 and imisi 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'indwi 2 amasaha 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'amasaha 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'imisi 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'imisi 1 amasaha 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RoMdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RoMdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ro_MD'; // Romanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mâine la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sâmbătă la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'duminică la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luni la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'marți la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miercuri la 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'joi la 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vineri la 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miercuri la 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'joi la 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vineri la 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sâmbătă la 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'fosta duminică la 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'azi la 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'azi la 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mâine la 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ieri la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta marți la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta luni la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta duminică la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta sâmbătă la 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta vineri la 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'fosta joi la 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'fosta miercuri la 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fosta vineri la 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secundă în urmă',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secunde în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 m. în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minute în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 m. în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oră în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zi în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 z. în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zile în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 z. în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 săptămână în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 săp. în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 săptămâni în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 săp. în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lună în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 l. în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 luni în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 l. în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 an în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 a. în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ani în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 a. în urmă',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'peste 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'peste 1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'acum 1 secundă',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'acum 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'peste 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 secundă',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a. 3 l. 1 z. 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'peste 3 ani',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 l. în urmă',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 a. 3 l. 1 z. 1 sec. în urmă',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 săptămână 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zile',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zile',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'peste 1 săptămână și 6 zile',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 săptămâni 1 oră',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'peste o oră',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zile',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 z. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RoRoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RoRoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ro_RO'; // Romanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mâine la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sâmbătă la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'duminică la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luni la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miercuri la 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'joi la 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vineri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miercuri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'joi la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vineri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sâmbătă la 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'fosta duminică la 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'azi la 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'azi la 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mâine la 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ieri la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta marți la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta luni la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta duminică la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta sâmbătă la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta vineri la 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'fosta joi la 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'fosta miercuri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fosta vineri la 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secundă în urmă',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secunde în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 m. în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minute în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 m. în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oră în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zi în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 z. în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zile în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 z. în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 săptămână în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 săp. în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 săptămâni în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 săp. în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lună în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 l. în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 luni în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 l. în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 an în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 a. în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ani în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 a. în urmă',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'peste 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'peste 1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'acum 1 secundă',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'acum 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'peste 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 secundă',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a. 3 l. 1 z. 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'peste 3 ani',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 l. în urmă',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 a. 3 l. 1 z. 1 sec. în urmă',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 săptămână 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zile',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zile',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'peste 1 săptămână și 6 zile',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 săptămâni 1 oră',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'peste o oră',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zile',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 z. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ro'; // Romanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mâine la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sâmbătă la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'duminică la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'luni la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'miercuri la 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'joi la 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vineri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'miercuri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'joi la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vineri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sâmbătă la 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'fosta duminică la 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'azi la 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'azi la 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'mâine la 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'marți la 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ieri la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieri la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta marți la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta luni la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta duminică la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta sâmbătă la 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'fosta vineri la 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'fosta joi la 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'fosta miercuri la 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'fosta vineri la 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a.m. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a.m., 12:00 a.m.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a.m., 1:30 a.m.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a.m., 2:00 a.m.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a.m., 6:00 a.m.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a.m., 10:00 a.m.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p.m., 12:00 p.m.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p.m., 5:00 p.m.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p.m., 9:30 p.m.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p.m., 11:00 p.m.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secundă în urmă',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sec. în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secunde în urmă',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sec. în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut în urmă',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 m. în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minute în urmă',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 m. în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oră în urmă',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ore în urmă',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zi în urmă',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 z. în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zile în urmă',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 z. în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 săptămână în urmă',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 săp. în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 săptămâni în urmă',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 săp. în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 lună în urmă',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 l. în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 luni în urmă',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 l. în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 an în urmă',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 a. în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ani în urmă',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 a. în urmă',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'peste 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'peste 1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'peste 1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'acum 1 secundă',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'acum 1 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secundă',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sec.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sec.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'peste 1 sec.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 secundă',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 a. 3 l. 1 z. 1 sec.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'peste 3 ani',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 l. în urmă',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 a. 3 l. 1 z. 1 sec. în urmă',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 săptămână 10 ore',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zile',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 săptămână 6 zile',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'peste 1 săptămână și 6 zile',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 săptămâni 1 oră',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'peste o oră',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zile',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 z. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RofTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RofTest extends LocalizationTestCase\n{\n    public const LOCALE = 'rof'; // Rombo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ijumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ijumapili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ijumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ijumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ijumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ijumapili at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumapili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ijumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 kang’ama CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kang’ama, 12:00 kang’ama',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 kang’ama, 1:30 kang’ama',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 kang’ama, 2:00 kang’ama',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 kang’ama, 6:00 kang’ama',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 kang’ama, 10:00 kang’ama',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kingoto, 12:00 kingoto',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kingoto, 5:00 kingoto',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kingoto, 9:30 kingoto',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kingoto, 11:00 kingoto',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuByTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuByTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru_BY'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субботу, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятницу, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятницу, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuKgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuKgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru_KG'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субботу, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятницу, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятницу, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuKzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuKzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru_KZ'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субботу, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятницу, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятницу, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuMdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuMdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru_MD'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субботу, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятницу, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятницу, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru_RU'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субботу, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятницу, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятницу, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятницу, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субботу, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субботу, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятницу, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среду, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятницу, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RuUaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RuUaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ru_UA'; // Russian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В суббота, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую среда, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую пятница, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую среда, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую пятница, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую суббота, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую суббота, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую пятница, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую среда, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В пятница, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунды назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуты назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 часа назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дня назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 недели назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяца назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 года назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунды',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 года',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 часов',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 дней',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 дней',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 недели 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дня',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RwRwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RwRwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'rw_RW'; // Kinyarwanda\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa gatandatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku cyumweru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa mbere at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa gatatu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kuwa kane at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa gatatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa kane at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa gatandatu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ku cyumweru at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa mbere at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku cyumweru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa gatandatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kuwa kane at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Kuwa gatatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 vuna ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 vuna ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 vuna ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 vuna ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 -nzinya ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 -nzinya ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 -nzinya ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 -nzinya ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saha 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saha 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saha 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saha 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 nsi ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 nsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 nsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 nsi ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 icyumweru ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 icyumweru ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 icyumweru ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 icyumweru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ezi 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ezi 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ezi 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ezi 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'aka 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'aka 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'aka 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'aka 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 vuna from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 vuna from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 vuna after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 vuna after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 vuna before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 vuna before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 vuna',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 vuna',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 vuna',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 vuna',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 vuna from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 -nzinya 1 vuna',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'aka 2 ezi 3 1 nsi 1 vuna',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'aka 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ezi 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'aka 2 ezi 3 1 nsi 1 vuna ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 icyumweru saha 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 icyumweru 6 nsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 icyumweru 6 nsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 icyumweru and 6 nsi from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 icyumweru saha 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saha 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 nsi',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 nsi saha 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'rw'; // Kinyarwanda\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa gatandatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ku cyumweru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa mbere at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuwa gatatu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kuwa kane at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa gatatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa kane at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa gatandatu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ku cyumweru at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa kabiri at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa mbere at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ku cyumweru at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa gatandatu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Kuwa kane at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Kuwa gatatu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Kuwa gatanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 vuna ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 vuna ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 vuna ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 vuna ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 -nzinya ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 -nzinya ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 -nzinya ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 -nzinya ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'saha 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'saha 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'saha 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'saha 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 nsi ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 nsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 nsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 nsi ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 icyumweru ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 icyumweru ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 icyumweru ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 icyumweru ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ezi 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ezi 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ezi 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ezi 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'aka 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'aka 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'aka 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'aka 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 vuna from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 vuna from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 vuna after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 vuna after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 vuna before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 vuna before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 vuna',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 vuna',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 vuna',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 vuna',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 vuna from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 -nzinya 1 vuna',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'aka 2 ezi 3 1 nsi 1 vuna',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'aka 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ezi 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'aka 2 ezi 3 1 nsi 1 vuna ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 icyumweru saha 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 icyumweru 6 nsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 icyumweru 6 nsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 icyumweru and 6 nsi from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 icyumweru saha 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saha 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 nsi',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 nsi saha 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/RwkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass RwkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'rwk'; // Rwa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapilyi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatanu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapilyi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapilyi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 utuko CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 utuko, 12:00 utuko',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 utuko, 1:30 utuko',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 utuko, 2:00 utuko',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 utuko, 6:00 utuko',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 utuko, 10:00 utuko',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kyiukonyi, 12:00 kyiukonyi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kyiukonyi, 5:00 kyiukonyi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kyiukonyi, 9:30 kyiukonyi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kyiukonyi, 11:00 kyiukonyi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SaInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SaInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sa_IN'; // Sanskrit\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतिवासरः at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतिवासरः at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवासर: at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवासर: at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतिवासरः at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 द्वितीयः ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 द्वितीयः ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 द्वितीयः ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 द्वितीयः ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 होरा ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 होरा ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 होरा ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 होरा ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिन ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 मास ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 मास ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 मास ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 मास ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 वर्ष ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वर्ष ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्ष ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 द्वितीयः from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 द्वितीयः from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 द्वितीयः after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 द्वितीयः after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 द्वितीयः before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 द्वितीयः before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 द्वितीयः',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 द्वितीयः',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 द्वितीयः',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 द्वितीयः',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 द्वितीयः from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 होरा 1 द्वितीयः',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 मास 1 दिन 1 द्वितीयः',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वर्ष from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 मास ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 मास 1 दिन 1 द्वितीयः ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 सप्ताहः saptahaĥ 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताहः saptahaĥ 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताहः saptahaĥ 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 सप्ताहः saptahaĥ and 6 दिन from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 सप्ताहः saptahaĥ 1 घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 घण्टा from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sa'; // Sanskrit\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'रविवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बृहस्पतिवासरः at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बृहस्पतिवासरः at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिवासर: at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last रविवासर: at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last रविवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बृहस्पतिवासरः at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधवासर: at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रवासर at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 द्वितीयः ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 द्वितीयः ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 द्वितीयः ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 द्वितीयः ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 होरा ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 होरा ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 होरा ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 होरा ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 घण्टा ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 घण्टा ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 दिन ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 दिन ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 दिन ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 सप्ताहः saptahaĥ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 मास ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 मास ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 मास ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 मास ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 वर्ष ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 वर्ष ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 वर्ष ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 वर्ष ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 द्वितीयः from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 द्वितीयः from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 द्वितीयः after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 द्वितीयः after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 द्वितीयः before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 द्वितीयः before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 द्वितीयः',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 द्वितीयः',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 द्वितीयः',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 द्वितीयः',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 द्वितीयः from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 होरा 1 द्वितीयः',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 वर्ष 3 मास 1 दिन 1 द्वितीयः',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 वर्ष from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 मास ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 वर्ष 3 मास 1 दिन 1 द्वितीयः ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 सप्ताहः saptahaĥ 10 घण्टा',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताहः saptahaĥ 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 सप्ताहः saptahaĥ 6 दिन',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 सप्ताहः saptahaĥ and 6 दिन from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 सप्ताहः saptahaĥ 1 घण्टा',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 घण्टा from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 दिन',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 दिन 3 घण्टा',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SahRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SahRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sah_RU'; // Sakha\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субуота, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В баскыһыанньа, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую сэрэдэ, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую сэрэдэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субуота, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В бэнидиэнньик, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субуота, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую сэрэдэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунду назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуту назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 час назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 день назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 неделю назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяц назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 год назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 год',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 час',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 день',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 день',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 день',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 неделя 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 день',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SahTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SahTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sah'; // Sakha\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В субуота, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В баскыһыанньа, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий понедельник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В следующую сэрэдэ, в 0:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'В следующую бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую сэрэдэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий четверг, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующую субуота, в 0:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'В прошлое воскресенье, в 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сегодня, в 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сегодня, в 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра, в 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В следующий вторник, в 0:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчера, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Во вторник, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В бэнидиэнньик, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлое воскресенье, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую субуота, в 0:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'В прошлую бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'В прошлый четверг, в 0:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'В прошлую сэрэдэ, в 0:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'В бээтинсэ, в 0:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-я 1-я',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-я',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-я',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-я',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-я',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-я',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-я',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-я',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночи CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночи, 12:00 ночи',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночи, 1:30 ночи',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночи, 2:00 ночи',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 утра, 6:00 утра',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 утра, 10:00 утра',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечера, 5:00 вечера',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечера, 9:30 вечера',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечера, 11:00 вечера',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду назад',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 сек. назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунду назад',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сек. назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 минуту назад',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 мин. назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 минуту назад',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 мин. назад',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 час назад',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ч. назад',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 час назад',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ч. назад',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день назад',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 д. назад',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 день назад',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 д. назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 неделю назад',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 нед. назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 неделю назад',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 нед. назад',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 месяц назад',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 мес. назад',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 месяц назад',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 мес. назад',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 год назад',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 г. назад',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 год назад',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 г. назад',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'через 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'через 1 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду после',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 сек. после',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 сек. до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 сек.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунда',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сек.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'через 1 сек.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минута 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'через 3 год',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 мес. назад',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 г. 3 мес. 1 д. 1 сек. назад',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 неделя 10 час',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 день',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 неделя 6 день',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'через 1 неделю и 6 день',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 неделя 1 час',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'через час',\n        // CarbonInterval::days(2)->forHumans()\n        '2 день',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SaqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SaqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'saq'; // Samburu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mderot ee kwe at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mderot ee are at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mderot ee kuni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mderot ee ong’wan at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mderot ee inet at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Mderot ee ile at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Mderot ee sapa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mderot ee ong’wan at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mderot ee inet at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mderot ee ile at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mderot ee sapa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mderot ee kwe at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Mderot ee are at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mderot ee ong’wan at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mderot ee ong’wan at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mderot ee kuni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mderot ee are at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mderot ee kwe at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mderot ee sapa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Mderot ee ile at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mderot ee inet at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Mderot ee sapa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 tesiran CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Tesiran, 12:00 tesiran',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Tesiran, 1:30 tesiran',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Tesiran, 2:00 tesiran',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Tesiran, 6:00 tesiran',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Tesiran, 10:00 tesiran',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Teipa, 12:00 teipa',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Teipa, 5:00 teipa',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Teipa, 9:30 teipa',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Teipa, 11:00 teipa',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SatInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SatInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sat_IN'; // Santali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ञुहुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सिंगेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ओतेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सागुनमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'सारदीमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सागुनमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सारदीमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ञुहुममाँहाँ at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last सिंगेमाँहाँ at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ओतेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सिंगेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ञुहुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last सारदीमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last सागुनमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ar ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ar ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ar ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ar ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ᱫᱤᱱ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ᱫᱤᱱ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ᱫᱤᱱ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ᱫᱤᱱ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 mãhã ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 mãhã ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 mãhã ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 mãhã ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ńindạ cando ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ńindạ cando ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ńindạ cando ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ńindạ cando ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ne̲s ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ne̲s ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ne̲s ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ne̲s ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ar from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ar from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ar after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ar after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ar before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ar before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ar',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ar',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ar',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ar',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ar from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ᱯᱤᱞᱪᱩ 1 ar',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ne̲s 3 ńindạ cando 1 ᱫᱤᱱ 1 ar',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ne̲s from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ńindạ cando ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ne̲s 3 ńindạ cando 1 ᱫᱤᱱ 1 ar ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 mãhã 10 ᱥᱳᱱᱚ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mãhã 6 ᱫᱤᱱ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mãhã 6 ᱫᱤᱱ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 mãhã and 6 ᱫᱤᱱ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 mãhã 1 ᱥᱳᱱᱚ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ᱥᱳᱱᱚ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ᱫᱤᱱ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ᱫᱤᱱ 3 ᱥᱳᱱᱚ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SatTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SatTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sat'; // Santali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ञुहुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सिंगेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ओतेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सागुनमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'सारदीमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सागुनमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'सारदीमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ञुहुममाँहाँ at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last सिंगेमाँहाँ at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last बालेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ओतेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सिंगेमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ञुहुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last सारदीमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last सागुनमाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last जारुममाँहाँ at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ar ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ar ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ar ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ar ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ᱯᱤᱞᱪᱩ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ᱥᱳᱱᱚ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ᱫᱤᱱ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ᱫᱤᱱ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ᱫᱤᱱ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ᱫᱤᱱ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 mãhã ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 mãhã ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 mãhã ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 mãhã ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ńindạ cando ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ńindạ cando ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ńindạ cando ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ńindạ cando ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ne̲s ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ne̲s ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ne̲s ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ne̲s ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ar from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ar from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ar after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ar after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ar before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ar before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ar',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ar',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ar',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ar',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ar from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ᱯᱤᱞᱪᱩ 1 ar',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ne̲s 3 ńindạ cando 1 ᱫᱤᱱ 1 ar',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ne̲s from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ńindạ cando ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ne̲s 3 ńindạ cando 1 ᱫᱤᱱ 1 ar ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 mãhã 10 ᱥᱳᱱᱚ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mãhã 6 ᱫᱤᱱ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 mãhã 6 ᱫᱤᱱ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 mãhã and 6 ᱫᱤᱱ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 mãhã 1 ᱥᱳᱱᱚ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ᱥᱳᱱᱚ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ᱫᱤᱱ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ᱫᱤᱱ 3 ᱥᱳᱱᱚ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SbpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SbpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sbp'; // Sangu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mulungu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alahamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alahamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Mulungu at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mulungu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alahamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatano at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 lwamilawu CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Lwamilawu, 12:00 lwamilawu',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Lwamilawu, 1:30 lwamilawu',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Lwamilawu, 2:00 lwamilawu',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Lwamilawu, 6:00 lwamilawu',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Lwamilawu, 10:00 lwamilawu',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Pashamihe, 12:00 pashamihe',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Pashamihe, 5:00 pashamihe',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Pashamihe, 9:30 pashamihe',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Pashamihe, 11:00 pashamihe',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ScItTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ScItTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sc_IT'; // Sardinian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sàbadu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domìnigu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mèrcuris at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Giòbia at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mèrcuris at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Giòbia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sàbadu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Domìnigu at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martis at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Domìnigu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sàbadu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Giòbia at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mèrcuris at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secundu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 secundu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secundu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 secundu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mementu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mementu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mementu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mementu ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ora ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dí ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dí ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dí ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dí ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 chida ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 chida ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 chida ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 chida ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mese ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mese ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 annu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 annu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 annu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 annu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 secundu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 secundu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secundu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 secundu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secundu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 secundu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secundu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secundu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secundu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 secundu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mementu 1 secundu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 annu 3 mese 1 dí 1 secundu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 annu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mese ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 annu 3 mese 1 dí 1 secundu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 chida 10 ora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 chida 6 dí',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 chida 6 dí',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 chida and 6 dí from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 chida 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ora from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dí',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dí 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ScTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ScTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sc'; // Sardinian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sàbadu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domìnigu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mèrcuris at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Giòbia at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martis at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mèrcuris at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Giòbia at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sàbadu at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Domìnigu at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Martis at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Martis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lunis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Domìnigu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sàbadu at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Giòbia at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mèrcuris at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Chenàbura at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 secundu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 secundu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 secundu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 secundu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mementu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mementu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mementu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mementu ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ora ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ora ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ora ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dí ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dí ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dí ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dí ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 chida ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 chida ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 chida ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 chida ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mese ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mese ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mese ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mese ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 annu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 annu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 annu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 annu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 secundu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 secundu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 secundu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 secundu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 secundu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 secundu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secundu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secundu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secundu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 secundu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mementu 1 secundu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 annu 3 mese 1 dí 1 secundu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 annu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mese ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 annu 3 mese 1 dí 1 secundu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 chida 10 ora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 chida 6 dí',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 chida 6 dí',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 chida and 6 dí from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 chida 1 ora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ora from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dí',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dí 3 ora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ScrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ScrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'scr'; // Serbo Croatian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Subota at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Nedelja at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Ponedeljak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Utorak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Sreda at 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Četvrtak at 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Petak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Utorak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Sreda at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Četvrtak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Petak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Subota at 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Nedelja at 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Utorak at 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Utorak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Ponedeljak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Nedelja at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Subota at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Petak at 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Četvrtak at 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Sreda at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Petak at 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 pre podne CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 pre podne, 12:00 pre podne',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 pre podne, 1:30 pre podne',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 pre podne, 2:00 pre podne',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 pre podne, 6:00 pre podne',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 pre podne, 10:00 pre podne',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 po podne, 12:00 po podne',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 po podne, 5:00 po podne',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 po podne, 9:30 po podne',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 po podne, 11:00 po podne',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekund',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 s.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 s.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelja',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 n.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 n.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 m.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 m.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godina',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 s.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund raniјe',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 s. raniјe',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 s.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 s.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 m. 1 d. 1 s.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 m.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 m. 1 d. 1 s.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelja i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SdInDevanagariTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SdInDevanagariTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sd_IN@devanagari'; // Sindhi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سڀاڻي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'छंछस اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आर्तवारू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सूमरू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ॿुधरू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'विस्पति اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'जुमो اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ॿुधरू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'विस्पति اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'जुमो اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'छंछस اڳين هفتي تي 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'گزريل هفتي आर्तवारू تي 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڪالهه 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اڄ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اڄ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'سڀاڻي 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलू اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ڪالهه 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڪالهه 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي मंगलू تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي सूमरू تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي आर्तवारू تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي छंछस تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي जुमो تي 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'گزريل هفتي विस्पति تي 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'گزريل هفتي ॿुधरू تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'گزريل هفتي जुमो تي 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 म.पू. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 म.पू., 12:00 म.पू.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 म.पू., 1:30 म.पू.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 म.पू., 2:00 म.पू.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 म.पू., 6:00 म.पू.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 म.पू., 10:00 म.पू.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 म.नं., 12:00 म.नं.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 म.नं., 5:00 म.नं.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 म.नं., 9:30 म.नं.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 म.नं., 11:00 म.नं.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سيڪنڊ اڳ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 منٽ اڳ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 منٽ اڳ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 منٽ اڳ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 منٽ اڳ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ڪلاڪ اڳ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ڏينهن اڳ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ڏينهن اڳ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ڏينهن اڳ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ڏينهن اڳ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 هفتا اڳ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 هفتا اڳ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 هفتا اڳ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 هفتا اڳ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 مهينا اڳ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 مهينا اڳ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 مهينا اڳ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 مهينا اڳ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 سال اڳ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 سال اڳ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 سال اڳ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 سال اڳ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 سيڪنڊ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 سيڪنڊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سيڪنڊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سيڪنڊ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 منٽ 1 سيڪنڊ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 سال 3 مهينا 1 ڏينهن 1 سيڪنڊ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سال پوء',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 مهينا اڳ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 سال 3 مهينا 1 ڏينهن 1 سيڪنڊ اڳ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 هفتا 10 ڪلاڪ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 هفتا 6 ڏينهن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 هفتا 6 ڏينهن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 هفتا ۽ 6 ڏينهن پوء',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 هفتا 1 ڪلاڪ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'هڪ ڪلاڪ پوء',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ڏينهن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ڏينهن 3 ڪلاڪ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SdInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SdInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sd_IN'; // Sindhi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سڀاڻي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڇنڇر اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آرتوارُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سومرُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'منگلُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ٻُڌرُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'وسپت اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جُمو اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگلُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ٻُڌرُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'وسپت اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جُمو اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ڇنڇر اڳين هفتي تي 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'گزريل هفتي آرتوارُ تي 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڪالهه 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اڄ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اڄ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'سڀاڻي 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگلُ اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ڪالهه 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڪالهه 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي منگلُ تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي سومرُ تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي آرتوارُ تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي ڇنڇر تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي جُمو تي 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'گزريل هفتي وسپت تي 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'گزريل هفتي ٻُڌرُ تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'گزريل هفتي جُمو تي 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 صبح CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 صبح, 12:00 صبح',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 صبح, 1:30 صبح',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 صبح, 2:00 صبح',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 صبح, 6:00 صبح',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 صبح, 10:00 صبح',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 شام, 12:00 شام',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 شام, 5:00 شام',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 شام, 9:30 شام',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 شام, 11:00 شام',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سيڪنڊ اڳ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 منٽ اڳ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 منٽ اڳ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 منٽ اڳ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 منٽ اڳ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ڪلاڪ اڳ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ڏينهن اڳ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ڏينهن اڳ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ڏينهن اڳ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ڏينهن اڳ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 هفتا اڳ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 هفتا اڳ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 هفتا اڳ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 هفتا اڳ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 مهينا اڳ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 مهينا اڳ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 مهينا اڳ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 مهينا اڳ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 سال اڳ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 سال اڳ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 سال اڳ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 سال اڳ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 سيڪنڊ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 سيڪنڊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سيڪنڊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سيڪنڊ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 منٽ 1 سيڪنڊ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 سال 3 مهينا 1 ڏينهن 1 سيڪنڊ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سال پوء',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 مهينا اڳ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 سال 3 مهينا 1 ڏينهن 1 سيڪنڊ اڳ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 هفتا 10 ڪلاڪ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 هفتا 6 ڏينهن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 هفتا 6 ڏينهن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 هفتا ۽ 6 ڏينهن پوء',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 هفتا 1 ڪلاڪ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'هڪ ڪلاڪ پوء',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ڏينهن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ڏينهن 3 ڪلاڪ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sd'; // Sindhi\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سڀاڻي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڇنڇر اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آچر اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سومر اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اڱارو اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اربع اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'خميس اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمع اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'اڱارو اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'اربع اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'خميس اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمع اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ڇنڇر اڳين هفتي تي 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'گزريل هفتي آچر تي 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڪالهه 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'اڄ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اڄ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'سڀاڻي 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'اڱارو اڳين هفتي تي 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ڪالهه 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ڪالهه 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي اڱارو تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي سومر تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي آچر تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي ڇنڇر تي 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گزريل هفتي جمع تي 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'گزريل هفتي خميس تي 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'گزريل هفتي اربع تي 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'گزريل هفتي جمع تي 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 صبح CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 صبح, 12:00 صبح',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 صبح, 1:30 صبح',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 صبح, 2:00 صبح',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 صبح, 6:00 صبح',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 صبح, 10:00 صبح',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 شام, 12:00 شام',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 شام, 5:00 شام',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 شام, 9:30 شام',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 شام, 11:00 شام',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سيڪنڊ اڳ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سيڪنڊ اڳ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 منٽ اڳ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 منٽ اڳ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 منٽ اڳ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 منٽ اڳ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ڪلاڪ اڳ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ڪلاڪ اڳ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ڏينهن اڳ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ڏينهن اڳ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ڏينهن اڳ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ڏينهن اڳ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 هفتا اڳ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 هفتا اڳ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 هفتا اڳ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 هفتا اڳ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 مهينا اڳ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 مهينا اڳ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 مهينا اڳ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 مهينا اڳ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 سال اڳ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 سال اڳ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 سال اڳ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 سال اڳ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 سيڪنڊ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 سيڪنڊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سيڪنڊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سيڪنڊ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 سيڪنڊ پوء',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 منٽ 1 سيڪنڊ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 سال 3 مهينا 1 ڏينهن 1 سيڪنڊ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سال پوء',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 مهينا اڳ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 سال 3 مهينا 1 ڏينهن 1 سيڪنڊ اڳ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 هفتا 10 ڪلاڪ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 هفتا 6 ڏينهن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 هفتا 6 ڏينهن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 هفتا ۽ 6 ڏينهن پوء',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 هفتا 1 ڪلاڪ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'هڪ ڪلاڪ پوء',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ڏينهن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ڏينهن 3 ڪلاڪ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SeFiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SeFiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'se_FI'; // NorthernSami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ihttin ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lávvordat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mánnodat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'disdat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'disdat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lávvordat ti 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ovddit sotnabeaivi ti 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'otne ti 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'otne ti 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ihttin ti 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'disdat ti 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit disdat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit mánnodat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit lávvordat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ovddit duorastat ti 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ovddit gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 i CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 i, 12:00 i',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 i, 1:30 i',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 i, 2:00 i',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 i, 6:00 i',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 i, 10:00 i',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 e, 12:00 e',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 e, 5:00 e',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 e, 9:30 e',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 e, 11:00 e',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'maŋit 1 sekunddat',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'maŋit 1 s.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'maŋit 2 sekunddat',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'maŋit 2 s.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'maŋit 1 minuhta',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'maŋit 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'maŋit 2 minuhtat',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'maŋit 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'maŋit 1 diimmu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'maŋit 1 d.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'maŋit 2 diimmut',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'maŋit 2 d.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'maŋit 1 beaivi',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'maŋit 1 b.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'maŋit 2 beaivvit',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'maŋit 2 b.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'maŋit 1 vahkku',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'maŋit 1 v.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'maŋit 2 vahkku',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'maŋit 2 v.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'maŋit 1 mánnu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'maŋit 1 mán.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'maŋit 2 mánut',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'maŋit 2 mán.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'maŋit 1 jahki',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'maŋit 1 j.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'maŋit 2 jagit',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'maŋit 2 j.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunddat geažes',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s. geažes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunddat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunddat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s. geažes',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuhta 1 sekunddat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jagit geažes',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'maŋit 5 mán.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'maŋit 2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vahkku 10 diimmut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vahkku ja 6 beaivvit geažes',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vahkku 1 diimmu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'okta diimmu geažes',\n        // CarbonInterval::days(2)->forHumans()\n        '2 beaivvit',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 b. 3 d.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SeNoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SeNoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'se_NO'; // NorthernSami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ihttin ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lávvardat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vuossárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lávvardat ti 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ovddit sotnabeaivi ti 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'otne ti 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'otne ti 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ihttin ti 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit vuossárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit lávvardat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ovddit duorastat ti 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ovddit gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 i.b. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 i.b., 12:00 i.b.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 i.b., 1:30 i.b.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 i.b., 2:00 i.b.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 i.b., 6:00 i.b.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 i.b., 10:00 i.b.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 e.b., 12:00 e.b.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 e.b., 5:00 e.b.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 e.b., 9:30 e.b.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 e.b., 11:00 e.b.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'maŋit 1 sekunddat',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'maŋit 1 s.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'maŋit 2 sekunddat',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'maŋit 2 s.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'maŋit 1 minuhta',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'maŋit 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'maŋit 2 minuhtat',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'maŋit 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'maŋit 1 diimmu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'maŋit 1 d.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'maŋit 2 diimmut',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'maŋit 2 d.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'maŋit 1 beaivi',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'maŋit 1 b.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'maŋit 2 beaivvit',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'maŋit 2 b.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'maŋit 1 vahkku',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'maŋit 1 v.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'maŋit 2 vahkku',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'maŋit 2 v.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'maŋit 1 mánnu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'maŋit 1 mán.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'maŋit 2 mánut',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'maŋit 2 mán.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'maŋit 1 jahki',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'maŋit 1 j.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'maŋit 2 jagit',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'maŋit 2 j.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunddat geažes',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s. geažes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunddat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunddat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s. geažes',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuhta 1 sekunddat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jagit geažes',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'maŋit 5 mán.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'maŋit 2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vahkku 10 diimmut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vahkku ja 6 beaivvit geažes',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vahkku 1 diimmu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'okta diimmu geažes',\n        // CarbonInterval::days(2)->forHumans()\n        '2 beaivvit',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 b. 3 d.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SeSeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SeSeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'se_SE'; // NorthernSami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ihttin ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lávvardat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vuossárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lávvardat ti 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ovddit sotnabeaivi ti 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'otne ti 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'otne ti 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ihttin ti 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit vuossárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit lávvardat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ovddit duorastat ti 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ovddit gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 i.b. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 i.b., 12:00 i.b.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 i.b., 1:30 i.b.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 i.b., 2:00 i.b.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 i.b., 6:00 i.b.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 i.b., 10:00 i.b.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 e.b., 12:00 e.b.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 e.b., 5:00 e.b.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 e.b., 9:30 e.b.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 e.b., 11:00 e.b.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'maŋit 1 sekunddat',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'maŋit 1 s.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'maŋit 2 sekunddat',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'maŋit 2 s.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'maŋit 1 minuhta',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'maŋit 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'maŋit 2 minuhtat',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'maŋit 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'maŋit 1 diimmu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'maŋit 1 d.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'maŋit 2 diimmut',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'maŋit 2 d.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'maŋit 1 beaivi',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'maŋit 1 b.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'maŋit 2 beaivvit',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'maŋit 2 b.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'maŋit 1 vahkku',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'maŋit 1 v.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'maŋit 2 vahkku',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'maŋit 2 v.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'maŋit 1 mánnu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'maŋit 1 mán.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'maŋit 2 mánut',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'maŋit 2 mán.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'maŋit 1 jahki',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'maŋit 1 j.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'maŋit 2 jagit',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'maŋit 2 j.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunddat geažes',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s. geažes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunddat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunddat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s. geažes',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuhta 1 sekunddat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jagit geažes',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'maŋit 5 mán.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'maŋit 2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vahkku 10 diimmut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vahkku ja 6 beaivvit geažes',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vahkku 1 diimmu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'okta diimmu geažes',\n        // CarbonInterval::days(2)->forHumans()\n        '2 beaivvit',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 b. 3 d.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'se'; // NorthernSami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ihttin ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lávvardat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vuossárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'duorastat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'bearjadat ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lávvardat ti 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ovddit sotnabeaivi ti 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'otne ti 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'otne ti 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ihttin ti 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ikte ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit maŋŋebárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit vuossárga ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit sotnabeaivi ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit lávvardat ti 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ovddit duorastat ti 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ovddit gaskavahkku ti 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ovddit bearjadat ti 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 i.b. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 i.b., 12:00 i.b.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 i.b., 1:30 i.b.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 i.b., 2:00 i.b.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 i.b., 6:00 i.b.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 i.b., 10:00 i.b.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 e.b., 12:00 e.b.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 e.b., 5:00 e.b.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 e.b., 9:30 e.b.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 e.b., 11:00 e.b.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'maŋit 1 sekunddat',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'maŋit 1 s.',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'maŋit 2 sekunddat',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'maŋit 2 s.',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'maŋit 1 minuhta',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'maŋit 1 min.',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'maŋit 2 minuhtat',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'maŋit 2 min.',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'maŋit 1 diimmu',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'maŋit 1 d.',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'maŋit 2 diimmut',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'maŋit 2 d.',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'maŋit 1 beaivi',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'maŋit 1 b.',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'maŋit 2 beaivvit',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'maŋit 2 b.',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'maŋit 1 vahkku',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'maŋit 1 v.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'maŋit 2 vahkku',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'maŋit 2 v.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'maŋit 1 mánnu',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'maŋit 1 mán.',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'maŋit 2 mánut',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'maŋit 2 mán.',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'maŋit 1 jahki',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'maŋit 1 j.',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'maŋit 2 jagit',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'maŋit 2 j.',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunddat geažes',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 s. geažes',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunddat',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunddat',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 s. geažes',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuhta 1 sekunddat',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jagit geažes',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'maŋit 5 mán.',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'maŋit 2 j. 3 mán. 1 b. 1 s.',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vahkku 10 diimmut',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vahkku 6 beaivvit',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vahkku ja 6 beaivvit geažes',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vahkku 1 diimmu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'okta diimmu geažes',\n        // CarbonInterval::days(2)->forHumans()\n        '2 beaivvit',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 b. 3 d.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SehTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SehTest extends LocalizationTestCase\n{\n    public const LOCALE = 'seh'; // Sena\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabudu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dimingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chiposi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chipiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chitatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Chinai at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Chishanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chipiri at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chitatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chinai at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chishanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabudu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Dimingu at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chipiri at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chipiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chiposi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Dimingu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabudu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chishanu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Chinai at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Chitatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Chishanu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SesTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ses'; // Koyraboro Senni\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asibti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atinni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Alzuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alzuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asibti at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Alhadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atalaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atinni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asibti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alzuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Alzuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 adduha CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Adduha, 12:00 adduha',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Adduha, 1:30 adduha',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Adduha, 2:00 adduha',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Adduha, 6:00 adduha',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Adduha, 10:00 adduha',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Aluula, 12:00 aluula',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Aluula, 5:00 aluula',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Aluula, 9:30 aluula',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Aluula, 11:00 aluula',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ihinkante ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ihinkante ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ihinkante ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ihinkante ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 zarbu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 zarbu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 zarbu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 zarbu ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ɲaajin ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ɲaajin ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ɲaajin ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ɲaajin ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zaari ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 zaari ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zaari ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 zaari ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 jirbiiyye ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 jirbiiyye ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 jirbiiyye ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 jirbiiyye ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 alaada ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 alaada ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 alaada ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 alaada ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jiiri ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 jiiri ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jiiri ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 jiiri ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ihinkante from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ihinkante from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ihinkante after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ihinkante after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ihinkante before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ihinkante before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ihinkante',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ihinkante',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ihinkante',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ihinkante',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ihinkante from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 zarbu 1 ihinkante',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 jiiri 3 alaada 1 zaari 1 ihinkante',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jiiri from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 alaada ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 jiiri 3 alaada 1 zaari 1 ihinkante ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 jirbiiyye 10 ɲaajin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 jirbiiyye 6 zaari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 jirbiiyye 6 zaari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 jirbiiyye and 6 zaari from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 jirbiiyye 1 ɲaajin',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ɲaajin from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zaari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 zaari 3 ɲaajin',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sg'; // Sango\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lâyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bikua-ôko at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bïkua-ûse at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bïkua-ptâ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bïkua-usïö at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Bïkua-okü at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Lâpôsö at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bïkua-ptâ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bïkua-usïö at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bïkua-okü at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lâpôsö at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lâyenga at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Bikua-ôko at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Bïkua-ptâ at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bïkua-ptâ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bïkua-ûse at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Bikua-ôko at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lâyenga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lâpôsö at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Bïkua-okü at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Bïkua-usïö at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Lâpôsö at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 nd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ND, 12:00 nd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ND, 1:30 nd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ND, 2:00 nd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ND, 6:00 nd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ND, 10:00 nd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 LK, 12:00 lk',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 LK, 5:00 lk',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 LK, 9:30 lk',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 LK, 11:00 lk',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 bïkua-ôko ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 bïkua-ôko ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 bïkua-ôko ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 bïkua-ôko ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 yângâködörö ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 yângâködörö ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 yângâködörö ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 yângâködörö ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ziggawâ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ziggawâ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ziggawâ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ziggawâ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 bïkua-okü ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 bïkua-okü ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 bïkua-okü ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 bïkua-okü ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Nze tî ngu ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Nze tî ngu ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Nze tî ngu ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Nze tî ngu ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 dā ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 dā ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 dā ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 dā ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 bïkua-ôko from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 bïkua-ôko from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 bïkua-ôko after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 bïkua-ôko after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 bïkua-ôko before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 bïkua-ôko before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 bïkua-ôko',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 bïkua-ôko',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 bïkua-ôko',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 bïkua-ôko',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 bïkua-ôko from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 bïkua-ôko',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 dā 3 Nze tî ngu 1 ziggawâ 1 bïkua-ôko',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 dā from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Nze tî ngu ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 dā 3 Nze tî ngu 1 ziggawâ 1 bïkua-ôko ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 bïkua-okü 10 yângâködörö',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 bïkua-okü 6 ziggawâ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 bïkua-okü 6 ziggawâ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 bïkua-okü and 6 ziggawâ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 bïkua-okü 1 yângâködörö',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 yângâködörö from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ziggawâ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ziggawâ 3 yângâködörö',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SgsLtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SgsLtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sgs_LT'; // Samogitian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'nedielės dëna at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'panedielis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sereda at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'četvergs at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sereda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'četvergs at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobata at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last nedielės dëna at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last panedielis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last nedielės dëna at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last četvergs at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last sereda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Sekondė ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Sekondė ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Sekondė ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Sekondė ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mažos ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mažos ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mažos ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mažos ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 adīna ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 adīna ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 adīna ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 adīna ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dīna ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dīna ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dīna ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dīna ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 nedielė ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 nedielė ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 nedielė ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 nedielė ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mienou ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mienou ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mienou ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mienou ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 metā ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 metā ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 metā ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 metā ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Sekondė from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Sekondė from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekondė after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sekondė after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekondė before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sekondė before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekondė',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekondė',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekondė',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekondė',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Sekondė from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mažos 1 Sekondė',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 metā 3 mienou 1 dīna 1 Sekondė',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 metā from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mienou ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 metā 3 mienou 1 dīna 1 Sekondė ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 nedielė 10 adīna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nedielė 6 dīna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nedielė 6 dīna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 nedielė and 6 dīna from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 nedielė 1 adīna',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 adīna from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dīna',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dīna 3 adīna',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SgsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SgsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sgs'; // Samogitian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'nedielės dëna at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'panedielis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sereda at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'četvergs at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sereda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'četvergs at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobata at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last nedielės dëna at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last oterninks at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last panedielis at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last nedielės dëna at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobata at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last četvergs at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last sereda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last petnīčė at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Sekondė ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Sekondė ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Sekondė ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Sekondė ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 mažos ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 mažos ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 mažos ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 mažos ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 adīna ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 adīna ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 adīna ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 adīna ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dīna ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dīna ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dīna ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dīna ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 nedielė ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 nedielė ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 nedielė ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 nedielė ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mienou ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mienou ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mienou ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mienou ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 metā ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 metā ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 metā ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 metā ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Sekondė from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Sekondė from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sekondė after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sekondė after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sekondė before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sekondė before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sekondė',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sekondė',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sekondė',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sekondė',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Sekondė from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 mažos 1 Sekondė',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 metā 3 mienou 1 dīna 1 Sekondė',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 metā from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mienou ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 metā 3 mienou 1 dīna 1 Sekondė ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 nedielė 10 adīna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nedielė 6 dīna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 nedielė 6 dīna',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 nedielė and 6 dīna from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 nedielė 1 adīna',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 adīna from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dīna',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dīna 3 adīna',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sh'; // Serbo Croatian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Subota at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Nedelja at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Ponedeljak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Utorak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Sreda at 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Četvrtak at 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Petak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Utorak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Sreda at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Četvrtak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Petak at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Subota at 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Nedelja at 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Utorak at 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Utorak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Ponedeljak at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Nedelja at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Subota at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Petak at 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Četvrtak at 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Sreda at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Petak at 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 pre podne CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 pre podne, 12:00 pre podne',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 pre podne, 1:30 pre podne',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 pre podne, 2:00 pre podne',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 pre podne, 6:00 pre podne',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 pre podne, 10:00 pre podne',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 po podne, 12:00 po podne',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 po podne, 5:00 po podne',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 po podne, 9:30 po podne',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 po podne, 11:00 po podne',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekund',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 s.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 s.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelja',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 n.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 n.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 m.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 m.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godina',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 s.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund raniјe',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 s. raniјe',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 s.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 s.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 s.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 m. 1 d. 1 s.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 m.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 m. 1 d. 1 s.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelja i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShiLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShiLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shi_Latn'; // Tachelhit\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asiḍyas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asamas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aynas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asinas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'akṛas at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'akwas at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'asimwas at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asinas at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'akṛas at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'akwas at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asimwas at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asiḍyas at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last asamas at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asinas at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last asinas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aynas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last asamas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last asiḍyas at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last asimwas at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last akwas at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last akṛas at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last asimwas at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 tifawt CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 tifawt, 12:00 tifawt',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 tifawt, 1:30 tifawt',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 tifawt, 2:00 tifawt',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 tifawt, 6:00 tifawt',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 tifawt, 10:00 tifawt',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 tadggʷat, 12:00 tadggʷat',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 tadggʷat, 5:00 tadggʷat',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 tadggʷat, 9:30 tadggʷat',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 tadggʷat, 11:00 tadggʷat',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sin ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 agur ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 agur ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 agur ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 agur ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 urɣ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 urɣ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 urɣ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 urɣ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ass ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ass ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ass ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ass ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 imalass ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 imalass ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 imalass ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 imalass ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ayyur ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ayyur ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ayyur ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ayyur ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 aseggwas ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 aseggwas ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 aseggwas ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 aseggwas ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sin from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sin from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sin after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sin after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sin before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sin before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sin',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sin',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sin from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 agur 1 sin',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 aseggwas 3 ayyur 1 ass 1 sin',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 aseggwas from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ayyur ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 aseggwas 3 ayyur 1 ass 1 sin ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 imalass 10 urɣ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ass',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ass',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 imalass and 6 ass from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 imalass 1 urɣ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 urɣ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ass',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ass 3 urɣ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shi'; // Tachelhit\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴰⵎⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵢⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⴽⵕⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ⴰⴽⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⴽⵕⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⴽⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ⴰⵙⴰⵎⴰⵙ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵢⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵙⴰⵎⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵙⵉⴹⵢⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ⴰⴽⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ⴰⴽⵕⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ⵜⵉⴼⴰⵡⵜ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ⵜⵉⴼⴰⵡⵜ, 12:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ⵜⵉⴼⴰⵡⵜ, 1:30 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ⵜⵉⴼⴰⵡⵜ, 2:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ⵜⵉⴼⴰⵡⵜ, 6:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ⵜⵉⴼⴰⵡⵜ, 10:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 12:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 5:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ⵜⴰⴷⴳⴳⵯⴰⵜ, 9:30 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 11:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sin ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 urɣ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 urɣ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 urɣ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 urɣ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ass ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ass ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ass ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ass ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 imalass ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 imalass ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 imalass ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 imalass ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ayyur ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ayyur ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ayyur ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ayyur ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 aseggwas ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 aseggwas ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 aseggwas ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 aseggwas ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sin from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sin from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sin after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sin after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sin before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sin before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sin',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sin',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sin from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ⴰⵎⵥⵉ 1 sin',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 aseggwas 3 ayyur 1 ass 1 sin',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 aseggwas from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ayyur ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 aseggwas 3 ayyur 1 ass 1 sin ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 imalass 10 urɣ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ass',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ass',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 imalass and 6 ass from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 imalass 1 urɣ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 urɣ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ass',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ass 3 urɣ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShiTfngTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShiTfngTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shi_Tfng'; // Tachelhit\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴰⵎⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵢⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⴽⵕⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ⴰⴽⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⴽⵕⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⴽⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ⴰⵙⴰⵎⴰⵙ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵙⵉⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵢⵏⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵙⴰⵎⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⴰⵙⵉⴹⵢⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ⴰⴽⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ⴰⴽⵕⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ⵙⵉⵎⵡⴰⵙ at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 2nd',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ⵜⵉⴼⴰⵡⵜ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ⵜⵉⴼⴰⵡⵜ, 12:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ⵜⵉⴼⴰⵡⵜ, 1:30 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ⵜⵉⴼⴰⵡⵜ, 2:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ⵜⵉⴼⴰⵡⵜ, 6:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ⵜⵉⴼⴰⵡⵜ, 10:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 12:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 5:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ⵜⴰⴷⴳⴳⵯⴰⵜ, 9:30 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 11:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sin ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sin ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sin ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ⴰⵎⵥⵉ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 urɣ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 urɣ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 urɣ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 urɣ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ass ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ass ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ass ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ass ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 imalass ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 imalass ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 imalass ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 imalass ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ayyur ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ayyur ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ayyur ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ayyur ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 aseggwas ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 aseggwas ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 aseggwas ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 aseggwas ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sin from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sin from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sin after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sin after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sin before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sin before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sin',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sin',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sin',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sin from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ⴰⵎⵥⵉ 1 sin',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 aseggwas 3 ayyur 1 ass 1 sin',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 aseggwas from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ayyur ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 aseggwas 3 ayyur 1 ass 1 sin ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 imalass 10 urɣ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ass',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ass',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 imalass and 6 ass from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 imalass 1 urɣ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 urɣ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ass',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ass 3 urɣ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShnMmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShnMmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shn_MM'; // Shan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းသဝ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းဢႃးတိတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းၸၼ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းပူတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ဝၼ်းၽတ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းပူတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းၽတ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းသဝ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ဝၼ်းဢႃးတိတ်ႉ at 8:49 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းၸၼ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းဢႃးတိတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းသဝ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ဝၼ်းၽတ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ဝၼ်းပူတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ၵၢင်ၼႂ် CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ၵၢင်ၼႂ်, 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ၵၢင်ၼႂ်, 1:30 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ၵၢင်ၼႂ်, 2:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ၵၢင်ၼႂ်, 6:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ၵၢင်ၼႂ်, 10:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 တၢမ်းၶမ်ႈ, 12:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 တၢမ်းၶမ်ႈ, 5:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 တၢမ်းၶမ်ႈ, 9:30 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 တၢမ်းၶမ်ႈ, 11:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ເດັກ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ເດັກ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ເດັກ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ເດັກ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ຕີ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ຕີ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ຕີ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ຕີ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ກາງວັນ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ກາງວັນ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ກາງວັນ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ກາງວັນ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ဝၼ်း ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ဝၼ်း ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ဝၼ်း ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ဝၼ်း ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 လိူၼ် ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 လိူၼ် ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 လိူၼ် ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 လိူၼ် ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ပီ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ပီ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ပီ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ပီ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ဢိုၼ်ႇ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ဢိုၼ်ႇ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ဢိုၼ်ႇ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ဢိုၼ်ႇ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ဢိုၼ်ႇ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ဢိုၼ်ႇ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ဢိုၼ်ႇ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ဢိုၼ်ႇ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ဢိုၼ်ႇ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ဢိုၼ်ႇ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ဢိုၼ်ႇ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ເດັກ 1 ဢိုၼ်ႇ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ပီ 3 လိူၼ် 1 ກາງວັນ 1 ဢိုၼ်ႇ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ပီ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 လိူၼ် ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ပီ 3 လိူၼ် 1 ກາງວັນ 1 ဢိုၼ်ႇ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ဝၼ်း 10 ຕີ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ဝၼ်း 6 ກາງວັນ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ဝၼ်း 6 ກາງວັນ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ဝၼ်း and 6 ກາງວັນ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ဝၼ်း 1 ຕີ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ຕີ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ກາງວັນ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ກາງວັນ 3 ຕີ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shn'; // Shan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းသဝ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းဢႃးတိတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းၸၼ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ဝၼ်းပူတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ဝၼ်းၽတ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းပူတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းၽတ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်းသဝ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ဝၼ်းဢႃးတိတ်ႉ at 8:49 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်း​ဢၢင်း​ၵၢၼ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းၸၼ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းဢႃးတိတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းသဝ် at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ဝၼ်းၽတ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ဝၼ်းပူတ်ႉ at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ဝၼ်းသုၵ်း at 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ၵၢင်ၼႂ် CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ၵၢင်ၼႂ်, 12:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ၵၢင်ၼႂ်, 1:30 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ၵၢင်ၼႂ်, 2:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ၵၢင်ၼႂ်, 6:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ၵၢင်ၼႂ်, 10:00 ၵၢင်ၼႂ်',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 တၢမ်းၶမ်ႈ, 12:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 တၢမ်းၶမ်ႈ, 5:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 တၢမ်းၶမ်ႈ, 9:30 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 တၢမ်းၶမ်ႈ, 11:00 တၢမ်းၶမ်ႈ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ဢိုၼ်ႇ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ເດັກ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ເດັກ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ເດັກ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ເດັກ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ຕີ ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ຕີ ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ຕີ ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ຕີ ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ກາງວັນ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ກາງວັນ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ກາງວັນ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ກາງວັນ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ဝၼ်း ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ဝၼ်း ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ဝၼ်း ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ဝၼ်း ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 လိူၼ် ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 လိူၼ် ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 လိူၼ် ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 လိူၼ် ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ပီ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ပီ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ပီ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ပီ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ဢိုၼ်ႇ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ဢိုၼ်ႇ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ဢိုၼ်ႇ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ဢိုၼ်ႇ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ဢိုၼ်ႇ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ဢိုၼ်ႇ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ဢိုၼ်ႇ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ဢိုၼ်ႇ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ဢိုၼ်ႇ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ဢိုၼ်ႇ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ဢိုၼ်ႇ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ເດັກ 1 ဢိုၼ်ႇ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ပီ 3 လိူၼ် 1 ກາງວັນ 1 ဢိုၼ်ႇ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ပီ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 လိူၼ် ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ပီ 3 လိူၼ် 1 ກາງວັນ 1 ဢိုၼ်ႇ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ဝၼ်း 10 ຕີ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ဝၼ်း 6 ກາງວັນ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ဝၼ်း 6 ກາງວັນ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ဝၼ်း and 6 ກາງວັນ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ဝၼ်း 1 ຕີ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ຕີ from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ກາງວັນ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ກາງວັນ 3 ຕີ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShsCaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShsCaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shs_CA'; // Shuswap\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Stqmekstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sxetspesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Spetkesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Skellesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Smesesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Skellesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Smesesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Stqmekstesq̓t at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sxetspesq̓t at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Spetkesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sxetspesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Stqmekstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Smesesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Skellesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 seqwlút ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 seqwlút ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 seqwlút ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 seqwlút ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 swewll ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 swewll ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 swewll ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 swewll ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 sqlélten ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 sqlélten ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 sqlélten ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 sqlélten ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 sqlélten 3 swewll 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 sqlélten from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 swewll ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 sqlélten 3 swewll 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 seqwlút',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 seqwlút',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 seqwlút from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3 seqwlút',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ShsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ShsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'shs'; // Shuswap\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Stqmekstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sxetspesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Spetkesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Skellesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Smesesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Skellesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Smesesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Stqmekstesq̓t at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sxetspesq̓t at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Selesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Spetkesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sxetspesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Stqmekstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Smesesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Skellesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Stselkstesq̓t at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 seqwlút ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 seqwlút ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 seqwlút ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 seqwlút ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 swewll ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 swewll ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 swewll ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 swewll ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 sqlélten ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 sqlélten ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 sqlélten ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 sqlélten ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 sqlélten 3 swewll 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 sqlélten from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 swewll ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 sqlélten 3 swewll 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 seqwlút',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 seqwlút',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 seqwlút from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3 seqwlút',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SiLkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SiLkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'si_LK'; // Sinhala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'හෙට පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'සෙනසුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ඉරිදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'සඳුදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'බදාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'බ්‍රහස්පතින්දා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'බදාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'බ්‍රහස්පතින්දා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'සෙනසුරාදා පෙ.ව. 12:00ට',\n        // Carbon::now()->subDays(2)->calendar()\n        'පසුගිය ඉරිදා ප.ව. 8:49ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ඊයේ ප.ව. 10:00ට',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'අද පෙ.ව. 10:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'අද පෙ.ව. 2:00ට',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'හෙට පෙ.ව. 1:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ඊයේ පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ඊයේ පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය සඳුදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය ඉරිදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය සෙනසුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'පසුගිය බ්‍රහස්පතින්දා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'පසුගිය බදාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'පසුගිය සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 වැනි 1 වැනි 1 වැනි 1 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 වැනි 2 වැනි',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40 වැනි',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41 වැනි',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100 වැනි',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 පෙ.ව. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 පෙර වරු, 12:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 පෙර වරු, 1:30 පෙ.ව.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 පෙර වරු, 2:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 පෙර වරු, 6:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 පෙර වරු, 10:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 පස් වරු, 12:00 ප.ව.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 පස් වරු, 5:00 ප.ව.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 පස් වරු, 9:30 ප.ව.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 පස් වරු, 11:00 ප.ව.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0 වැනි',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'තත්පර 2 කට පෙර',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'තත්පර 2 කට පෙර',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'මිනිත්තු 1 කට පෙර',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'මිනිත්තු 1 කට පෙර',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'මිනිත්තු 2 කට පෙර',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'මිනිත්තු 2 කට පෙර',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'පැය 1 කට පෙර',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'පැය 1 කට පෙර',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'පැය 2 කට පෙර',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'පැය 2 කට පෙර',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'දින 1 කට පෙර',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'දින 1 කට පෙර',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'දින 2 කට පෙර',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'දින 2 කට පෙර',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'සති 1 කට පෙර',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'සති 1 කට පෙර',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'සති 2 කට පෙර',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'සති 2 කට පෙර',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'මාස 1 කට පෙර',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'මාස 1 කට පෙර',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'මාස 2 කට පෙර',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'මාස 2 කට පෙර',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'වසර 1 කට පෙර',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'වසර 1 කට පෙර',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'වසර 2 කට පෙර',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'වසර 2 කට පෙර',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'තත්පර 1 කින්',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'තත්පර 1 කින්',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'තත්පර 1 කින්',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'තත්පර 1 කින්',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'තත්පර 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'තත්පර 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'තත්පර 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'තත්පර 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'තත්පර 1 කින්',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'මිනිත්තු 1 තත්පර 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'වසර 2 මාස 3 දින 1 තත්පර 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'වසර 3 කින්',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'මාස 5 කට පෙර',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'වසර 2 මාස 3 දින 1 තත්පර 1 කට පෙර',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'සති 1 පැය 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'සති 1 දින 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'සති 1 දින 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'සති 1 දින 6 න්',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'සති 2 පැය 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'පැයක් කින්',\n        // CarbonInterval::days(2)->forHumans()\n        'දින 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'දින 1 පැය 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'si'; // Sinhala\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'හෙට පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'සෙනසුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ඉරිදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'සඳුදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'බදාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'බ්‍රහස්පතින්දා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'බදාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'බ්‍රහස්පතින්දා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'සෙනසුරාදා පෙ.ව. 12:00ට',\n        // Carbon::now()->subDays(2)->calendar()\n        'පසුගිය ඉරිදා ප.ව. 8:49ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ඊයේ ප.ව. 10:00ට',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'අද පෙ.ව. 10:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'අද පෙ.ව. 2:00ට',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'හෙට පෙ.ව. 1:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ඊයේ පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ඊයේ පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය අඟහරුවාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය සඳුදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය ඉරිදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය සෙනසුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'පසුගිය සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'පසුගිය බ්‍රහස්පතින්දා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'පසුගිය බදාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'පසුගිය සිකුරාදා පෙ.ව. 12:00ට',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 වැනි 1 වැනි 1 වැනි 1 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 වැනි 1 වැනි',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 වැනි 2 වැනි',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40 වැනි',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41 වැනි',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100 වැනි',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 පෙ.ව. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 පෙර වරු, 12:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 පෙර වරු, 1:30 පෙ.ව.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 පෙර වරු, 2:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 පෙර වරු, 6:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 පෙර වරු, 10:00 පෙ.ව.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 පස් වරු, 12:00 ප.ව.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 පස් වරු, 5:00 ප.ව.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 පස් වරු, 9:30 ප.ව.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 පස් වරු, 11:00 ප.ව.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0 වැනි',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'තත්පර 2 කට පෙර',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'තත්පර 2 කට පෙර',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'මිනිත්තු 1 කට පෙර',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'මිනිත්තු 1 කට පෙර',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'මිනිත්තු 2 කට පෙර',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'මිනිත්තු 2 කට පෙර',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'පැය 1 කට පෙර',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'පැය 1 කට පෙර',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'පැය 2 කට පෙර',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'පැය 2 කට පෙර',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'දින 1 කට පෙර',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'දින 1 කට පෙර',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'දින 2 කට පෙර',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'දින 2 කට පෙර',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'සති 1 කට පෙර',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'සති 1 කට පෙර',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'සති 2 කට පෙර',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'සති 2 කට පෙර',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'මාස 1 කට පෙර',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'මාස 1 කට පෙර',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'මාස 2 කට පෙර',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'මාස 2 කට පෙර',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'වසර 1 කට පෙර',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'වසර 1 කට පෙර',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'වසර 2 කට පෙර',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'වසර 2 කට පෙර',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'තත්පර 1 කින්',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'තත්පර 1 කින්',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'තත්පර 1 කින්',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'තත්පර 1 කින්',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'තත්පර 1 කට පෙර',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'තත්පර 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'තත්පර 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'තත්පර 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'තත්පර 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'තත්පර 1 කින්',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'මිනිත්තු 1 තත්පර 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'වසර 2 මාස 3 දින 1 තත්පර 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'වසර 3 කින්',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'මාස 5 කට පෙර',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'වසර 2 මාස 3 දින 1 තත්පර 1 කට පෙර',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'සති 1 පැය 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'සති 1 දින 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'සති 1 දින 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'සති 1 දින 6 න්',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'සති 2 පැය 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'පැයක් කින්',\n        // CarbonInterval::days(2)->forHumans()\n        'දින 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'දින 1 පැය 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SidEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SidEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sid_ET'; // Sidamo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qidaame at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sambata at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Roowe at 12:00 soodo',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Hamuse at 12:00 soodo',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Roowe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Hamuse at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qidaame at 12:00 soodo',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sambata at 8:49 hawwaro',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 hawwaro',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 soodo',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sambata at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Qidaame at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Hamuse at 12:00 soodo',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Roowe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 soodo CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 soodo, 12:00 soodo',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 soodo, 1:30 soodo',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 soodo, 2:00 soodo',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 soodo, 6:00 soodo',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 soodo, 10:00 soodo',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 hawwaro, 12:00 hawwaro',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 hawwaro, 5:00 hawwaro',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 hawwaro, 9:30 hawwaro',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 hawwaro, 11:00 hawwaro',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SidTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SidTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sid'; // Sidamo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Qidaame at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sambata at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Roowe at 12:00 soodo',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Hamuse at 12:00 soodo',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Roowe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Hamuse at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Qidaame at 12:00 soodo',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sambata at 8:49 hawwaro',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 hawwaro',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 soodo',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Maakisanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sanyo at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sambata at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Qidaame at 12:00 soodo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Hamuse at 12:00 soodo',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Roowe at 12:00 soodo',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Arbe at 12:00 soodo',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 soodo CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 soodo, 12:00 soodo',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 soodo, 1:30 soodo',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 soodo, 2:00 soodo',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 soodo, 6:00 soodo',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 soodo, 10:00 soodo',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 hawwaro, 12:00 hawwaro',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 hawwaro, 5:00 hawwaro',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 hawwaro, 9:30 hawwaro',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 hawwaro, 11:00 hawwaro',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SkSkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SkSkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sk_SK'; // Slovak\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zajtra o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobota o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'nedeľa o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pondelok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'utorok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'streda o 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'štvrtok o 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'piatok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'utorok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'streda o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'štvrtok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'piatok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobota o 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'minulá nedeľa o 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'včera o 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'dnes o 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dnes o 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'zajtra o 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'utorok o 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'včera o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'včera o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulý utorok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulý pondelok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulá nedeľa o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulá sobota o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulý piatok o 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'minulý štvrtok o 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'minulá streda o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'minulý piatok o 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 dopoludnia CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 dopoludnia, 12:00 dopoludnia',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 dopoludnia, 1:30 dopoludnia',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 dopoludnia, 2:00 dopoludnia',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 dopoludnia, 6:00 dopoludnia',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 dopoludnia, 10:00 dopoludnia',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 popoludní, 12:00 popoludní',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 popoludní, 5:00 popoludní',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 popoludní, 9:30 popoludní',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 popoludní, 11:00 popoludní',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'pred 1 sekundou',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'pred 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'pred 2 sekundami',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'pred 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'pred 1 minútou',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'pred 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'pred 2 minútami',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'pred 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'pred 1 hodinou',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'pred 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'pred 2 hodinami',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'pred 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'pred 1 dňom',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'pred 1 d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'pred 2 dňami',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'pred 2 d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'pred 1 týždňom',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'pred 1 t',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'pred 2 týždňami',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'pred 2 t',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'pred 1 mesiacom',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'pred 1 m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'pred 2 mesiacmi',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'pred 2 m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'pred 1 rokom',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'pred 1 r',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'pred 2 rokmi',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'pred 2 r',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'o 1 sekundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'o 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekundu po',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s po',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekundu pred',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s pred',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundy',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'o 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minúta 1 sekunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 r 3 m 1 d 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'o 3 roky',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'pred 5 m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'pred 2 r 3 m 1 d 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 týždeň 10 hodín',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týždeň 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týždeň 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'o 1 týždeň a 6 dní',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 týždne 1 hodina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'o hodinu',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sk'; // Slovak\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'zajtra o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobota o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'nedeľa o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pondelok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'utorok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'streda o 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'štvrtok o 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'piatok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'utorok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'streda o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'štvrtok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'piatok o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobota o 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'minulá nedeľa o 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'včera o 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'dnes o 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dnes o 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'zajtra o 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'utorok o 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'včera o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'včera o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulý utorok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulý pondelok o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulá nedeľa o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulá sobota o 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'minulý piatok o 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'minulý štvrtok o 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'minulá streda o 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'minulý piatok o 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 dopoludnia CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 dopoludnia, 12:00 dopoludnia',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 dopoludnia, 1:30 dopoludnia',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 dopoludnia, 2:00 dopoludnia',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 dopoludnia, 6:00 dopoludnia',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 dopoludnia, 10:00 dopoludnia',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 popoludní, 12:00 popoludní',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 popoludní, 5:00 popoludní',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 popoludní, 9:30 popoludní',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 popoludní, 11:00 popoludní',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'pred 1 sekundou',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'pred 1 s',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'pred 2 sekundami',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'pred 2 s',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'pred 1 minútou',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'pred 1 min',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'pred 2 minútami',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'pred 2 min',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'pred 1 hodinou',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'pred 1 h',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'pred 2 hodinami',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'pred 2 h',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'pred 1 dňom',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'pred 1 d',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'pred 2 dňami',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'pred 2 d',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'pred 1 týždňom',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'pred 1 t',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'pred 2 týždňami',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'pred 2 t',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'pred 1 mesiacom',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'pred 1 m',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'pred 2 mesiacmi',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'pred 2 m',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'pred 1 rokom',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'pred 1 r',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'pred 2 rokmi',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'pred 2 r',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'o 1 sekundu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'o 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekundu po',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s po',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekundu pred',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s pred',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekundy',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'o 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minúta 1 sekunda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 r 3 m 1 d 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'o 3 roky',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'pred 5 m',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'pred 2 r 3 m 1 d 1 s',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 týždeň 10 hodín',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týždeň 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 týždeň 6 dní',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'o 1 týždeň a 6 dní',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 týždne 1 hodina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'o hodinu',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dni',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SlSiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SlSiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sl_SI'; // Slovenian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'jutri ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sobota ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'nedelja ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'ponedeljek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'torek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'sreda ob 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'četrtek ob 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'petek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'torek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'sreda ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'četrtek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'petek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sobota ob 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'preteklo nedeljo ob 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'včeraj ob 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danes ob 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danes ob 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'jutri ob 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'torek ob 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'včeraj ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'včeraj ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'pretekli torek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'pretekli ponedeljek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'preteklo nedeljo ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'preteklo soboto ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'pretekli petek ob 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'pretekli četrtek ob 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'preteklo sredo ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'pretekli petek ob 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 dopoldan CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 dopoldan, 12:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 dopoldan, 1:30 dopoldan',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 dopoldan, 2:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 dopoldan, 6:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 dopoldan, 10:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 popoldan, 12:00 popoldan',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 popoldan, 5:00 popoldan',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 popoldan, 9:30 popoldan',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 popoldan, 11:00 popoldan',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pred 1 sekundo',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pred 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pred 2 sekundama',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pred 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pred 1 minuto',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pred 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pred 2 minutama',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pred 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pred 1 uro',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pred 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pred 2 urama',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pred 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pred 1 dnem',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pred 1 dnem',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pred 2 dnevoma',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pred 2 dnevoma',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pred 1 tednom',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pred 1 ted.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pred 2 tednoma',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pred 2 ted.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pred 1 mesecem',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pred 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pred 2 mesecema',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pred 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pred 1 letom',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pred 1 letom',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pred 2 letoma',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pred 2 letoma',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'čez 1 sekundo',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'čez 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekunda kasneje',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 s kasneje',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekunda prej',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 s prej',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekunda',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekundi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'čez 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minuta 1 sekunda',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 leti 3 mes. 1 dan 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'čez 3 leta',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pred 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pred 2 letoma 3 mes. 1 dnem 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 teden 10 ur',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 teden 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 teden 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'čez 1 teden in 6 dni',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 tedna 1 ura',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'čez 1 uro',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dni',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 dan 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sl'; // Slovene\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'jutri ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sobota ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'nedelja ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'ponedeljek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'torek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'sreda ob 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'četrtek ob 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'petek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'torek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'sreda ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'četrtek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'petek ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'sobota ob 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'preteklo nedeljo ob 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'včeraj ob 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danes ob 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danes ob 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'jutri ob 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'torek ob 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'včeraj ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'včeraj ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'pretekli torek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'pretekli ponedeljek ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'preteklo nedeljo ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'preteklo soboto ob 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'pretekli petek ob 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'pretekli četrtek ob 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'preteklo sredo ob 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'pretekli petek ob 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 dopoldan CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 dopoldan, 12:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 dopoldan, 1:30 dopoldan',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 dopoldan, 2:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 dopoldan, 6:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 dopoldan, 10:00 dopoldan',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 popoldan, 12:00 popoldan',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 popoldan, 5:00 popoldan',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 popoldan, 9:30 popoldan',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 popoldan, 11:00 popoldan',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pred 1 sekundo',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pred 1 s',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pred 2 sekundama',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pred 2 s',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pred 1 minuto',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pred 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pred 2 minutama',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pred 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pred 1 uro',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pred 1 h',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pred 2 urama',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pred 2 h',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pred 1 dnem',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pred 1 dnem',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pred 2 dnevoma',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pred 2 dnevoma',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pred 1 tednom',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pred 1 ted.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pred 2 tednoma',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pred 2 ted.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pred 1 mesecem',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pred 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pred 2 mesecema',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pred 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pred 1 letom',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pred 1 letom',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pred 2 letoma',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pred 2 letoma',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'čez 1 sekundo',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'čez 1 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekunda kasneje',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 s kasneje',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekunda prej',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 s prej',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekunda',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekundi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'čez 1 s',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minuta 1 sekunda',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 leti 3 mes. 1 dan 1 s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'čez 3 leta',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pred 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pred 2 letoma 3 mes. 1 dnem 1 s',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 teden 10 ur',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 teden 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 teden 6 dni',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'čez 1 teden in 6 dni',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 tedna 1 ura',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'čez 1 uro',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dni',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 dan 3 h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sm'; // Samoan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso To\\'ana\\'i at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Sa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Gafua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Lulu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aso Tofi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Lulu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Tofi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso To\\'ana\\'i at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Aso Sa at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Gafua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Sa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso To\\'ana\\'i at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aso Tofi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Aso Lulu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 lua ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 lua ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 lua ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 lua ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 itiiti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 itiiti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 itiiti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 itiiti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uati ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 uati ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uati ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 uati ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 aso ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 aso ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 aso ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 aso ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vaiaso ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vaiaso ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vaiaso ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vaiaso ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 māsina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 māsina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 māsina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 māsina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tausaga ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tausaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tausaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tausaga ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 lua from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 lua from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 lua after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 lua after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 lua before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 lua before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 lua',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 lua',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 lua',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 lua',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 lua from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 itiiti 1 lua',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tausaga 3 māsina 1 aso 1 lua',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tausaga from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 māsina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tausaga 3 māsina 1 aso 1 lua ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vaiaso 10 uati',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vaiaso 6 aso',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vaiaso 6 aso',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vaiaso and 6 aso from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vaiaso 1 uati',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 uati from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 aso',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 aso 3 uati',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SmWsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SmWsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sm_WS'; // Samoan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso To\\'ana\\'i at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Sa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Gafua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aso Lulu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Aso Tofi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Lulu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Tofi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso To\\'ana\\'i at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Aso Sa at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Lua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Gafua at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Sa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso To\\'ana\\'i at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Aso Tofi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Aso Lulu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Aso Farail at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 lua ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 lua ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 lua ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 lua ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 itiiti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 itiiti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 itiiti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 itiiti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 uati ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 uati ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 uati ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 uati ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 aso ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 aso ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 aso ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 aso ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vaiaso ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vaiaso ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vaiaso ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vaiaso ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 māsina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 māsina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 māsina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 māsina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 tausaga ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 tausaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 tausaga ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 tausaga ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 lua from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 lua from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 lua after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 lua after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 lua before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 lua before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 lua',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 lua',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 lua',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 lua',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 lua from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 itiiti 1 lua',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 tausaga 3 māsina 1 aso 1 lua',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 tausaga from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 māsina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 tausaga 3 māsina 1 aso 1 lua ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vaiaso 10 uati',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vaiaso 6 aso',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vaiaso 6 aso',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vaiaso and 6 aso from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vaiaso 1 uati',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 uati from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 aso',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 aso 3 uati',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SmnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SmnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'smn'; // Inari Sami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lávurduv at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pasepeeivi at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'vuossaargâ at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'majebaargâ at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'koskoho at 0.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tuorâstuv at 0.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vástuppeeivi at 0.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'majebaargâ at 0.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'koskoho at 0.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tuorâstuv at 0.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vástuppeeivi at 0.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lávurduv at 0.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last pasepeeivi at 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'majebaargâ at 0.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last majebaargâ at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vuossaargâ at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pasepeeivi at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lávurduv at 0.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vástuppeeivi at 0.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tuorâstuv at 0.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last koskoho at 0.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vástuppeeivi at 0.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ip. CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ip., 12:00 ip.',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ip., 1:30 ip.',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ip., 2:00 ip.',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ip., 6:00 ip.',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ip., 10:00 ip.',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ep., 12:00 ep.',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ep., 5:00 ep.',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ep., 9:30 ep.',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ep., 11:00 ep.',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 nubbe ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 nubbe ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 nubbe ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 nubbe ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 miinut ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 miinut ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 miinut ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 miinut ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 äigi ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 äigi ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 äigi ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 äigi ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 peivi ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 peivi ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 peivi ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 peivi ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 okko ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 okko ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 okko ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 okko ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mánuppaje ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mánuppaje ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mánuppaje ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mánuppaje ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ihe ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ihe ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ihe ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ihe ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 nubbe from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 nubbe from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 nubbe after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 nubbe after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 nubbe before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 nubbe before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 nubbe',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 nubbe',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 nubbe',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 nubbe',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 nubbe from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 miinut 1 nubbe',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ihe 3 mánuppaje 1 peivi 1 nubbe',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ihe from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mánuppaje ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ihe 3 mánuppaje 1 peivi 1 nubbe ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 okko 10 äigi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 okko 6 peivi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 okko 6 peivi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 okko and 6 peivi from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 okko 1 äigi',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 äigi from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 peivi',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 peivi 3 äigi',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sn'; // Shona\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mugovera at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Svondo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Muvhuro at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chipiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Chitatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'China at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Chishanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chipiri at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chitatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'China at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chishanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mugovera at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Svondo at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Chipiri at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chipiri at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Muvhuro at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Svondo at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mugovera at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Chishanu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last China at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Chitatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Chishanu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 a CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 a, 12:00 a',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 a, 1:30 a',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 a, 2:00 a',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 a, 6:00 a',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 a, 10:00 a',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 p, 12:00 p',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 p, 5:00 p',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 p, 9:30 p',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 p, 11:00 p',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'sekonzi 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'sekonzi 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'sekonzi 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'sekonzi 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minitsi 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minitsi 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minitsi 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minitsi 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'maawa 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'maawa 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'maawa 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'maawa 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'mazuva 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'mazuva 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'mazuva 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'mazuva 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'vhiki 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'vhiki 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'vhiki 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'vhiki 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'mwedzi 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'mwedzi 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'mwedzi 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'mwedzi 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'makore 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'makore 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'makore 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'makore 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekonzi 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sekonzi 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekonzi 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'sekonzi 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekonzi 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'sekonzi 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekonzi 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'sekonzi 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekonzi 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'sekonzi 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sekonzi 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minitsi 1 sekonzi 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'makore 2 mwedzi 3 mazuva 1 sekonzi 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'makore 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'mwedzi 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'makore 2 mwedzi 3 mazuva 1 sekonzi 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'vhiki 1 maawa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'vhiki 1 mazuva 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'vhiki 1 mazuva 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'vhiki 1 and mazuva 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'vhiki 2 maawa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'maawa 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'mazuva 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'mazuva 1 maawa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SoDjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SoDjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'so_DJ'; // Somali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Beri markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Axad markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Isniin markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Hore Axad Markay ahayd 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Shalay markay ahayd 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Maanta markay tahay 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Maanta markay tahay 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Beri markay tahay 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Hore Talaada Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Hore Isniin Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Hore Axad Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Hore Sabti Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Hore Khamiis Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Hore Arbaca Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1il kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2il kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1dq kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2dq kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saac kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1sc kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saac kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2sc kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 maalin kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1ml kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 maalmood kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2ml kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1is kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2is kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 bil kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1bil kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 bilood kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2bil kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 sanad kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1sn kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 sanadood kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2sn kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 ilbidhiqsi gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 ilbidhiqsi kedib',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1il kedib',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1il kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 ilbidhiqsi',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1il',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ilbidhiqsi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2il',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiiqo 1 ilbidhiqsi',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2sn 3bil 1ml 1il',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 sanadood gudahood',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5bil kahor',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2sn 3bil 1ml 1il kahor',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 isbuuc 10 saac',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 isbuuc and 6 maalmood gudahood',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 isbuuc 1 saac',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'saacad gudahood',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 maalmood',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1ml 3sc',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SoEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SoEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'so_ET'; // Somali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Beri markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Axad markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Isniin markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Hore Axad Markay ahayd 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Shalay markay ahayd 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Maanta markay tahay 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Maanta markay tahay 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Beri markay tahay 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Hore Talaada Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Hore Isniin Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Hore Axad Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Hore Sabti Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Hore Khamiis Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Hore Arbaca Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1il kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2il kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1dq kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2dq kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saac kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1sc kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saac kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2sc kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 maalin kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1ml kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 maalmood kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2ml kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1is kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2is kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 bil kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1bil kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 bilood kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2bil kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 sanad kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1sn kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 sanadood kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2sn kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 ilbidhiqsi gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 ilbidhiqsi kedib',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1il kedib',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1il kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 ilbidhiqsi',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1il',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ilbidhiqsi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2il',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiiqo 1 ilbidhiqsi',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2sn 3bil 1ml 1il',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 sanadood gudahood',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5bil kahor',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2sn 3bil 1ml 1il kahor',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 isbuuc 10 saac',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 isbuuc and 6 maalmood gudahood',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 isbuuc 1 saac',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'saacad gudahood',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 maalmood',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1ml 3sc',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SoKeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SoKeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'so_KE'; // Somali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Beri markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Axad markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Isniin markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Hore Axad Markay ahayd 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Shalay markay ahayd 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Maanta markay tahay 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Maanta markay tahay 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Beri markay tahay 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Hore Talaada Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Hore Isniin Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Hore Axad Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Hore Sabti Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Hore Khamiis Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Hore Arbaca Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1il kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2il kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1dq kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2dq kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saac kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1sc kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saac kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2sc kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 maalin kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1ml kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 maalmood kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2ml kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1is kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2is kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 bil kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1bil kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 bilood kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2bil kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 sanad kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1sn kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 sanadood kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2sn kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 ilbidhiqsi gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 ilbidhiqsi kedib',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1il kedib',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1il kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 ilbidhiqsi',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1il',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ilbidhiqsi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2il',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiiqo 1 ilbidhiqsi',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2sn 3bil 1ml 1il',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 sanadood gudahood',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5bil kahor',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2sn 3bil 1ml 1il kahor',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 isbuuc 10 saac',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 isbuuc and 6 maalmood gudahood',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 isbuuc 1 saac',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'saacad gudahood',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 maalmood',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1ml 3sc',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SoSoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SoSoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'so_SO'; // Somali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Beri markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Axad markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Isniin markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Hore Axad Markay ahayd 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Shalay markay ahayd 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Maanta markay tahay 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Maanta markay tahay 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Beri markay tahay 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Hore Talaada Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Hore Isniin Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Hore Axad Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Hore Sabti Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Hore Khamiis Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Hore Arbaca Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1il kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2il kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1dq kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2dq kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saac kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1sc kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saac kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2sc kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 maalin kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1ml kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 maalmood kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2ml kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1is kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2is kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 bil kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1bil kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 bilood kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2bil kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 sanad kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1sn kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 sanadood kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2sn kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 ilbidhiqsi gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 ilbidhiqsi kedib',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1il kedib',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1il kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 ilbidhiqsi',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1il',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ilbidhiqsi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2il',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiiqo 1 ilbidhiqsi',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2sn 3bil 1ml 1il',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 sanadood gudahood',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5bil kahor',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2sn 3bil 1ml 1il kahor',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 isbuuc 10 saac',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 isbuuc and 6 maalmood gudahood',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 isbuuc 1 saac',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'saacad gudahood',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 maalmood',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1ml 3sc',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'so'; // Somali\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Beri markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Axad markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Isniin markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Arbaca markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Khamiis markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Jimce markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Sabti markay tahay 12:00 AM',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Hore Axad Markay ahayd 8:49 PM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Shalay markay ahayd 10:00 PM',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Maanta markay tahay 10:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Maanta markay tahay 2:00 AM',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Beri markay tahay 1:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Talaada markay tahay 12:00 AM',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Shalay markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Hore Talaada Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Hore Isniin Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Hore Axad Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Hore Sabti Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Hore Khamiis Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Hore Arbaca Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Hore Jimce Markay ahayd 12:00 AM',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 2nd',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 2nd',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1il kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ilbidhiqsi kahor',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2il kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1dq kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiiqo kahor',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2dq kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 saac kahor',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1sc kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 saac kahor',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2sc kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 maalin kahor',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1ml kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 maalmood kahor',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2ml kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1is kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 isbuuc kahor',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2is kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 bil kahor',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1bil kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 bilood kahor',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2bil kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 sanad kahor',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1sn kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 sanadood kahor',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2sn kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 ilbidhiqsi gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 ilbidhiqsi kedib',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1il kedib',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 ilbidhiqsi kahor',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1il kahor',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 ilbidhiqsi',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1il',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ilbidhiqsi',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2il',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1il gudahood',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiiqo 1 ilbidhiqsi',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2sn 3bil 1ml 1il',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 sanadood gudahood',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5bil kahor',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2sn 3bil 1ml 1il kahor',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 isbuuc 10 saac',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 isbuuc 6 maalmood',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 isbuuc and 6 maalmood gudahood',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 isbuuc 1 saac',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'saacad gudahood',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 maalmood',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1ml 3sc',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SqAlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SqAlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sq_AL'; // Albanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nesër në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'e diel e kaluar në 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Sot në 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sot në 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Nesër në 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'e enjte e kaluar në 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'e mërkurë e kaluar në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PD, 12:00 pd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 PD, 1:30 pd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 PD, 2:00 pd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 PD, 6:00 pd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 PD, 10:00 pd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MD, 12:00 md',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MD, 5:00 md',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MD, 9:30 md',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MD, 11:00 md',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekondë më parë',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekonda më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutë më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. më parë',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 orë më parë',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. më parë',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 orë më parë',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. më parë',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ditë më parë',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. më parë',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ditë më parë',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 javë më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 j. më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 javë më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 j. më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 muaj më parë',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 vit më parë',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 v. më parë',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vjet më parë',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 v. më parë',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'në 1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'në 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekondë pas',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. pas',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekondë para',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. para',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekonda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'në 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutë 1 sekondë',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 v. 3 muaj 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'në 3 vjet',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 muaj më parë',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 v. 3 muaj 1 d. 1 s. më parë',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 javë 10 orë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'në 1 javë dhe 6 ditë',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 javë 1 orë',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'në një orë',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ditë',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SqMkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SqMkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sq_MK'; // Albanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nesër në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'e diel e kaluar në 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Sot në 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sot në 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Nesër në 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'e enjte e kaluar në 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'e mërkurë e kaluar në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PD, 12:00 pd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 PD, 1:30 pd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 PD, 2:00 pd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 PD, 6:00 pd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 PD, 10:00 pd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MD, 12:00 md',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MD, 5:00 md',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MD, 9:30 md',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MD, 11:00 md',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekondë më parë',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekonda më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutë më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. më parë',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 orë më parë',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. më parë',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 orë më parë',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. më parë',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ditë më parë',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. më parë',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ditë më parë',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 javë më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 j. më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 javë më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 j. më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 muaj më parë',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 vit më parë',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 v. më parë',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vjet më parë',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 v. më parë',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'në 1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'në 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekondë pas',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. pas',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekondë para',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. para',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekonda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'në 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutë 1 sekondë',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 v. 3 muaj 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'në 3 vjet',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 muaj më parë',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 v. 3 muaj 1 d. 1 s. më parë',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 javë 10 orë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'në 1 javë dhe 6 ditë',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 javë 1 orë',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'në një orë',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ditë',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sq'; // Albanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nesër në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'e diel e kaluar në 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Sot në 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sot në 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Nesër në 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'e enjte e kaluar në 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'e mërkurë e kaluar në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PD, 12:00 pd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 PD, 1:30 pd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 PD, 2:00 pd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 PD, 6:00 pd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 PD, 10:00 pd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MD, 12:00 md',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MD, 5:00 md',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MD, 9:30 md',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MD, 11:00 md',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekondë më parë',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekonda më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutë më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. më parë',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 orë më parë',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. më parë',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 orë më parë',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. më parë',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ditë më parë',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. më parë',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ditë më parë',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 javë më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 j. më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 javë më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 j. më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 muaj më parë',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 vit më parë',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 v. më parë',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vjet më parë',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 v. më parë',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'në 1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'në 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekondë pas',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. pas',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekondë para',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. para',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekonda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'në 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutë 1 sekondë',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 v. 3 muaj 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'në 3 vjet',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 muaj më parë',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 v. 3 muaj 1 d. 1 s. më parë',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 javë 10 orë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'në 1 javë dhe 6 ditë',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 javë 1 orë',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'në një orë',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ditë',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SqXkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SqXkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sq_XK'; // Albanian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nesër në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e mërkurë në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e enjte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e shtunë në 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'e diel e kaluar në 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Sot në 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sot në 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Nesër në 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e martë në 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Dje në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e martë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e hënë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e diel e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e shtunë e kaluar në 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'e enjte e kaluar në 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'e mërkurë e kaluar në 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'e premte e kaluar në 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 pd CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PD, 12:00 pd',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 PD, 1:30 pd',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 PD, 2:00 pd',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 PD, 6:00 pd',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 PD, 10:00 pd',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 MD, 12:00 md',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 MD, 5:00 md',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 MD, 9:30 md',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 MD, 11:00 md',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekondë më parë',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 s. më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekonda më parë',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 s. më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minutë më parë',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta më parë',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. më parë',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 orë më parë',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 o. më parë',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 orë më parë',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 o. më parë',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ditë më parë',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 d. më parë',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ditë më parë',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 d. më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 javë më parë',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 j. më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 javë më parë',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 j. më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 muaj më parë',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 muaj më parë',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 vit më parë',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 v. më parë',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 vjet më parë',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 v. më parë',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'në 1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'në 1 s.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekondë pas',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s. pas',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekondë para',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s. para',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekondë',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekonda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'në 1 s.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minutë 1 sekondë',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 v. 3 muaj 1 d. 1 s.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'në 3 vjet',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 muaj më parë',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 v. 3 muaj 1 d. 1 s. më parë',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 javë 10 orë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 javë 6 ditë',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'në 1 javë dhe 6 ditë',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 javë 1 orë',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'në një orë',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ditë',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 d. 3 o.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrCyrlBaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrCyrlBaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Cyrl_BA'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'сутра у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'у недељу у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'у понедељак у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'прошле недеље у 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'јуче у 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'данас у 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'данас у 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'сутра у 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'прошлог уторка у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'прошлог понедељка у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'прошле недеље у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'прошле суботе у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'прошлог четвртка у 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'прошле среде у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ам CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 АМ, 12:00 ам',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 АМ, 1:30 ам',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 АМ, 2:00 ам',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 АМ, 6:00 ам',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 АМ, 10:00 ам',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ПМ, 12:00 пм',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ПМ, 5:00 пм',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ПМ, 9:30 пм',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ПМ, 11:00 пм',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'пре 1 секунд',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'пре 1 сек.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'пре 2 секунде',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'пре 2 сек.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'пре 1 минут',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'пре 1 мин.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'пре 2 минута',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'пре 2 мин.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'пре 1 сат',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'пре 1 ч.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'пре 2 сата',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'пре 2 ч.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'пре 1 дан',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'пре 1 д.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'пре 2 дана',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'пре 2 д.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'пре 1 недељу',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'пре 1 нед.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'пре 2 недеље',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'пре 2 нед.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'пре 1 месец',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'пре 1 м.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'пре 2 месеца',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'пре 2 м.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'пре 1 годину',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'пре 1 г.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'пре 2 године',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'пре 2 г.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'за 1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 секунд након',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сек. након',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 секунд пре',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 сек. пре',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 сек.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунде',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 минут 1 секунд',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'за 3 године',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'пре 5 м.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'пре 2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 недеља 10 сати',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'за 1 недељу и 6 дана',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 недеље 1 сат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'за 1 сат',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 дана',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrCyrlMeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrCyrlMeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Cyrl_ME'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'сутра у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'у недељу у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'у понедељак у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'прошле недеље у 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'јуче у 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'данас у 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'данас у 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'сутра у 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'прошлог уторка у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'прошлог понедељка у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'прошле недеље у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'прошле суботе у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'прошлог четвртка у 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'прошле среде у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ам CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 АМ, 12:00 ам',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 АМ, 1:30 ам',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 АМ, 2:00 ам',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 АМ, 6:00 ам',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 АМ, 10:00 ам',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ПМ, 12:00 пм',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ПМ, 5:00 пм',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ПМ, 9:30 пм',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ПМ, 11:00 пм',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'прије 1 секунд',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'прије 1 сек.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'прије 2 секунде',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'прије 2 сек.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'прије 1 минут',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'прије 1 мин.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'прије 2 минута',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'прије 2 мин.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'прије 1 сат',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'прије 1 ч.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'прије 2 сата',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'прије 2 ч.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'прије 1 дан',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'прије 1 д.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'прије 2 дана',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'прије 2 д.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'прије 1 недјељу',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'прије 1 нед.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'прије 2 недјеље',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'прије 2 нед.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'прије 1 мјесец',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'прије 1 мј.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'прије 2 мјесеца',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'прије 2 мј.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'прије 1 годину',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'прије 1 г.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'прије 2 године',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'прије 2 г.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'за 1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 секунд након',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сек. након',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 секунд прије',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 сек. прије',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 сек.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунде',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 минут 1 секунд',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 г. 3 мј. 1 д. 1 сек.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'за 3 године',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'прије 5 мј.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'прије 2 г. 3 мј. 1 д. 1 сек.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 недјеља 10 сати',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недјеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недјеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'за 1 недјељу и 6 дана',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 недјеље 1 сат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'за 1 сат',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 дана',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrCyrlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrCyrlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Cyrl'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'сутра у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'у недељу у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'у понедељак у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'прошле недеље у 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'јуче у 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'данас у 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'данас у 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'сутра у 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'прошлог уторка у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'прошлог понедељка у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'прошле недеље у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'прошле суботе у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'прошлог четвртка у 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'прошле среде у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ам CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 АМ, 12:00 ам',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 АМ, 1:30 ам',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 АМ, 2:00 ам',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 АМ, 6:00 ам',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 АМ, 10:00 ам',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ПМ, 12:00 пм',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ПМ, 5:00 пм',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ПМ, 9:30 пм',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ПМ, 11:00 пм',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'пре 1 секунд',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'пре 1 сек.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'пре 2 секунде',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'пре 2 сек.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'пре 1 минут',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'пре 1 мин.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'пре 2 минута',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'пре 2 мин.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'пре 1 сат',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'пре 1 ч.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'пре 2 сата',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'пре 2 ч.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'пре 1 дан',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'пре 1 д.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'пре 2 дана',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'пре 2 д.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'пре 1 недељу',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'пре 1 нед.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'пре 2 недеље',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'пре 2 нед.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'пре 1 месец',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'пре 1 м.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'пре 2 месеца',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'пре 2 м.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'пре 1 годину',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'пре 1 г.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'пре 2 године',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'пре 2 г.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'за 1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 секунд након',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сек. након',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 секунд пре',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 сек. пре',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 сек.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунде',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 минут 1 секунд',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'за 3 године',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'пре 5 м.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'пре 2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 недеља 10 сати',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'за 1 недељу и 6 дана',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 недеље 1 сат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'за 1 сат',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 дана',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrCyrlXkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrCyrlXkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Cyrl_XK'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'сутра у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'у недељу у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'у понедељак у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'прошле недеље у 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'јуче у 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'данас у 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'данас у 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'сутра у 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'прошлог уторка у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'прошлог понедељка у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'прошле недеље у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'прошле суботе у 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'прошлог четвртка у 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'прошле среде у 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ам CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 АМ, 12:00 ам',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 АМ, 1:30 ам',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 АМ, 2:00 ам',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 АМ, 6:00 ам',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 АМ, 10:00 ам',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ПМ, 12:00 пм',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ПМ, 5:00 пм',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ПМ, 9:30 пм',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ПМ, 11:00 пм',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'пре 1 секунд',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'пре 1 сек.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'пре 2 секунде',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'пре 2 сек.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'пре 1 минут',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'пре 1 мин.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'пре 2 минута',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'пре 2 мин.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'пре 1 сат',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'пре 1 ч.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'пре 2 сата',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'пре 2 ч.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'пре 1 дан',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'пре 1 д.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'пре 2 дана',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'пре 2 д.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'пре 1 недељу',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'пре 1 нед.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'пре 2 недеље',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'пре 2 нед.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'пре 1 месец',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'пре 1 м.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'пре 2 месеца',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'пре 2 м.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'пре 1 годину',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'пре 1 г.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'пре 2 године',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'пре 2 г.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'за 1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 секунд након',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сек. након',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 секунд пре',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 сек. пре',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 сек.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунде',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 минут 1 секунд',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'за 3 године',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'пре 5 м.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'пре 2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 недеља 10 сати',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'за 1 недељу и 6 дана',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 недеље 1 сат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'за 1 сат',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 дана',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrLatnBaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrLatnBaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Latn_BA'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sutra u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedelju u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedeljak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sutra u 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošlog ponedeljka u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedelje u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srede u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'pre 1 sekundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'pre 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrLatnMeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrLatnMeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Latn_ME'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sjutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedjelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sjutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošle nedjelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedjelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srijede u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'prije 1 sekund',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'prije 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'prije 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'prije 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'prije 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'prije 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'prije 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'prije 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'prije 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'prije 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'prije 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'prije 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'prije 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'prije 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'prije 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'prije 1 nedjelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'prije 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'prije 2 nedjelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'prije 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'prije 1 mjesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'prije 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'prije 2 mjeseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'prije 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'prije 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'prije 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'prije 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'prije 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekund nakon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 sek. nakon',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund prije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 sek. prije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'prije 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'prije 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedjelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedjelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedjelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedjelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedjelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Latn'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošlog ponedeljka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srede u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'pre 1 sekundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'pre 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrLatnXkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrLatnXkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_Latn_XK'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sutra u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedelju u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedeljak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sutra u 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošlog ponedeljka u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedelje u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srede u 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'pre 1 sekundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'pre 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrMeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrMeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_ME'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sjutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedjelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedjeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u srijedu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedjelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sjutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošle nedjelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedjelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srijede u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'prije 1 sekund',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'prije 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'prije 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'prije 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'prije 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'prije 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'prije 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'prije 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'prije 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'prije 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'prije 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'prije 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'prije 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'prije 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'prije 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'prije 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'prije 1 nedjelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'prije 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'prije 2 nedjelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'prije 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'prije 1 mjesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'prije 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'prije 2 mjeseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'prije 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'prije 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'prije 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'prije 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'prije 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 sekund nakon',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 sek. nakon',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 sekund prije',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 sek. prije',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekund',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekund',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'prije 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'prije 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedjelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedjelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedjelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedjelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedjelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrRsLatinTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrRsLatinTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_RS@latin'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošlog ponedeljka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srede u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'pre 1 sekundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'pre 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrRsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrRsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr_RS'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'сутра у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'у недељу у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'у понедељак у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'у среду у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'у четвртак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'у петак у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'у суботу у 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'прошле недеље у 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'јуче у 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'данас у 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'данас у 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'сутра у 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'у уторак у 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'јуче у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'прошлог уторка у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'прошлог понедељка у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'прошле недеље у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'прошле суботе у 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'прошлог четвртка у 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'прошле среде у 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'прошлог петка у 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 ам CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 АМ, 12:00 ам',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 АМ, 1:30 ам',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 АМ, 2:00 ам',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 АМ, 6:00 ам',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 АМ, 10:00 ам',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ПМ, 12:00 пм',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ПМ, 5:00 пм',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ПМ, 9:30 пм',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ПМ, 11:00 пм',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'пре 1 секунд',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'пре 1 сек.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'пре 2 секунде',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'пре 2 сек.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'пре 1 минут',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'пре 1 мин.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'пре 2 минута',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'пре 2 мин.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'пре 1 сат',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'пре 1 ч.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'пре 2 сата',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'пре 2 ч.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'пре 1 дан',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'пре 1 д.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'пре 2 дана',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'пре 2 д.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'пре 1 недељу',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'пре 1 нед.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'пре 2 недеље',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'пре 2 нед.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'пре 1 месец',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'пре 1 м.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'пре 2 месеца',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'пре 2 м.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'пре 1 годину',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'пре 1 г.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'пре 2 године',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'пре 2 г.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'за 1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 секунд након',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сек. након',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 секунд пре',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 сек. пре',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 сек.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунде',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 сек.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'за 1 сек.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 минут 1 секунд',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'за 3 године',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'пре 5 м.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'пре 2 г. 3 м. 1 д. 1 сек.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 недеља 10 сати',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 недеља 6 дана',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'за 1 недељу и 6 дана',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 недеље 1 сат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'за 1 сат',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 дана',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 д. 3 ч.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sr'; // Serbian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'sutra u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'u nedelju u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'u ponedeljak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'u sredu u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'u četvrtak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'u petak u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'u subotu u 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'prošle nedelje u 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'juče u 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'danas u 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'danas u 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'sutra u 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'u utorak u 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'juče u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'prošlog utorka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'prošlog ponedeljka u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'prošle nedelje u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'prošle subote u 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'prošlog četvrtka u 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'prošle srede u 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'prošlog petka u 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1. 1. 1. 1. 1.',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2. 1.',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3. 1.',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4. 1.',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5. 1.',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6. 1.',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7. 1.',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11. 2.',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40.',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41.',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100.',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0.',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'pre 1 sekundu',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'pre 1 sek.',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'pre 2 sekunde',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'pre 2 sek.',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'pre 1 minut',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'pre 1 min.',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'pre 2 minuta',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'pre 2 min.',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'pre 1 sat',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'pre 1 č.',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'pre 2 sata',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'pre 2 č.',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'pre 1 dan',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'pre 1 d.',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'pre 2 dana',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'pre 2 d.',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'pre 1 nedelju',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'pre 1 ned.',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'pre 2 nedelje',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'pre 2 ned.',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'pre 1 mesec',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'pre 1 mes.',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'pre 2 meseca',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'pre 2 mes.',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'pre 1 godinu',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'pre 1 g.',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'pre 2 godine',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'pre 2 g.',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'za 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'nakon 1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'nakon 1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'pre 1 sekundu',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'pre 1 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 sekundu',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 sek.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 sekunde',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 sek.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'za 1 sek.',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minut 1 sekundu',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'za 3 godine',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'pre 5 mes.',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'pre 2 g. 3 mes. 1 d. 1 sek.',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 nedelja 10 sati',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 nedelja 6 dana',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'za 1 nedelju i 6 dana',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 nedelje 1 sat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'za 1 sat',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 dana',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 d. 3 č.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ss'; // Swati\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kusasa nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umgcibelo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lisontfo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umsombuluko nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesibili nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesitsatfu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Lesine nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Lesihlanu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesibili nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesitsatfu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesine nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesihlanu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Umgcibelo nga 12:00 ekuseni',\n        // Carbon::now()->subDays(2)->calendar()\n        'Lisontfo leliphelile nga 8:49 ebusuku',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Itolo nga 10:00 ebusuku',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Namuhla nga 10:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Namuhla nga 2:00 ekuseni',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Kusasa nga 1:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesibili nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Itolo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Itolo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesibili leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umsombuluko leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lisontfo leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umgcibelo leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesihlanu leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Lesine leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Lesitsatfu leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesihlanu leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3e 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4e 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5e 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6e 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7e 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11e 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ekuseni CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ekuseni, 12:00 ekuseni',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ekuseni, 1:30 ekuseni',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ekuseni, 2:00 ekuseni',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ekuseni, 6:00 ekuseni',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ekuseni, 10:00 ekuseni',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 emini, 12:00 emini',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 entsambama, 5:00 entsambama',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ebusuku, 9:30 ebusuku',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ebusuku, 11:00 ebusuku',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'wenteka nga emizuzwana lomcane',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'wenteka nga emizuzwana lomcane',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'wenteka nga 2 mzuzwana',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 mzuzwana',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'wenteka nga umzuzu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'wenteka nga umzuzu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'wenteka nga 2 emizuzu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emizuzu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'wenteka nga lihora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'wenteka nga lihora',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'wenteka nga 2 emahora',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emahora',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'wenteka nga lilanga',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'wenteka nga lilanga',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'wenteka nga 2 emalanga',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emalanga',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'wenteka nga 1 liviki',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'wenteka nga 1 liviki',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'wenteka nga 2 emaviki',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emaviki',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'wenteka nga inyanga',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'wenteka nga inyanga',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'wenteka nga 2 tinyanga',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 tinyanga',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'wenteka nga umnyaka',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'wenteka nga umnyaka',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'wenteka nga 2 iminyaka',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 iminyaka',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'nga emizuzwana lomcane',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'nga emizuzwana lomcane',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'emizuzwana lomcane',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'emizuzwana lomcane',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 mzuzwana',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 mzuzwana',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'nga emizuzwana lomcane',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'umzuzu emizuzwana lomcane',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 iminyaka 3 tinyanga lilanga emizuzwana lomcane',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'nga 3 iminyaka',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'wenteka nga 5 tinyanga',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'wenteka nga 2 iminyaka 3 tinyanga lilanga emizuzwana lomcane',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 liviki 10 emahora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 liviki 6 emalanga',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 liviki 6 emalanga',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'nga 1 liviki 6 emalanga',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 emaviki lihora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'nga lihora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 emalanga',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'lilanga 3 emahora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SsZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SsZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ss_ZA'; // Swati\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kusasa nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umgcibelo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lisontfo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umsombuluko nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesibili nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesitsatfu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Lesine nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Lesihlanu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesibili nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesitsatfu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesine nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesihlanu nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Umgcibelo nga 12:00 ekuseni',\n        // Carbon::now()->subDays(2)->calendar()\n        'Lisontfo leliphelile nga 8:49 ebusuku',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Itolo nga 10:00 ebusuku',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Namuhla nga 10:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Namuhla nga 2:00 ekuseni',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Kusasa nga 1:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesibili nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Itolo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Itolo nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesibili leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umsombuluko leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lisontfo leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Umgcibelo leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lesihlanu leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Lesine leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Lesitsatfu leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lesihlanu leliphelile nga 12:00 ekuseni',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3e 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4e 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5e 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6e 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7e 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11e 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ekuseni CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ekuseni, 12:00 ekuseni',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ekuseni, 1:30 ekuseni',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ekuseni, 2:00 ekuseni',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ekuseni, 6:00 ekuseni',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ekuseni, 10:00 ekuseni',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 emini, 12:00 emini',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 entsambama, 5:00 entsambama',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ebusuku, 9:30 ebusuku',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ebusuku, 11:00 ebusuku',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'wenteka nga emizuzwana lomcane',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'wenteka nga emizuzwana lomcane',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'wenteka nga 2 mzuzwana',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 mzuzwana',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'wenteka nga umzuzu',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'wenteka nga umzuzu',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'wenteka nga 2 emizuzu',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emizuzu',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'wenteka nga lihora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'wenteka nga lihora',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'wenteka nga 2 emahora',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emahora',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'wenteka nga lilanga',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'wenteka nga lilanga',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'wenteka nga 2 emalanga',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emalanga',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'wenteka nga 1 liviki',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'wenteka nga 1 liviki',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'wenteka nga 2 emaviki',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 emaviki',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'wenteka nga inyanga',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'wenteka nga inyanga',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'wenteka nga 2 tinyanga',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 tinyanga',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'wenteka nga umnyaka',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'wenteka nga umnyaka',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'wenteka nga 2 iminyaka',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'wenteka nga 2 iminyaka',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'nga emizuzwana lomcane',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'nga emizuzwana lomcane',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'emizuzwana lomcane',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'emizuzwana lomcane',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 mzuzwana',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 mzuzwana',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'nga emizuzwana lomcane',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'umzuzu emizuzwana lomcane',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 iminyaka 3 tinyanga lilanga emizuzwana lomcane',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'nga 3 iminyaka',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'wenteka nga 5 tinyanga',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'wenteka nga 2 iminyaka 3 tinyanga lilanga emizuzwana lomcane',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 liviki 10 emahora',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 liviki 6 emalanga',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 liviki 6 emalanga',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'nga 1 liviki 6 emalanga',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 emaviki lihora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'nga lihora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 emalanga',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'lilanga 3 emahora',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/StTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass StTest extends LocalizationTestCase\n{\n    public const LOCALE = 'st'; // Sotho\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Moqebelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sontaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mantaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Moqebelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sontaha at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mantaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sontaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Moqebelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Labone at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 thusa ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 thusa ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 thusa ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 thusa ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menyane ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 menyane ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menyane ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 menyane ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 sešupanako ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 sešupanako ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 sešupanako ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sešupanako ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 letsatsi ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 letsatsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 letsatsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 letsatsi ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Sontaha ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Sontaha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Sontaha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Sontaha ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kgwedi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 kgwedi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 selemo ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 selemo ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 selemo ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 selemo ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 thusa from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 thusa from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 thusa after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 thusa after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 thusa before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 thusa before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 thusa',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 thusa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 thusa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 thusa',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 thusa from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menyane 1 thusa',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 selemo 3 kgwedi 1 letsatsi 1 thusa',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 selemo from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 kgwedi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 selemo 3 kgwedi 1 letsatsi 1 thusa ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Sontaha 10 sešupanako',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sontaha 6 letsatsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sontaha 6 letsatsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Sontaha and 6 letsatsi from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Sontaha 1 sešupanako',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 sešupanako from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 letsatsi',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 letsatsi 3 sešupanako',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/StZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass StZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'st_ZA'; // Sotho\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Moqebelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sontaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mantaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Moqebelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sontaha at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mantaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sontaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Moqebelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Labone at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Labohlano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 thusa ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 thusa ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 thusa ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 thusa ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 menyane ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 menyane ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 menyane ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 menyane ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 sešupanako ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 sešupanako ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 sešupanako ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sešupanako ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 letsatsi ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 letsatsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 letsatsi ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 letsatsi ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Sontaha ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Sontaha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Sontaha ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Sontaha ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 kgwedi ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 kgwedi ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 kgwedi ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 selemo ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 selemo ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 selemo ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 selemo ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 thusa from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 thusa from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 thusa after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 thusa after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 thusa before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 thusa before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 thusa',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 thusa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 thusa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 thusa',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 thusa from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 menyane 1 thusa',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 selemo 3 kgwedi 1 letsatsi 1 thusa',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 selemo from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 kgwedi ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 selemo 3 kgwedi 1 letsatsi 1 thusa ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Sontaha 10 sešupanako',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sontaha 6 letsatsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sontaha 6 letsatsi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Sontaha and 6 letsatsi from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Sontaha 1 sešupanako',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 sešupanako from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 letsatsi',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 letsatsi 3 sešupanako',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SvAxTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SvAxTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sv_AX'; // Swedish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I morgon 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På söndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På måndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'I söndags 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'I dag 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I dag 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'I morgon 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I tisdags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I måndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I söndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I lördags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'I torsdags 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'I onsdags 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3e 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4e 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5e 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6e 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7e 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11e 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 fm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 fm, 12:00 fm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 fm, 1:30 fm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 fm, 2:00 fm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 fm, 6:00 fm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 fm, 10:00 fm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 em, 12:00 em',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 em, 5:00 em',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 em, 9:30 em',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 em, 11:00 em',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'för 1 sekund sedan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'för 1 s sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'för 2 sekunder sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'för 2 s sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'för 1 minut sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'för 1 min sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'för 2 minuter sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'för 2 min sedan',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'för 1 timme sedan',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'för 1 tim sedan',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'för 2 timmar sedan',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'för 2 tim sedan',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'för 1 dag sedan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'för 1 dgr sedan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'för 2 dagar sedan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'för 2 dgr sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'för 1 vecka sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'för 1 v sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'för 2 veckor sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'för 2 v sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'för 1 månad sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'för 1 mån sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'för 2 månader sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'för 2 mån sedan',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'för 1 år sedan',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'för 1 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'för 2 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'för 2 år sedan',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund före',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s före',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mån 1 dgr 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'för 5 mån sedan',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'för 2 år 3 mån 1 dgr 1 s sedan',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vecka 10 timmar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 vecka och 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 veckor 1 timme',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en timme',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dgr 3 tim',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SvFiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SvFiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sv_FI'; // Swedish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I morgon 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På söndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På måndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'I söndags 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'I dag 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I dag 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'I morgon 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I tisdags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I måndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I söndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I lördags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'I torsdags 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'I onsdags 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3e 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4e 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5e 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6e 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7e 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11e 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 fm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 fm, 12:00 fm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 fm, 1:30 fm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 fm, 2:00 fm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 fm, 6:00 fm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 fm, 10:00 fm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 em, 12:00 em',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 em, 5:00 em',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 em, 9:30 em',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 em, 11:00 em',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'för 1 sekund sedan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'för 1 s sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'för 2 sekunder sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'för 2 s sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'för 1 minut sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'för 1 min sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'för 2 minuter sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'för 2 min sedan',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'för 1 timme sedan',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'för 1 tim sedan',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'för 2 timmar sedan',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'för 2 tim sedan',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'för 1 dag sedan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'för 1 dgr sedan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'för 2 dagar sedan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'för 2 dgr sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'för 1 vecka sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'för 1 v sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'för 2 veckor sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'för 2 v sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'för 1 månad sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'för 1 mån sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'för 2 månader sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'för 2 mån sedan',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'för 1 år sedan',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'för 1 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'för 2 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'för 2 år sedan',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund före',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s före',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mån 1 dgr 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'för 5 mån sedan',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'för 2 år 3 mån 1 dgr 1 s sedan',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vecka 10 timmar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 vecka och 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 veckor 1 timme',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en timme',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dgr 3 tim',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SvSeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SvSeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sv_SE'; // Swedish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I morgon 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På söndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På måndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'I söndags 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'I dag 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I dag 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'I morgon 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I tisdags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I måndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I söndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I lördags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'I torsdags 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'I onsdags 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3e 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4e 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5e 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6e 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7e 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11e 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 fm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 fm, 12:00 fm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 fm, 1:30 fm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 fm, 2:00 fm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 fm, 6:00 fm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 fm, 10:00 fm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 em, 12:00 em',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 em, 5:00 em',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 em, 9:30 em',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 em, 11:00 em',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'för 1 sekund sedan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'för 1 s sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'för 2 sekunder sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'för 2 s sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'för 1 minut sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'för 1 min sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'för 2 minuter sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'för 2 min sedan',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'för 1 timme sedan',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'för 1 tim sedan',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'för 2 timmar sedan',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'för 2 tim sedan',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'för 1 dag sedan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'för 1 dgr sedan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'för 2 dagar sedan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'för 2 dgr sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'för 1 vecka sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'för 1 v sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'för 2 veckor sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'för 2 v sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'för 1 månad sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'för 1 mån sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'för 2 månader sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'för 2 mån sedan',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'för 1 år sedan',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'för 1 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'för 2 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'för 2 år sedan',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund före',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s före',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mån 1 dgr 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'för 5 mån sedan',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'för 2 år 3 mån 1 dgr 1 s sedan',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vecka 10 timmar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 vecka och 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 veckor 1 timme',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en timme',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dgr 3 tim',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SvTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SvTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sv'; // Swedish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I morgon 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På söndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På måndag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På onsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På torsdag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På fredag 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På lördag 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'I söndags 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'I dag 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I dag 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'I morgon 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'På tisdag 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I går 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I tisdags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I måndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I söndags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I lördags 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'I torsdags 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'I onsdags 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'I fredags 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1a 1a 1a 1a 1a',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2a 1a',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3e 1a',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4e 1a',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5e 1a',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6e 1a',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7e 1a',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11e 2a',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40e',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41a',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100e',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 fm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 fm, 12:00 fm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 fm, 1:30 fm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 fm, 2:00 fm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 fm, 6:00 fm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 fm, 10:00 fm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 em, 12:00 em',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 em, 5:00 em',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 em, 9:30 em',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 em, 11:00 em',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0e',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'för 1 sekund sedan',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'för 1 s sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'för 2 sekunder sedan',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'för 2 s sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'för 1 minut sedan',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'för 1 min sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'för 2 minuter sedan',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'för 2 min sedan',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'för 1 timme sedan',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'för 1 tim sedan',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'för 2 timmar sedan',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'för 2 tim sedan',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'för 1 dag sedan',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'för 1 dgr sedan',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'för 2 dagar sedan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'för 2 dgr sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'för 1 vecka sedan',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'för 1 v sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'för 2 veckor sedan',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'för 2 v sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'för 1 månad sedan',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'för 1 mån sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'för 2 månader sedan',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'för 2 mån sedan',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'för 1 år sedan',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'för 1 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'för 2 år sedan',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'för 2 år sedan',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'om 1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'om 1 s',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekund efter',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 s efter',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekund före',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 s före',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekund',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunder',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'om 1 s',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekund',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 år 3 mån 1 dgr 1 s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'om 3 år',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'för 5 mån sedan',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'för 2 år 3 mån 1 dgr 1 s sedan',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vecka 10 timmar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vecka 6 dagar',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'om 1 vecka och 6 dagar',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 veckor 1 timme',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'om en timme',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dagar',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dgr 3 tim',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SwCdTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SwCdTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sw_CD'; // Swahili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kesho saa 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'wiki iliyopita Jumapili saat 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'leo saa 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leo saa 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'kesho saa 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'wiki iliyopita Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'wiki iliyopita Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tokea sekunde 1',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tokea se. 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tokea sekunde 2',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tokea se. 2',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'tokea dakika 1',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'tokea d. 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'tokea dakika 2',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'tokea d. 2',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tokea saa 1',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tokea saa 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tokea masaa 2',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tokea masaa 2',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'tokea siku 1',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'tokea si. 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'tokea siku 2',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'tokea si. 2',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'tokea wiki 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'tokea w. 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'tokea wiki 2',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'tokea w. 2',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tokea miezi 2',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tokea miezi 2',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'tokea miaka 2',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'tokea miaka 2',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekunde 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'se. 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekunde 1 baada',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'se. 1 baada',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekunde 1 kabla',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'se. 1 kabla',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekunde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'se. 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekunde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'se. 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'se. 1 baadaye',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'dakika 1 sekunde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'miaka 3 baadaye',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tokea miezi 5',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'tokea miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'wiki 1 masaa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wiki 1 na siku 6 baadaye',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'wiki 2 saa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saa limoja baadaye',\n        // CarbonInterval::days(2)->forHumans()\n        'siku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'si. 1 masaa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SwKeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SwKeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sw_KE'; // Swahili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kesho saa 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'wiki iliyopita Jumapili saat 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'leo saa 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leo saa 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'kesho saa 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'wiki iliyopita Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'wiki iliyopita Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 asubuhi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 asubuhi, 12:00 asubuhi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 asubuhi, 1:30 asubuhi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 asubuhi, 2:00 asubuhi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 asubuhi, 6:00 asubuhi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 asubuhi, 10:00 asubuhi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 alasiri, 12:00 alasiri',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 alasiri, 5:00 alasiri',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 alasiri, 9:30 alasiri',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 alasiri, 11:00 alasiri',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tokea sekunde 1',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tokea se. 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tokea sekunde 2',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tokea se. 2',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'tokea dakika 1',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'tokea d. 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'tokea dakika 2',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'tokea d. 2',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tokea saa 1',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tokea saa 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tokea masaa 2',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tokea masaa 2',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'tokea siku 1',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'tokea si. 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'tokea siku 2',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'tokea si. 2',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'tokea wiki 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'tokea w. 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'tokea wiki 2',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'tokea w. 2',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tokea miezi 2',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tokea miezi 2',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'tokea miaka 2',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'tokea miaka 2',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekunde 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'se. 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekunde 1 baada',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'se. 1 baada',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekunde 1 kabla',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'se. 1 kabla',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekunde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'se. 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekunde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'se. 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'se. 1 baadaye',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'dakika 1 sekunde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'miaka 3 baadaye',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tokea miezi 5',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'tokea miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'wiki 1 masaa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wiki 1 na siku 6 baadaye',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'wiki 2 saa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saa limoja baadaye',\n        // CarbonInterval::days(2)->forHumans()\n        'siku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'si. 1 masaa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sw'; // Swahili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kesho saa 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'wiki iliyopita Jumapili saat 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'leo saa 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leo saa 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'kesho saa 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'wiki iliyopita Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'wiki iliyopita Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tokea sekunde 1',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tokea se. 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tokea sekunde 2',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tokea se. 2',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'tokea dakika 1',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'tokea d. 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'tokea dakika 2',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'tokea d. 2',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tokea saa 1',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tokea saa 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tokea masaa 2',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tokea masaa 2',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'tokea siku 1',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'tokea si. 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'tokea siku 2',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'tokea si. 2',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'tokea wiki 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'tokea w. 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'tokea wiki 2',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'tokea w. 2',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tokea miezi 2',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tokea miezi 2',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'tokea miaka 2',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'tokea miaka 2',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekunde 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'se. 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekunde 1 baada',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'se. 1 baada',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekunde 1 kabla',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'se. 1 kabla',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekunde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'se. 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekunde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'se. 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'se. 1 baadaye',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'dakika 1 sekunde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'miaka 3 baadaye',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tokea miezi 5',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'tokea miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'wiki 1 masaa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wiki 1 na siku 6 baadaye',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'wiki 2 saa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saa limoja baadaye',\n        // CarbonInterval::days(2)->forHumans()\n        'siku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'si. 1 masaa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SwTzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SwTzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sw_TZ'; // Swahili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kesho saa 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'wiki iliyopita Jumapili saat 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'leo saa 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leo saa 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'kesho saa 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'wiki iliyopita Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'wiki iliyopita Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 asubuhi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 asubuhi, 12:00 asubuhi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 asubuhi, 1:30 asubuhi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 asubuhi, 2:00 asubuhi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 asubuhi, 6:00 asubuhi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 asubuhi, 10:00 asubuhi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 alasiri, 12:00 alasiri',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 alasiri, 5:00 alasiri',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 alasiri, 9:30 alasiri',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 alasiri, 11:00 alasiri',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tokea sekunde 1',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tokea se. 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tokea sekunde 2',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tokea se. 2',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'tokea dakika 1',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'tokea d. 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'tokea dakika 2',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'tokea d. 2',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tokea saa 1',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tokea saa 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tokea masaa 2',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tokea masaa 2',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'tokea siku 1',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'tokea si. 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'tokea siku 2',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'tokea si. 2',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'tokea wiki 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'tokea w. 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'tokea wiki 2',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'tokea w. 2',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tokea miezi 2',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tokea miezi 2',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'tokea miaka 2',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'tokea miaka 2',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekunde 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'se. 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekunde 1 baada',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'se. 1 baada',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekunde 1 kabla',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'se. 1 kabla',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekunde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'se. 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekunde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'se. 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'se. 1 baadaye',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'dakika 1 sekunde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'miaka 3 baadaye',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tokea miezi 5',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'tokea miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'wiki 1 masaa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wiki 1 na siku 6 baadaye',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'wiki 2 saa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saa limoja baadaye',\n        // CarbonInterval::days(2)->forHumans()\n        'siku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'si. 1 masaa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SwUgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SwUgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'sw_UG'; // Swahili\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kesho saa 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumamosi saat 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'wiki iliyopita Jumapili saat 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'leo saa 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'leo saa 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'kesho saa 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki ijayo Jumanne saat 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'jana 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumanne saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumatatu saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumapili saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Jumamosi saat 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'wiki iliyopita Alhamisi saat 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'wiki iliyopita Jumatano saat 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wiki iliyopita Ijumaa saat 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tokea sekunde 1',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tokea se. 1',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tokea sekunde 2',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tokea se. 2',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'tokea dakika 1',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'tokea d. 1',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'tokea dakika 2',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'tokea d. 2',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tokea saa 1',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tokea saa 1',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tokea masaa 2',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tokea masaa 2',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'tokea siku 1',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'tokea si. 1',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'tokea siku 2',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'tokea si. 2',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'tokea wiki 1',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'tokea w. 1',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'tokea wiki 2',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'tokea w. 2',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tokea mwezi 1',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tokea miezi 2',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tokea miezi 2',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'tokea mwaka 1',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'tokea miaka 2',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'tokea miaka 2',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sekunde 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'se. 1 baadaye',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'sekunde 1 baada',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'se. 1 baada',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'sekunde 1 kabla',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'se. 1 kabla',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'sekunde 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'se. 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'sekunde 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'se. 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'se. 1 baadaye',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'dakika 1 sekunde 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'miaka 3 baadaye',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tokea miezi 5',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'tokea miaka 2 miezi 3 si. 1 se. 1',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'wiki 1 masaa 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wiki 1 siku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wiki 1 na siku 6 baadaye',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'wiki 2 saa 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'saa limoja baadaye',\n        // CarbonInterval::days(2)->forHumans()\n        'siku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'si. 1 masaa 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SzlPlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SzlPlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'szl_PL'; // Silesian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobŏta at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'niydziela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pyńdziŏek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'strzŏda at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sztwortek at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'strzŏda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sztwortek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobŏta at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last niydziela at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pyńdziŏek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last niydziela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobŏta at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sztwortek at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last strzŏda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekůnda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekůnda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekůnda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekůnda ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuta ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 godzina ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 godzina ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 godzina ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 godzina ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dźyń ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dźyń ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dźyń ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dźyń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tydźyń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tydźyń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tydźyń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tydźyń ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mjeśůnc ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mjeśůnc ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mjeśůnc ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mjeśůnc ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 rok ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 rok ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 rok ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 rok ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekůnda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekůnda from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekůnda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekůnda after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekůnda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekůnda before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekůnda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekůnda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekůnda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekůnda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekůnda from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 sekůnda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 rok 3 mjeśůnc 1 dźyń 1 sekůnda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 rok from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mjeśůnc ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 rok 3 mjeśůnc 1 dźyń 1 sekůnda ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tydźyń 10 godzina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźyń 6 dźyń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźyń 6 dźyń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tydźyń and 6 dźyń from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tydźyń 1 godzina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 godzina from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dźyń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dźyń 3 godzina',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/SzlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass SzlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'szl'; // Silesian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sobŏta at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'niydziela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'pyńdziŏek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'strzŏda at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sztwortek at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'strzŏda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sztwortek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sobŏta at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last niydziela at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last wtŏrek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pyńdziŏek at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last niydziela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sobŏta at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sztwortek at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last strzŏda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pjōntek at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekůnda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekůnda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekůnda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekůnda ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuta ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minuta ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 godzina ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 godzina ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 godzina ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 godzina ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 dźyń ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 dźyń ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 dźyń ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 dźyń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tydźyń ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tydźyń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tydźyń ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tydźyń ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mjeśůnc ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mjeśůnc ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mjeśůnc ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mjeśůnc ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 rok ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 rok ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 rok ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 rok ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekůnda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekůnda from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekůnda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekůnda after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekůnda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekůnda before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekůnda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekůnda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekůnda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekůnda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekůnda from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuta 1 sekůnda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 rok 3 mjeśůnc 1 dźyń 1 sekůnda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 rok from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mjeśůnc ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 rok 3 mjeśůnc 1 dźyń 1 sekůnda ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tydźyń 10 godzina',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźyń 6 dźyń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tydźyń 6 dźyń',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tydźyń and 6 dźyń from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tydźyń 1 godzina',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 godzina from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 dźyń',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 dźyń 3 godzina',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TaInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TaInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ta_IN'; // Tamil\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'சனி, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ஞாயிறு, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'திங்கள், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'புதன், 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'வியாழன், 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'புதன், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வியாழன், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'சனி, 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் ஞாயிறு, 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் திங்கள், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் ஞாயிறு, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் சனி, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் வியாழன், 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் புதன், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 2வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 காலை CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 காலை, 12:00 காலை',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 காலை, 1:30 காலை',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 காலை, 2:00 காலை',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 காலை, 6:00 காலை',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 காலை, 10:00 காலை',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 மாலை, 12:00 மாலை',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 மாலை, 5:00 மாலை',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 மாலை, 9:30 மாலை',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 மாலை, 11:00 மாலை',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடங்கள் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாட்கள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாட். முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரங்கள் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதங்கள் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ஆண்டுகள் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ஆண். முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ஆண்டுகள் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாட்கள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரங்கள் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாட்கள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TaLkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TaLkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ta_LK'; // Tamil\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'சனி, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ஞாயிறு, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'திங்கள், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'புதன், 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'வியாழன், 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'புதன், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வியாழன், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'சனி, 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் ஞாயிறு, 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் செவ்வாய், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் திங்கள், 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் ஞாயிறு, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் சனி, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் வியாழன், 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் புதன், 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 1வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 காலை CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 காலை, 12:00 காலை',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 காலை, 1:30 காலை',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 காலை, 2:00 காலை',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 காலை, 6:00 காலை',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 காலை, 10:00 காலை',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 மாலை, 12:00 மாலை',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 மாலை, 5:00 மாலை',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 மாலை, 9:30 மாலை',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 மாலை, 11:00 மாலை',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடங்கள் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாட்கள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாட். முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரங்கள் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதங்கள் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ஆண்டுகள் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ஆண். முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ஆண்டுகள் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாட்கள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரங்கள் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாட்கள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TaMyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TaMyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ta_MY'; // Tamil\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'சனி, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ஞாயிறு, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'திங்கள், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'புதன், மு.ப 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'வியாழன், மு.ப 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'புதன், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வியாழன், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'சனி, மு.ப 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் ஞாயிறு, பி.ப 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று பி.ப 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று மு.ப 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று மு.ப 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை மு.ப 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் திங்கள், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் ஞாயிறு, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் சனி, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் வியாழன், மு.ப 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் புதன், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 1வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 மு.ப CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 மு.ப, 12:00 மு.ப',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 மு.ப, 1:30 மு.ப',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 மு.ப, 2:00 மு.ப',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 மு.ப, 6:00 மு.ப',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 மு.ப, 10:00 மு.ப',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 பி.ப, 12:00 பி.ப',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 பி.ப, 5:00 பி.ப',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 பி.ப, 9:30 பி.ப',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 பி.ப, 11:00 பி.ப',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடங்கள் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாட்கள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாட். முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரங்கள் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதங்கள் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ஆண்டுகள் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ஆண். முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ஆண்டுகள் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாட்கள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரங்கள் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாட்கள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TaSgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TaSgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ta_SG'; // Tamil\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'சனி, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ஞாயிறு, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'திங்கள், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'புதன், மு.ப 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'வியாழன், மு.ப 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'புதன், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வியாழன், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'சனி, மு.ப 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் ஞாயிறு, பி.ப 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று பி.ப 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று மு.ப 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று மு.ப 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை மு.ப 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் செவ்வாய், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் திங்கள், மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் ஞாயிறு, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் சனி, மு.ப 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் வியாழன், மு.ப 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் புதன், மு.ப 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் வெள்ளி, மு.ப 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 2வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 மு.ப CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 மு.ப, 12:00 மு.ப',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 மு.ப, 1:30 மு.ப',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 மு.ப, 2:00 மு.ப',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 மு.ப, 6:00 மு.ப',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 மு.ப, 10:00 மு.ப',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 பி.ப, 12:00 பி.ப',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 பி.ப, 5:00 பி.ப',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 பி.ப, 9:30 பி.ப',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 பி.ப, 11:00 பி.ப',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடங்கள் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாட்கள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாட். முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரங்கள் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதங்கள் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ஆண்டுகள் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ஆண். முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ஆண்டுகள் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாட்கள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரங்கள் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாட்கள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ta'; // Tamil\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'சனிக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ஞாயிற்றுக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'திங்கட்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'செவ்வாய்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'புதன்கிழமை, 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'வியாழக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'வெள்ளிக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய்கிழமை, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'புதன்கிழமை, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வியாழக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'வெள்ளிக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'சனிக்கிழமை, 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் ஞாயிற்றுக்கிழமை, 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'செவ்வாய்கிழமை, 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் செவ்வாய்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் திங்கட்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் ஞாயிற்றுக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் சனிக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் வெள்ளிக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் வியாழக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் புதன்கிழமை, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் வெள்ளிக்கிழமை, 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 2வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00  யாமம் CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00  யாமம், 12:00  யாமம்',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30  யாமம், 1:30  யாமம்',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00  வைகறை, 2:00  வைகறை',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00  காலை, 6:00  காலை',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00  நண்பகல், 10:00  நண்பகல்',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00  நண்பகல், 12:00  நண்பகல்',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00  எற்பாடு, 5:00  எற்பாடு',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30  மாலை, 9:30  மாலை',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00  யாமம், 11:00  யாமம்',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடங்கள் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாட்கள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாட். முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரங்கள் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதங்கள் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ஆண்டுகள் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ஆண். முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ஆண்டுகள் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ஆண். 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாட்கள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாட்கள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரங்கள் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாட்கள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TcyInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TcyInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tcy_IN'; // Tulu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಶನಿವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಐಥಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಸೋಮಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಬುಧಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ಗುರುವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಬುಧಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಗುರುವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶನಿವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ಐಥಾರ at 8:49 ಬಯ್ಯ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಸೋಮಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಐಥಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಶನಿವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ಗುರುವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ಬುಧಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ಕಾಂಡೆ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ಕಾಂಡೆ, 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ಕಾಂಡೆ, 1:30 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ಕಾಂಡೆ, 2:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ಕಾಂಡೆ, 6:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ಕಾಂಡೆ, 10:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ಬಯ್ಯ, 12:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ಬಯ್ಯ, 5:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ಬಯ್ಯ, 9:30 ಬಯ್ಯ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ಬಯ್ಯ, 11:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ಮೀನ್ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ಮೀನ್ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ಮೀನ್ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ಮೀನ್ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ನೀರ್ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ನೀರ್ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ನೀರ್ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ನೀರ್ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ನೀರ್ 3 ಮೀನ್ 1 ಸುಗ್ಗಿ 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ನೀರ್ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ಮೀನ್ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ನೀರ್ 3 ಮೀನ್ 1 ಸುಗ್ಗಿ 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ಸುಗ್ಗಿ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ಸುಗ್ಗಿ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ಸುಗ್ಗಿ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ಸುಗ್ಗಿ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ಸುಗ್ಗಿ 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TcyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TcyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tcy'; // Tulu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಶನಿವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಐಥಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಸೋಮಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ಬುಧಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ಗುರುವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಬುಧಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಗುರುವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಶನಿವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ಐಥಾರ at 8:49 ಬಯ್ಯ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಅಂಗರೆ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಸೋಮಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಐಥಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಶನಿವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ಗುರುವಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ಬುಧಾರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ಶುಕ್ರರ at 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ಕಾಂಡೆ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ಕಾಂಡೆ, 12:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ಕಾಂಡೆ, 1:30 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ಕಾಂಡೆ, 2:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ಕಾಂಡೆ, 6:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ಕಾಂಡೆ, 10:00 ಕಾಂಡೆ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ಬಯ್ಯ, 12:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ಬಯ್ಯ, 5:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ಬಯ್ಯ, 9:30 ಬಯ್ಯ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ಬಯ್ಯ, 11:00 ಬಯ್ಯ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ಸುಗ್ಗಿ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ಮೀನ್ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ಮೀನ್ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ಮೀನ್ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ಮೀನ್ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ನೀರ್ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ನೀರ್ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ನೀರ್ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ನೀರ್ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ನೀರ್ 3 ಮೀನ್ 1 ಸುಗ್ಗಿ 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ನೀರ್ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ಮೀನ್ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ನೀರ್ 3 ಮೀನ್ 1 ಸುಗ್ಗಿ 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ಸುಗ್ಗಿ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 ಸುಗ್ಗಿ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 ಸುಗ್ಗಿ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ಸುಗ್ಗಿ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ಸುಗ್ಗಿ 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TeInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TeInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'te_IN'; // Telugu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'రేపు రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'శనివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ఆదివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'సోమవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'బుధవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'గురువారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'బుధవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'గురువారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'శనివారం, రాత్రి 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'గత ఆదివారం,  రాత్రి 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'నిన్న  రాత్రి 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'నేడు మధ్యాహ్నం 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'నేడు రాత్రి 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'రేపు రాత్రి 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'నిన్న రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'నిన్న రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత సోమవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత ఆదివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత శనివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'గత గురువారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'గత బుధవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'గత శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1వ 1వ 1వ 1వ 1వ',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2వ 1వ',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3వ 1వ',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4వ 1వ',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5వ 1వ',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6వ 1వ',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7వ 2వ',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11వ 2వ',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40వ',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41వ',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100వ',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 రాత్రి CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 రాత్రి, 12:00 రాత్రి',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 రాత్రి, 1:30 రాత్రి',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 రాత్రి, 2:00 రాత్రి',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ఉదయం, 6:00 ఉదయం',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 మధ్యాహ్నం, 10:00 మధ్యాహ్నం',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 మధ్యాహ్నం, 12:00 మధ్యాహ్నం',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 సాయంత్రం, 5:00 సాయంత్రం',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30  రాత్రి, 9:30  రాత్రి',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00  రాత్రి, 11:00  రాత్రి',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0వ',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 సెకను క్రితం',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 సెక. క్రితం',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 సెకన్లు క్రితం',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 సెక. క్రితం',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 నిమిషం క్రితం',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 నిమి. క్రితం',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 నిమిషాలు క్రితం',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 నిమి. క్రితం',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 గంట క్రితం',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 గం. క్రితం',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 గంటలు క్రితం',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 గం. క్రితం',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 రోజు క్రితం',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 రోజు క్రితం',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 రోజులు క్రితం',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 రోజు. క్రితం',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 వారం క్రితం',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 వార. క్రితం',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 వారాలు క్రితం',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 వారా. క్రితం',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 నెల క్రితం',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 నెల క్రితం',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 నెలలు క్రితం',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 నెల. క్రితం',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 సంవత్సరం క్రితం',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 సం. క్రితం',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 సంవత్సరాలు క్రితం',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 సం. క్రితం',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 సెకను లో',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 సెక. లో',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 సెకను',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 సెక.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 సెకన్లు',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 సెక.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 సెక. లో',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 నిమిషం 1 సెకను',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 సం. 3 నెల. 1 రోజు 1 సెక.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 సంవత్సరాలు లో',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 నెల. క్రితం',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 సం. 3 నెల. 1 రోజు 1 సెక. క్రితం',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 వారం 10 గంటలు',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 వారం 6 రోజులు',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 వారం 6 రోజులు',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 వారం, 6 రోజులు లో',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 వారాలు 1 గంట',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ఒక గంట లో',\n        // CarbonInterval::days(2)->forHumans()\n        '2 రోజులు',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 రోజు 3 గం.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'te'; // Telugu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'రేపు రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'శనివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ఆదివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'సోమవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'బుధవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'గురువారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'బుధవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'గురువారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'శనివారం, రాత్రి 12:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'గత ఆదివారం,  రాత్రి 8:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'నిన్న  రాత్రి 10:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'నేడు మధ్యాహ్నం 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'నేడు రాత్రి 2:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'రేపు రాత్రి 1:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'నిన్న రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'నిన్న రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత మంగళవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత సోమవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత ఆదివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత శనివారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'గత శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'గత గురువారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'గత బుధవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'గత శుక్రవారం, రాత్రి 12:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1వ 1వ 1వ 1వ 1వ',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2వ 1వ',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3వ 1వ',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4వ 1వ',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5వ 1వ',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6వ 1వ',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7వ 2వ',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11వ 2వ',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40వ',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41వ',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100వ',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 రాత్రి CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 రాత్రి, 12:00 రాత్రి',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 రాత్రి, 1:30 రాత్రి',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 రాత్రి, 2:00 రాత్రి',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ఉదయం, 6:00 ఉదయం',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 మధ్యాహ్నం, 10:00 మధ్యాహ్నం',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 మధ్యాహ్నం, 12:00 మధ్యాహ్నం',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 సాయంత్రం, 5:00 సాయంత్రం',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30  రాత్రి, 9:30  రాత్రి',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00  రాత్రి, 11:00  రాత్రి',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0వ',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 సెకను క్రితం',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 సెక. క్రితం',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 సెకన్లు క్రితం',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 సెక. క్రితం',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 నిమిషం క్రితం',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 నిమి. క్రితం',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 నిమిషాలు క్రితం',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 నిమి. క్రితం',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 గంట క్రితం',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 గం. క్రితం',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 గంటలు క్రితం',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 గం. క్రితం',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 రోజు క్రితం',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 రోజు క్రితం',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 రోజులు క్రితం',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 రోజు. క్రితం',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 వారం క్రితం',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 వార. క్రితం',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 వారాలు క్రితం',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 వారా. క్రితం',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 నెల క్రితం',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 నెల క్రితం',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 నెలలు క్రితం',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 నెల. క్రితం',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 సంవత్సరం క్రితం',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 సం. క్రితం',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 సంవత్సరాలు క్రితం',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 సం. క్రితం',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 సెకను లో',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 సెక. లో',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 సెకను',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 సెక.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 సెకన్లు',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 సెక.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 సెక. లో',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 నిమిషం 1 సెకను',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 సం. 3 నెల. 1 రోజు 1 సెక.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 సంవత్సరాలు లో',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 నెల. క్రితం',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 సం. 3 నెల. 1 రోజు 1 సెక. క్రితం',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 వారం 10 గంటలు',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 వారం 6 రోజులు',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 వారం 6 రోజులు',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 వారం, 6 రోజులు లో',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 వారాలు 1 గంట',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ఒక గంట లో',\n        // CarbonInterval::days(2)->forHumans()\n        '2 రోజులు',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 రోజు 3 గం.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TeoKeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TeoKeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'teo_KE'; // Teso\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakasabiti, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakaejuma, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakaebarasa, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakaare, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakauni, 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Nakaung’on, 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Nakakany, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakaare, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakauni, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakaung’on, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakakany, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakasabiti, 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் Nakaejuma, 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakaare, 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakaare, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakaebarasa, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakaejuma, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakasabiti, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakakany, 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் Nakaung’on, 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் Nakauni, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் Nakakany, 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 2வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 taparachu CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Taparachu, 12:00 taparachu',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Taparachu, 1:30 taparachu',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Taparachu, 2:00 taparachu',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Taparachu, 6:00 taparachu',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Taparachu, 10:00 taparachu',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ebongi, 12:00 ebongi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ebongi, 5:00 ebongi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ebongi, 9:30 ebongi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ebongi, 11:00 ebongi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாள் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரம் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதம் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 வருடம் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 வருட. முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 சில விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 வருட. 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 வருடம் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 வருட. 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரம் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TeoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TeoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'teo'; // Teso\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நாளை 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakasabiti, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakaejuma, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakaebarasa, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakaare, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Nakauni, 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Nakaung’on, 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Nakakany, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakaare, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakauni, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakaung’on, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakakany, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakasabiti, 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'கடந்த வாரம் Nakaejuma, 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'இன்று 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'இன்று 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'நாளை 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Nakaare, 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'நேற்று 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakaare, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakaebarasa, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakaejuma, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakasabiti, 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'கடந்த வாரம் Nakakany, 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'கடந்த வாரம் Nakaung’on, 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'கடந்த வாரம் Nakauni, 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'கடந்த வாரம் Nakakany, 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1வது 1வது 1வது 1வது 1வது',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2வது 1வது',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3வது 1வது',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4வது 1வது',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5வது 1வது',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6வது 1வது',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7வது 1வது',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11வது 2வது',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40வது',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41வது',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100வது',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 taparachu CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Taparachu, 12:00 taparachu',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Taparachu, 1:30 taparachu',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Taparachu, 2:00 taparachu',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Taparachu, 6:00 taparachu',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Taparachu, 10:00 taparachu',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ebongi, 12:00 ebongi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ebongi, 5:00 ebongi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ebongi, 9:30 ebongi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ebongi, 11:00 ebongi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0வது',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 சில விநாடிகள் முன்',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 விநா. முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 நிமி. முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 நிமிடம் முன்',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 நிமி. முன்',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 மணி நேரம் முன்',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 மணி. முன்',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 மணி நேரம் முன்',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 மணி. முன்',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 நாள் முன்',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 நாள் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 வாரம் முன்',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 வார. முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 வாரம் முன்',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 வார. முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 மாதம் முன்',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 மாத. முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 மாதம் முன்',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 மாத. முன்',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 வருடம் முன்',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 வருட. முன்',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 வருடம் முன்',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 வருட. முன்',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 சில விநாடிகள் இல்',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 விநா. இல்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 சில விநாடிகள் பின்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 விநா. பின்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 சில விநாடிகள் முன்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 விநா. முன்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 சில விநாடிகள்',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 விநா.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 சில விநாடிகள்',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 விநா.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 விநா. இல்',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 நிமிடம் 1 சில விநாடிகள்',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 வருட. 3 மாத. 1 நாள் 1 விநா.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 வருடம் இல்',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 மாத. முன்',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 வருட. 3 மாத. 1 நாள் 1 விநா. முன்',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 10 மணி நேரம்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 வாரம் 6 நாள்',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 வாரம் மற்றும் 6 நாள் இல்',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 வாரம் 1 மணி நேரம்',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ஒரு மணி நேரம் இல்',\n        // CarbonInterval::days(2)->forHumans()\n        '2 நாள்',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 நாள் 3 மணி.',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TetTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TetTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tet'; // Tetum\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Aban iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabadu iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domingu iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Segunda iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tersa iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Kuarta iha 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Kinta iha 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Sesta iha 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tersa iha 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kuarta iha 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Kinta iha 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sesta iha 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sabadu iha 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Domingu semana kotuk iha 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Horiseik iha 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Ohin iha 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ohin iha 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Aban iha 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tersa iha 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Horiseik iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Horiseik iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tersa semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Segunda semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Domingu semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabadu semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sesta semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Kinta semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Kuarta semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sesta semana kotuk iha 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1º 1º 1º 1º 1º',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2º 1º',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3º 1º',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4º 1º',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5º 1º',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6º 1º',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7º 1º',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11º 2º',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40º',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41º',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100º',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0º',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'segundu 1 liuba',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'segundu 1 liuba',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'segundu 2 liuba',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'segundu 2 liuba',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'minutu 1 liuba',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'minutu 1 liuba',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'minutu 2 liuba',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'minutu 2 liuba',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'oras 1 liuba',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'oras 1 liuba',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'oras 2 liuba',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'oras 2 liuba',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'loron 1 liuba',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'loron 1 liuba',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'loron 2 liuba',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'loron 2 liuba',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'semana 1 liuba',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'semana 1 liuba',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'semana 2 liuba',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'semana 2 liuba',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'fulan 1 liuba',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'fulan 1 liuba',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'fulan 2 liuba',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'fulan 2 liuba',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'tinan 1 liuba',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'tinan 1 liuba',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'tinan 2 liuba',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'tinan 2 liuba',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'iha segundu 1',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'iha segundu 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'segundu 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'segundu 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'segundu 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'segundu 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'iha segundu 1',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'minutu 1 segundu 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'tinan 2 fulan 3 loron 1 segundu 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'iha tinan 3',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'fulan 5 liuba',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'tinan 2 fulan 3 loron 1 segundu 1 liuba',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'semana 1 oras 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'semana 1 loron 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'semana 1 loron 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'iha semana 1 loron 6',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'semana 2 oras 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'iha oras ida',\n        // CarbonInterval::days(2)->forHumans()\n        'loron 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'loron 1 oras 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tg'; // Tajik\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Пагоҳ соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'шанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'якшанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'душанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сешанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'чоршанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'панҷшанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ҷумъаи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сешанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'чоршанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'панҷшанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ҷумъаи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'шанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'якшанбеи ҳафтаи гузашта соати 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дирӯз соати 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Имрӯз соати 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Имрӯз соати 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Пагоҳ соати 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сешанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Дирӯз соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дирӯз соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сешанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'душанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'якшанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'шанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ҷумъаи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'панҷшанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'чоршанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ҷумъаи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ум 1-ум 1-ум 1-ум 1-ум',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-юм 1-ум',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-юм 1-ум',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ум 1-ум',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ум 1-ум',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ум 1-ум',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ум 1-ум',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ум 2-юм',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ум',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ум',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ум',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 шаб CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 шаб, 12:00 шаб',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 шаб, 1:30 шаб',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 шаб, 2:00 шаб',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 субҳ, 6:00 субҳ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 субҳ, 10:00 субҳ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 рӯз, 12:00 рӯз',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 бегоҳ, 5:00 бегоҳ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 шаб, 9:30 шаб',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 шаб, 11:00 шаб',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ıncı',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'якчанд сония пеш',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'якчанд сония пеш',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 сония пеш',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сония пеш',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'як дақиқа пеш',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'як дақиқа пеш',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 дақиқа пеш',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 дақиқа пеш',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'як соат пеш',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'як соат пеш',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 соат пеш',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 соат пеш',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'як рӯз пеш',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'як рӯз пеш',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 рӯз пеш',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 рӯз пеш',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'як ҳафта пеш',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'як ҳафта пеш',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ҳафта пеш',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ҳафта пеш',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'як моҳ пеш',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'як моҳ пеш',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 моҳ пеш',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 моҳ пеш',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'як сол пеш',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'як сол пеш',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 сол пеш',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 сол пеш',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'баъди якчанд сония',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'баъди якчанд сония',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'якчанд сония',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'якчанд сония',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 сония',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сония',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'баъди якчанд сония',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'як дақиқа якчанд сония',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 сол 3 моҳ як рӯз якчанд сония',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'баъди 3 сол',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 моҳ пеш',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 сол 3 моҳ як рӯз якчанд сония пеш',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'як ҳафта 10 соат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'як ҳафта 6 рӯз',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'як ҳафта 6 рӯз',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'баъди як ҳафта ва 6 рӯз',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ҳафта як соат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'баъди як соат',\n        // CarbonInterval::days(2)->forHumans()\n        '2 рӯз',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'як рӯз 3 соат',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TgTjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TgTjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tg_TJ'; // Tajik\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Пагоҳ соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'шанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'якшанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'душанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сешанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'чоршанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'панҷшанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ҷумъаи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сешанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'чоршанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'панҷшанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ҷумъаи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'шанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'якшанбеи ҳафтаи гузашта соати 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дирӯз соати 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Имрӯз соати 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Имрӯз соати 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Пагоҳ соати 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сешанбеи ҳафтаи оянда соати 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Дирӯз соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Дирӯз соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сешанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'душанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'якшанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'шанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ҷумъаи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'панҷшанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'чоршанбеи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ҷумъаи ҳафтаи гузашта соати 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-ум 1-ум 1-ум 1-ум 1-ум',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-юм 1-ум',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-юм 1-ум',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-ум 1-ум',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-ум 1-ум',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-ум 1-ум',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-ум 1-ум',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-ум 2-юм',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-ум',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-ум',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-ум',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 шаб CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 шаб, 12:00 шаб',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 шаб, 1:30 шаб',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 шаб, 2:00 шаб',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 субҳ, 6:00 субҳ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 субҳ, 10:00 субҳ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 рӯз, 12:00 рӯз',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 бегоҳ, 5:00 бегоҳ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 шаб, 9:30 шаб',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 шаб, 11:00 шаб',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0-ıncı',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'якчанд сония пеш',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'якчанд сония пеш',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 сония пеш',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 сония пеш',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'як дақиқа пеш',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'як дақиқа пеш',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 дақиқа пеш',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 дақиқа пеш',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'як соат пеш',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'як соат пеш',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 соат пеш',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 соат пеш',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'як рӯз пеш',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'як рӯз пеш',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 рӯз пеш',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 рӯз пеш',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'як ҳафта пеш',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'як ҳафта пеш',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ҳафта пеш',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ҳафта пеш',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'як моҳ пеш',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'як моҳ пеш',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 моҳ пеш',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 моҳ пеш',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'як сол пеш',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'як сол пеш',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 сол пеш',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 сол пеш',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'баъди якчанд сония',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'баъди якчанд сония',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'якчанд сония',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'якчанд сония',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 сония',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 сония',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'баъди якчанд сония',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'як дақиқа якчанд сония',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 сол 3 моҳ як рӯз якчанд сония',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'баъди 3 сол',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 моҳ пеш',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 сол 3 моҳ як рӯз якчанд сония пеш',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'як ҳафта 10 соат',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'як ҳафта 6 рӯз',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'як ҳафта 6 рӯз',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'баъди як ҳафта ва 6 рӯз',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ҳафта як соат',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'баъди як соат',\n        // CarbonInterval::days(2)->forHumans()\n        '2 рӯз',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'як рӯз 3 соат',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ThTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ThTest extends LocalizationTestCase\n{\n    public const LOCALE = 'th'; // Thai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'พรุ่งนี้ เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'เสาร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'อาทิตย์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'จันทร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'อังคารหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'พุธหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'พฤหัสบดีหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ศุกร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'อังคารหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'พุธหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'พฤหัสบดีหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ศุกร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'เสาร์หน้า เวลา 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'วันอาทิตย์ที่แล้ว เวลา 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'เมื่อวานนี้ เวลา 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'วันนี้ เวลา 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'วันนี้ เวลา 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'พรุ่งนี้ เวลา 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'อังคารหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'เมื่อวานนี้ เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'เมื่อวานนี้ เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'วันอังคารที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'วันจันทร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'วันอาทิตย์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'วันเสาร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'วันศุกร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'วันพฤหัสบดีที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'วันพุธที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'วันศุกร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 ก่อนเที่ยง CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ก่อนเที่ยง, 12:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ก่อนเที่ยง, 1:30 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ก่อนเที่ยง, 2:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 ก่อนเที่ยง, 6:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 ก่อนเที่ยง, 10:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 หลังเที่ยง, 12:00 หลังเที่ยง',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 หลังเที่ยง, 5:00 หลังเที่ยง',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 หลังเที่ยง, 9:30 หลังเที่ยง',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 หลังเที่ยง, 11:00 หลังเที่ยง',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 วินาทีที่แล้ว',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 วินาทีที่แล้ว',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 วินาทีที่แล้ว',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 วินาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 นาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 นาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 นาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 นาทีที่แล้ว',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 วันที่แล้ว',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 วันที่แล้ว',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 วันที่แล้ว',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 วันที่แล้ว',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 เดือนที่แล้ว',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 เดือนที่แล้ว',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 เดือนที่แล้ว',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 เดือนที่แล้ว',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 ปีที่แล้ว',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 ปีที่แล้ว',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 ปีที่แล้ว',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 ปีที่แล้ว',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'อีก 1 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'อีก 1 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 วินาทีหลังจากนี้',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 วินาทีหลังจากนี้',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 วินาทีก่อน',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 วินาทีก่อน',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 วินาที',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 วินาที',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'อีก 1 วินาที',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 นาที 1 วินาที',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 ปี 3 เดือน 1 วัน 1 วินาที',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'อีก 3 ปี',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 เดือนที่แล้ว',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 ปี 3 เดือน 1 วัน 1 วินาทีที่แล้ว',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 สัปดาห์ 10 ชั่วโมง',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 สัปดาห์ 6 วัน',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 สัปดาห์ 6 วัน',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'อีก 1 สัปดาห์ และ 6 วัน',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 สัปดาห์ 1 ชั่วโมง',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'อีก 1 ชั่วโมง',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 วัน',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 วัน 3 ชั่วโมง',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ThThTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ThThTest extends LocalizationTestCase\n{\n    public const LOCALE = 'th_TH'; // Thai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'พรุ่งนี้ เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'เสาร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'อาทิตย์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'จันทร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'อังคารหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'พุธหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'พฤหัสบดีหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ศุกร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'อังคารหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'พุธหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'พฤหัสบดีหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'ศุกร์หน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'เสาร์หน้า เวลา 0:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'วันอาทิตย์ที่แล้ว เวลา 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'เมื่อวานนี้ เวลา 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'วันนี้ เวลา 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'วันนี้ เวลา 2:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'พรุ่งนี้ เวลา 1:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'อังคารหน้า เวลา 0:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'เมื่อวานนี้ เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'เมื่อวานนี้ เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'วันอังคารที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'วันจันทร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'วันอาทิตย์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'วันเสาร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'วันศุกร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'วันพฤหัสบดีที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'วันพุธที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'วันศุกร์ที่แล้ว เวลา 0:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 2',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 ก่อนเที่ยง CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ก่อนเที่ยง, 12:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ก่อนเที่ยง, 1:30 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ก่อนเที่ยง, 2:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 ก่อนเที่ยง, 6:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 ก่อนเที่ยง, 10:00 ก่อนเที่ยง',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 หลังเที่ยง, 12:00 หลังเที่ยง',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 หลังเที่ยง, 5:00 หลังเที่ยง',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 หลังเที่ยง, 9:30 หลังเที่ยง',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 หลังเที่ยง, 11:00 หลังเที่ยง',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 วินาทีที่แล้ว',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1 วินาทีที่แล้ว',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 วินาทีที่แล้ว',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2 วินาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 นาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1 นาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 นาทีที่แล้ว',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2 นาทีที่แล้ว',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2 ชั่วโมงที่แล้ว',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 วันที่แล้ว',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1 วันที่แล้ว',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 วันที่แล้ว',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2 วันที่แล้ว',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2 สัปดาห์ที่แล้ว',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 เดือนที่แล้ว',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1 เดือนที่แล้ว',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 เดือนที่แล้ว',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2 เดือนที่แล้ว',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 ปีที่แล้ว',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1 ปีที่แล้ว',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 ปีที่แล้ว',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2 ปีที่แล้ว',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        'อีก 1 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        'อีก 1 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 วินาทีหลังจากนี้',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1 วินาทีหลังจากนี้',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 วินาทีก่อน',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1 วินาทีก่อน',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1 วินาที',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 วินาที',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2 วินาที',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        'อีก 1 วินาที',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 นาที 1 วินาที',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2 ปี 3 เดือน 1 วัน 1 วินาที',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        'อีก 3 ปี',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5 เดือนที่แล้ว',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2 ปี 3 เดือน 1 วัน 1 วินาทีที่แล้ว',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 สัปดาห์ 10 ชั่วโมง',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 สัปดาห์ 6 วัน',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 สัปดาห์ 6 วัน',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        'อีก 1 สัปดาห์ และ 6 วัน',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 สัปดาห์ 1 ชั่วโมง',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'อีก 1 ชั่วโมง',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 วัน',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1 วัน 3 ชั่วโมง',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TheNpTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TheNpTest extends LocalizationTestCase\n{\n    public const LOCALE = 'the_NP'; // Chitwania Tharu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आइतबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिहिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिहिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिबार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last आइतबार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last आइतबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिहिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TheTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TheTest extends LocalizationTestCase\n{\n    public const LOCALE = 'the'; // Chitwania Tharu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'शनिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'आइतबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'सोमबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'बुधबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'बिहिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बुधबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'बिहिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'शनिबार at 12:00 पूर्वाह्न',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last आइतबार at 8:49 अपराह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 अपराह्न',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last मंगलबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last सोमबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last आइतबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शनिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last बिहिबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last बुधबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last शुक्रबार at 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 पूर्वाह्न CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 पूर्वाह्न, 12:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 पूर्वाह्न, 1:30 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 पूर्वाह्न, 2:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 पूर्वाह्न, 6:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 पूर्वाह्न, 10:00 पूर्वाह्न',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 अपराह्न, 12:00 अपराह्न',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 अपराह्न, 5:00 अपराह्न',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 अपराह्न, 9:30 अपराह्न',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 अपराह्न, 11:00 अपराह्न',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TiErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TiErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ti_ER'; // Tigrinya\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑይ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበት at 8:49 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑይ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ንጉሆ ሰዓተ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ንጉሆ ሰዓተ, 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ንጉሆ ሰዓተ, 1:30 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ንጉሆ ሰዓተ, 2:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ንጉሆ ሰዓተ, 6:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ንጉሆ ሰዓተ, 10:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ድሕር ሰዓት, 12:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ድሕር ሰዓት, 5:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ድሕር ሰዓት, 9:30 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ድሕር ሰዓት, 11:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ሰከንድ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ሰከንድ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ሰከንድ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ሰከንድ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ደቒቕ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ደቒቕ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ደቒቕ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ደቒቕ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ሰዓት ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 መዓልቲ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 መዓልቲ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 መዓልቲ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 መዓልቲ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ሰሙን ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ሰሙን ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ሰሙን ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ሰሙን ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ወርሒ 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ወርሒ 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ወርሒ 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ወርሒ 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ዓመት ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ሰከንድ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ሰከንድ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ሰከንድ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ሰከንድ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ሰከንድ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ሰከንድ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ሰከንድ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ሰከንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ሰከንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ሰከንድ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ሰከንድ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ደቒቕ 1 ሰከንድ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ዓመት ወርሒ 3 1 መዓልቲ 1 ሰከንድ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ዓመት from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ወርሒ 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ዓመት ወርሒ 3 1 መዓልቲ 1 ሰከንድ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሰሙን 10 ሰዓት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰሙን 6 መዓልቲ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰሙን 6 መዓልቲ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ሰሙን and 6 መዓልቲ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሰሙን 1 ሰዓት',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ሰዓት from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 መዓልቲ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 መዓልቲ 3 ሰዓት',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TiEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TiEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ti_ET'; // Tigrinya\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑይ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበት at 8:49 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑይ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ንጉሆ ሰዓተ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ንጉሆ ሰዓተ, 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ንጉሆ ሰዓተ, 1:30 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ንጉሆ ሰዓተ, 2:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ንጉሆ ሰዓተ, 6:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ንጉሆ ሰዓተ, 10:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ድሕር ሰዓት, 12:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ድሕር ሰዓት, 5:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ድሕር ሰዓት, 9:30 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ድሕር ሰዓት, 11:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ti'; // Tigrinya\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኑይ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበት at 8:49 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰሉስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኑይ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቀዳም at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሓሙስ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ረቡዕ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ዓርቢ at 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ንጉሆ ሰዓተ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ንጉሆ ሰዓተ, 12:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ንጉሆ ሰዓተ, 1:30 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ንጉሆ ሰዓተ, 2:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ንጉሆ ሰዓተ, 6:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ንጉሆ ሰዓተ, 10:00 ንጉሆ ሰዓተ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ድሕር ሰዓት, 12:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ድሕር ሰዓት, 5:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ድሕር ሰዓት, 9:30 ድሕር ሰዓት',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ድሕር ሰዓት, 11:00 ድሕር ሰዓት',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ሰከንድ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ሰከንድ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ሰከንድ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ሰከንድ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ደቒቕ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ደቒቕ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ደቒቕ ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ደቒቕ ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ሰዓት ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 መዓልቲ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 መዓልቲ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 መዓልቲ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 መዓልቲ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ሰሙን ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ሰሙን ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ሰሙን ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ሰሙን ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ወርሒ 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ወርሒ 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ወርሒ 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ወርሒ 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ዓመት ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ዓመት ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ሰከንድ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ሰከንድ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ሰከንድ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ሰከንድ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ሰከንድ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ሰከንድ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ሰከንድ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ሰከንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ሰከንድ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ሰከንድ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ሰከንድ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ደቒቕ 1 ሰከንድ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ዓመት ወርሒ 3 1 መዓልቲ 1 ሰከንድ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ዓመት from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ወርሒ 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ዓመት ወርሒ 3 1 መዓልቲ 1 ሰከንድ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሰሙን 10 ሰዓት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰሙን 6 መዓልቲ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰሙን 6 መዓልቲ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ሰሙን and 6 መዓልቲ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሰሙን 1 ሰዓት',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ሰዓት from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 መዓልቲ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 መዓልቲ 3 ሰዓት',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TigErTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TigErTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tig_ER'; // Tigre\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት ንኢሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት ዓባይ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ኣረርባዓ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ከሚሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ኣረርባዓ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ከሚሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰንበት ንኢሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበት ዓባይ at 8:49 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት ዓባይ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት ንኢሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ከሚሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ኣረርባዓ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ቀደም ሰር ምዕል CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ቀደም ሰር ምዕል, 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ቀደም ሰር ምዕል, 1:30 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ቀደም ሰር ምዕል, 2:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ቀደም ሰር ምዕል, 6:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ቀደም ሰር ምዕል, 10:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ሓቆ ሰር ምዕል, 12:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ሓቆ ሰር ምዕል, 5:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ሓቆ ሰር ምዕል, 9:30 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ሓቆ ሰር ምዕል, 11:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ካልኣይ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ካልኣይ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ካልኣይ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ካልኣይ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ካልኣይት ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ካልኣይት ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ካልኣይት ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ካልኣይት ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ሰዓት ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ዎሮ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ዎሮ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ዎሮ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ዎሮ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ሰቡዕ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ሰቡዕ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ሰቡዕ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ሰቡዕ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ሸምሽ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ሸምሽ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ሸምሽ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ሸምሽ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ማይ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ማይ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ማይ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ማይ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ካልኣይ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ካልኣይ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ካልኣይ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ካልኣይ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ካልኣይ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ካልኣይ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ካልኣይ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ካልኣይ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ካልኣይ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ካልኣይ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ካልኣይ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ካልኣይት 1 ካልኣይ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ማይ 3 ሸምሽ 1 ዎሮ 1 ካልኣይ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ማይ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ሸምሽ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ማይ 3 ሸምሽ 1 ዎሮ 1 ካልኣይ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሰቡዕ 10 ሰዓት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰቡዕ 6 ዎሮ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰቡዕ 6 ዎሮ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ሰቡዕ and 6 ዎሮ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሰቡዕ 1 ሰዓት',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ሰዓት from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ዎሮ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ዎሮ 3 ሰዓት',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TigTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TigTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tig'; // Tigre\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት ንኢሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰንበት ዓባይ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሰኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ኣረርባዓ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ከሚሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ኣረርባዓ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ከሚሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሰንበት ንኢሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ሰንበት ዓባይ at 8:49 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ታላሸኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰኖ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት ዓባይ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሰንበት ንኢሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ከሚሽ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ኣረርባዓ at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ጅምዓት at 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ቀደም ሰር ምዕል CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ቀደም ሰር ምዕል, 12:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ቀደም ሰር ምዕል, 1:30 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ቀደም ሰር ምዕል, 2:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ቀደም ሰር ምዕል, 6:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ቀደም ሰር ምዕል, 10:00 ቀደም ሰር ምዕል',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ሓቆ ሰር ምዕል, 12:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ሓቆ ሰር ምዕል, 5:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ሓቆ ሰር ምዕል, 9:30 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ሓቆ ሰር ምዕል, 11:00 ሓቆ ሰር ምዕል',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ካልኣይ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ካልኣይ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ካልኣይ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ካልኣይ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ካልኣይት ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ካልኣይት ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ካልኣይት ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ካልኣይት ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ሰዓት ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ሰዓት ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ዎሮ ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ዎሮ ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ዎሮ ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ዎሮ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ሰቡዕ ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ሰቡዕ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ሰቡዕ ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ሰቡዕ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ሸምሽ ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ሸምሽ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ሸምሽ ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ሸምሽ ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ማይ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ማይ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ማይ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ማይ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ካልኣይ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ካልኣይ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ካልኣይ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ካልኣይ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ካልኣይ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ካልኣይ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ካልኣይ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ካልኣይ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ካልኣይ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ካልኣይ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ካልኣይ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ካልኣይት 1 ካልኣይ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ማይ 3 ሸምሽ 1 ዎሮ 1 ካልኣይ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ማይ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ሸምሽ ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ማይ 3 ሸምሽ 1 ዎሮ 1 ካልኣይ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ሰቡዕ 10 ሰዓት',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰቡዕ 6 ዎሮ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ሰቡዕ 6 ዎሮ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ሰቡዕ and 6 ዎሮ from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ሰቡዕ 1 ሰዓት',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ሰዓት from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ዎሮ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ዎሮ 3 ሰዓት',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tk'; // Turkmen\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Şenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ýekşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Duşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Çarşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Penşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Anna at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Çarşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Penşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Anna at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Şenbe at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ýekşenbe at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Duşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ýekşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Şenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Anna at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Penşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Çarşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Anna at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekunt ozal',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekunt ozal',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekunt ozal',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekunt ozal',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut ozal',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minut ozal',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minut ozal',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minut ozal',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 sagat ozal',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 sagat ozal',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 sagat ozal',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sagat ozal',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 gün ozal',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 gün ozal',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 gün ozal',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gün ozal',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 hepde ozal',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 hepde ozal',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 hepde ozal',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 hepde ozal',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 aý ozal',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 aý ozal',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 aý ozal',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 aý ozal',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ýyl ozal',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ýyl ozal',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ýyl ozal',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ýyl ozal',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunt soňra',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekunt soňra',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekunt soň',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekunt soň',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekunt öň',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekunt öň',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunt',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekunt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekunt soňra',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekunt',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ýyl 3 aý 1 gün 1 sekunt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ýyl soňra',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 aý ozal',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ýyl 3 aý 1 gün 1 sekunt ozal',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 hepde 10 sagat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hepde 6 gün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hepde 6 gün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 hepde and 6 gün soňra',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 hepde 1 sagat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 sagat soňra',\n        // CarbonInterval::days(2)->forHumans()\n        '2 gün',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 gün 3 sagat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TkTmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TkTmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tk_TM'; // Turkmen\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Şenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ýekşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Duşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Çarşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Penşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Anna at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Çarşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Penşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Anna at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Şenbe at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Ýekşenbe at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sişenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Duşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ýekşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Şenbe at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Anna at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Penşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Çarşenbe at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Anna at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekunt ozal',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekunt ozal',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekunt ozal',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekunt ozal',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut ozal',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minut ozal',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minut ozal',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minut ozal',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 sagat ozal',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 sagat ozal',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 sagat ozal',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 sagat ozal',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 gün ozal',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 gün ozal',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 gün ozal',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 gün ozal',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 hepde ozal',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 hepde ozal',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 hepde ozal',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 hepde ozal',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 aý ozal',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 aý ozal',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 aý ozal',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 aý ozal',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ýyl ozal',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ýyl ozal',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ýyl ozal',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ýyl ozal',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekunt soňra',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekunt soňra',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekunt soň',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekunt soň',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekunt öň',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekunt öň',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekunt',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekunt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekunt',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekunt',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekunt soňra',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekunt',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ýyl 3 aý 1 gün 1 sekunt',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ýyl soňra',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 aý ozal',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ýyl 3 aý 1 gün 1 sekunt ozal',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 hepde 10 sagat',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hepde 6 gün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 hepde 6 gün',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 hepde and 6 gün soňra',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 hepde 1 sagat',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 sagat soňra',\n        // CarbonInterval::days(2)->forHumans()\n        '2 gün',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 gün 3 sagat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TlPhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TlPhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tl_PH'; // Tagalog\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bukas ng 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Sabado',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Linggo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Lunes',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Martes',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Miyerkules',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '00:00 sa susunod na Huwebes',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '00:00 sa susunod na Biyernes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Martes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Miyerkules',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Huwebes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Biyernes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Sabado',\n        // Carbon::now()->subDays(2)->calendar()\n        '20:49 noong nakaraang Linggo',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '22:00 kahapon',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '10:00 ngayong araw',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '02:00 ngayong araw',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Bukas ng 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Martes',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '00:00 kahapon',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 kahapon',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Martes',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Lunes',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Linggo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Sabado',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Biyernes',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '00:00 noong nakaraang Huwebes',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '00:00 noong nakaraang Miyerkules',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 noong nakaraang Biyernes',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 seg. ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 seg. ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oras ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 araw ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taon ang nakalipas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sa loob ng 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sa loob ng 1 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 seg.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sa loob ng 1 seg.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taon 3 buwan 1 araw 1 seg.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'sa loob ng 3 taon',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 buwan ang nakalipas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taon 3 buwan 1 araw 1 seg. ang nakalipas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 linggo 10 oras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'sa loob ng 1 linggo at 6 araw',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 linggo 1 oras',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sa loob ng isang oras',\n        // CarbonInterval::days(2)->forHumans()\n        '2 araw',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 araw 3 oras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tl'; // Tagalog\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Bukas ng 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Sabado',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Linggo',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Lunes',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Martes',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 sa susunod na Miyerkules',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '00:00 sa susunod na Huwebes',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '00:00 sa susunod na Biyernes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Martes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Miyerkules',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Huwebes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Biyernes',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Sabado',\n        // Carbon::now()->subDays(2)->calendar()\n        '20:49 noong nakaraang Linggo',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '22:00 kahapon',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        '10:00 ngayong araw',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '02:00 ngayong araw',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Bukas ng 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 sa susunod na Martes',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        '00:00 kahapon',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 kahapon',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Martes',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Lunes',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Linggo',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Sabado',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '00:00 noong nakaraang Biyernes',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '00:00 noong nakaraang Huwebes',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '00:00 noong nakaraang Miyerkules',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '00:00 noong nakaraang Biyernes',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 seg. ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 segundo ang nakalipas',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 seg. ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 min. ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minuto ang nakalipas',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 min. ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 oras ang nakalipas',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 oras ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 araw ang nakalipas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 araw ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 linggo ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 buwan ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 taon ang nakalipas',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 taon ang nakalipas',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'sa loob ng 1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'sa loob ng 1 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 segundo',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 seg.',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 segundo',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 seg.',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'sa loob ng 1 seg.',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuto 1 segundo',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 taon 3 buwan 1 araw 1 seg.',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'sa loob ng 3 taon',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 buwan ang nakalipas',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 taon 3 buwan 1 araw 1 seg. ang nakalipas',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 linggo 10 oras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 linggo 6 araw',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'sa loob ng 1 linggo at 6 araw',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 linggo 1 oras',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'sa loob ng isang oras',\n        // CarbonInterval::days(2)->forHumans()\n        '2 araw',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 araw 3 oras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TlhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TlhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tlh'; // Klingon\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wa’leS 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '6 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '7 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '8 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '9 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '10 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        '11 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        '12 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '9 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '10 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '11 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '12 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '13 tera’ jar wa’ 2018 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        '13 tera’ jar vagh 2018 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wa’Hu’ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'DaHjaj 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'DaHjaj 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'wa’leS 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '9 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'wa’Hu’ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'wa’Hu’ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '2 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '1 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '31 tera’ jar wa’maH cha’ 2017 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '30 tera’ jar wa’maH cha’ 2017 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        '29 tera’ jar wa’maH cha’ 2017 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        '28 tera’ jar wa’maH cha’ 2017 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        '27 tera’ jar wa’maH cha’ 2017 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        '5 tera’ jar wa’ 2018 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'puS lup ret',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'puS lup ret',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 lup ret',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 lup ret',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'wa’ tup ret',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'wa’ tup ret',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 tup ret',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 tup ret',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'wa’ rep ret',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'wa’ rep ret',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 rep ret',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 rep ret',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'wa’ Hu’',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'wa’ Hu’',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 Hu’',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 Hu’',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'wa’ hogh ret',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'wa’ hogh ret',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 hogh ret',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 hogh ret',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'wa’ wen',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'wa’ wen',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 wen',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 wen',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'wa’ ben',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'wa’ ben',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ben',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ben',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'puS lup pIq',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'puS lup pIq',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'puS lup',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'puS lup',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 lup',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 lup',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'puS lup pIq',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'wa’ tup puS lup',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 DIS 3 jar wa’ jaj puS lup',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 nem',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 wen',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ben 3 wen wa’ Hu’ puS lup',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'wa’ hogh 10 rep',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wa’ hogh 6 jaj',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'wa’ hogh 6 jaj',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'wa’ hogh ’ej 6 leS',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 hogh wa’ rep',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'wa’ rep pIq',\n        // CarbonInterval::days(2)->forHumans()\n        '2 jaj',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'wa’ jaj 3 rep',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tn'; // Tswana\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lamatlhatso at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'laTshipi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mosupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lamatlhatso at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last laTshipi at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mosupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last laTshipi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lamatlhatso at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Labone at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'metsotswana e le 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'metsotswana e le 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'metsotswana e le 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'metsotswana e le 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'metsotso e le 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'metsotso e le 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'metsotso e le 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'metsotso e le 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'diura di le 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'diura di le 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'diura di le 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'diura di le 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'malatsi 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'malatsi 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'malatsi 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'malatsi 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'dibeke di le 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'dibeke di le 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'dibeke di le 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'dibeke di le 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'dikgwedi di le 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'dikgwedi di le 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'dikgwedi di le 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'dikgwedi di le 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'dingwaga di le 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'dingwaga di le 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'dingwaga di le 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'dingwaga di le 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'metsotswana e le 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'metsotswana e le 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'metsotswana e le 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'metsotswana e le 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'metsotswana e le 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'metsotswana e le 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'metsotswana e le 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'metsotswana e le 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'metsotswana e le 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'metsotswana e le 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'metsotswana e le 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'metsotso e le 1 metsotswana e le 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'dingwaga di le 2 dikgwedi di le 3 malatsi 1 metsotswana e le 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dingwaga di le 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'dikgwedi di le 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'dingwaga di le 2 dikgwedi di le 3 malatsi 1 metsotswana e le 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'dibeke di le 1 diura di le 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'dibeke di le 1 malatsi 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'dibeke di le 1 malatsi 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dibeke di le 1 and malatsi 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'dibeke di le 2 diura di le 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'diura di le 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'malatsi 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'malatsi 1 diura di le 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TnZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TnZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tn_ZA'; // Tswana\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lamatlhatso at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'laTshipi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mosupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labone at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Lamatlhatso at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last laTshipi at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labobedi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mosupologo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last laTshipi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Lamatlhatso at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Labone at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Laboraro at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Labotlhano at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'metsotswana e le 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'metsotswana e le 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'metsotswana e le 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'metsotswana e le 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'metsotso e le 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'metsotso e le 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'metsotso e le 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'metsotso e le 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'diura di le 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'diura di le 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'diura di le 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'diura di le 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'malatsi 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'malatsi 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'malatsi 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'malatsi 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'dibeke di le 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'dibeke di le 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'dibeke di le 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'dibeke di le 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'dikgwedi di le 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'dikgwedi di le 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'dikgwedi di le 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'dikgwedi di le 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'dingwaga di le 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'dingwaga di le 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'dingwaga di le 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'dingwaga di le 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'metsotswana e le 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'metsotswana e le 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'metsotswana e le 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'metsotswana e le 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'metsotswana e le 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'metsotswana e le 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'metsotswana e le 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'metsotswana e le 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'metsotswana e le 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'metsotswana e le 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'metsotswana e le 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'metsotso e le 1 metsotswana e le 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'dingwaga di le 2 dikgwedi di le 3 malatsi 1 metsotswana e le 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dingwaga di le 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'dikgwedi di le 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'dingwaga di le 2 dikgwedi di le 3 malatsi 1 metsotswana e le 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'dibeke di le 1 diura di le 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'dibeke di le 1 malatsi 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'dibeke di le 1 malatsi 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dibeke di le 1 and malatsi 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'dibeke di le 2 diura di le 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'diura di le 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'malatsi 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'malatsi 1 diura di le 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ToTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ToTest extends LocalizationTestCase\n{\n    public const LOCALE = 'to'; // Tonga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tokonaki at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sāpate at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mōnite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Pulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Tuʻapulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Pulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuʻapulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tokonaki at 12:00 hengihengi',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sāpate at 8:49 efiafi',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 efiafi',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 hengihengi',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mōnite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sāpate at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tokonaki at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Tuʻapulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Pulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 hengihengi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 hengihengi, 12:00 hengihengi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 hengihengi, 1:30 hengihengi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 hengihengi, 2:00 hengihengi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 hengihengi, 6:00 hengihengi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 hengihengi, 10:00 hengihengi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 efiafi, 12:00 efiafi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 efiafi, 5:00 efiafi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 efiafi, 9:30 efiafi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 efiafi, 11:00 efiafi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekoni ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekoni ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekoni ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekoni ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 miniti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 miniti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 miniti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 miniti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 houa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 houa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 houa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 houa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ʻaho ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ʻaho ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ʻaho ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ʻaho ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Sapate ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Sapate ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Sapate ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Sapate ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 fitu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 fitu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 fitu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 fitu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekoni from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekoni from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekoni after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekoni after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekoni before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekoni before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekoni',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekoni',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekoni',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekoni',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekoni from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 miniti 1 sekoni',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 fitu 3 mahina 1 ʻaho 1 sekoni',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 fitu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 fitu 3 mahina 1 ʻaho 1 sekoni ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Sapate 10 houa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sapate 6 ʻaho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sapate 6 ʻaho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Sapate and 6 ʻaho from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Sapate 1 houa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 houa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ʻaho',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ʻaho 3 houa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ToToTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ToToTest extends LocalizationTestCase\n{\n    public const LOCALE = 'to_TO'; // Tonga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tokonaki at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sāpate at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mōnite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Pulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Tuʻapulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Pulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuʻapulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tokonaki at 12:00 hengihengi',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sāpate at 8:49 efiafi',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 efiafi',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 hengihengi',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tūsite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mōnite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sāpate at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tokonaki at 12:00 hengihengi',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Tuʻapulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Pulelulu at 12:00 hengihengi',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Falaite at 12:00 hengihengi',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 hengihengi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 hengihengi, 12:00 hengihengi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 hengihengi, 1:30 hengihengi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 hengihengi, 2:00 hengihengi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 hengihengi, 6:00 hengihengi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 hengihengi, 10:00 hengihengi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 efiafi, 12:00 efiafi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 efiafi, 5:00 efiafi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 efiafi, 9:30 efiafi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 efiafi, 11:00 efiafi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekoni ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekoni ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekoni ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekoni ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 miniti ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 miniti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 miniti ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 miniti ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 houa ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 houa ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 houa ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 houa ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ʻaho ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ʻaho ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ʻaho ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ʻaho ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 Sapate ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 Sapate ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 Sapate ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 Sapate ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mahina ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mahina ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mahina ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 fitu ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 fitu ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 fitu ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 fitu ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekoni from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekoni from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekoni after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekoni after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekoni before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekoni before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekoni',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekoni',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekoni',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekoni',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekoni from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 miniti 1 sekoni',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 fitu 3 mahina 1 ʻaho 1 sekoni',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 fitu from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mahina ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 fitu 3 mahina 1 ʻaho 1 sekoni ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 Sapate 10 houa',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sapate 6 ʻaho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 Sapate 6 ʻaho',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 Sapate and 6 ʻaho from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 Sapate 1 houa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 houa from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ʻaho',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ʻaho 3 houa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TpiPgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TpiPgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tpi_PG'; // Tok Pisin\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sarere at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Trinde at 12:00 biknait',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Fonde at 12:00 biknait',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Trinde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fonde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sarere at 12:00 biknait',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sande at 8:49 apinun',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 apinun',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 biknait',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sarere at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Fonde at 12:00 biknait',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Trinde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 biknait CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 biknait, 12:00 biknait',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 biknait, 1:30 biknait',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 biknait, 2:00 biknait',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 biknait, 6:00 biknait',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 biknait, 10:00 biknait',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 apinun, 12:00 apinun',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 apinun, 5:00 apinun',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 apinun, 9:30 apinun',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 apinun, 11:00 apinun',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 namba tu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 namba tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 namba tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 namba tu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 aua ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 aua ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 aua ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 aua ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 de ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 de ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 de ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 de ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wik ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 wik ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wik ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 wik ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mun ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mun ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mun ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mun ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'yia 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'yia 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'yia 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'yia 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 namba tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 namba tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 namba tu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 namba tu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 namba tu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 namba tu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 namba tu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 namba tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 namba tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 namba tu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 namba tu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 namba tu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'yia 2 3 mun 1 de 1 namba tu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'yia 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mun ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'yia 2 3 mun 1 de 1 namba tu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wik 10 aua',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wik 6 de',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wik 6 de',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 wik and 6 de from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wik 1 aua',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 aua from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 de',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 de 3 aua',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TpiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TpiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tpi'; // Tok Pisin\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sarere at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Trinde at 12:00 biknait',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Fonde at 12:00 biknait',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Trinde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fonde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sarere at 12:00 biknait',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sande at 8:49 apinun',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 apinun',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 biknait',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tunde at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sande at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sarere at 12:00 biknait',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Fonde at 12:00 biknait',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Trinde at 12:00 biknait',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fraide at 12:00 biknait',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 biknait CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 biknait, 12:00 biknait',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 biknait, 1:30 biknait',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 biknait, 2:00 biknait',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 biknait, 6:00 biknait',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 biknait, 10:00 biknait',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 apinun, 12:00 apinun',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 apinun, 5:00 apinun',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 apinun, 9:30 apinun',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 apinun, 11:00 apinun',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 namba tu ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 namba tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 namba tu ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 namba tu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minit ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minit ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minit ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 aua ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 aua ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 aua ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 aua ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 de ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 de ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 de ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 de ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 wik ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 wik ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 wik ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 wik ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mun ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mun ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mun ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mun ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'yia 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'yia 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'yia 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'yia 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 namba tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 namba tu from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 namba tu after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 namba tu after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 namba tu before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 namba tu before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 namba tu',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 namba tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 namba tu',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 namba tu',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 namba tu from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minit 1 namba tu',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'yia 2 3 mun 1 de 1 namba tu',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'yia 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mun ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'yia 2 3 mun 1 de 1 namba tu ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 wik 10 aua',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wik 6 de',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 wik 6 de',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 wik and 6 de from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 wik 1 aua',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 aua from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 de',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 de 3 aua',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TrCyTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TrCyTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tr_CY'; // Turkish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'yarın saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'gelecek Cumartesi saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'gelecek Pazar saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'gelecek Pazartesi saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'gelecek Çarşamba saat 12:00 öö',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'gelecek Perşembe saat 12:00 öö',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'gelecek Cuma saat 12:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 12:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'gelecek Çarşamba saat 12:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'gelecek Perşembe saat 12:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'gelecek Cuma saat 12:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'gelecek Cumartesi saat 12:00 öö',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'geçen Pazar saat 8:49 ös',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'dün 10:00 ös',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'bugün saat 10:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'bugün saat 2:00 öö',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'yarın saat 1:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 12:00 öö',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'dün 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'dün 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'geçen Salı saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'geçen Pazartesi saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'geçen Pazar saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'geçen Cumartesi saat 12:00 öö',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'geçen Cuma saat 12:00 öö',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'geçen Perşembe saat 12:00 öö',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'geçen Çarşamba saat 12:00 öö',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'geçen Cuma saat 12:00 öö',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1\\'inci 1\\'inci 1 1\\'inci 1\\'inci',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1\\'inci',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1\\'inci',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1\\'inci',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1\\'inci',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1\\'inci',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 1\\'inci',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2\\'nci',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41\\'inci',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100\\'üncü',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 öö CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ÖÖ, 12:00 öö',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ÖÖ, 1:30 öö',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ÖÖ, 2:00 öö',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 ÖÖ, 6:00 öö',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 ÖÖ, 10:00 öö',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 ÖS, 12:00 ös',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 ÖS, 5:00 ös',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 ÖS, 9:30 ös',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ÖS, 11:00 ös',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0\\'ıncı',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 saniye önce',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1sn önce',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 saniye önce',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2sn önce',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 dakika önce',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1dk önce',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 dakika önce',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2dk önce',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 saat önce',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1sa önce',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 saat önce',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2sa önce',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 gün önce',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1g önce',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 gün önce',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2g önce',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 hafta önce',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1h önce',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 hafta önce',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2h önce',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ay önce',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1ay önce',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ay önce',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2ay önce',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 yıl önce',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1y önce',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 yıl önce',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2y önce',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 saniye sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1sn sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 saniye sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1sn sonra',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 saniye önce',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1sn önce',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1sn',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2sn',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1sn sonra',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 dakika 1 saniye',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2y 3ay 1g 1sn',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 yıl sonra',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5ay önce',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2y 3ay 1g 1sn önce',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 hafta 10 saat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 hafta 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 hafta 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 hafta ve 6 gün sonra',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 hafta 1 saat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'bir saat sonra',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 gün',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1g 3sa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tr'; // Turkish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'yarın saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'gelecek Cumartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'gelecek Pazar saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'gelecek Pazartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'gelecek Çarşamba saat 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'gelecek Perşembe saat 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'gelecek Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'gelecek Çarşamba saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'gelecek Perşembe saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'gelecek Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'gelecek Cumartesi saat 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'geçen Pazar saat 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'dün 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'bugün saat 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'bugün saat 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'yarın saat 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'dün 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'dün 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'geçen Salı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'geçen Pazartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'geçen Pazar saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'geçen Cumartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'geçen Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'geçen Perşembe saat 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'geçen Çarşamba saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'geçen Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1\\'inci 1\\'inci 1 1\\'inci 1\\'inci',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1\\'inci',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1\\'inci',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1\\'inci',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1\\'inci',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1\\'inci',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 1\\'inci',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2\\'nci',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41\\'inci',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100\\'üncü',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 öö CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ÖÖ, 12:00 öö',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ÖÖ, 1:30 öö',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ÖÖ, 2:00 öö',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 ÖÖ, 6:00 öö',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 ÖÖ, 10:00 öö',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 ÖS, 12:00 ös',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 ÖS, 5:00 ös',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 ÖS, 9:30 ös',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ÖS, 11:00 ös',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0\\'ıncı',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 saniye önce',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1sn önce',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 saniye önce',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2sn önce',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 dakika önce',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1dk önce',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 dakika önce',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2dk önce',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 saat önce',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1sa önce',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 saat önce',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2sa önce',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 gün önce',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1g önce',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 gün önce',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2g önce',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 hafta önce',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1h önce',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 hafta önce',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2h önce',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ay önce',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1ay önce',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ay önce',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2ay önce',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 yıl önce',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1y önce',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 yıl önce',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2y önce',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 saniye sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1sn sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 saniye sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1sn sonra',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 saniye önce',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1sn önce',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1sn',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2sn',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1sn sonra',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 dakika 1 saniye',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2y 3ay 1g 1sn',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 yıl sonra',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5ay önce',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2y 3ay 1g 1sn önce',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 hafta 10 saat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 hafta 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 hafta 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 hafta ve 6 gün sonra',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 hafta 1 saat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'bir saat sonra',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 gün',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1g 3sa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TrTrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TrTrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tr_TR'; // Turkish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM',\n        'yarın saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'gelecek Cumartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM',\n        'gelecek Pazar saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM',\n        'gelecek Pazartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'gelecek Çarşamba saat 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'gelecek Perşembe saat 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'gelecek Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM',\n        'gelecek Çarşamba saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM',\n        'gelecek Perşembe saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM',\n        'gelecek Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM',\n        'gelecek Cumartesi saat 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM',\n        'geçen Pazar saat 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM',\n        'dün 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM',\n        'bugün saat 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM',\n        'bugün saat 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM',\n        'yarın saat 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM',\n        'gelecek Salı saat 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'dün 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM',\n        'dün 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM',\n        'geçen Salı saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM',\n        'geçen Pazartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM',\n        'geçen Pazar saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM',\n        'geçen Cumartesi saat 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'geçen Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM',\n        'geçen Perşembe saat 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM',\n        'geçen Çarşamba saat 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM',\n        'geçen Cuma saat 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st',\n        '1\\'inci 1\\'inci 1 1\\'inci 1\\'inci',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st',\n        '2 1\\'inci',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st',\n        '3 1\\'inci',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st',\n        '4 1\\'inci',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st',\n        '5 1\\'inci',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st',\n        '6 1\\'inci',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd',\n        '7 1\\'inci',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd',\n        '11 2\\'nci',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th',\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st',\n        '41\\'inci',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th',\n        '100\\'üncü',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET',\n        '12:00 öö CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am',\n        '12:00 ÖÖ, 12:00 öö',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am',\n        '1:30 ÖÖ, 1:30 öö',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am',\n        '2:00 ÖÖ, 2:00 öö',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am',\n        '6:00 ÖÖ, 6:00 öö',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am',\n        '10:00 ÖÖ, 10:00 öö',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm',\n        '12:00 ÖS, 12:00 ös',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm',\n        '5:00 ÖS, 5:00 ös',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm',\n        '9:30 ÖS, 9:30 ös',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm',\n        '11:00 ÖS, 11:00 ös',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th',\n        '0\\'ıncı',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago',\n        '1 saniye önce',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago',\n        '1sn önce',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago',\n        '2 saniye önce',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago',\n        '2sn önce',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago',\n        '1 dakika önce',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago',\n        '1dk önce',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago',\n        '2 dakika önce',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago',\n        '2dk önce',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago',\n        '1 saat önce',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago',\n        '1sa önce',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago',\n        '2 saat önce',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago',\n        '2sa önce',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago',\n        '1 gün önce',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago',\n        '1g önce',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago',\n        '2 gün önce',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago',\n        '2g önce',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago',\n        '1 hafta önce',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago',\n        '1h önce',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago',\n        '2 hafta önce',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago',\n        '2h önce',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago',\n        '1 ay önce',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago',\n        '1ay önce',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago',\n        '2 ay önce',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago',\n        '2ay önce',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago',\n        '1 yıl önce',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago',\n        '1y önce',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago',\n        '2 yıl önce',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago',\n        '2y önce',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now',\n        '1 saniye sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now',\n        '1sn sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after',\n        '1 saniye sonra',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after',\n        '1sn sonra',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before',\n        '1 saniye önce',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before',\n        '1sn önce',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second',\n        '1 saniye',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s',\n        '1sn',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds',\n        '2 saniye',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s',\n        '2sn',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now',\n        '1sn sonra',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second',\n        '1 dakika 1 saniye',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s',\n        '2y 3ay 1g 1sn',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now',\n        '3 yıl sonra',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago',\n        '5ay önce',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago',\n        '2y 3ay 1g 1sn önce',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours',\n        '1 hafta 10 saat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 hafta 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days',\n        '1 hafta 6 gün',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now',\n        '1 hafta ve 6 gün sonra',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour',\n        '2 hafta 1 saat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now',\n        'bir saat sonra',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days',\n        '2 gün',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h',\n        '1g 3sa',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ts'; // Tsonga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mugqivela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Musumbhunuku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ravunharhu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ravumune at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravunharhu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravumune at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mugqivela at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sonto at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Musumbhunuku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mugqivela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Ravumune at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ravunharhu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tisekoni ta 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tisekoni ta 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tisekoni ta 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tisekoni ta 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'timinete ta 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'timinete ta 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'timinete ta 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'timinete ta 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tiawara ta 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tiawara ta 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tiawara ta 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tiawara ta 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'masiku 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'masiku 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'masiku 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'masiku 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mavhiki ya 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mavhiki ya 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mavhiki ya 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mavhiki ya 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tin’hweti ta 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tin’hweti ta 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tin’hweti ta 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tin’hweti ta 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'malembe ya 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'malembe ya 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'malembe ya 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'malembe ya 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tisekoni ta 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tisekoni ta 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'tisekoni ta 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'tisekoni ta 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'tisekoni ta 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'tisekoni ta 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'tisekoni ta 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'tisekoni ta 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'tisekoni ta 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'tisekoni ta 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tisekoni ta 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'timinete ta 1 tisekoni ta 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'malembe ya 2 tin’hweti ta 3 masiku 1 tisekoni ta 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'malembe ya 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tin’hweti ta 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'malembe ya 2 tin’hweti ta 3 masiku 1 tisekoni ta 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mavhiki ya 1 tiawara ta 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mavhiki ya 1 masiku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mavhiki ya 1 masiku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mavhiki ya 1 and masiku 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mavhiki ya 2 tiawara ta 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'tiawara ta 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'masiku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'masiku 1 tiawara ta 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TsZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TsZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ts_ZA'; // Tsonga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mugqivela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Musumbhunuku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ravunharhu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ravumune at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravunharhu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravumune at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mugqivela at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sonto at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ravumbirhi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Musumbhunuku at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mugqivela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Ravumune at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ravunharhu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ravuntlhanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'tisekoni ta 1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'tisekoni ta 1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'tisekoni ta 2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'tisekoni ta 2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'timinete ta 1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'timinete ta 1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'timinete ta 2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'timinete ta 2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'tiawara ta 1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'tiawara ta 1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'tiawara ta 2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'tiawara ta 2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'masiku 1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'masiku 1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'masiku 2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'masiku 2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'mavhiki ya 1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'mavhiki ya 1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'mavhiki ya 2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'mavhiki ya 2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'tin’hweti ta 1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'tin’hweti ta 1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'tin’hweti ta 2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'tin’hweti ta 2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'malembe ya 1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'malembe ya 1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'malembe ya 2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'malembe ya 2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'tisekoni ta 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'tisekoni ta 1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'tisekoni ta 1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'tisekoni ta 1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'tisekoni ta 1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'tisekoni ta 1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'tisekoni ta 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'tisekoni ta 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'tisekoni ta 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'tisekoni ta 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'tisekoni ta 1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'timinete ta 1 tisekoni ta 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'malembe ya 2 tin’hweti ta 3 masiku 1 tisekoni ta 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'malembe ya 3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'tin’hweti ta 5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'malembe ya 2 tin’hweti ta 3 masiku 1 tisekoni ta 1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'mavhiki ya 1 tiawara ta 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mavhiki ya 1 masiku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'mavhiki ya 1 masiku 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'mavhiki ya 1 and masiku 6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'mavhiki ya 2 tiawara ta 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'tiawara ta 1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'masiku 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'masiku 1 tiawara ta 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TtRuIqtelifTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TtRuIqtelifTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tt_RU@iqtelif'; // Tatar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Şimbe at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Yekşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Düşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Sişembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Çerşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Pencíşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Comğa at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Sişembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Çerşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Pencíşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Comğa at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Şimbe at 12:00 ÖA',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last Yekşembí at 8:49 ÖS',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 10:00 ÖS',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 2:00 ÖA',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 1:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Sişembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last Sişembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last Düşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last Yekşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last Şimbe at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Comğa at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last Pencíşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last Çerşembí at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last Comğa at 12:00 ÖA',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1st 1st 1st 1st 1st',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2nd 1st',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3rd 1st',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4th 1st',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5th 1st',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6th 1st',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7th 1st',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11th 2nd',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40th',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41st',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100th',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 öa CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 ÖA, 12:00 öa',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 ÖA, 1:30 öa',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 ÖA, 2:00 öa',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 ÖA, 6:00 öa',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 ÖA, 10:00 öa',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ÖS, 12:00 ös',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ÖS, 5:00 ös',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ÖS, 9:30 ös',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ÖS, 11:00 ös',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0th',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 second ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1s ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 seconds ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2s ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 minute ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1m ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 minutes ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2m ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 hour ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1h ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 hours ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2h ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 day ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1d ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 days ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2d ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 week ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1w ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 weeks ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2w ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 month ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1mo ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 months ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2mos ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 year ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1yr ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 years ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2yrs ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 second from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 second after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1s after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 second before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1s before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 second',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1s',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 seconds',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2s',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1s from now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 minute 1 second',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2yrs 3mos 1d 1s',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 years from now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5mos ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2yrs 3mos 1d 1s ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 week 10 hours',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 week 6 days',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 week and 6 days from now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 weeks 1 hour',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'an hour from now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 days',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TtRuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TtRuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tt_RU'; // Tatar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Tomorrow at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'шимбә at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'якшәмбе at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'дышәмбе at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сишәмбе at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'чәршәәмбе at 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'пәнҗешмбе at 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'җомга at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сишәмбе at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'чәршәәмбе at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'пәнҗешмбе at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'җомга at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'шимбә at 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Last якшәмбе at 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Yesterday at 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Today at 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Today at 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Tomorrow at 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сишәмбе at 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Yesterday at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Last сишәмбе at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Last дышәмбе at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Last якшәмбе at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Last шимбә at 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last җомга at 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Last пәнҗешмбе at 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Last чәршәәмбе at 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Last җомга at 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 1st'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 am CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 AM, 12:00 am',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 AM, 1:30 am',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 AM, 2:00 am',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 AM, 6:00 am',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 AM, 10:00 am',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 PM, 12:00 pm',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 PM, 5:00 pm',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 PM, 9:30 pm',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 PM, 11:00 pm',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        'ago',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        'ago',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        'ago',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        'ago',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        'ago',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        'ago',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        'ago',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        'ago',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        'ago',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        'ago',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        'ago',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        'after',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        'after',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        'before',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        'before',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 секунд',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 секунд',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 секунд',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'from_now',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 минут 1 секунд',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 ел 3 ай 1 көн 1 секунд',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'from_now',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        'ago',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        'ago',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 атна 10 сәгать',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 атна 6 көн',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 атна 6 көн',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'from_now',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 атна 1 сәгать',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'from_now',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 көн',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 көн 3 сәгать',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tt'; // Tatar\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'шимбә at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'якшәмбе at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'дышәмбе at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'сишәмбе at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'чәршәәмбе at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'пәнҗешмбе at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'җомга at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сишәмбе at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'чәршәәмбе at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'пәнҗешмбе at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'җомга at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'шимбә at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last якшәмбе at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'сишәмбе at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last сишәмбе at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last дышәмбе at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last якшәмбе at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last шимбә at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last җомга at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last пәнҗешмбе at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last чәршәәмбе at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last җомга at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунд',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 секунд',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 минут 1 секунд',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ел 3 ай 1 көн 1 секунд',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 атна 10 сәгать',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 атна 6 көн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 атна 6 көн',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 атна 1 сәгать',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 көн',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 көн 3 сәгать',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TwqTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TwqTest extends LocalizationTestCase\n{\n    public const LOCALE = 'twq'; // Tasawaq\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Asibti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atinni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Alzuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alzuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Asibti at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Alhadi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Atalaata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atalaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Atinni at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alhadi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Asibti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Alzuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamiisa at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Alarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Alzuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 subbaahi CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Subbaahi, 12:00 subbaahi',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Subbaahi, 1:30 subbaahi',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Subbaahi, 2:00 subbaahi',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Subbaahi, 6:00 subbaahi',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Subbaahi, 10:00 subbaahi',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Zaarikay b, 12:00 zaarikay b',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Zaarikay b, 5:00 zaarikay b',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Zaarikay b, 9:30 zaarikay b',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Zaarikay b, 11:00 zaarikay b',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ihinkante ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ihinkante ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ihinkante ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ihinkante ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 zarbu ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 zarbu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 zarbu ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 zarbu ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 ɲaajin ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 ɲaajin ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 ɲaajin ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 ɲaajin ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 zaari ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 zaari ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 zaari ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 zaari ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 jirbiiyye ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 jirbiiyye ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 jirbiiyye ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 jirbiiyye ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 alaada ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 alaada ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 alaada ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 alaada ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 jiiri ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 jiiri ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 jiiri ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 jiiri ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ihinkante from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ihinkante from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ihinkante after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ihinkante after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ihinkante before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ihinkante before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ihinkante',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ihinkante',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ihinkante',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ihinkante',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ihinkante from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 zarbu 1 ihinkante',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 jiiri 3 alaada 1 zaari 1 ihinkante',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 jiiri from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 alaada ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 jiiri 3 alaada 1 zaari 1 ihinkante ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 jirbiiyye 10 ɲaajin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 jirbiiyye 6 zaari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 jirbiiyye 6 zaari',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 jirbiiyye and 6 zaari from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 jirbiiyye 1 ɲaajin',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 ɲaajin from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 zaari',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 zaari 3 ɲaajin',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TzlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TzlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tzl'; // Talossan\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'demà à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sáturi à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Súladi à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Lúneçi à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Maitzi à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Márcuri à 00.00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Xhúadi à 00.00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Viénerçi à 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maitzi à 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Márcuri à 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Xhúadi à 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Viénerçi à 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Sáturi à 00.00',\n        // Carbon::now()->subDays(2)->calendar()\n        'sür el Súladi lasteu à 20.49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieiri à 22.00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'oxhi à 10.00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'oxhi à 02.00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'demà à 01.00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Maitzi à 00.00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ieiri à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ieiri à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sür el Maitzi lasteu à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sür el Lúneçi lasteu à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sür el Súladi lasteu à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sür el Sáturi lasteu à 00.00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sür el Viénerçi lasteu à 00.00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'sür el Xhúadi lasteu à 00.00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'sür el Márcuri lasteu à 00.00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sür el Viénerçi lasteu à 00.00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1. 1. 1. 1. 1.',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2. 1.',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3. 1.',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4. 1.',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5. 1.',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6. 1.',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7. 1.',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11. 2.',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40.',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41.',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100.',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 d\\'a CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 D\\'A, 12:00 d\\'a',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 D\\'A, 1:30 d\\'a',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 D\\'A, 2:00 d\\'a',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 D\\'A, 6:00 d\\'a',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 D\\'A, 10:00 d\\'a',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 D\\'O, 12:00 d\\'o',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 D\\'O, 5:00 d\\'o',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 D\\'O, 9:30 d\\'o',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 D\\'O, 11:00 d\\'o',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0.',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ja 1 secunds',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ja 1 secunds',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ja 2 secunds',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ja 2 secunds',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ja 1 míut',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ja 1 míut',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ja 2 míuts',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ja 2 míuts',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ja 1 þora',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ja 1 þora',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ja 2 þoras',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ja 2 þoras',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ja 1 ziua',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ja 1 ziua',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ja 2 ziuas',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ja 2 ziuas',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ja 1 seifetziua',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ja 1 seifetziua',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ja 2 seifetziuas',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ja 2 seifetziuas',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ja 1 mes',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ja 1 mes',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ja 2 mesen',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ja 2 mesen',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ja 1 ar',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ja 1 ar',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ja 2 ars',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ja 2 ars',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'osprei 1 secunds',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'osprei 1 secunds',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 secunds',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 secunds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 secunds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 secunds',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'osprei 1 secunds',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 míut 1 secunds',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ars 3 mesen 1 ziua 1 secunds',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'osprei 3 ars',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ja 5 mesen',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ja 2 ars 3 mesen 1 ziua 1 secunds',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 seifetziua 10 þoras',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seifetziua 6 ziuas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 seifetziua 6 ziuas',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'osprei 1 seifetziua 6 ziuas',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 seifetziuas 1 þora',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'osprei 1 þora',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ziuas',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ziua 3 þoras',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TzmLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TzmLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tzm_Latn'; // Tamazight\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aska g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asiḍyas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asamas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aynas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asinas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'akras g 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'akwas g 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'asimwas g 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asinas g 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'akras g 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'akwas g 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asimwas g 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asiḍyas g 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'asamas g 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'assant g 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'asdkh g 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asdkh g 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'aska g 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asinas g 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'assant g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'assant g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asinas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'aynas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asamas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asiḍyas g 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'asimwas g 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'akwas g 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'akras g 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'asimwas g 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 zdat azal CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Zdat azal, 12:00 zdat azal',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Zdat azal, 1:30 zdat azal',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Zdat azal, 2:00 zdat azal',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Zdat azal, 6:00 zdat azal',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Zdat azal, 10:00 zdat azal',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ḍeffir aza, 12:00 ḍeffir aza',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ḍeffir aza, 5:00 ḍeffir aza',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ḍeffir aza, 9:30 ḍeffir aza',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ḍeffir aza, 11:00 ḍeffir aza',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'yan 1 imik',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'yan 1 imik',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'yan 2 imik',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'yan 2 imik',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'yan 1 minuḍ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'yan 1 minuḍ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'yan 2 minuḍ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'yan 2 minuḍ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'yan 1 saɛa',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'yan 1 saɛa',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'yan 2 tassaɛin',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'yan 2 tassaɛin',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'yan 1 ass',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'yan 1 ass',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'yan 2 ossan',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'yan 2 ossan',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'yan 1 imalass',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'yan 1 imalass',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'yan 2 imalass',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'yan 2 imalass',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'yan 1 ayowr',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'yan 1 ayowr',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'yan 2 iyyirn',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'yan 2 iyyirn',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'yan 1 asgas',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'yan 1 asgas',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'yan 2 isgasn',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'yan 2 isgasn',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'dadkh s yan 1 imik',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'dadkh s yan 1 imik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 imik',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 imik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 imik',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 imik',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'dadkh s yan 1 imik',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minuḍ 1 imik',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 isgasn 3 iyyirn 1 ass 1 imik',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'dadkh s yan 3 isgasn',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'yan 5 iyyirn',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'yan 2 isgasn 3 iyyirn 1 ass 1 imik',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 imalass 10 tassaɛin',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ossan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 imalass 6 ossan',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'dadkh s yan 1 imalass 6 ossan',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 imalass 1 saɛa',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'dadkh s yan saɛa',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ossan',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ass 3 tassaɛin',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/TzmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass TzmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'tzm'; // Tamazight\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴽⴰ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴰⵎⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵢⵏⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⴽⵔⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ⴰⴽⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ⴰⵙⵉⵎⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⴽⵔⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⴽⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵎⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ ⴴ 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ⴰⵙⴰⵎⴰⵙ ⴴ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵚⴰⵏⵜ ⴴ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ⴰⵙⴷⵅ ⴴ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴷⵅ ⴴ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ⴰⵙⴽⴰ ⴴ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ⴰⵚⴰⵏⵜ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵚⴰⵏⵜ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⵏⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵢⵏⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴰⵎⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⴹⵢⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵉⵎⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ⴰⴽⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ⴰⴽⵔⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⴰⵙⵉⵎⵡⴰⵙ ⴴ 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 2',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 2',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ⵢⴰⵏ ⵉⵎⵉⴽ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ ⵉⵎⵉⴽ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ⵢⴰⵏ 2 ⵉⵎⵉⴽ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 ⵉⵎⵉⴽ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ⵢⴰⵏ ⵎⵉⵏⵓⴺ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ ⵎⵉⵏⵓⴺ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ⵢⴰⵏ 2 ⵎⵉⵏⵓⴺ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 ⵎⵉⵏⵓⴺ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ⵢⴰⵏ ⵙⴰⵄⴰ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ ⵙⴰⵄⴰ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ⵢⴰⵏ 2 ⵜⴰⵙⵙⴰⵄⵉⵏ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 ⵜⴰⵙⵙⴰⵄⵉⵏ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ⵢⴰⵏ ⴰⵙⵙ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ ⴰⵙⵙ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ⵢⴰⵏ 2 oⵙⵙⴰⵏ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 oⵙⵙⴰⵏ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ⵢⴰⵏ 1 ⵉⵎⴰⵍⴰⵙⵙ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 1 ⵉⵎⴰⵍⴰⵙⵙ',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ⵢⴰⵏ 2 ⵉⵎⴰⵍⴰⵙⵙ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 ⵉⵎⴰⵍⴰⵙⵙ',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ⵢⴰⵏ ⴰⵢoⵓⵔ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ ⴰⵢoⵓⵔ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ⵢⴰⵏ 2 ⵉⵢⵢⵉⵔⵏ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 ⵉⵢⵢⵉⵔⵏ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ⵢⴰⵏ ⴰⵙⴳⴰⵙ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ ⴰⵙⴳⴰⵙ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ⵢⴰⵏ 2 ⵉⵙⴳⴰⵙⵏ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ⵢⴰⵏ 2 ⵉⵙⴳⴰⵙⵏ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ ⵉⵎⵉⴽ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ ⵉⵎⵉⴽ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'ⵉⵎⵉⴽ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'ⵉⵎⵉⴽ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ⵉⵎⵉⴽ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ⵉⵎⵉⴽ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ ⵉⵎⵉⴽ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ⵎⵉⵏⵓⴺ ⵉⵎⵉⴽ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ⵉⵙⴳⴰⵙⵏ 3 ⵉⵢⵢⵉⵔⵏ ⴰⵙⵙ ⵉⵎⵉⴽ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ 3 ⵉⵙⴳⴰⵙⵏ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ⵢⴰⵏ 5 ⵉⵢⵢⵉⵔⵏ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ⵢⴰⵏ 2 ⵉⵙⴳⴰⵙⵏ 3 ⵉⵢⵢⵉⵔⵏ ⴰⵙⵙ ⵉⵎⵉⴽ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ⵉⵎⴰⵍⴰⵙⵙ 10 ⵜⴰⵙⵙⴰⵄⵉⵏ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ⵉⵎⴰⵍⴰⵙⵙ 6 oⵙⵙⴰⵏ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ⵉⵎⴰⵍⴰⵙⵙ 6 oⵙⵙⴰⵏ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ 1 ⵉⵎⴰⵍⴰⵙⵙ 6 oⵙⵙⴰⵏ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ⵉⵎⴰⵍⴰⵙⵙ ⵙⴰⵄⴰ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ ⵙⴰⵄⴰ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 oⵙⵙⴰⵏ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ⴰⵙⵙ 3 ⵜⴰⵙⵙⴰⵄⵉⵏ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UgCnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UgCnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ug_CN'; // Uighur\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئەتە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى شەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى يەكشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى دۈشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى چارشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'كېلەركى پەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'كېلەركى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى چارشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى پەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى شەنبە سائەت 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ئالدىنقى يەكشەنبە سائەت 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'تۆنۈگۈن 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'بۈگۈن سائەت 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بۈگۈن سائەت 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ئەتە سائەت 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'تۆنۈگۈن 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'تۆنۈگۈن 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى دۈشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى يەكشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى شەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ئالدىنقى پەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ئالدىنقى چارشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ئالدىنقى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1-كۈنى 1-ھەپتە 1-ھەپتە',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-كۈنى 2-ھەپتە',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-كۈنى',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-كۈنى',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-كۈنى',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 يېرىم كېچە CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 يېرىم كېچە, 12:00 يېرىم كېچە',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 يېرىم كېچە, 1:30 يېرىم كېچە',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 يېرىم كېچە, 2:00 يېرىم كېچە',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 سەھەر, 6:00 سەھەر',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 چۈشتىن بۇرۇن, 10:00 چۈشتىن بۇرۇن',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 چۈش, 12:00 چۈش',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 چۈشتىن كېيىن, 5:00 چۈشتىن كېيىن',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 كەچ, 9:30 كەچ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 كەچ, 11:00 كەچ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'نەچچە سېكونت بۇرۇن',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'نەچچە سېكونت بۇرۇن',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سېكونت بۇرۇن',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سېكونت بۇرۇن',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'بىر مىنۇت بۇرۇن',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'بىر مىنۇت بۇرۇن',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 مىنۇت بۇرۇن',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 مىنۇت بۇرۇن',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'بىر سائەت بۇرۇن',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'بىر سائەت بۇرۇن',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 سائەت بۇرۇن',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 سائەت بۇرۇن',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'بىر كۈن بۇرۇن',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'بىر كۈن بۇرۇن',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 كۈن بۇرۇن',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 كۈن بۇرۇن',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'بىر ھەپتە بۇرۇن',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'بىر ھەپتە بۇرۇن',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ھەپتە بۇرۇن',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ھەپتە بۇرۇن',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'بىر ئاي بۇرۇن',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'بىر ئاي بۇرۇن',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ئاي بۇرۇن',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ئاي بۇرۇن',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'بىر يىل بۇرۇن',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'بىر يىل بۇرۇن',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 يىل بۇرۇن',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 يىل بۇرۇن',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'نەچچە سېكونت كېيىن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'نەچچە سېكونت كېيىن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'نەچچە سېكونت',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'نەچچە سېكونت',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سېكونت',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سېكونت',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'نەچچە سېكونت كېيىن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'بىر مىنۇت نەچچە سېكونت',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 يىل 3 ئاي بىر كۈن نەچچە سېكونت',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 يىل كېيىن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ئاي بۇرۇن',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 يىل 3 ئاي بىر كۈن نەچچە سېكونت بۇرۇن',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'بىر ھەپتە 10 سائەت',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'بىر ھەپتە 6 كۈن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'بىر ھەپتە 6 كۈن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'بىر ھەپتە ۋە 6 كۈن كېيىن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ھەپتە بىر سائەت',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'بىر سائەت كېيىن',\n        // CarbonInterval::days(2)->forHumans()\n        '2 كۈن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'بىر كۈن 3 سائەت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ug'; // Uighur\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئەتە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى شەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى يەكشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى دۈشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'كېلەركى چارشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'كېلەركى پەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'كېلەركى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى چارشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى پەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى شەنبە سائەت 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ئالدىنقى يەكشەنبە سائەت 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'تۆنۈگۈن 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'بۈگۈن سائەت 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بۈگۈن سائەت 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ئەتە سائەت 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'كېلەركى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'تۆنۈگۈن 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'تۆنۈگۈن 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى سەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى دۈشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى يەكشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى شەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ئالدىنقى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ئالدىنقى پەيشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ئالدىنقى چارشەنبە سائەت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ئالدىنقى جۈمە سائەت 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1-كۈنى 1-ھەپتە 1-ھەپتە',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-كۈنى 1-ھەپتە',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-كۈنى 2-ھەپتە',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-كۈنى',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-كۈنى',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-كۈنى',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 يېرىم كېچە CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 يېرىم كېچە, 12:00 يېرىم كېچە',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 يېرىم كېچە, 1:30 يېرىم كېچە',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 يېرىم كېچە, 2:00 يېرىم كېچە',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 سەھەر, 6:00 سەھەر',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 چۈشتىن بۇرۇن, 10:00 چۈشتىن بۇرۇن',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 چۈش, 12:00 چۈش',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 چۈشتىن كېيىن, 5:00 چۈشتىن كېيىن',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 كەچ, 9:30 كەچ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 كەچ, 11:00 كەچ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'نەچچە سېكونت بۇرۇن',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'نەچچە سېكونت بۇرۇن',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سېكونت بۇرۇن',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سېكونت بۇرۇن',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'بىر مىنۇت بۇرۇن',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'بىر مىنۇت بۇرۇن',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 مىنۇت بۇرۇن',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 مىنۇت بۇرۇن',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'بىر سائەت بۇرۇن',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'بىر سائەت بۇرۇن',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 سائەت بۇرۇن',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 سائەت بۇرۇن',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'بىر كۈن بۇرۇن',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'بىر كۈن بۇرۇن',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 كۈن بۇرۇن',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 كۈن بۇرۇن',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'بىر ھەپتە بۇرۇن',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'بىر ھەپتە بۇرۇن',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ھەپتە بۇرۇن',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ھەپتە بۇرۇن',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'بىر ئاي بۇرۇن',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'بىر ئاي بۇرۇن',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ئاي بۇرۇن',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ئاي بۇرۇن',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'بىر يىل بۇرۇن',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'بىر يىل بۇرۇن',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 يىل بۇرۇن',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 يىل بۇرۇن',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'نەچچە سېكونت كېيىن',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'نەچچە سېكونت كېيىن',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'نەچچە سېكونت',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'نەچچە سېكونت',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سېكونت',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سېكونت',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'نەچچە سېكونت كېيىن',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'بىر مىنۇت نەچچە سېكونت',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 يىل 3 ئاي بىر كۈن نەچچە سېكونت',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 يىل كېيىن',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ئاي بۇرۇن',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 يىل 3 ئاي بىر كۈن نەچچە سېكونت بۇرۇن',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'بىر ھەپتە 10 سائەت',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'بىر ھەپتە 6 كۈن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'بىر ھەپتە 6 كۈن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'بىر ھەپتە ۋە 6 كۈن كېيىن',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ھەپتە بىر سائەت',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'بىر سائەت كېيىن',\n        // CarbonInterval::days(2)->forHumans()\n        '2 كۈن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'بىر كۈن 3 سائەت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uk'; // Ukrainian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У суботу о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У неділю о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У понеділок о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У вівторок о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У середу о 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'У четвер о 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'У п’ятницю о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У вівторок о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У середу о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У четвер о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У п’ятницю о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У суботу о 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Минулої неділі о 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчора о 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сьогодні о 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сьогодні о 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра о 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У вівторок о 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчора о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчора о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулого вівторка о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулого понеділка о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулої неділі о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулої суботи о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулої п’ятниці о 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Минулого четверга о 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Минулої середи о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Минулої п’ятниці о 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-й 1-й',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-й',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-й',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-й',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-й',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-й',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-й',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-й',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночі CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночі, 12:00 ночі',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночі, 1:30 ночі',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночі, 2:00 ночі',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ранку, 6:00 ранку',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ранку, 10:00 ранку',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечора, 5:00 вечора',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечора, 9:30 вечора',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечора, 11:00 вечора',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду тому',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1сек тому',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунди тому',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2сек тому',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 хвилину тому',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1хв тому',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 хвилини тому',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2хв тому',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 годину тому',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1г тому',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 години тому',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2г тому',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день тому',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1д тому',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дні тому',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2д тому',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 тиждень тому',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1т тому',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 тижні тому',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2т тому',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 місяць тому',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1м тому',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 місяці тому',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2м тому',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 рік тому',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1р тому',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 роки тому',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2рр тому',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'за 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'за 1сек',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду після',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1сек після',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1сек до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1сек',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунди',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2сек',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'за 1сек',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 хвилина 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2рр 3м 1д 1сек',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'за 3 роки',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5м тому',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2рр 3м 1д 1сек тому',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 тиждень 10 годин',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 тиждень 6 днів',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 тиждень 6 днів',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'за 1 тиждень i 6 днів',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 тижні 1 година',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'за годину',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дні',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1д 3г',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UkUaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UkUaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uk_UA'; // Ukrainian\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Завтра о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У суботу о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У неділю о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У понеділок о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У вівторок о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'У середу о 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'У четвер о 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'У п’ятницю о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У вівторок о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У середу о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У четвер о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У п’ятницю о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У суботу о 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Минулої неділі о 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчора о 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Сьогодні о 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Сьогодні о 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Завтра о 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'У вівторок о 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Вчора о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Вчора о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулого вівторка о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулого понеділка о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулої неділі о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулої суботи о 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Минулої п’ятниці о 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Минулого четверга о 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Минулої середи о 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Минулої п’ятниці о 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1-й 1-й 1-го 1-й 1-й',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2-го 1-й',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3-го 1-й',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4-го 1-й',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5-го 1-й',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6-го 1-й',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7-го 1-й',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11-го 2-й',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40-й',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41-й',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100-й',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ночі CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ночі, 12:00 ночі',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ночі, 1:30 ночі',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ночі, 2:00 ночі',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ранку, 6:00 ранку',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ранку, 10:00 ранку',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 дня, 12:00 дня',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 вечора, 5:00 вечора',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 вечора, 9:30 вечора',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 вечора, 11:00 вечора',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 секунду тому',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1сек тому',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 секунди тому',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2сек тому',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 хвилину тому',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1хв тому',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 хвилини тому',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2хв тому',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 годину тому',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1г тому',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 години тому',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2г тому',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 день тому',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1д тому',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 дні тому',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2д тому',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 тиждень тому',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1т тому',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 тижні тому',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2т тому',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 місяць тому',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1м тому',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 місяці тому',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2м тому',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 рік тому',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1р тому',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 роки тому',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2рр тому',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'за 1 секунду',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'за 1сек',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 секунду після',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1сек після',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 секунду до',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1сек до',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 секунда',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1сек',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 секунди',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2сек',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'за 1сек',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 хвилина 1 секунда',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2рр 3м 1д 1сек',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'за 3 роки',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5м тому',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2рр 3м 1д 1сек тому',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 тиждень 10 годин',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 тиждень 6 днів',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 тиждень 6 днів',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'за 1 тиждень i 6 днів',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 тижні 1 година',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'за годину',\n        // CarbonInterval::days(2)->forHumans()\n        '2 дні',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1д 3г',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UnmTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UnmTest extends LocalizationTestCase\n{\n    public const LOCALE = 'unm'; // Unami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sateteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kentuwei at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'manteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lelai at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tasteke at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lelai at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tasteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sateteke at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last kentuwei at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last manteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last kentuwei at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sateteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tasteke at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last lelai at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UnmUsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UnmUsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'unm_US'; // Unami\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sateteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'kentuwei at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'manteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lelai at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'tasteke at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lelai at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tasteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sateteke at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last kentuwei at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tusteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last manteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last kentuwei at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sateteke at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last tasteke at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last lelai at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last pelaiteke at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UrInTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UrInTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ur_IN'; // Urdu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'کل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'سنیچر بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اتوار بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'پیر بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'سنیچر بوقت 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'گذشتہ اتوار بوقت 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ روز بوقت 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'آج بوقت 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آج بوقت 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'کل بوقت 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'گذشتہ روز بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ روز بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ منگل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ پیر بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ اتوار بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ سنیچر بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'گذشتہ جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'گذشتہ بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'گذشتہ جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 صبح CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 صبح, 12:00 صبح',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 صبح, 1:30 صبح',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 صبح, 2:00 صبح',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 صبح, 6:00 صبح',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 صبح, 10:00 صبح',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 شام, 12:00 شام',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 شام, 5:00 شام',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 شام, 9:30 شام',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 شام, 11:00 شام',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سیکنڈ قبل',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 منٹ قبل',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 منٹ قبل',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 منٹ قبل',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 منٹ قبل',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 گھنٹے قبل',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 گھنٹے قبل',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 گھنٹے قبل',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 گھنٹے قبل',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 دن قبل',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 دن قبل',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 دن قبل',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 دن قبل',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ہفتے قبل',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ہفتے قبل',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ہفتے قبل',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ہفتے قبل',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ماہ قبل',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ماہ قبل',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ماہ قبل',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ماہ قبل',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 سال قبل',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 سال قبل',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 سال قبل',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 سال قبل',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 سیکنڈ پہلے',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 سیکنڈ پہلے',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 سیکنڈ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 سیکنڈ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سیکنڈ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سیکنڈ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 منٹ 1 سیکنڈ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سال بعد',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ماہ قبل',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ قبل',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 10 گھنٹے',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 6 دن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 6 دن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ہفتے اور 6 دن بعد',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ہفتے 1 گھنٹے',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ایک گھنٹہ بعد',\n        // CarbonInterval::days(2)->forHumans()\n        '2 دن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 دن 3 گھنٹے',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UrPkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UrPkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ur_PK'; // Urdu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'کل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'هفته بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اتوار بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'پير بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمعه بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعه بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'هفته بوقت 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'گذشتہ اتوار بوقت 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ روز بوقت 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'آج بوقت 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آج بوقت 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'کل بوقت 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'گذشتہ روز بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ روز بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ منگل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ پير بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ اتوار بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ هفته بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ جمعه بوقت 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'گذشتہ جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'گذشتہ بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'گذشتہ جمعه بوقت 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ص CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ص, 12:00 ص',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ص, 1:30 ص',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ص, 2:00 ص',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ص, 6:00 ص',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ص, 10:00 ص',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ش, 12:00 ش',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ش, 5:00 ش',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ش, 9:30 ش',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ش, 11:00 ش',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سیکنڈ قبل',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 منٹ قبل',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 منٹ قبل',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 منٹ قبل',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 منٹ قبل',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 گھنٹے قبل',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 گھنٹے قبل',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 گھنٹے قبل',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 گھنٹے قبل',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 دن قبل',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 دن قبل',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 دن قبل',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 دن قبل',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ہفتے قبل',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ہفتے قبل',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ہفتے قبل',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ہفتے قبل',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ماہ قبل',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ماہ قبل',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ماہ قبل',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ماہ قبل',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 سال قبل',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 سال قبل',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 سال قبل',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 سال قبل',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 سیکنڈ پہلے',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 سیکنڈ پہلے',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 سیکنڈ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 سیکنڈ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سیکنڈ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سیکنڈ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 منٹ 1 سیکنڈ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سال بعد',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ماہ قبل',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ قبل',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 10 گھنٹے',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 6 دن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 6 دن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ہفتے اور 6 دن بعد',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ہفتے 1 گھنٹے',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ایک گھنٹہ بعد',\n        // CarbonInterval::days(2)->forHumans()\n        '2 دن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 دن 3 گھنٹے',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UrTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UrTest extends LocalizationTestCase\n{\n    public const LOCALE = 'ur'; // Urdu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'کل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ہفتہ بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'اتوار بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'پیر بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ہفتہ بوقت 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'گذشتہ اتوار بوقت 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ روز بوقت 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'آج بوقت 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'آج بوقت 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'کل بوقت 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'منگل بوقت 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'گذشتہ روز بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ روز بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ منگل بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ پیر بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ اتوار بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ ہفتہ بوقت 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'گذشتہ جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'گذشتہ جمعرات بوقت 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'گذشتہ بدھ بوقت 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'گذشتہ جمعہ بوقت 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 صبح CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 صبح, 12:00 صبح',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 صبح, 1:30 صبح',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 صبح, 2:00 صبح',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 صبح, 6:00 صبح',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 صبح, 10:00 صبح',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 شام, 12:00 شام',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 شام, 5:00 شام',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 شام, 9:30 شام',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 شام, 11:00 شام',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 سیکنڈ قبل',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 سیکنڈ قبل',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 منٹ قبل',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 منٹ قبل',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 منٹ قبل',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 منٹ قبل',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 گھنٹے قبل',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 گھنٹے قبل',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 گھنٹے قبل',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 گھنٹے قبل',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 دن قبل',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 دن قبل',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 دن قبل',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 دن قبل',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 ہفتے قبل',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 ہفتے قبل',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 ہفتے قبل',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 ہفتے قبل',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 ماہ قبل',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 ماہ قبل',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 ماہ قبل',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 ماہ قبل',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 سال قبل',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 سال قبل',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 سال قبل',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 سال قبل',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 سیکنڈ پہلے',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 سیکنڈ پہلے',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 سیکنڈ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 سیکنڈ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 سیکنڈ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 سیکنڈ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 سیکنڈ بعد',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 منٹ 1 سیکنڈ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 سال بعد',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 ماہ قبل',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 سال 3 ماہ 1 دن 1 سیکنڈ قبل',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 10 گھنٹے',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 6 دن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ہفتے 6 دن',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 ہفتے اور 6 دن بعد',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ہفتے 1 گھنٹے',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ایک گھنٹہ بعد',\n        // CarbonInterval::days(2)->forHumans()\n        '2 دن',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 دن 3 گھنٹے',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UzArabTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UzArabTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uz_Arab'; // Uzbek\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'فردا ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'یکشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'دوشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'سه‌شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'چهارشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'پنجشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جمعه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'سه‌شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'چهارشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'پنجشنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'جمعه ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'شنبه ساعت 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'یکشنبه پیش ساعت 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'دیروز ساعت 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'امروز ساعت 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'امروز ساعت 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'فردا ساعت 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'سه‌شنبه ساعت 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'دیروز ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'دیروز ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'سه‌شنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'دوشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'یکشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'شنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'جمعه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'پنجشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'چهارشنبه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'جمعه پیش ساعت 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        ':timeم :timeم :timeم :timeم :timeم',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        ':timeم :timeم',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        ':timeم',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        ':timeم',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 قبل از ظهر CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 قبل از ظهر, 12:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 قبل از ظهر, 1:30 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 قبل از ظهر, 2:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 قبل از ظهر, 6:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 قبل از ظهر, 10:00 قبل از ظهر',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 بعد از ظهر, 12:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 بعد از ظهر, 5:00 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 بعد از ظهر, 9:30 بعد از ظهر',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 بعد از ظهر, 11:00 بعد از ظهر',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        ':timeم',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 ثانیه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 دقیقه پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 ساعت پیش',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 ساعت پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 روز پیش',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 روز پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 هفته پیش',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 هفته پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ماه پیش',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 ماه پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 سال پیش',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 سال پیش',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 ثانیه پس از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 ثانیه پس از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 ثانیه پیش از',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 ثانیه',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 ثانیه',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1 ثانیه دیگر',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 دقیقه 1 ثانیه',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 سال 3 ماه 1 روز 1 ثانیه',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3 سال دیگر',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 ماه پیش',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 سال 3 ماه 1 روز 1 ثانیه پیش',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 هفته 10 ساعت',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 هفته 6 روز',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1 هفته و 6 روز دیگر',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 هفته 1 ساعت',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'یک ساعت دیگر',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 روز',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 روز 3 ساعت',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UzCyrlTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UzCyrlTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uz_Cyrl'; // Uzbek\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Эртага 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'шанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'якшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'душанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'шанба куни соат 00:00 да',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Утган якшанба куни соат 20:49 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Кеча соат 22:00 да',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Бугун соат 10:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Бугун соат 02:00 да',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Эртага 01:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Кеча соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Кеча соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Утган сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Утган душанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Утган якшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Утган шанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Утган жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Утган пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Утган чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Утган жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 то CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 ТО, 12:00 то',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 ТО, 1:30 то',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 ТО, 2:00 то',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 ТО, 6:00 то',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 ТО, 10:00 то',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 ТК, 12:00 тк',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 ТК, 5:00 тк',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 ТК, 9:30 тк',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 ТК, 11:00 тк',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 сония аввал',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 с аввал',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 сония аввал',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 с аввал',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 дақиқа аввал',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 д аввал',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 дақиқа аввал',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 д аввал',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 соат аввал',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 с аввал',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 соат аввал',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 с аввал',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 кун аввал',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 к аввал',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 кун аввал',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 к аввал',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 ҳафта аввал',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 ҳ аввал',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ҳафта аввал',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ҳ аввал',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ой аввал',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 о аввал',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ой аввал',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 о аввал',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 йил аввал',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 й аввал',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 йил аввал',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 й аввал',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'Якин 1 сония ичида',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'Якин 1 с ичида',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 сониядан кейин',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сдан кейин',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 сония олдин',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 с олдин',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 сония',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 с',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 сония',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 с',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'Якин 1 с ичида',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 дақиқа 1 сония',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 й 3 о 1 к 1 с',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'Якин 3 йил ичида',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 о аввал',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 й 3 о 1 к 1 с аввал',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 ҳафта 10 соат',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ҳафта 6 кун',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ҳафта 6 кун',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'Якин 1 ҳафта ва 6 кун ичида',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ҳафта 1 соат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'Якин бир соат ичида',\n\n        // CarbonInterваl::days(2)->forHumans()\n        // '2 days'\n        '2 кун',\n\n        // CarbonInterваl::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 к 3 с',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UzLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UzLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uz_Latn'; // Uzbek\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Ertaga 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Shanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Yakshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Dushanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Chorshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Payshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Chorshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Payshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Shanba kuni soat 00:00 da',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'O\\'tgan Yakshanba kuni soat 20:49 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Kecha soat 22:00 da',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Bugun soat 10:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Bugun soat 02:00 da',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Ertaga 01:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Kecha soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Kecha soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'O\\'tgan Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'O\\'tgan Dushanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'O\\'tgan Yakshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'O\\'tgan Shanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'O\\'tgan Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'O\\'tgan Payshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'O\\'tgan Chorshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'O\\'tgan Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 to CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 TO, 12:00 to',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 TO, 1:30 to',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 TO, 2:00 to',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 TO, 6:00 to',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 TO, 10:00 to',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 TK, 12:00 tk',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 TK, 5:00 tk',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 TK, 9:30 tk',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 TK, 11:00 tk',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 soniya avval',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 son. avval',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 soniya avval',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 son. avval',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiqa avval',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 d avval',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiqa avval',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 d avval',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 soat avval',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 soat avval',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 soat avval',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 soat avval',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 kun avval',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 k avval',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 kun avval',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 k avval',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 hafta avval',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 h avval',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 hafta avval',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 h avval',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 oy avval',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 o avval',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 oy avval',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 o avval',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 yil avval',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 y avval',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 yil avval',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 y avval',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'Yaqin 1 soniya ichida',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'Yaqin 1 son. ichida',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 soniyadan keyin',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 son.dan keyin',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 soniya oldin',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 son. oldin',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 soniya',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 son.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 soniya',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 son.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'Yaqin 1 son. ichida',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiqa 1 soniya',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 y 3 o 1 k 1 son.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'Yaqin 3 yil ichida',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 o avval',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 y 3 o 1 k 1 son. avval',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 hafta 10 soat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hafta 6 kun',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hafta 6 kun',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'Yaqin 1 hafta va 6 kun ichida',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 hafta 1 soat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'Yaqin bir soat ichida',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 kun',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 k 3 soat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uz'; // Uzbek\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Эртага 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'шанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'якшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'душанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'шанба куни соат 00:00 да',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Утган якшанба куни соат 20:49 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Кеча соат 22:00 да',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Бугун соат 10:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Бугун соат 02:00 да',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Эртага 01:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Кеча соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Кеча соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Утган сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Утган душанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Утган якшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Утган шанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Утган жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Утган пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Утган чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Утган жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 эрталаб CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 эрталаб, 12:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 эрталаб, 1:30 эрталаб',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 эрталаб, 2:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 эрталаб, 6:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 эрталаб, 10:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 кечаси, 12:00 кечаси',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 кечаси, 5:00 кечаси',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 кечаси, 9:30 кечаси',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 кечаси, 11:00 кечаси',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 сония аввал',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 с аввал',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 сония аввал',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 с аввал',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 дақиқа аввал',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 д аввал',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 дақиқа аввал',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 д аввал',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 соат аввал',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 с аввал',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 соат аввал',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 с аввал',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 кун аввал',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 к аввал',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 кун аввал',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 к аввал',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 ҳафта аввал',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 ҳ аввал',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ҳафта аввал',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ҳ аввал',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ой аввал',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 о аввал',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ой аввал',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 о аввал',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 йил аввал',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 й аввал',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 йил аввал',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 й аввал',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'Якин 1 сония ичида',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'Якин 1 с ичида',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 сониядан кейин',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сдан кейин',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 сония олдин',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 с олдин',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 сония',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 с',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 сония',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 с',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'Якин 1 с ичида',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 дақиқа 1 сония',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 й 3 о 1 к 1 с',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'Якин 3 йил ичида',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 о аввал',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 й 3 о 1 к 1 с аввал',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 ҳафта 10 соат',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ҳафта 6 кун',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ҳафта 6 кун',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'Якин 1 ҳафта ва 6 кун ичида',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ҳафта 1 соат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'Якин бир соат ичида',\n\n        // CarbonInterваl::days(2)->forHumans()\n        // '2 days'\n        '2 кун',\n\n        // CarbonInterваl::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 к 3 с',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UzUzCyrillicTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UzUzCyrillicTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uz_UZ@cyrillic'; // Uzbek\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Эртага 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Шанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Якшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Душанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Шанба куни соат 00:00 да',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'Утган Якшанба куни соат 20:49 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Кеча соат 22:00 да',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Бугун соат 10:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Бугун соат 02:00 да',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Эртага 01:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Кеча соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Кеча соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'Утган Сешанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'Утган Душанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'Утган Якшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'Утган Шанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Утган Жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'Утган Пайшанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'Утган Чоршанба куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'Утган Жума куни соат 00:00 да',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 эрталаб CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 эрталаб, 12:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 эрталаб, 1:30 эрталаб',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 эрталаб, 2:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 эрталаб, 6:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 эрталаб, 10:00 эрталаб',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 кечаси, 12:00 кечаси',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 кечаси, 5:00 кечаси',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 кечаси, 9:30 кечаси',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 кечаси, 11:00 кечаси',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 сония аввал',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 с аввал',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 сония аввал',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 с аввал',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 дақиқа аввал',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 д аввал',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 дақиқа аввал',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 д аввал',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 соат аввал',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 с аввал',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 соат аввал',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 с аввал',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 кун аввал',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 к аввал',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 кун аввал',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 к аввал',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 ҳафта аввал',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 ҳ аввал',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 ҳафта аввал',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 ҳ аввал',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 ой аввал',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 о аввал',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 ой аввал',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 о аввал',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 йил аввал',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 й аввал',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 йил аввал',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 й аввал',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'Якин 1 сония ичида',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'Якин 1 с ичида',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 сониядан кейин',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 сдан кейин',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 сония олдин',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 с олдин',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 сония',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 с',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 сония',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 с',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'Якин 1 с ичида',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 дақиқа 1 сония',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 й 3 о 1 к 1 с',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'Якин 3 йил ичида',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 о аввал',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 й 3 о 1 к 1 с аввал',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 ҳафта 10 соат',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ҳафта 6 кун',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 ҳафта 6 кун',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'Якин 1 ҳафта ва 6 кун ичида',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 ҳафта 1 соат',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'Якин бир соат ичида',\n\n        // CarbonInterваl::days(2)->forHumans()\n        // '2 days'\n        '2 кун',\n\n        // CarbonInterваl::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 к 3 с',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/UzUzTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass UzUzTest extends LocalizationTestCase\n{\n    public const LOCALE = 'uz_UZ'; // Uzbek\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        'Ertaga 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Shanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        'Yakshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        'Dushanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Chorshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Payshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        'Chorshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        'Payshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        'Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        'Shanba kuni soat 00:00 da',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        'O\\'tgan Yakshanba kuni soat 20:49 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        'Kecha soat 22:00 da',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        'Bugun soat 10:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        'Bugun soat 02:00 da',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        'Ertaga 01:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        'Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Kecha soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        'Kecha soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        'O\\'tgan Seshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        'O\\'tgan Dushanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        'O\\'tgan Yakshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        'O\\'tgan Shanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'O\\'tgan Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        'O\\'tgan Payshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        'O\\'tgan Chorshanba kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        'O\\'tgan Juma kuni soat 00:00 da',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1 1 1 1 1',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2 1',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3 1',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4 1',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5 1',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6 1',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7 1',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11 2',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 to CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 TO, 12:00 to',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 TO, 1:30 to',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 TO, 2:00 to',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 TO, 6:00 to',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 TO, 10:00 to',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 TK, 12:00 tk',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 TK, 5:00 tk',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 TK, 9:30 tk',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 TK, 11:00 tk',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1 soniya avval',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1 son. avval',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2 soniya avval',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2 son. avval',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1 daqiqa avval',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1 d avval',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2 daqiqa avval',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2 d avval',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1 soat avval',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1 soat avval',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2 soat avval',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2 soat avval',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1 kun avval',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1 k avval',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2 kun avval',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2 k avval',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1 hafta avval',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1 h avval',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2 hafta avval',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2 h avval',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1 oy avval',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1 o avval',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2 oy avval',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2 o avval',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1 yil avval',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1 y avval',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2 yil avval',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2 y avval',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        'Yaqin 1 soniya ichida',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        'Yaqin 1 son. ichida',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1 soniyadan keyin',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1 son.dan keyin',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1 soniya oldin',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1 son. oldin',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1 soniya',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1 son.',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2 soniya',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2 son.',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        'Yaqin 1 son. ichida',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1 daqiqa 1 soniya',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2 y 3 o 1 k 1 son.',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        'Yaqin 3 yil ichida',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5 o avval',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2 y 3 o 1 k 1 son. avval',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1 hafta 10 soat',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hafta 6 kun',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1 hafta 6 kun',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        'Yaqin 1 hafta va 6 kun ichida',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2 hafta 1 soat',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        'Yaqin bir soat ichida',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2 kun',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1 k 3 soat',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VaiLatnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VaiLatnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vai_Latn'; // Vai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'siɓiti at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lahadi at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'tɛɛnɛɛ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'talata at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'alaba at 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'aimisa at 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'aijima at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talata at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alaba at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'aimisa at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'aijima at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'siɓiti at 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last lahadi at 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talata at 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last talata at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last tɛɛnɛɛ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lahadi at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last siɓiti at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last aijima at 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last aimisa at 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last alaba at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last aijima at 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VaiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VaiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vai'; // Vai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꔻꔬꔳ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꕞꕌꔵ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꗳꗡꘉ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꕉꕞꕒ at 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ꕉꔤꕆꕢ at 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕉꕞꕒ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕉꔤꕆꕢ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꔻꔬꔳ at 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ꕞꕌꔵ at 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꗳꗡꘉ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꕞꕌꔵ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꔻꔬꔳ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ꕉꔤꕆꕢ at 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ꕉꕞꕒ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ꕀ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ꕀ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ꕀ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ꕀ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ꗱꕞꕯꕊ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ꗱꕞꕯꕊ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ꗱꕞꕯꕊ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ꗱꕞꕯꕊ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ꗱꕞꕯꕊ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ꗱꕞꕯꕊ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ꗱꕞꕯꕊ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ꗱꕞꕯꕊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ꗱꕞꕯꕊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ꗱꕞꕯꕊ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ꗱꕞꕯꕊ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ꗱꕞꕯꕊ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ꕀ 3mos 1d 1 ꗱꕞꕯꕊ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ꕀ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ꕀ 3mos 1d 1 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VaiVaiiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VaiVaiiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vai_Vaii'; // Vai\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꔻꔬꔳ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꕞꕌꔵ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꗳꗡꘉ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ꕉꕞꕒ at 12:00 am',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ꕉꔤꕆꕢ at 12:00 am',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕉꕞꕒ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕉꔤꕆꕢ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꔻꔬꔳ at 12:00 am',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ꕞꕌꔵ at 8:49 pm',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 pm',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 am',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꕚꕞꕚ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꗳꗡꘉ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꕞꕌꔵ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꔻꔬꔳ at 12:00 am',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ꕉꔤꕆꕢ at 12:00 am',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last ꕉꕞꕒ at 12:00 am',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ꕉꔤꕀꕮ at 12:00 am',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ꕀ ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ꕀ ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ꕀ ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ꕀ ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 ꗱꕞꕯꕊ from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 ꗱꕞꕯꕊ from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ꗱꕞꕯꕊ after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ꗱꕞꕯꕊ after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ꗱꕞꕯꕊ before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ꗱꕞꕯꕊ before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ꗱꕞꕯꕊ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ꗱꕞꕯꕊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ꗱꕞꕯꕊ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ꗱꕞꕯꕊ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 ꗱꕞꕯꕊ from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 ꗱꕞꕯꕊ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ꕀ 3mos 1d 1 ꗱꕞꕯꕊ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ꕀ from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ꕀ 3mos 1d 1 ꗱꕞꕯꕊ ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VeTest extends LocalizationTestCase\n{\n    public const LOCALE = 've'; // Venda\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mugivhela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Swondaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Musumbuluwo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ḽavhuraru at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ḽavhuṋa at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuraru at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuṋa at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mugivhela at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Swondaha at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Musumbuluwo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Swondaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mugivhela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Ḽavhuṋa at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ḽavhuraru at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VeZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VeZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 've_ZA'; // Venda\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mugivhela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Swondaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Musumbuluwo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ḽavhuraru at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ḽavhuṋa at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuraru at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuṋa at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mugivhela at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Swondaha at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ḽavhuvhili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Musumbuluwo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Swondaha at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mugivhela at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Ḽavhuṋa at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Ḽavhuraru at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ḽavhuṱanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ViTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ViTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vi'; // Vietnamese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ngày mai lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ bảy tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'chủ nhật tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ hai tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ ba tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ tư tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'thứ năm tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'thứ sáu tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ ba tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ tư tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ năm tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ sáu tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ bảy tuần tới lúc 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'chủ nhật tuần trước lúc 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hôm qua lúc 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hôm nay lúc 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hôm nay lúc 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ngày mai lúc 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ ba tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hôm qua lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hôm qua lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ ba tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ hai tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'chủ nhật tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ bảy tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ sáu tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'thứ năm tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'thứ tư tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ sáu tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 sa CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 SA, 12:00 sa',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 SA, 1:30 sa',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 SA, 2:00 sa',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 SA, 6:00 sa',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 SA, 10:00 sa',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 CH, 12:00 ch',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 CH, 5:00 ch',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 CH, 9:30 ch',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 CH, 11:00 ch',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 giây trước',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 giây trước',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 giây trước',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 giây trước',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 phút trước',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 phút trước',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 phút trước',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 phút trước',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 giờ trước',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 giờ trước',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 giờ trước',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 giờ trước',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ngày trước',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ngày trước',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ngày trước',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ngày trước',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tuần trước',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tuần trước',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tuần trước',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tuần trước',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 tháng trước',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 tháng trước',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 tháng trước',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 tháng trước',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 năm trước',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 năm trước',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 năm trước',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 năm trước',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 giây tới',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 giây tới',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 giây sau',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 giây sau',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 giây trước',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 giây trước',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 giây',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 giây',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 giây',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 giây',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 giây tới',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 phút 1 giây',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 năm 3 tháng 1 ngày 1 giây',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 năm tới',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 tháng trước',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 năm 3 tháng 1 ngày 1 giây trước',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tuần 10 giờ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tuần 6 ngày',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tuần 6 ngày',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tuần và 6 ngày tới',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tuần 1 giờ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'một giờ tới',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ngày',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ngày 3 giờ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ViVnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ViVnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vi_VN'; // Vietnamese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ngày mai lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ bảy tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'chủ nhật tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ hai tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ ba tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ tư tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'thứ năm tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'thứ sáu tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ ba tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ tư tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ năm tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ sáu tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ bảy tuần tới lúc 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'chủ nhật tuần trước lúc 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hôm qua lúc 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Hôm nay lúc 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hôm nay lúc 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ngày mai lúc 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ ba tuần tới lúc 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Hôm qua lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Hôm qua lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ ba tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ hai tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'chủ nhật tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ bảy tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'thứ sáu tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'thứ năm tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'thứ tư tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'thứ sáu tuần trước lúc 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 sa CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 SA, 12:00 sa',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 SA, 1:30 sa',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 SA, 2:00 sa',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 SA, 6:00 sa',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 SA, 10:00 sa',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 CH, 12:00 ch',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 CH, 5:00 ch',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 CH, 9:30 ch',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 CH, 11:00 ch',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 giây trước',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 giây trước',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 giây trước',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 giây trước',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 phút trước',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 phút trước',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 phút trước',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 phút trước',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 giờ trước',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 giờ trước',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 giờ trước',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 giờ trước',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 ngày trước',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 ngày trước',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 ngày trước',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 ngày trước',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 tuần trước',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 tuần trước',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 tuần trước',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 tuần trước',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 tháng trước',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 tháng trước',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 tháng trước',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 tháng trước',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 năm trước',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 năm trước',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 năm trước',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 năm trước',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 giây tới',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 giây tới',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 giây sau',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 giây sau',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 giây trước',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 giây trước',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 giây',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 giây',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 giây',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 giây',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 giây tới',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 phút 1 giây',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 năm 3 tháng 1 ngày 1 giây',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 năm tới',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 tháng trước',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 năm 3 tháng 1 ngày 1 giây trước',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 tuần 10 giờ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tuần 6 ngày',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 tuần 6 ngày',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 tuần và 6 ngày tới',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 tuần 1 giờ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'một giờ tới',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ngày',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ngày 3 giờ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vo'; // Volapuk\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Thursday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Friday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Saturday at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sunday at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Tuesday at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Tuesday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Monday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sunday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Saturday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Thursday at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Wednesday at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Friday at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 sekun ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 sekun ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 sekun ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 sekun ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minut ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 minut ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minut ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 minut ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 düp ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 düp ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 düp ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 düp ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 del ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 del ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 del ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 del ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 vig ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 vig ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 vig ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 vig ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 mul ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 mul ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 mul ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 mul ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 yel ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 yel ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 yel ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 yel ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 sekun from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 sekun from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 sekun after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 sekun after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 sekun before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 sekun before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 sekun',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 sekun',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 sekun',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 sekun',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 sekun from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minut 1 sekun',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 yel 3 mul 1 del 1 sekun',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 yel from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 mul ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 yel 3 mul 1 del 1 sekun ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 vig 10 düp',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vig 6 del',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 vig 6 del',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 vig and 6 del from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 vig 1 düp',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 düp from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 del',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 del 3 düp',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/VunTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass VunTest extends LocalizationTestCase\n{\n    public const LOCALE = 'vun'; // Vunjo\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumapilyi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatatuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Jumatanu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Alhamisi at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ijumaa at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumamosi at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Jumapilyi at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Jumanne at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumanne at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumatatuu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumapilyi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Jumamosi at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Alhamisi at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Jumatanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Ijumaa at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 utuko CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 utuko, 12:00 utuko',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 utuko, 1:30 utuko',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 utuko, 2:00 utuko',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 utuko, 6:00 utuko',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 utuko, 10:00 utuko',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kyiukonyi, 12:00 kyiukonyi',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kyiukonyi, 5:00 kyiukonyi',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kyiukonyi, 9:30 kyiukonyi',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kyiukonyi, 11:00 kyiukonyi',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WaBeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WaBeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wa_BE'; // Walloon\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'semdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimegne at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'londi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mierkidi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'djudi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mierkidi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'djudi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'semdi at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dimegne at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last londi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dimegne at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last semdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last djudi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mierkidi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Sigonde ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Sigonde ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Sigonde ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Sigonde ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 munute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 munute ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 munute ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 munute ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 eure ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 eure ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 eure ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 eure ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 djoû ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 djoû ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 djoû ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 djoû ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 samwinne ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 samwinne ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 samwinne ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 samwinne ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 meûs ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 meûs ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 meûs ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 meûs ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anêye ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anêye ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anêye ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anêye ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Sigonde from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Sigonde from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sigonde after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sigonde after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sigonde before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sigonde before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sigonde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sigonde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sigonde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sigonde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Sigonde from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 munute 1 Sigonde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anêye 3 meûs 1 djoû 1 Sigonde',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 anêye from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 meûs ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anêye 3 meûs 1 djoû 1 Sigonde ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 samwinne 10 eure',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 samwinne 6 djoû',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 samwinne 6 djoû',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 samwinne and 6 djoû from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 samwinne 1 eure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 eure from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 djoû',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 djoû 3 eure',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wa'; // Walloon\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'semdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dimegne at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'londi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mierkidi at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'djudi at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mierkidi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'djudi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'semdi at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dimegne at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mårdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last londi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dimegne at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last semdi at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last djudi at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mierkidi at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last vénrdi at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 Sigonde ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 Sigonde ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 Sigonde ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 Sigonde ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 munute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 munute ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 munute ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 munute ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 eure ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 eure ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 eure ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 eure ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 djoû ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 djoû ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 djoû ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 djoû ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 samwinne ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 samwinne ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 samwinne ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 samwinne ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 meûs ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 meûs ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 meûs ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 meûs ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 anêye ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 anêye ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 anêye ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 anêye ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 Sigonde from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 Sigonde from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 Sigonde after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 Sigonde after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 Sigonde before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 Sigonde before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 Sigonde',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 Sigonde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 Sigonde',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 Sigonde',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 Sigonde from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 munute 1 Sigonde',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 anêye 3 meûs 1 djoû 1 Sigonde',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 anêye from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 meûs ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 anêye 3 meûs 1 djoû 1 Sigonde ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 samwinne 10 eure',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 samwinne 6 djoû',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 samwinne 6 djoû',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 samwinne and 6 djoû from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 samwinne 1 eure',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 eure from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 djoû',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 djoû 3 eure',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WaeChTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WaeChTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wae_CH'; // Walser\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Suntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mäntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwuch at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Frontag at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwuch at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Frontag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschtag at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Suntag at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mäntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Suntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samschtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Frontag at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mittwuch at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Maano ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Maano ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Maano ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Maano ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3 Maano 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Maano ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3 Maano 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WaeTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WaeTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wae'; // Walser\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Samschtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Suntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mäntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Mittwuch at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Frontag at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Mittwuch at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Frontag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Samschtag at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Suntag at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Zischtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Mäntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Suntag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Samschtag at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Frontag at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Mittwuch at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Fritag at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 Maano ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 Maano ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 Maano ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 Maano ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3 Maano 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 Maano ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3 Maano 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WalEtTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WalEtTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wal_ET'; // Wolaytta\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቄራ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ወጋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሳይኖ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'አሩዋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሃሙሳ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'አሩዋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሃሙሳ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቄራ at 12:00 ማለዶ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ወጋ at 8:49 ቃማ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ቃማ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ማለዶ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሳይኖ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ወጋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቄራ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሃሙሳ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last አሩዋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ማለዶ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ማለዶ, 12:00 ማለዶ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ማለዶ, 1:30 ማለዶ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ማለዶ, 2:00 ማለዶ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ማለዶ, 6:00 ማለዶ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ማለዶ, 10:00 ማለዶ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ቃማ, 12:00 ቃማ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ቃማ, 5:00 ቃማ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ቃማ, 9:30 ቃማ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ቃማ, 11:00 ቃማ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WalTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WalTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wal'; // Wolaytta\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ቄራ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ወጋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ሳይኖ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'አሩዋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ሃሙሳ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'አሩዋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ሃሙሳ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ቄራ at 12:00 ማለዶ',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last ወጋ at 8:49 ቃማ',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 ቃማ',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 ማለዶ',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ማቆሳኛ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ሳይኖ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ወጋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ቄራ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ሃሙሳ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last አሩዋ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last አርባ at 12:00 ማለዶ',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ማለዶ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ማለዶ, 12:00 ማለዶ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ማለዶ, 1:30 ማለዶ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ማለዶ, 2:00 ማለዶ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ማለዶ, 6:00 ማለዶ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ማለዶ, 10:00 ማለዶ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ቃማ, 12:00 ቃማ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ቃማ, 5:00 ቃማ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ቃማ, 9:30 ቃማ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ቃማ, 11:00 ቃማ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WoSnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WoSnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wo_SN'; // Wolof\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaawu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dib\\'eer at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'altine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'talaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'allarba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'alxames at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ajjuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'allarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alxames at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ajjuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gaawu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dib\\'eer at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talaata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last talaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last altine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dib\\'eer at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last gaawu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ajjuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last alxames at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last allarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ajjuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saa',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 saa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 saa',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 simili 1 saa',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 at 3 wèr 1 bés 1 saa',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ayubés 10 waxtu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ayubés 6 bés',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ayubés 6 bés',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ayubés 1 waxtu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 bés',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 bés 3 waxtu',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/WoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass WoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'wo'; // Wolof\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'gaawu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'dib\\'eer at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'altine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'talaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'allarba at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'alxames at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ajjuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talaata at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'allarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'alxames at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ajjuma at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'gaawu at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last dib\\'eer at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'talaata at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last talaata at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last altine at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last dib\\'eer at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last gaawu at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last ajjuma at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last alxames at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last allarba at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last ajjuma at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'from_now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 saa',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 saa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 saa',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 saa',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'from_now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 simili 1 saa',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 at 3 wèr 1 bés 1 saa',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'from_now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ayubés 10 waxtu',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ayubés 6 bés',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ayubés 6 bés',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'from_now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ayubés 1 waxtu',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'from_now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 bés',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 bés 3 waxtu',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/XhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass XhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'xh'; // Xhosa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'iCawa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lwesiThathu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ulweSine at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiThathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ulweSine at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last iCawa at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last iCawa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ulweSine at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last lwesiThathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 nceda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 nceda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 nceda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 nceda ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ingqalelo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ingqalelo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ingqalelo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ingqalelo ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 iwotshi ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 iwotshi ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 iwotshi ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 iwotshi ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 imini ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 imini ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 imini ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 imini ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 veki ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 veki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 veki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 veki ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 inyanga ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 inyanga ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 inyanga ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 inyanga ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ihlobo ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ihlobo ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ihlobo ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ihlobo ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 nceda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 nceda from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 nceda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 nceda after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 nceda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 nceda before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 nceda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 nceda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 nceda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 nceda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 nceda from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ingqalelo 1 nceda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ihlobo 3 inyanga 1 imini 1 nceda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ihlobo from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 inyanga ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ihlobo 3 inyanga 1 imini 1 nceda ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 veki 10 iwotshi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 veki 6 imini',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 veki 6 imini',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 veki and 6 imini from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 veki 1 iwotshi',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 iwotshi from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 imini',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 imini 3 iwotshi',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/XhZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass XhZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'xh_ZA'; // Xhosa\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'iCawa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'lwesiThathu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ulweSine at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiThathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ulweSine at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last iCawa at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lwesiBini at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMvulo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last iCawa at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last ulweSine at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last lwesiThathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last lwesiHlanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 nceda ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 nceda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 nceda ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 nceda ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 ingqalelo ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 ingqalelo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 ingqalelo ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 ingqalelo ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 iwotshi ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 iwotshi ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 iwotshi ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 iwotshi ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 imini ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 imini ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 imini ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 imini ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 veki ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 veki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 veki ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 veki ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 inyanga ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 inyanga ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 inyanga ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 inyanga ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 ihlobo ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 ihlobo ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 ihlobo ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 ihlobo ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 nceda from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 nceda from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 nceda after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 nceda after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 nceda before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 nceda before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 nceda',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 nceda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 nceda',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 nceda',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 nceda from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ingqalelo 1 nceda',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ihlobo 3 inyanga 1 imini 1 nceda',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 ihlobo from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 inyanga ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 ihlobo 3 inyanga 1 imini 1 nceda ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 veki 10 iwotshi',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 veki 6 imini',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 veki 6 imini',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 veki and 6 imini from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 veki 1 iwotshi',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        '1 iwotshi from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 imini',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 imini 3 iwotshi',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/XogTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass XogTest extends LocalizationTestCase\n{\n    public const LOCALE = 'xog'; // Soga\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Olomukaaga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Sabiiti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Balaza at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Owokubili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Owokusatu at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Olokuna at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Olokutaanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Owokubili at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Owokusatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Olokuna at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Olokutaanu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Olomukaaga at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last Sabiiti at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Owokubili at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Owokubili at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Balaza at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Sabiiti at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Olomukaaga at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last Olokutaanu at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last Olokuna at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last Owokusatu at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last Olokutaanu at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 munkyo CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Munkyo, 12:00 munkyo',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Munkyo, 1:30 munkyo',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Munkyo, 2:00 munkyo',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Munkyo, 6:00 munkyo',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Munkyo, 10:00 munkyo',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Eigulo, 12:00 eigulo',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Eigulo, 5:00 eigulo',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Eigulo, 9:30 eigulo',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Eigulo, 11:00 eigulo',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YavTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YavTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yav'; // Yangben\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'séselé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sɔ́ndiɛ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'móndie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'muányáŋmóndie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'metúkpíápɛ at 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'kúpélimetúkpiapɛ at 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'feléte at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'muányáŋmóndie at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'metúkpíápɛ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'kúpélimetúkpiapɛ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'feléte at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'séselé at 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sɔ́ndiɛ at 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'muányáŋmóndie at 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last muányáŋmóndie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last móndie at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sɔ́ndiɛ at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last séselé at 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last feléte at 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last kúpélimetúkpiapɛ at 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last metúkpíápɛ at 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last feléte at 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 1st',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 kiɛmɛ́ɛm CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kiɛmɛ́ɛm, 12:00 kiɛmɛ́ɛm',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 kiɛmɛ́ɛm, 1:30 kiɛmɛ́ɛm',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 kiɛmɛ́ɛm, 2:00 kiɛmɛ́ɛm',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 kiɛmɛ́ɛm, 6:00 kiɛmɛ́ɛm',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 kiɛmɛ́ɛm, 10:00 kiɛmɛ́ɛm',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 kisɛ́ndɛ, 12:00 kisɛ́ndɛ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 kisɛ́ndɛ, 5:00 kisɛ́ndɛ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 kisɛ́ndɛ, 9:30 kisɛ́ndɛ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 kisɛ́ndɛ, 11:00 kisɛ́ndɛ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YiTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YiTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yi'; // Yiddish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'שבת at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'זונטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'מאנטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'מיטוואך at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'דאנערשטאג at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'מיטוואך at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'דאנערשטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'שבת at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last זונטאג at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last מאנטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last זונטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last שבת at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last דאנערשטאג at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last מיטוואך at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1טע 1טע 1טע 1טע 1טע',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2טע 1טע',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3טע 1טע',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4טע 1טע',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5טע 1טע',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6טע 1טע',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7טע 2טע',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11טע 2טע',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40טע',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41טע',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100טע',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0טע',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 סעקונדע פון יעצט',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 סעק פון יעצט',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 סעקונדעס פון יעצט',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 סעק פון יעצט',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 מינוט פון יעצט',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 מינוט פון יעצט',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 מינוט פון יעצט',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 מינוט פון יעצט',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 שעה פון יעצט',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 שעה פון יעצט',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 שעה פון יעצט',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 שעה פון יעצט',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 טאג פון יעצט',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 טאג פון יעצט',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 טעג פון יעצט',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 טאג פון יעצט',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 וואך פון יעצט',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 וואך פון יעצט',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 וואכן פון יעצט',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 וואך פון יעצט',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 חודש פון יעצט',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 חודש פון יעצט',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 חדשים פון יעצט',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 חדשים פון יעצט',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 יאר פון יעצט',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 יאר פון יעצט',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 יאר פון יעצט',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 יאר פון יעצט',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 סעקונדע ארום',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 סעק ארום',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 סעקונדע נאך',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 סעק נאך',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 סעקונדע פאר',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 סעק פאר',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 סעקונדע',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 סעק',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 סעקונדעס',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 סעק',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 סעק ארום',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 מינוט 1 סעקונדע',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 יאר 3 חדשים 1 טאג 1 סעק',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 יאר ארום',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 חדשים פון יעצט',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 יאר 3 חדשים 1 טאג 1 סעק פון יעצט',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 וואך 10 שעה',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 וואך 6 טעג',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 וואך 6 טעג',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 וואך און 6 טעג ארום',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 וואכן 1 שעה',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'א שעה ארום',\n        // CarbonInterval::days(2)->forHumans()\n        '2 טעג',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 טאג 3 שעה',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YiUsTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YiUsTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yi_US'; // Yiddish\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'שבת at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'זונטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'מאנטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'מיטוואך at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'דאנערשטאג at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'מיטוואך at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'דאנערשטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'שבת at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last זונטאג at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last דינסטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last מאנטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last זונטאג at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last שבת at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last דאנערשטאג at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last מיטוואך at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last פרייטאג at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1טע 1טע 1טע 1טע 1טע',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2טע 1טע',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3טע 1טע',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4טע 1טע',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5טע 1טע',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6טע 1טע',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7טע 2טע',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11טע 2טע',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40טע',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41טע',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100טע',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0טע',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 סעקונדע פון יעצט',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1 סעק פון יעצט',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 סעקונדעס פון יעצט',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2 סעק פון יעצט',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 מינוט פון יעצט',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1 מינוט פון יעצט',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 מינוט פון יעצט',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2 מינוט פון יעצט',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 שעה פון יעצט',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1 שעה פון יעצט',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 שעה פון יעצט',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2 שעה פון יעצט',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 טאג פון יעצט',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1 טאג פון יעצט',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 טעג פון יעצט',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2 טאג פון יעצט',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 וואך פון יעצט',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1 וואך פון יעצט',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 וואכן פון יעצט',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2 וואך פון יעצט',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 חודש פון יעצט',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1 חודש פון יעצט',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 חדשים פון יעצט',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2 חדשים פון יעצט',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 יאר פון יעצט',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1 יאר פון יעצט',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 יאר פון יעצט',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2 יאר פון יעצט',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 סעקונדע ארום',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1 סעק ארום',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 סעקונדע נאך',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 סעק נאך',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 סעקונדע פאר',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 סעק פאר',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 סעקונדע',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 סעק',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 סעקונדעס',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 סעק',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1 סעק ארום',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 מינוט 1 סעקונדע',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 יאר 3 חדשים 1 טאג 1 סעק',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 יאר ארום',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5 חדשים פון יעצט',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2 יאר 3 חדשים 1 טאג 1 סעק פון יעצט',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 וואך 10 שעה',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 וואך 6 טעג',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 וואך 6 טעג',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 וואך און 6 טעג ארום',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 וואכן 1 שעה',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'א שעה ארום',\n        // CarbonInterval::days(2)->forHumans()\n        '2 טעג',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 טאג 3 שעה',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YoBjTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YoBjTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yo_BJ'; // Yoruba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ọ̀la ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Àbámɛ́ta Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Àìkú Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Ajé Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Ìsɛ́gun Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́rú Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ɔjɔ́bɔ Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ɔjɔ́ Ɛtì Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́ Ìsɛ́gun Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́rú Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́bɔ Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́ Ɛtì Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́ Àbámɛ́ta Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'Ɔjɔ́ Àìkú Ọsẹ̀ tólọ́ ni 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àna ni 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Ònì ni 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ònì ni 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ọ̀la ni 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́ Ìsɛ́gun Ọsẹ̀ tón\\'bọ ni 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Àna ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àna ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Ìsɛ́gun Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Ajé Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Àìkú Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Àbámɛ́ta Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ɔjɔ́ Ɛtì Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Ɔjɔ́bɔ Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Ɔjɔ́rú Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ɔjɔ́ Ɛtì Ọsẹ̀ tólọ́ ni 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ọjọ́ 1 ọjọ́ 1 ọjọ́ 1 ọjọ́ 1 ọjọ́ 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 2 ọjọ́ 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 3 ọjọ́ 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 4 ọjọ́ 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 5 ọjọ́ 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 6 ọjọ́ 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 7 ọjọ́ 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 11 ọjọ́ 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 àárɔ̀ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Àárɔ̀, 12:00 àárɔ̀',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Àárɔ̀, 1:30 àárɔ̀',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Àárɔ̀, 2:00 àárɔ̀',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Àárɔ̀, 6:00 àárɔ̀',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Àárɔ̀, 10:00 àárɔ̀',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ɔ̀sán, 12:00 ɔ̀sán',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ɔ̀sán, 5:00 ɔ̀sán',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ɔ̀sán, 9:30 ɔ̀sán',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ɔ̀sán, 11:00 ɔ̀sán',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ọjọ́ 0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'iaayá 1 kọjá',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'iaayá 1 kọjá',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'iaayá 2 kọjá',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'iaayá 2 kọjá',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ìsẹjú 1 kọjá',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ìsẹjú 1 kọjá',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ìsẹjú 2 kọjá',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ìsẹjú 2 kọjá',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'wákati 1 kọjá',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'wákati 1 kọjá',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'wákati 2 kọjá',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'wákati 2 kọjá',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ọjọ́ 1 kọjá',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ọjọ́ 1 kọjá',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ọjọ́ 2 kọjá',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ọjọ́ 2 kọjá',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ọsẹ 1 kọjá',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ọsẹ 1 kọjá',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ọsẹ 2 kọjá',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ọsẹ 2 kọjá',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'osù 1 kọjá',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'osù 1 kọjá',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'osù 2 kọjá',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'osù 2 kọjá',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ọdún 1 kọjá',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ọdún 1 kọjá',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ọdún 2 kọjá',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ọdún 2 kọjá',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ní iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ní iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'iaayá 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'iaayá 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'iaayá 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ní iaayá 1',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ìsẹjú 1 iaayá 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ọdún 2 osù 3 ọjọ́ 1 iaayá 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ní ọdún 3',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'osù 5 kọjá',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ọdún 2 osù 3 ọjọ́ 1 iaayá 1 kọjá',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 wákati 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ní ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'ọsẹ 2 wákati 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ní wákati kan',\n        // CarbonInterval::days(2)->forHumans()\n        'ọjọ́ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ọjọ́ 1 wákati 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YoNgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YoNgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yo_NG'; // Yoruba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ọ̀la ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àbámẹ́ta Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àìkú Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ajé Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ọjọ́rú Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ọjọ́bọ Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ẹtì Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ọjọ́rú Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ọjọ́bọ Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ẹtì Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Àbámẹ́ta Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::now()->subDays(2)->calendar()\n        'Àìkú Ọsẹ̀ tólọ́ ni 8:49 Ọ̀sán',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àna ni 10:00 Ọ̀sán',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Ònì ni 10:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ònì ni 2:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ọ̀la ni 1:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Àna ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àna ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ajé Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àìkú Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àbámẹ́ta Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ẹtì Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Ọjọ́bọ Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Ọjọ́rú Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ẹtì Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ọjọ́ 1 ọjọ́ 1 ọjọ́ 1 ọjọ́ 1 ọjọ́ 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 2 ọjọ́ 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 3 ọjọ́ 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 4 ọjọ́ 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 5 ọjọ́ 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 6 ọjọ́ 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 7 ọjọ́ 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 11 ọjọ́ 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 àárọ̀ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Àárọ̀, 12:00 àárọ̀',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Àárọ̀, 1:30 àárọ̀',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Àárọ̀, 2:00 àárọ̀',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Àárọ̀, 6:00 àárọ̀',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Àárọ̀, 10:00 àárọ̀',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ọ̀sán, 12:00 ọ̀sán',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ọ̀sán, 5:00 ọ̀sán',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ọ̀sán, 9:30 ọ̀sán',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ọ̀sán, 11:00 ọ̀sán',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ọjọ́ 0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'iaayá 1 kọjá',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'iaayá 1 kọjá',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'iaayá 2 kọjá',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'iaayá 2 kọjá',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ìsẹjú 1 kọjá',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ìsẹjú 1 kọjá',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ìsẹjú 2 kọjá',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ìsẹjú 2 kọjá',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'wákati 1 kọjá',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'wákati 1 kọjá',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'wákati 2 kọjá',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'wákati 2 kọjá',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ọjọ́ 1 kọjá',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ọjọ́ 1 kọjá',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ọjọ́ 2 kọjá',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ọjọ́ 2 kọjá',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ọsẹ 1 kọjá',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ọsẹ 1 kọjá',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ọsẹ 2 kọjá',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ọsẹ 2 kọjá',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'osù 1 kọjá',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'osù 1 kọjá',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'osù 2 kọjá',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'osù 2 kọjá',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ọdún 1 kọjá',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ọdún 1 kọjá',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ọdún 2 kọjá',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ọdún 2 kọjá',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ní iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ní iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'iaayá 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'iaayá 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'iaayá 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ní iaayá 1',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ìsẹjú 1 iaayá 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ọdún 2 osù 3 ọjọ́ 1 iaayá 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ní ọdún 3',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'osù 5 kọjá',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ọdún 2 osù 3 ọjọ́ 1 iaayá 1 kọjá',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 wákati 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ní ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'ọsẹ 2 wákati 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ní wákati kan',\n        // CarbonInterval::days(2)->forHumans()\n        'ọjọ́ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ọjọ́ 1 wákati 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yo'; // Yoruba\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ọ̀la ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àbámẹ́ta Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àìkú Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ajé Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ọjọ́rú Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'Ọjọ́bọ Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'Ẹtì Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ọjọ́rú Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ọjọ́bọ Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ẹtì Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Àbámẹ́ta Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::now()->subDays(2)->calendar()\n        'Àìkú Ọsẹ̀ tólọ́ ni 8:49 Ọ̀sán',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àna ni 10:00 Ọ̀sán',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Ònì ni 10:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ònì ni 2:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Ọ̀la ni 1:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tón\\'bọ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Àna ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àna ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ìsẹ́gun Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ajé Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àìkú Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Àbámẹ́ta Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Ẹtì Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Ọjọ́bọ Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Ọjọ́rú Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Ẹtì Ọsẹ̀ tólọ́ ni 12:00 Àárọ̀',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        'ọjọ́ 1 ọjọ́ 1 ọjọ́ 1 ọjọ́ 1 ọjọ́ 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 2 ọjọ́ 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 3 ọjọ́ 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 4 ọjọ́ 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 5 ọjọ́ 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 6 ọjọ́ 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 7 ọjọ́ 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        'ọjọ́ 11 ọjọ́ 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        'ọjọ́ 100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 àárọ̀ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Àárọ̀, 12:00 àárọ̀',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 Àárọ̀, 1:30 àárọ̀',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 Àárọ̀, 2:00 àárọ̀',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 Àárọ̀, 6:00 àárọ̀',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 Àárọ̀, 10:00 àárọ̀',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 Ọ̀sán, 12:00 ọ̀sán',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 Ọ̀sán, 5:00 ọ̀sán',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 Ọ̀sán, 9:30 ọ̀sán',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 Ọ̀sán, 11:00 ọ̀sán',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        'ọjọ́ 0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'iaayá 1 kọjá',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'iaayá 1 kọjá',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'iaayá 2 kọjá',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'iaayá 2 kọjá',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ìsẹjú 1 kọjá',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ìsẹjú 1 kọjá',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ìsẹjú 2 kọjá',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ìsẹjú 2 kọjá',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'wákati 1 kọjá',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'wákati 1 kọjá',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'wákati 2 kọjá',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'wákati 2 kọjá',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ọjọ́ 1 kọjá',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ọjọ́ 1 kọjá',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ọjọ́ 2 kọjá',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ọjọ́ 2 kọjá',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ọsẹ 1 kọjá',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ọsẹ 1 kọjá',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ọsẹ 2 kọjá',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ọsẹ 2 kọjá',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'osù 1 kọjá',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'osù 1 kọjá',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'osù 2 kọjá',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'osù 2 kọjá',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ọdún 1 kọjá',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ọdún 1 kọjá',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ọdún 2 kọjá',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ọdún 2 kọjá',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ní iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ní iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'iaayá 1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'iaayá 1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'iaayá 2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'iaayá 2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ní iaayá 1',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ìsẹjú 1 iaayá 1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'ọdún 2 osù 3 ọjọ́ 1 iaayá 1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ní ọdún 3',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'osù 5 kọjá',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ọdún 2 osù 3 ọjọ́ 1 iaayá 1 kọjá',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 wákati 10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ní ọsẹ 1 ọjọ́ 6',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'ọsẹ 2 wákati 1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ní wákati kan',\n        // CarbonInterval::days(2)->forHumans()\n        'ọjọ́ 2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ọjọ́ 1 wákati 3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YueHansTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YueHansTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yue_Hans'; // Cantonese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YueHantTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YueHantTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yue_Hant'; // Cantonese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YueHkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YueHkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yue_HK'; // Cantonese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 2周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 上午 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 上午, 12:00 上午',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 上午, 1:30 上午',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 上午, 2:00 上午',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 上午, 6:00 上午',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 下午, 12:00 下午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 下午, 9:30 下午',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 下午, 11:00 下午',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YueTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YueTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yue'; // Cantonese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 2周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 上午 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 上午, 12:00 上午',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 上午, 1:30 上午',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 上午, 2:00 上午',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 上午, 6:00 上午',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 下午, 12:00 下午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 下午, 9:30 下午',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 下午, 11:00 下午',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YuwPgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YuwPgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yuw_PG'; // Yau (Morobe Province)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'söndanggie at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sinda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mitiwö at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sogipbono at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sinda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mitiwö at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sogipbono at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'söndanggie at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sönda at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sinda at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sinda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last söndanggie at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sogipbono at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mitiwö at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/YuwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass YuwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'yuw'; // Yau (Morobe Province)\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'söndanggie at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'sinda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'mitiwö at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'sogipbono at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sinda at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'mitiwö at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sogipbono at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'söndanggie at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last sönda at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'sinda at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sinda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last mönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last sönda at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last söndanggie at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last sogipbono at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last mitiwö at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last nenggo at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        '1 second ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        '1s ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        '2 seconds ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        '2s ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        '1 minute ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        '1m ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        '2 minutes ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        '2m ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        '1 hour ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        '1h ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        '2 hours ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        '2h ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        '1 day ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        '1d ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        '2 days ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        '2d ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        '1 week ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        '1w ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        '2 weeks ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        '2w ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        '1 month ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        '1mo ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        '2 months ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        '2mos ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        '1 year ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        '1yr ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        '2 years ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        '2yrs ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        '1 second from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        '1s from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 second after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1s after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 second before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1s before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 second',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1s',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 seconds',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2s',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        '1s from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 minute 1 second',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2yrs 3mos 1d 1s',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        '3 years from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        '5mos ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        '2yrs 3mos 1d 1s ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 week 10 hours',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 week 6 days',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        '1 week and 6 days from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 weeks 1 hour',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'an hour from now',\n        // CarbonInterval::days(2)->forHumans()\n        '2 days',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1d 3h',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZghTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZghTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zgh'; // Standard Moroccan Tamazight\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⴽⴽⴰ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⵉⴹⵢⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⴰⵎⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵡⴰⵢⵏⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⵉⵏⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵡⴰⴽⵕⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'ⵓⴽⵡⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'ⵓⵙⵉⵎⵡⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵓⵙⵉⵏⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵡⴰⴽⵕⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵓⴽⵡⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵓⵙⵉⵎⵡⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵓⵙⵉⴹⵢⴰⵙ ⴳ 00:00',\n        // Carbon::now()->subDays(2)->calendar()\n        'ⵓⵙⴰⵎⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 20:49',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵙⵏⵏⴰⵟ ⴳ 22:00',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'ⴰⵙⵙ ⴰ/ⴰⴷ ⴳ 10:00',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵙ ⴰ/ⴰⴷ ⴳ 02:00',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'ⴰⵙⴽⴽⴰ ⴳ 01:00',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵓⵙⵉⵏⴰⵙ ⴳ 00:00',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'ⴰⵙⵙⵏⵏⴰⵟ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⴰⵙⵙⵏⵏⴰⵟ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⵉⵏⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵡⴰⵢⵏⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⴰⵎⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⵉⴹⵢⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'ⵓⵙⵉⵎⵡⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'ⵓⴽⵡⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'ⵡⴰⴽⵕⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'ⵓⵙⵉⵎⵡⴰⵙ ⴰⵎⴳⴳⴰⵔⵓ ⴳ 00:00',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1 1 1 1 1',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2 1',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3 1',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4 1',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5 1',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6 1',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7 1',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11 2',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 ⵜⵉⴼⴰⵡⵜ CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ⵜⵉⴼⴰⵡⵜ, 12:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 ⵜⵉⴼⴰⵡⵜ, 1:30 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 ⵜⵉⴼⴰⵡⵜ, 2:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 ⵜⵉⴼⴰⵡⵜ, 6:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 ⵜⵉⴼⴰⵡⵜ, 10:00 ⵜⵉⴼⴰⵡⵜ',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 12:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 5:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 ⵜⴰⴷⴳⴳⵯⴰⵜ, 9:30 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 ⵜⴰⴷⴳⴳⵯⴰⵜ, 11:00 ⵜⴰⴷⴳⴳⵯⴰⵜ',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'ⵣⴳ 1 ⵜⵙⵉⵏⵜ',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⵜ',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'ⵣⴳ 2 ⵜⵙⵉⵏⵜ',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⵜ',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ⵣⴳ 1 ⵜⵓⵙⴷⵉⴷⵜ',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⵜⵓⵙ',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ⵣⴳ 2 ⵜⵓⵙⴷⵉⴷⵜ',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⵜⵓⵙ',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'ⵣⴳ 1 ⵜⵙⵔⴰⴳⵜ',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⵜ',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'ⵣⴳ 2 ⵜⵙⵔⴰⴳⵜ',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⵜ',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ⵣⴳ 1 ⵡⴰⵙⵙ',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⵓ',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ⵣⴳ 2 ⵡⴰⵙⵙ',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⵓ',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'ⵣⴳ 1 ⵉⵎⴰⵍⴰⵙⵙ',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⵉⵎⴰⵍⴰⵙⵙ.',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'ⵣⴳ 2 ⵉⵎⴰⵍⴰⵙⵙ',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⵉⵎⴰⵍⴰⵙⵙ.',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'ⵣⴳ 1 ⵡⴰⵢⵢⵓⵔ',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⴰⵢⵢⵓⵔⵏ',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'ⵣⴳ 2 ⵡⴰⵢⵢⵓⵔ',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⴰⵢⵢⵓⵔⵏ',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'ⵣⴳ 1 ⵓⵙⴳⴳⵯⴰⵙ',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'ⵣⴳ 1 ⵓⵙⴳⴳⵯⴰⵙ',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'ⵣⴳ 2 ⵓⵙⴳⴳⵯⴰⵙ',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'ⵣⴳ 2 ⵓⵙⴳⴳⵯⴰⵙ',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'ⴷⴳ 1 ⵜⵙⵉⵏⵜ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'ⴷⴳ 1 ⵜ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        '1 ⵜⵙⵉⵏⵜ ⴰⵡⴰⵔ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        '1 ⵜ ⴰⵡⴰⵔ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        '1 ⵜⵙⵉⵏⵜ ⴷⴰⵜ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        '1 ⵜ ⴷⴰⵜ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        '1 ⵜⵙⵉⵏⵜ',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        '1 ⵜ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        '2 ⵜⵙⵉⵏⵜ',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        '2 ⵜ',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'ⴷⴳ 1 ⵜ',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        '1 ⵜⵓⵙⴷⵉⴷⵜ 1 ⵜⵙⵉⵏⵜ',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        '2 ⵓⵙⴳⴳⵯⴰⵙ 3 ⴰⵢⵢⵓⵔⵏ 1 ⵓ 1 ⵜ',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'ⴷⴳ 3 ⵓⵙⴳⴳⵯⴰⵙ',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'ⵣⴳ 5 ⴰⵢⵢⵓⵔⵏ',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'ⵣⴳ 2 ⵓⵙⴳⴳⵯⴰⵙ 3 ⴰⵢⵢⵓⵔⵏ 1 ⵓ 1 ⵜ',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        '1 ⵉⵎⴰⵍⴰⵙⵙ 10 ⵜⵙⵔⴰⴳⵜ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ⵉⵎⴰⵍⴰⵙⵙ 6 ⵡⴰⵙⵙ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        '1 ⵉⵎⴰⵍⴰⵙⵙ 6 ⵡⴰⵙⵙ',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'ⴷⴳ 1 ⵉⵎⴰⵍⴰⵙⵙ ⴷ 6 ⵡⴰⵙⵙ',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        '2 ⵉⵎⴰⵍⴰⵙⵙ 1 ⵜⵙⵔⴰⴳⵜ',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'ⴷⴳ ⵉⵛⵜ ⵜⵙⵔⴰⴳⵜ',\n        // CarbonInterval::days(2)->forHumans()\n        '2 ⵡⴰⵙⵙ',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        '1 ⵓ 3 ⵜ',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhCnTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhCnTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_CN'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHansHkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHansHkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hans_HK'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHansMoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHansMoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hans_MO'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHansSgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHansSgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hans_SG'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHansTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHansTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hans'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHantHkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHantHkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hant_HK'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHantMoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHantMoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hant_MO'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHantTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHantTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hant'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHantTwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHantTwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_Hant_TW'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhHkTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhHkTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_HK'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhMoTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhMoTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_MO'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhSgTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhSgTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_SG'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhTwTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhTwTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_TW'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六 00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日 20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天 22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天 10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天 02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天 01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二 00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六 00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四 00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三 00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五 00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分鐘前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分鐘前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小時前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小時前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2週前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2週前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1個月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2個月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒後',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒後',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒後',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分鐘1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年後',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1週10小時',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1週6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1週6天後',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2週1小時',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小時後',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小時',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZhYueTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZhYueTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zh_YUE'; // Chinese\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tomorrow at 12:00 AM'\n        '明天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Sunday at 12:00 AM'\n        '下星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Monday at 12:00 AM'\n        '下星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Wednesday at 12:00 AM'\n        '下星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Thursday at 12:00 AM'\n        '下星期四00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Friday at 12:00 AM'\n        '下星期五00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Saturday at 12:00 AM'\n        '下星期六00:00',\n\n        // Carbon::now()->subDays(2)->calendar()\n        // 'Last Sunday at 8:49 PM'\n        '上星期日20:49',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 10:00 PM'\n        '昨天22:00',\n\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        // 'Today at 10:00 AM'\n        '今天10:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Today at 2:00 AM'\n        '今天02:00',\n\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        // 'Tomorrow at 1:00 AM'\n        '明天01:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Tuesday at 12:00 AM'\n        '下星期二00:00',\n\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Yesterday at 12:00 AM'\n        '昨天00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Tuesday at 12:00 AM'\n        '上星期二00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Monday at 12:00 AM'\n        '上星期一00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Sunday at 12:00 AM'\n        '上星期日00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Saturday at 12:00 AM'\n        '上星期六00:00',\n\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        // 'Last Thursday at 12:00 AM'\n        '上星期四00:00',\n\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        // 'Last Wednesday at 12:00 AM'\n        '上星期三00:00',\n\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        // 'Last Friday at 12:00 AM'\n        '上星期五00:00',\n\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        // '1st 1st 1st 1st 1st'\n        '1月 1月 1日 1周 1周',\n\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        // '2nd 1st'\n        '2日 1周',\n\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        // '3rd 1st'\n        '3日 1周',\n\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        // '4th 1st'\n        '4日 1周',\n\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        // '5th 1st'\n        '5日 1周',\n\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        // '6th 1st'\n        '6日 1周',\n\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        // '7th 2nd'\n        '7日 1周',\n\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        // '11th 2nd'\n        '11日 2周',\n\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        // '40th'\n        '40日',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        // '41st'\n        '41日',\n\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        // '100th'\n        '100日',\n\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        // '12:00 am CET'\n        '12:00 凌晨 CET',\n\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 AM, 12:00 am'\n        '12:00 凌晨, 12:00 凌晨',\n\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        // '1:30 AM, 1:30 am'\n        '1:30 凌晨, 1:30 凌晨',\n\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        // '2:00 AM, 2:00 am'\n        '2:00 凌晨, 2:00 凌晨',\n\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        // '6:00 AM, 6:00 am'\n        '6:00 早上, 6:00 早上',\n\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        // '10:00 AM, 10:00 am'\n        '10:00 上午, 10:00 上午',\n\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        // '12:00 PM, 12:00 pm'\n        '12:00 中午, 12:00 中午',\n\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        // '5:00 PM, 5:00 pm'\n        '5:00 下午, 5:00 下午',\n\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        // '9:30 PM, 9:30 pm'\n        '9:30 晚上, 9:30 晚上',\n\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        // '11:00 PM, 11:00 pm'\n        '11:00 晚上, 11:00 晚上',\n\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        // '0th'\n        '0',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        // '1 second ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        // '1s ago'\n        '1秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        // '2 seconds ago'\n        '2秒前',\n\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        // '2s ago'\n        '2秒前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        // '1 minute ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        // '1m ago'\n        '1分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        // '2 minutes ago'\n        '2分钟前',\n\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        // '2m ago'\n        '2分钟前',\n\n        // Carbon::now()->subHours(1)->diffForHumans()\n        // '1 hour ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        // '1h ago'\n        '1小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans()\n        // '2 hours ago'\n        '2小时前',\n\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        // '2h ago'\n        '2小时前',\n\n        // Carbon::now()->subDays(1)->diffForHumans()\n        // '1 day ago'\n        '1天前',\n\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        // '1d ago'\n        '1天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans()\n        // '2 days ago'\n        '2天前',\n\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        // '2d ago'\n        '2天前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        // '1 week ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        // '1w ago'\n        '1周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        // '2 weeks ago'\n        '2周前',\n\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        // '2w ago'\n        '2周前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        // '1 month ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        // '1mo ago'\n        '1个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        // '2 months ago'\n        '2个月前',\n\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        // '2mos ago'\n        '2个月前',\n\n        // Carbon::now()->subYears(1)->diffForHumans()\n        // '1 year ago'\n        '1年前',\n\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        // '1yr ago'\n        '1年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans()\n        // '2 years ago'\n        '2年前',\n\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        // '2yrs ago'\n        '2年前',\n\n        // Carbon::now()->addSecond()->diffForHumans()\n        // '1 second from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        // '1 second after'\n        '1秒后',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        // '1s after'\n        '1秒后',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        // '1 second before'\n        '1秒前',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        // '1s before'\n        '1秒前',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        // '1 second'\n        '1秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        // '1s'\n        '1秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        // '2 seconds'\n        '2秒',\n\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        // '2s'\n        '2秒',\n\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        // '1s from now'\n        '1秒后',\n\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        // '1 minute 1 second'\n        '1分钟1秒',\n\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        // '2yrs 3mos 1d 1s'\n        '2年3个月1天1秒',\n\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        // '3 years from now'\n        '3年后',\n\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        // '5mos ago'\n        '5个月前',\n\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        // '2yrs 3mos 1d 1s ago'\n        '2年3个月1天1秒前',\n\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        // '1 week 10 hours'\n        '1周10小时',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        // '1 week 6 days'\n        '1周6天',\n\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        // '1 week and 6 days from now'\n        '1周6天后',\n\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        // '2 weeks 1 hour'\n        '2周1小时',\n\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        // 'an hour from now'\n        '1小时后',\n\n        // CarbonInterval::days(2)->forHumans()\n        // '2 days'\n        '2天',\n\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        // '1d 3h'\n        '1天3小时',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZuTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZuTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zu'; // Zulu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'iSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMsombuluko at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uLwesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'uLwesine at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesine at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last iSonto at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMsombuluko at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last iSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last uLwesine at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last uLwesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'imizuzwana engu-1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'imizuzwana engu-1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'imizuzwana engu-2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'imizuzwana engu-2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ngemizuzu engu-1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ngemizuzu engu-1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ngemizuzu engu-2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ngemizuzu engu-2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'amahora angu-1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'amahora angu-1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'amahora angu-2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'amahora angu-2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ezingaba ngu-1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ezingaba ngu-1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ezingaba ngu-2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ezingaba ngu-2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'lwamasonto angu-1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'lwamasonto angu-1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'lwamasonto angu-2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'lwamasonto angu-2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'izinyanga ezingu-1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'izinyanga ezingu-1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'izinyanga ezingu-2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'izinyanga ezingu-2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'kweminyaka engu-1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'kweminyaka engu-1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'kweminyaka engu-2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'kweminyaka engu-2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'imizuzwana engu-1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'imizuzwana engu-1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'imizuzwana engu-1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'imizuzwana engu-1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'imizuzwana engu-1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'imizuzwana engu-1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'imizuzwana engu-2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'imizuzwana engu-2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ngemizuzu engu-1 imizuzwana engu-1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'kweminyaka engu-2 izinyanga ezingu-3 ezingaba ngu-1 imizuzwana engu-1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'kweminyaka engu-3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'izinyanga ezingu-5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'kweminyaka engu-2 izinyanga ezingu-3 ezingaba ngu-1 imizuzwana engu-1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-1 amahora angu-10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-1 ezingaba ngu-6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-1 ezingaba ngu-6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'lwamasonto angu-1 and ezingaba ngu-6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-2 amahora angu-1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'amahora angu-1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ezingaba ngu-2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ezingaba ngu-1 amahora angu-3',\n    ];\n}\n"
  },
  {
    "path": "tests/Localization/ZuZaTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Localization;\n\nuse PHPUnit\\Framework\\Attributes\\Group;\n\n#[Group('localization')]\nclass ZuZaTest extends LocalizationTestCase\n{\n    public const LOCALE = 'zu_ZA'; // Zulu\n\n    public const CASES = [\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Tomorrow at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'iSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uMsombuluko at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'uLwesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-05 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-05 00:00:00'))\n        'uLwesine at 12:00 AM',\n        // Carbon::parse('2018-01-06 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-06 00:00:00'))\n        'uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(3)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(4)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesine at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(5)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(6)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uMgqibelo at 12:00 AM',\n        // Carbon::now()->subDays(2)->calendar()\n        'Last iSonto at 8:49 PM',\n        // Carbon::parse('2018-01-04 00:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 10:00 PM',\n        // Carbon::parse('2018-01-04 12:00:00')->subHours(2)->calendar(Carbon::parse('2018-01-04 12:00:00'))\n        'Today at 10:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Today at 2:00 AM',\n        // Carbon::parse('2018-01-04 23:00:00')->addHours(2)->calendar(Carbon::parse('2018-01-04 23:00:00'))\n        'Tomorrow at 1:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->addDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-08 00:00:00')->subDay()->calendar(Carbon::parse('2018-01-08 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(1)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Yesterday at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uLwesibili at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(3)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMsombuluko at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(4)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last iSonto at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(5)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uMgqibelo at 12:00 AM',\n        // Carbon::parse('2018-01-04 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-04 00:00:00'))\n        'Last uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-03 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-03 00:00:00'))\n        'Last uLwesine at 12:00 AM',\n        // Carbon::parse('2018-01-02 00:00:00')->subDays(6)->calendar(Carbon::parse('2018-01-02 00:00:00'))\n        'Last uLwesithathu at 12:00 AM',\n        // Carbon::parse('2018-01-07 00:00:00')->subDays(2)->calendar(Carbon::parse('2018-01-07 00:00:00'))\n        'Last uLwesihlanu at 12:00 AM',\n        // Carbon::parse('2018-01-01 00:00:00')->isoFormat('Qo Mo Do Wo wo')\n        '1st 1st 1st 1st 1st',\n        // Carbon::parse('2018-01-02 00:00:00')->isoFormat('Do wo')\n        '2nd 1st',\n        // Carbon::parse('2018-01-03 00:00:00')->isoFormat('Do wo')\n        '3rd 1st',\n        // Carbon::parse('2018-01-04 00:00:00')->isoFormat('Do wo')\n        '4th 1st',\n        // Carbon::parse('2018-01-05 00:00:00')->isoFormat('Do wo')\n        '5th 1st',\n        // Carbon::parse('2018-01-06 00:00:00')->isoFormat('Do wo')\n        '6th 1st',\n        // Carbon::parse('2018-01-07 00:00:00')->isoFormat('Do wo')\n        '7th 2nd',\n        // Carbon::parse('2018-01-11 00:00:00')->isoFormat('Do wo')\n        '11th 2nd',\n        // Carbon::parse('2018-02-09 00:00:00')->isoFormat('DDDo')\n        '40th',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('DDDo')\n        '41st',\n        // Carbon::parse('2018-04-10 00:00:00')->isoFormat('DDDo')\n        '100th',\n        // Carbon::parse('2018-02-10 00:00:00', 'Europe/Paris')->isoFormat('h:mm a z')\n        '12:00 am CET',\n        // Carbon::parse('2018-02-10 00:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 AM, 12:00 am',\n        // Carbon::parse('2018-02-10 01:30:00')->isoFormat('h:mm A, h:mm a')\n        '1:30 AM, 1:30 am',\n        // Carbon::parse('2018-02-10 02:00:00')->isoFormat('h:mm A, h:mm a')\n        '2:00 AM, 2:00 am',\n        // Carbon::parse('2018-02-10 06:00:00')->isoFormat('h:mm A, h:mm a')\n        '6:00 AM, 6:00 am',\n        // Carbon::parse('2018-02-10 10:00:00')->isoFormat('h:mm A, h:mm a')\n        '10:00 AM, 10:00 am',\n        // Carbon::parse('2018-02-10 12:00:00')->isoFormat('h:mm A, h:mm a')\n        '12:00 PM, 12:00 pm',\n        // Carbon::parse('2018-02-10 17:00:00')->isoFormat('h:mm A, h:mm a')\n        '5:00 PM, 5:00 pm',\n        // Carbon::parse('2018-02-10 21:30:00')->isoFormat('h:mm A, h:mm a')\n        '9:30 PM, 9:30 pm',\n        // Carbon::parse('2018-02-10 23:00:00')->isoFormat('h:mm A, h:mm a')\n        '11:00 PM, 11:00 pm',\n        // Carbon::parse('2018-01-01 00:00:00')->ordinal('hour')\n        '0th',\n        // Carbon::now()->subSeconds(1)->diffForHumans()\n        'imizuzwana engu-1 ago',\n        // Carbon::now()->subSeconds(1)->diffForHumans(null, false, true)\n        'imizuzwana engu-1 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans()\n        'imizuzwana engu-2 ago',\n        // Carbon::now()->subSeconds(2)->diffForHumans(null, false, true)\n        'imizuzwana engu-2 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans()\n        'ngemizuzu engu-1 ago',\n        // Carbon::now()->subMinutes(1)->diffForHumans(null, false, true)\n        'ngemizuzu engu-1 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans()\n        'ngemizuzu engu-2 ago',\n        // Carbon::now()->subMinutes(2)->diffForHumans(null, false, true)\n        'ngemizuzu engu-2 ago',\n        // Carbon::now()->subHours(1)->diffForHumans()\n        'amahora angu-1 ago',\n        // Carbon::now()->subHours(1)->diffForHumans(null, false, true)\n        'amahora angu-1 ago',\n        // Carbon::now()->subHours(2)->diffForHumans()\n        'amahora angu-2 ago',\n        // Carbon::now()->subHours(2)->diffForHumans(null, false, true)\n        'amahora angu-2 ago',\n        // Carbon::now()->subDays(1)->diffForHumans()\n        'ezingaba ngu-1 ago',\n        // Carbon::now()->subDays(1)->diffForHumans(null, false, true)\n        'ezingaba ngu-1 ago',\n        // Carbon::now()->subDays(2)->diffForHumans()\n        'ezingaba ngu-2 ago',\n        // Carbon::now()->subDays(2)->diffForHumans(null, false, true)\n        'ezingaba ngu-2 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans()\n        'lwamasonto angu-1 ago',\n        // Carbon::now()->subWeeks(1)->diffForHumans(null, false, true)\n        'lwamasonto angu-1 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans()\n        'lwamasonto angu-2 ago',\n        // Carbon::now()->subWeeks(2)->diffForHumans(null, false, true)\n        'lwamasonto angu-2 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans()\n        'izinyanga ezingu-1 ago',\n        // Carbon::now()->subMonths(1)->diffForHumans(null, false, true)\n        'izinyanga ezingu-1 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans()\n        'izinyanga ezingu-2 ago',\n        // Carbon::now()->subMonths(2)->diffForHumans(null, false, true)\n        'izinyanga ezingu-2 ago',\n        // Carbon::now()->subYears(1)->diffForHumans()\n        'kweminyaka engu-1 ago',\n        // Carbon::now()->subYears(1)->diffForHumans(null, false, true)\n        'kweminyaka engu-1 ago',\n        // Carbon::now()->subYears(2)->diffForHumans()\n        'kweminyaka engu-2 ago',\n        // Carbon::now()->subYears(2)->diffForHumans(null, false, true)\n        'kweminyaka engu-2 ago',\n        // Carbon::now()->addSecond()->diffForHumans()\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true)\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now())\n        'imizuzwana engu-1 after',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)\n        'imizuzwana engu-1 after',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond())\n        'imizuzwana engu-1 before',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)\n        'imizuzwana engu-1 before',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)\n        'imizuzwana engu-1',\n        // Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true, true)\n        'imizuzwana engu-1',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true)\n        'imizuzwana engu-2',\n        // Carbon::now()->diffForHumans(Carbon::now()->addSecond()->addSecond(), true, true)\n        'imizuzwana engu-2',\n        // Carbon::now()->addSecond()->diffForHumans(null, false, true, 1)\n        'imizuzwana engu-1 from now',\n        // Carbon::now()->addMinute()->addSecond()->diffForHumans(null, true, false, 2)\n        'ngemizuzu engu-1 imizuzwana engu-1',\n        // Carbon::now()->addYears(2)->addMonths(3)->addDay()->addSecond()->diffForHumans(null, true, true, 4)\n        'kweminyaka engu-2 izinyanga ezingu-3 ezingaba ngu-1 imizuzwana engu-1',\n        // Carbon::now()->addYears(3)->diffForHumans(null, null, false, 4)\n        'kweminyaka engu-3 from now',\n        // Carbon::now()->subMonths(5)->diffForHumans(null, null, true, 4)\n        'izinyanga ezingu-5 ago',\n        // Carbon::now()->subYears(2)->subMonths(3)->subDay()->subSecond()->diffForHumans(null, null, true, 4)\n        'kweminyaka engu-2 izinyanga ezingu-3 ezingaba ngu-1 imizuzwana engu-1 ago',\n        // Carbon::now()->addWeek()->addHours(10)->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-1 amahora angu-10',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-1 ezingaba ngu-6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-1 ezingaba ngu-6',\n        // Carbon::now()->addWeek()->addDays(6)->diffForHumans([\"join\" => true, \"parts\" => 2])\n        'lwamasonto angu-1 and ezingaba ngu-6 from now',\n        // Carbon::now()->addWeeks(2)->addHour()->diffForHumans(null, true, false, 2)\n        'lwamasonto angu-2 amahora angu-1',\n        // Carbon::now()->addHour()->diffForHumans([\"aUnit\" => true])\n        'amahora angu-1 from now',\n        // CarbonInterval::days(2)->forHumans()\n        'ezingaba ngu-2',\n        // CarbonInterval::create('P1DT3H')->forHumans(true)\n        'ezingaba ngu-1 amahora angu-3',\n    ];\n}\n"
  },
  {
    "path": "tests/PHPStan/FeaturesTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPStan;\n\nuse PHPUnit\\Framework\\Attributes\\Large;\nuse RuntimeException;\nuse Tests\\AbstractTestCase;\n\n#[Large]\nclass FeaturesTest extends AbstractTestCase\n{\n    /**\n     * @SuppressWarnings(LongVariable)\n     */\n    protected string $phpStanPreviousDirectory = '.';\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n        $this->phpStanPreviousDirectory = getcwd();\n        chdir(__DIR__.'/../..');\n    }\n\n    protected function tearDown(): void\n    {\n        chdir($this->phpStanPreviousDirectory);\n        parent::tearDown();\n    }\n\n    public function testAnalysesWithoutErrors(): void\n    {\n        $this->assertStringContainsString(\n            '[OK] No errors',\n            $this->analyze(__DIR__.'/project.neon'),\n        );\n    }\n\n    public function testAnalysesWithAnError(): void\n    {\n        $this->assertStringContainsString(\n            '22     Static call to instance method Carbon\\Carbon::foo().',\n            $this->analyze(__DIR__.'/bad-project.neon'),\n        );\n    }\n\n    private function analyze(string $file): string\n    {\n        $output = shell_exec(implode(' ', [\n            implode(DIRECTORY_SEPARATOR, ['.', 'vendor', 'bin', 'phpstan']),\n            'analyse',\n            '--configuration='.escapeshellarg(realpath($file)),\n            '--no-progress',\n            '--no-interaction',\n            '--level=0',\n            escapeshellarg(realpath(__DIR__.'/Fixture.php')),\n        ]));\n\n        if (!\\is_string($output)) {\n            throw new RuntimeException('Executing phpstan returned '.var_export($output, true));\n        }\n\n        return $output;\n    }\n}\n"
  },
  {
    "path": "tests/PHPStan/Fixture.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPStan;\n\nuse Carbon\\Carbon;\n\nclass Fixture\n{\n    public function testCarbonMacroCalledStatically(): string\n    {\n        return Carbon::foo(15);\n    }\n\n    public function testCarbonMacroCalledDynamically(): string\n    {\n        return Carbon::now()->foo(42);\n    }\n}\n"
  },
  {
    "path": "tests/PHPStan/MacroExtensionTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPStan;\n\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\PHPStan\\MacroExtension;\nuse PHPStan\\Reflection\\ReflectionProvider;\nuse PHPStan\\Testing\\PHPStanTestCase;\nuse PHPStan\\Type\\ClosureTypeFactory;\nuse PHPStan\\Type\\VerbosityLevel;\nuse PHPUnit\\Framework\\Attributes\\RequiresPhp;\n\n/**\n * PHPStan is calling deprecated ->setAccessible() method, they already fixed it,\n * but did not release a new version with the fix.\n *\n * Disabling this test for PHP 8.5 until the patch is out.\n */\n#[RequiresPhp('< 8.5')]\nclass MacroExtensionTest extends PHPStanTestCase\n{\n    private ReflectionProvider $reflectionProvider;\n    private MacroExtension $extension;\n\n    protected function setUp(): void\n    {\n        parent::setUp();\n\n        $this->reflectionProvider = $this->createReflectionProvider();\n        $this->extension = new MacroExtension(\n            $this->reflectionProvider,\n            self::getContainer()->getByType(ClosureTypeFactory::class)\n        );\n    }\n\n    public function testHasMacro()\n    {\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $this->assertFalse($this->extension->hasMethod($carbon, 'foo'));\n\n        Carbon::macro('foo', function ($someArg) {\n        });\n\n        $carbonInterval = $this->reflectionProvider->getClass(CarbonInterval::class);\n\n        $this->assertTrue($this->extension->hasMethod($carbon, 'foo'));\n        $this->assertFalse($this->extension->hasMethod($carbonInterval, 'foo'));\n        $this->assertFalse($this->extension->hasMethod($carbonInterval, 'foo'));\n    }\n\n    public function testGetMacro()\n    {\n        Carbon::macro('foo', function (): CarbonInterval {\n        });\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'foo');\n        $variant = $method->getVariants()[0];\n\n        $this->assertSame(\n            CarbonInterval::class,\n            $variant->getReturnType()->describe(VerbosityLevel::typeOnly()),\n        );\n    }\n\n    public function testIsStatic()\n    {\n        Carbon::macro('calendarBerlin', static function (): string {\n            return self::this()->tz('Europe/Berlin')->calendar();\n        });\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'calendarBerlin');\n\n        $this->assertTrue($method->isStatic());\n\n        Carbon::macro('calendarBerlinNonStatic', function (): string {\n            return $this->tz('Europe/Berlin')->calendar();\n        });\n\n        $method = $this->extension->getMethod($carbon, 'calendarBerlinNonStatic');\n        $this->assertFalse($method->isStatic());\n    }\n\n    public function testGetDeclaringClass()\n    {\n        Carbon::macro('lower', 'strtolower');\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n\n        $method = $this->extension->getMethod($carbon, 'lower');\n        $this->assertSame(Carbon::class, $method->getDeclaringClass()->getName());\n\n        CarbonImmutable::macro('lowerImmutable', 'strtolower');\n\n        $carbonImmutable = $this->reflectionProvider->getClass(CarbonImmutable::class);\n\n        $method = $this->extension->getMethod($carbonImmutable, 'lowerImmutable');\n        $this->assertSame(CarbonImmutable::class, $method->getDeclaringClass()->getName());\n    }\n\n    public function testIsPrivate()\n    {\n        Carbon::macro('lowerVisibility', 'strtolower');\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'lowerVisibility');\n        $this->assertFalse($method->isPrivate());\n    }\n\n    public function testIsPublic()\n    {\n        Carbon::macro('lowerVisibility', 'strtolower');\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'lowerVisibility');\n        $this->assertTrue($method->isPublic());\n    }\n\n    public function testIsFinal()\n    {\n        $mixinClass = new class() {\n            // Declaring final won't apply for macro, sub-class will always be able to override macros.\n            final public static function foo(): string\n            {\n                return 'foo';\n            }\n\n            public static function bar(): string\n            {\n                return 'bar';\n            }\n        };\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n\n        Carbon::macro('foo', [$mixinClass, 'foo']);\n        $method = $this->extension->getMethod($carbon, 'foo');\n\n        $this->assertTrue($method->isFinal()->yes());\n\n        Carbon::macro('bar', [$mixinClass, 'bar']);\n        $method = $this->extension->getMethod($carbon, 'bar');\n\n        $this->assertTrue($method->isFinal()->no());\n    }\n\n    public function testIsInternal()\n    {\n        Carbon::macro('lowerVisibility', 'strtolower');\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'lowerVisibility');\n        $this->assertFalse($method->isInternal()->yes());\n    }\n\n    public function testGetDocComment()\n    {\n        Carbon::macro(\n            'closureWithDocComment',\n            /**\n             * Foo.\n             */\n            function () {\n                return 'foo';\n            },\n        );\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'closureWithDocComment');\n\n        $this->assertSame(\n            \"/**\\n* Foo.\\n*/\",\n            preg_replace('/^[\\t ]+/m', '', $method->getDocComment()),\n        );\n    }\n\n    public function testGetName()\n    {\n        Carbon::macro('lowerVisibility', 'strtolower');\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'lowerVisibility');\n\n        $this->assertSame('lowerVisibility', $method->getName());\n    }\n\n    public function testGetParameters()\n    {\n        Carbon::macro('noParameters', function () {\n        });\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'noParameters');\n\n        $variant = $method->getVariants()[0];\n\n        $this->assertSame([], $variant->getParameters());\n\n        Carbon::macro('twoParameters', function (string $a, $b = 9) {\n        });\n        $method = $this->extension->getMethod($carbon, 'twoParameters');\n        $variant = $method->getVariants()[0];\n        $parameters = $variant->getParameters();\n\n        $this->assertCount(2, $parameters);\n        $this->assertSame('a', $parameters[0]->getName());\n        $this->assertNull($parameters[0]->getDefaultValue());\n        $this->assertSame('string', $parameters[0]->getType()->describe(VerbosityLevel::typeOnly()));\n        $this->assertSame('b', $parameters[1]->getName());\n        $this->assertNotNull($parameters[1]->getDefaultValue());\n        $this->assertSame('9', $parameters[1]->getDefaultValue()->describe(VerbosityLevel::value()));\n        $this->assertSame('mixed', $parameters[1]->getType()->describe(VerbosityLevel::typeOnly()));\n    }\n\n    public function testGetReturnType()\n    {\n        Carbon::macro('noReturnType', function () {\n        });\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'noReturnType');\n\n        $variant = $method->getVariants()[0];\n\n        $this->assertSame('mixed', $variant->getReturnType()->describe(VerbosityLevel::typeOnly()));\n\n        Carbon::macro('carbonReturnType', function (): Carbon {\n        });\n\n        $method = $this->extension->getMethod($carbon, 'carbonReturnType');\n        $variant = $method->getVariants()[0];\n\n        $this->assertSame(Carbon::class, $variant->getReturnType()->describe(VerbosityLevel::typeOnly()));\n    }\n\n    public function testIsDeprecated()\n    {\n        Carbon::macro(\n            'deprecated',\n            /**\n             * @deprecated since 3.0.0\n             */\n            function () {\n            },\n        );\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'deprecated');\n\n        $this->assertTrue($method->isDeprecated()->yes());\n        $this->assertNull($method->getDeprecatedDescription());\n\n        Carbon::macro(\n            'discouraged',\n            /**\n             * @discouraged since 3.0.0\n             */\n            function () {\n            },\n        );\n\n        $method = $this->extension->getMethod($carbon, 'discouraged');\n\n        $this->assertFalse($method->isDeprecated()->yes());\n        $this->assertNull($method->getDeprecatedDescription());\n    }\n\n    public function testIsVariadic()\n    {\n        Carbon::macro('variadic', function (...$params) {\n        });\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'variadic');\n        $variant = $method->getVariants()[0];\n\n        $this->assertTrue($variant->isVariadic());\n\n        Carbon::macro('notVariadic', function ($params) {\n        });\n\n        $method = $this->extension->getMethod($carbon, 'notVariadic');\n        $variant = $method->getVariants()[0];\n\n        $this->assertFalse($variant->isVariadic());\n    }\n\n    public function testGetPrototype()\n    {\n        Carbon::macro('prototype', function () {\n        });\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'prototype');\n\n        $this->assertSame($method, $method->getPrototype());\n    }\n\n    public function testGetThrowType()\n    {\n        Carbon::macro('throwType', function () {\n        });\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'throwType');\n\n        $this->assertNull($method->getThrowType());\n    }\n\n    public function testHasSideEffects()\n    {\n        Carbon::macro('hasSideEffects', function () {\n        });\n\n        $carbon = $this->reflectionProvider->getClass(Carbon::class);\n        $method = $this->extension->getMethod($carbon, 'hasSideEffects');\n\n        $this->assertTrue($method->hasSideEffects()->maybe());\n    }\n}\n"
  },
  {
    "path": "tests/PHPStan/MixinClass.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPStan;\n\nclass MixinClass\n{\n    // Declaring final won't apply for macro, sub-class will always be able to override macros.\n    final public static function foo(): string\n    {\n        return 'foo';\n    }\n\n    public static function bar(): string\n    {\n        return 'bar';\n    }\n}\n"
  },
  {
    "path": "tests/PHPStan/bad-project.neon",
    "content": "includes:\n    - ../../extension.neon\nparameters:\n    bootstrapFiles:\n        - ./bootstrap-non-static.php\n"
  },
  {
    "path": "tests/PHPStan/bootstrap-non-static.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\Carbon;\n\nCarbon::macro('foo', function ($someArg): string {\n    return 'foo';\n});\n"
  },
  {
    "path": "tests/PHPStan/bootstrap.php",
    "content": "<?php\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nuse Carbon\\Carbon;\n\nCarbon::macro('foo', static function ($someArg): string {\n    return 'foo';\n});\n"
  },
  {
    "path": "tests/PHPStan/project.neon",
    "content": "includes:\n    - ../../extension.neon\nparameters:\n    bootstrapFiles:\n        - ./bootstrap.php\n"
  },
  {
    "path": "tests/PHPUnit/AssertObjectHasPropertyNoopTrait.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPUnit;\n\ntrait AssertObjectHasPropertyTrait\n{\n}\n"
  },
  {
    "path": "tests/PHPUnit/AssertObjectHasPropertyPolyfillTrait.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPUnit;\n\ntrait AssertObjectHasPropertyTrait\n{\n    protected static function assertObjectHasProperty(string $attributeName, $object, string $message = '')\n    {\n        self::assertObjectHasAttribute($attributeName, $object, $message);\n    }\n}\n"
  },
  {
    "path": "tests/PHPUnit/AssertObjectHasPropertyTrait.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\PHPUnit;\n\nuse PHPUnit\\Framework\\TestCase;\n\nrequire_once method_exists(TestCase::class, 'assertObjectHasProperty')\n    ? __DIR__.'/AssertObjectHasPropertyNoopTrait.php'\n    : __DIR__.'/AssertObjectHasPropertyPolyfillTrait.php';\n"
  },
  {
    "path": "tests/Unit/MonthTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Unit;\n\nuse Carbon\\CarbonImmutable;\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\Month;\nuse Tests\\AbstractTestCase;\n\nclass MonthTest extends AbstractTestCase\n{\n    public function testFromName(): void\n    {\n        $this->assertSame(Month::January, Month::fromName('jan'));\n        $this->assertSame(Month::February, Month::fromName('FEBRUARY'));\n        $this->assertSame(Month::February, Month::fromName('févr', 'fr'));\n        $this->assertSame(Month::March, Month::fromName('Mars', 'fr'));\n    }\n\n    public function testFromNumber(): void\n    {\n        $this->assertSame(Month::May, Month::fromNumber(5));\n        $this->assertSame(Month::October, Month::fromNumber(-2));\n        $this->assertSame(Month::September, Month::fromNumber(9));\n        $this->assertSame(Month::November, Month::fromNumber(-1));\n        $this->assertSame(Month::July, Month::fromNumber(7));\n        $this->assertSame(Month::December, Month::fromNumber(0));\n        $this->assertSame(Month::December, Month::fromNumber(12));\n        $this->assertSame(Month::January, Month::fromNumber(13));\n    }\n\n    public function testOfTheYear(): void\n    {\n        $date = Month::October->ofTheYear(2020);\n        $this->assertInstanceOf(CarbonImmutable::class, $date);\n        $this->assertSame('2020-10-01 00:00:00.000000 America/Toronto', $date->format('Y-m-d H:i:s.u e'));\n    }\n\n    public function testLocale(): void\n    {\n        $this->assertSame('ottobre', Month::October->locale('it')->monthName);\n        $this->assertSame('diciembre', Month::January->locale('es')->subMonth()->monthName);\n    }\n\n    public function testFromNameFailure(): void\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\"Could not parse 'pr 1'\"));\n\n        Month::fromName('pr', 'fr');\n    }\n}\n"
  },
  {
    "path": "tests/Unit/UnitTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Unit;\n\nuse Carbon\\CarbonImmutable;\nuse Carbon\\CarbonInterval;\nuse Carbon\\CarbonPeriodImmutable;\nuse Carbon\\Unit;\nuse Carbon\\WeekDay;\nuse PHPUnit\\Framework\\Attributes\\TestWith;\nuse Tests\\AbstractTestCase;\n\nclass UnitTest extends AbstractTestCase\n{\n    public static function setUpBeforeClass(): void\n    {\n        parent::setUpBeforeClass();\n\n        CarbonImmutable::setLocale('en');\n    }\n\n    #[TestWith([Unit::Microsecond, 'microseconds'])]\n    #[TestWith([Unit::Millisecond, 'millisecond'])]\n    #[TestWith([Unit::Second, 'second'])]\n    #[TestWith([Unit::Minute, 'minute'])]\n    #[TestWith([Unit::Hour, 'hours'])]\n    #[TestWith([Unit::Day, 'day'])]\n    #[TestWith([Unit::Week, 'WEEK'])]\n    #[TestWith([Unit::Month, 'Month'])]\n    #[TestWith([Unit::Quarter, 'quarters'])]\n    #[TestWith([Unit::Year, 'year'])]\n    #[TestWith([Unit::Decade, 'decade'])]\n    #[TestWith([Unit::Century, 'centuries'])]\n    #[TestWith([Unit::Millennium, 'millennia'])]\n    #[TestWith([Unit::Day, 'day'])]\n    #[TestWith([Unit::Day, 'day'])]\n    #[TestWith([Unit::Day, 'jour', 'fr_BE'])]\n    #[TestWith([Unit::Day, 'JOUR', 'fr'])]\n    #[TestWith([Unit::Month, 'Monaten', 'de'])]\n    #[TestWith([Unit::Month, 'monaten', 'de'])]\n    public function testFromName(Unit $unit, string $name, ?string $locale = null): void\n    {\n        $this->assertSame($unit, Unit::fromName($name, $locale));\n    }\n\n    public function testSingular(): void\n    {\n        $this->assertSame('day', Unit::Day->singular());\n        $this->assertSame('century', Unit::Century->singular());\n        $this->assertSame('jour', Unit::Day->singular('fr'));\n        $this->assertSame('Tag', Unit::Day->singular('de'));\n        $this->assertSame('siècle', Unit::Century->singular('fr'));\n    }\n\n    public function testPlural(): void\n    {\n        $this->assertSame('days', Unit::Day->plural());\n        $this->assertSame('centuries', Unit::Century->plural());\n        $this->assertSame('jours', Unit::Day->plural('fr'));\n        $this->assertSame('Tage', Unit::Day->plural('de'));\n        $this->assertSame('siècles', Unit::Century->plural('fr'));\n    }\n\n    public function testInterval(): void\n    {\n        $interval = Unit::Day->interval(2);\n        $this->assertInstanceOf(CarbonInterval::class, $interval);\n        $this->assertSame(['days' => 2], array_filter($interval->toArray()));\n    }\n\n    public function testLocale(): void\n    {\n        $interval = Unit::Day->locale('fr');\n        $this->assertInstanceOf(CarbonInterval::class, $interval);\n        $this->assertSame(['days' => 1], array_filter($interval->toArray()));\n        $this->assertSame('1 jour', $interval->forHumans());\n    }\n\n    public function testToPeriod(): void\n    {\n        CarbonImmutable::setTestNow('2023-12-09 11:47:53');\n        $days = Unit::Day->toPeriod(WeekDay::Monday, WeekDay::Friday);\n        $this->assertInstanceOf(CarbonPeriodImmutable::class, $days);\n        $this->assertSame('Every 1 day from 2023-12-11 to 2023-12-15', (string) $days);\n    }\n\n    public function testStepBy(): void\n    {\n        CarbonImmutable::setTestNow('2023-12-09 11:47:53');\n        $days = Unit::Week->stepBy(Unit::Day);\n        $this->assertInstanceOf(CarbonPeriodImmutable::class, $days);\n        $this->assertSame('Every 1 day from 2023-12-09 11:47:53 to 2023-12-16 11:47:53', (string) $days);\n    }\n}\n"
  },
  {
    "path": "tests/Unit/WeekDayTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Tests\\Unit;\n\nuse Carbon\\Exceptions\\InvalidFormatException;\nuse Carbon\\WeekDay;\nuse Tests\\AbstractTestCase;\n\nclass WeekDayTest extends AbstractTestCase\n{\n    public function testFromName(): void\n    {\n        $this->assertSame(WeekDay::Friday, WeekDay::fromName('fri'));\n        $this->assertSame(WeekDay::Tuesday, WeekDay::fromName('TUESDAY'));\n        $this->assertSame(WeekDay::Saturday, WeekDay::fromName('sam', 'fr'));\n        $this->assertSame(WeekDay::Sunday, WeekDay::fromName('Dimanche', 'fr'));\n    }\n\n    public function testFromNumber(): void\n    {\n        $this->assertSame(WeekDay::Friday, WeekDay::fromNumber(5));\n        $this->assertSame(WeekDay::Friday, WeekDay::fromNumber(-2));\n        $this->assertSame(WeekDay::Tuesday, WeekDay::fromNumber(9));\n        $this->assertSame(WeekDay::Saturday, WeekDay::fromNumber(-1));\n        $this->assertSame(WeekDay::Sunday, WeekDay::fromNumber(7));\n        $this->assertSame(WeekDay::Sunday, WeekDay::fromNumber(0));\n    }\n\n    public function testLocale(): void\n    {\n        $this->assertSame('venerdì', WeekDay::Friday->locale('it')->dayName);\n        $this->assertSame('sábado', WeekDay::Sunday->locale('es')->subDay()->dayName);\n    }\n\n    public function testFromNameFailure(): void\n    {\n        $this->expectExceptionObject(new InvalidFormatException(\"Could not parse 'pr'\"));\n\n        WeekDay::fromName('pr', 'fr');\n    }\n}\n"
  },
  {
    "path": "tests/bootstrap.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nrequire_once __DIR__.'/../vendor/autoload.php';\nrequire_once __DIR__.'/PHPUnit/AssertObjectHasPropertyTrait.php';\n\nset_error_handler(static function (\n    int $errno,\n    string $errstr,\n    string $errfile = '',\n    int $errline = 0,\n    array $errcontext = []\n): bool {\n    if (!(error_reporting() & $errno)) {\n        return false;\n    }\n\n    throw new ErrorException($errstr, $errno, $errno, $errfile, $errline);\n});\n"
  },
  {
    "path": "tests/phpmd-test.xml",
    "content": "<?xml version=\"1.0\"?>\n<ruleset\n    name=\"Mess detection rules for Carbon\"\n    xmlns=\"http://pmd.sf.net/ruleset/1.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://pmd.sf.net/ruleset/1.0.0\n             http://pmd.sf.net/ruleset_xml_schema.xsd\"\n    xsi:noNamespaceSchemaLocation=\"http://pmd.sf.net/ruleset_xml_schema.xsd\"\n>\n    <description>\n        Mess detection rules for Carbon\n    </description>\n    <rule ref=\"rulesets/cleancode.xml\">\n        <exclude name=\"BooleanArgumentFlag\" />\n        <exclude name=\"StaticAccess\" />\n        <exclude name=\"IfStatementAssignment\" />\n        <exclude name=\"UndefinedVariable\" />\n        <exclude name=\"ErrorControlOperator\" />\n    </rule>\n    <rule ref=\"rulesets/controversial.xml\" />\n    <rule ref=\"rulesets/design.xml\">\n        <exclude name=\"EvalExpression\" />\n        <exclude name=\"CouplingBetweenObjects\" />\n        <exclude name=\"CountInLoopExpression\" />\n        <exclude name=\"DevelopmentCodeFragment\" />\n    </rule>\n    <rule ref=\"rulesets/design.xml/DevelopmentCodeFragment\">\n        <properties>\n            <property name=\"ignore-namespaces\" value=\"true\" />\n        </properties>\n    </rule>\n    <rule ref=\"rulesets/unusedcode.xml\">\n        <exclude name=\"UnusedLocalVariable\" />\n        <exclude name=\"UnusedFormalParameter\" />\n    </rule>\n</ruleset>\n"
  },
  {
    "path": "tests/remove-comments-in-switch.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n/**\n * This file is part of the Carbon package.\n *\n * (c) Brian Nesbitt <brian@nesbot.com>\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\n$files = [\n    __DIR__.'/../src/Carbon/Traits/Date.php',\n    __DIR__.'/../src/Carbon/Traits/Units.php',\n    __DIR__.'/../src/Carbon/Lang/fr.php',\n];\n\n$comments = [\n    '// @--property',\n    '// @property',\n    '// @call ',\n    '// Words with feminine grammatical gender: semaine',\n];\n\nforeach ($files as $file) {\n    $contents = str_replace(\"\\r\", '', file_get_contents($file));\n    $newContents = implode(\"\\n\", array_filter(explode(\"\\n\", $contents), static function ($line) use ($comments) {\n        $code = trim($line);\n\n        foreach ($comments as $comment) {\n            if (str_starts_with($code, $comment)) {\n                return false;\n            }\n        }\n\n        return true;\n    }));\n\n    if ($newContents !== $contents) {\n        file_put_contents($file, $newContents);\n    }\n}\n"
  }
]